:root {
  --cream: #f8f1ea;
  --sand: #efe1d1;
  --navy: #0d2440;
  --navy-soft: rgba(13, 36, 64, 0.72);
  --gold: #d4a247;
  --white: #fffdf9;
  --shadow: 0 26px 70px rgba(13, 36, 64, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: "DM Sans", system-ui, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

.promo-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--navy);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.site-header {
  position: fixed;
  inset: 34px 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px clamp(18px, 5vw, 62px);
  background: rgba(248, 241, 234, 0.62);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(248, 241, 234, 0.92);
  box-shadow: 0 16px 38px rgba(13, 36, 64, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.logo-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.logo-copy strong {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}

.logo-copy small {
  color: rgba(13, 36, 64, 0.66);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a,
.mobile-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.lang {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: rgba(13, 36, 64, 0.45);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.lang.active {
  color: var(--navy);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.mobile-nav {
  position: fixed;
  inset: 120px 16px auto;
  z-index: 19;
  display: none;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 18px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(13, 36, 64, 0.16);
}

.btn.compact {
  min-height: 42px;
  padding: 0 22px;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  border-color: rgba(212, 162, 71, 0.76);
  color: var(--gold);
}

.btn-outline.navy {
  border-color: rgba(13, 36, 64, 0.32);
  color: var(--navy);
}

.btn-navy {
  width: 100%;
  background: var(--navy);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 36, 64, 0.68), rgba(13, 36, 64, 0.28) 56%, rgba(13, 36, 64, 0.04));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 42px));
  margin-left: clamp(20px, 6vw, 84px);
  padding-top: 88px;
}

.overline {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.community h2,
.contact h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(48px, 7vw, 98px);
  line-height: 1.02;
}

.hero h1 span,
.hero h1 em,
.community h2 span {
  display: block;
}

.hero-copy {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(248, 241, 234, 0.94);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.6;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(248, 241, 234, 0.28);
  border-radius: 999px;
  background: rgba(248, 241, 234, 0.1);
  color: rgba(248, 241, 234, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  padding: 80px clamp(22px, 5vw, 72px);
  text-align: center;
}

.why-us {
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  min-height: 176px;
  padding: 28px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: 0 18px 44px rgba(13, 36, 64, 0.08);
}

.why-card strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-card p {
  margin: 0;
  color: var(--navy-soft);
  line-height: 1.65;
}

.about-story {
  padding: 104px clamp(22px, 7vw, 92px);
  background: var(--cream);
}

.about-story-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 6vw, 78px);
  max-width: 1180px;
  margin: 0 auto;
}

.about-story-copy {
  padding-top: 10px;
  border-top: 1px solid rgba(13, 36, 64, 0.14);
}

.about-story h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.about-story p:not(.overline) {
  margin: 0 0 16px;
  color: var(--navy-soft);
  font-size: 16px;
  line-height: 1.78;
}

.feature-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 1;
}

.feature h3,
.lesson-card h3 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.feature p,
.lesson-card p,
.community p,
.launch-copy,
.contact p,
.site-footer p {
  color: var(--navy-soft);
  line-height: 1.65;
}

.section {
  padding: 96px clamp(22px, 5vw, 72px);
}

.lessons,
.launch-section {
  background: var(--sand);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2,
.community h2,
.contact h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
}

.divider {
  display: block;
  width: 72px;
  height: 1px;
  margin: 20px auto 0;
  background: var(--gold);
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -24px 0 42px;
}

.pricing-tabs button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(13, 36, 64, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-tabs button.active {
  border-color: var(--gold);
  background: var(--gold);
}

.price-category.is-hidden,
.lesson-card.is-hidden {
  display: none;
}

.price-category {
  margin: 18px auto 28px;
  text-align: center;
}

.price-category + .lesson-grid {
  margin-bottom: 72px;
}

.package-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lesson-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(13, 36, 64, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.lesson-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.lesson-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  object-fit: cover;
}

.lesson-card h3,
.lesson-card p,
.lesson-card strong {
  text-align: center;
}

.lesson-card h3 {
  min-height: 44px;
}

.lesson-card .meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 12px;
  font-size: 13px;
}

.lesson-card strong {
  display: block;
  margin: 4px 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
}

.lesson-card small {
  color: rgba(13, 36, 64, 0.58);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
}

.included-list {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--navy-soft);
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 22px;
}

.included-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 700;
}

.package-card {
  min-height: 370px;
}

.package-card .btn {
  margin-top: auto;
}

.featured {
  border: 1px solid rgba(212, 162, 71, 0.56);
}

.badge {
  display: table;
  margin: 0 auto 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(212, 162, 71, 0.16);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.community {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: 102px clamp(22px, 7vw, 92px);
  background: var(--cream);
}

.community-copy {
  max-width: 520px;
}

.community p {
  margin: 26px 0 32px;
}

.community-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.gallery {
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-grid img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(13, 36, 64, 0.08);
}

.island-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(420px, 48vw);
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--navy);
  box-shadow: 0 22px 60px rgba(13, 36, 64, 0.12);
}

.gallery-item img {
  display: block;
  box-shadow: none;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(8, 31, 52, 0.72);
  color: var(--cream);
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.gallery-grid .tall {
  grid-row: span 2;
}

.instagram {
  display: table;
  margin: 34px auto 0;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.launch-head {
  max-width: 900px;
  margin-bottom: 0;
}

.launch-copy {
  max-width: 760px;
  margin: 24px auto 32px;
  font-size: 19px;
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.launch-actions .btn-outline {
  border-color: rgba(9, 38, 61, 0.35);
  color: var(--navy);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
  padding: 100px clamp(22px, 7vw, 92px);
  background: var(--navy);
  color: var(--cream);
}

.contact h2 {
  color: var(--cream);
}

.whatsapp {
  display: inline-flex;
  margin-top: 30px;
  color: var(--gold);
  font-weight: 700;
}

.booking-note {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(248, 241, 234, 0.18);
}

.booking-note h3 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.booking-note h3 + .payment-list {
  margin-top: 0;
}

.booking-note p {
  max-width: 520px;
  margin: 0 0 22px;
  color: rgba(248, 241, 234, 0.78);
}

.document-link {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 4px;
}

.document-link.light {
  margin-bottom: 8px;
}

.payment-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: rgba(248, 241, 234, 0.78);
  list-style: none;
}

.payment-list li {
  position: relative;
  padding-left: 22px;
}

.payment-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 700;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.check-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(248, 241, 234, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.check-row a {
  display: inline-block;
  margin-left: 8px;
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policies {
  background: var(--cream);
}

.waiver {
  background: var(--sand);
}

.waiver-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: start;
}

.waiver-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--cream);
}

.waiver-form h3 {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.waiver-form p {
  margin: 0 0 8px;
  color: rgba(248, 241, 234, 0.78);
  line-height: 1.65;
}

.waiver-form input[type="text"],
.waiver-form input[type="email"],
.waiver-form input[type="date"] {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(248, 241, 234, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  outline: 0;
}

.waiver-form input::placeholder {
  color: rgba(248, 241, 234, 0.64);
}

.choice-group {
  display: grid;
  gap: 12px;
  margin: 4px 0;
  padding: 16px;
  border: 1px solid rgba(248, 241, 234, 0.18);
}

.choice-group legend {
  padding: 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-content {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(13, 36, 64, 0.08);
}

.policy-block + .policy-block {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(13, 36, 64, 0.12);
}

.policy-block h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.policy-block p,
.policy-block li {
  color: var(--navy-soft);
  line-height: 1.7;
}

.policy-block p {
  margin: 0 0 12px;
}

.policy-block ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.policy-closing {
  margin-top: 32px;
  color: var(--navy);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.newsletter input {
  width: 100%;
  border: 1px solid rgba(248, 241, 234, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  outline: 0;
}

.contact-form input,
.contact-form textarea {
  padding: 18px 20px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.newsletter input::placeholder {
  color: rgba(248, 241, 234, 0.64);
}

.contact-form .check-row input,
.waiver-form .check-row input {
  width: 18px;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
}

.waiver-whatsapp-fallback {
  margin-top: 0.75rem;
  width: 100%;
  justify-content: center;
}

.waiver-whatsapp-fallback[hidden] {
  display: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 38px;
  padding: 62px clamp(22px, 7vw, 92px) 28px;
  background: #071a2f;
  color: var(--cream);
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.site-footer h4 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 0 0 9px;
  color: rgba(248, 241, 234, 0.78);
}

.newsletter {
  display: flex;
  gap: 8px;
}

.newsletter input {
  min-width: 0;
  padding: 12px 14px;
}

.newsletter button {
  width: 46px;
  border: 0;
  background: var(--gold);
  color: var(--navy);
  cursor: pointer;
  font-size: 22px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(248, 241, 234, 0.12);
  color: rgba(248, 241, 234, 0.58);
  font-size: 13px;
}

.footer-bottom a {
  display: inline;
  margin: 0;
}

.modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(248, 241, 234, 0.35);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
  }

  .lesson-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 18px;
  }

  .logo img {
    width: 48px;
    height: 48px;
  }

  .logo {
    min-width: 0;
    gap: 9px;
  }

  .logo-copy strong {
    font-size: 20px;
  }

  .logo-copy small {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions .compact {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(13, 36, 64, 0.74), rgba(13, 36, 64, 0.42));
  }

  .features,
  .why-grid,
  .about-story-inner,
  .community,
  .contact,
  .waiver-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .features {
    gap: 34px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .community-image img {
    min-height: 340px;
  }
}

@media (max-width: 620px) {
  .promo-bar {
    font-size: 10px;
    line-height: 1.35;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    text-align: center;
  }

  .hero-buttons,
  .hero-points,
  .newsletter {
    width: 100%;
  }

  .hero-points span {
    width: 100%;
    justify-content: center;
  }

  .lesson-grid,
  .package-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 260px;
  }

  .island-gallery {
    grid-auto-rows: 320px;
  }

  .gallery-grid .tall {
    grid-row: span 1;
  }

  .section,
  .about-story,
  .community,
  .contact {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .video-frame {
    min-height: 360px;
  }
}

/* Visual refresh inspired by the Vida Surf Sal direction */
:root {
  --page: #f5f6f8;
  --ink: #071b34;
  --muted: #657085;
  --line: #e6e9ee;
  --gold: #d19a3d;
  --navy: #0d2a44;
  --white: #ffffff;
}

body {
  background: var(--page);
  color: var(--ink);
}

.promo-bar {
  display: none;
}

.site-header {
  inset: 0 0 auto;
  min-height: 92px;
  padding: 14px clamp(22px, 5vw, 96px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(7, 27, 52, 0.04);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.logo img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
  background: var(--ink);
}

.logo-copy strong,
.footer-brand strong,
.section-head h2,
.about-story h2,
.community h2,
.contact h2,
.price-category h3,
.policy-block h3,
.booking-form h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

.logo-copy strong {
  font-size: clamp(25px, 2vw, 32px);
}

.logo-copy small {
  display: none;
}

.desktop-nav a,
.mobile-nav a {
  color: #515861;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.header-actions {
  gap: 14px;
}

.lang {
  width: 30px;
  height: 30px;
  color: #6b707a;
  border-radius: 999px;
}

.lang.active {
  color: #fff;
  background: var(--gold);
}

.btn {
  letter-spacing: 0;
  text-transform: none;
  font-size: 18px;
}

.btn.compact {
  min-height: 50px;
  padding: 0 28px;
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 16px 34px rgba(209, 154, 61, 0.24);
}

.btn-navy {
  color: #fff;
  background: var(--navy);
}

.hero {
  min-height: 100vh;
  padding-top: 92px;
}

.hero-media {
  filter: saturate(0.96);
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(7, 27, 52, 0.28), rgba(7, 27, 52, 0.7));
}

.hero-content {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.overline {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.hero h1 {
  font-size: clamp(64px, 8.2vw, 132px);
  line-height: 0.9;
  color: #fff;
}

.hero h1 em {
  color: #f4c779;
}

.hero-copy {
  max-width: 820px;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(20px, 2vw, 27px);
}

.hero-buttons {
  justify-content: center;
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(7, 27, 52, 0.22);
}

.about-story {
  background: #fff;
  padding: 0;
}

.about-story-inner {
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 0;
}

.about-story-image img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.about-story-copy {
  align-self: center;
  max-width: 760px;
  padding: clamp(52px, 6vw, 92px);
}

.about-story h2 {
  max-width: 720px;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 0.96;
}

.about-story p:not(.overline) {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.58;
}

.features {
  padding: 112px clamp(24px, 6vw, 120px);
  background: #eef1f3;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  min-height: 344px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
  box-shadow: none;
}

.feature-icon {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border-radius: 18px;
  background: #f7f1e8;
  color: var(--gold);
  font-size: 34px;
}

.feature h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
}

.feature p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.section {
  padding: 112px clamp(24px, 7vw, 132px);
}

.section-head {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(52px, 5vw, 74px);
  line-height: 1;
}

.divider {
  width: 80px;
  height: 2px;
  background: var(--gold);
}

.pricing-tabs {
  display: none;
}

.price-category {
  margin: 76px 0 28px;
  text-align: center;
}

.price-category h3 {
  margin: 0;
  font-size: 34px;
}

.lesson-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(230px, 1fr));
  gap: 26px;
}

.price-grid {
  grid-template-columns: repeat(5, minmax(210px, 1fr));
}

.lesson-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
  overflow: visible;
}

.lesson-card.featured {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 22px 40px rgba(7, 27, 52, 0.16);
}

.lesson-card img {
  display: none;
}

.lesson-card h3 {
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 29px;
  line-height: 1.18;
}

.lesson-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.lesson-card.featured p,
.lesson-card.featured .meta,
.lesson-card.featured .included-list {
  color: rgba(255, 255, 255, 0.76);
}

.lesson-card strong {
  margin-top: 16px;
  color: inherit;
  font-size: 42px;
  line-height: 1;
}

.lesson-card small {
  font-size: 17px;
  color: var(--muted);
}

.lesson-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6f7680;
  font-size: 15px;
}

.included-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 30px;
  padding: 0;
  list-style: none;
  font-size: 18px;
}

.included-list li::before {
  content: "✓";
  display: inline-grid;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.lesson-card .btn {
  width: 100%;
  margin-top: auto;
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 26px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.community {
  background: var(--navy);
  color: #fff;
}

.community-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
}

.community h2 span:last-child {
  color: #f4c779;
}

.contact {
  display: block;
  padding: 112px clamp(24px, 7vw, 132px);
  background: #f7f8fa;
}

.contact .section-head {
  margin-bottom: 64px;
}

.contact h2 {
  font-size: clamp(56px, 5vw, 78px);
}

.contact .section-head p:not(.overline) {
  color: var(--muted);
  font-size: 23px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact-card {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  text-align: center;
}

.contact-card span {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 16px;
  background: #f7f1e8;
  color: var(--gold);
  font-size: 28px;
}

.contact-card strong {
  font-size: 18px;
}

.contact-actions {
  display: grid;
  justify-items: center;
  gap: 16px;
  margin-top: 60px;
}

.btn-whatsapp {
  min-height: 76px;
  padding: 0 48px;
  background: #14ad50;
  color: #fff;
  box-shadow: 0 18px 32px rgba(20, 173, 80, 0.2);
}

.contact-actions p {
  margin: 0;
  color: var(--muted);
}

.booking-modal {
  width: min(880px, calc(100vw - 24px));
  max-height: min(92vh, 820px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(7, 27, 52, 0.34);
}

.booking-modal::backdrop {
  background: rgba(7, 27, 52, 0.72);
}

.booking-form {
  padding: 34px;
  box-shadow: none;
}

.booking-form h2 {
  margin: 0;
  font-size: 40px;
}

.booking-form > p {
  color: var(--muted);
  font-size: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.booking-form label {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid #d8dde5;
  border-radius: 14px;
  background: #fbfcfd;
  color: var(--ink);
}

.contact-form select {
  min-height: 58px;
  padding: 0 18px;
}

.contact-form textarea {
  min-height: 118px;
}

.modal-close {
  top: 18px;
  right: 18px;
  color: #5b626d;
  background: transparent;
}

.policies,
.waiver {
  background: #fff;
}

.policy-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.policy-block {
  margin-bottom: 42px;
}

.policy-block h3 {
  font-size: 30px;
}

.policy-block p,
.policy-block li {
  color: #1d2b42;
  font-size: 20px;
  line-height: 1.6;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 76px clamp(24px, 7vw, 132px) 96px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-brand strong {
  color: #fff;
  font-size: 28px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-style: italic;
}

.site-footer h4 {
  color: #f5f0e7;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 12px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1200px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    inset: 102px 16px auto;
  }

  .price-grid,
  .lesson-grid,
  .package-grid,
  .features,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 14px;
    min-height: 82px;
  }

  .logo {
    min-width: 0;
  }

  .logo img {
    width: 48px;
    height: 48px;
  }

  .logo-copy strong {
    font-size: 24px;
  }

  .header-actions .lang {
    display: none;
  }

  .btn.compact {
    display: none;
  }

  .hero {
    padding-top: 82px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .about-story-inner,
  .price-grid,
  .lesson-grid,
  .package-grid,
  .features,
  .contact-grid,
  .site-footer,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-story-image img {
    min-height: 420px;
  }

  .about-story-copy,
  .section,
  .contact {
    padding: 72px 22px;
  }

  .lesson-card {
    min-height: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* Final color and legal-page polish */
:root {
  --page: #f6f8f7;
  --ink: #07192f;
  --muted: #5f6f82;
  --line: #dde7e9;
  --gold: #c9973e;
  --navy: #09263d;
  --sea: #0d7f8f;
  --foam: #eef6f5;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(9, 38, 61, 0.18), rgba(9, 38, 61, 0.82)),
    linear-gradient(90deg, rgba(9, 38, 61, 0.48), rgba(13, 127, 143, 0.12));
}

.hero h1 em,
.community h2 span:last-child {
  color: #f2c46f;
}

.features,
.contact,
.lessons {
  background: linear-gradient(180deg, #f7f9f8 0%, var(--foam) 100%);
}

.feature,
.lesson-card,
.contact-card {
  border-color: rgba(9, 38, 61, 0.1);
  box-shadow: 0 18px 48px rgba(9, 38, 61, 0.06);
}

.feature-icon,
.contact-card span {
  background: #fbf3e5;
  color: var(--gold);
}

.lesson-card.featured {
  background: linear-gradient(160deg, var(--navy), #0d354d);
}

.btn-gold,
.badge {
  background: linear-gradient(135deg, #d7a64a, var(--gold));
}

.btn-whatsapp {
  background: linear-gradient(135deg, #16b960, #0d9c4d);
}

.legal-page {
  padding-top: 92px;
  background: #fff;
}

.legal-page .section {
  padding-top: 78px;
}

.section-head h1 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 5vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-page .policy-content {
  max-width: 980px;
}

.legal-page .policy-block {
  padding-bottom: 14px;
}

.legal-page .waiver-layout {
  align-items: start;
}

.legal-page .waiver-form {
  position: sticky;
  top: 118px;
}

.contact-form a,
.policy-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .legal-page {
    padding-top: 82px;
  }

  .legal-page .waiver-form {
    position: static;
  }
}

/* Island location section */
.island-location {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: 112px clamp(24px, 7vw, 132px);
  background:
    radial-gradient(circle at 14% 18%, rgba(13, 127, 143, 0.14), transparent 32%),
    linear-gradient(135deg, #f8fbfa 0%, #edf6f5 100%);
}

.location-copy {
  max-width: 620px;
}

.location-copy h2 {
  margin: 12px 0 26px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.location-copy p:not(.overline) {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.58;
}

.location-map {
  position: relative;
}

.map-ocean {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(9, 38, 61, 0.12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(9, 38, 61, 0.92), rgba(13, 127, 143, 0.74)),
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.16), transparent 24%);
  box-shadow: 0 30px 70px rgba(9, 38, 61, 0.16);
}

.map-ocean::before,
.map-ocean::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  pointer-events: none;
}

.map-ocean::before {
  width: 560px;
  height: 560px;
  right: -220px;
  top: -140px;
}

.map-ocean::after {
  width: 360px;
  height: 360px;
  left: -120px;
  bottom: -80px;
}

.cape-verde-label {
  position: absolute;
  top: 30px;
  left: 32px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.sal-map {
  position: relative;
  width: min(58%, 285px);
  z-index: 1;
}

.sal-map svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 32px rgba(0, 0, 0, 0.24));
}

.sal-shape {
  fill: #fbfaf4;
  stroke: rgba(9, 38, 61, 0.2);
  stroke-width: 2.4;
}

.coast-detail {
  fill: none;
  stroke: rgba(9, 38, 61, 0.12);
  stroke-width: 2;
  stroke-linecap: round;
}

.coast-detail.light {
  stroke: rgba(9, 38, 61, 0.08);
}

.sal-road {
  fill: none;
  stroke: rgba(9, 38, 61, 0.48);
  stroke-width: 4.2;
  stroke-linecap: round;
}

.sal-road.secondary {
  stroke: rgba(9, 38, 61, 0.24);
  stroke-width: 2.6;
}

.sal-road.secondary.east {
  stroke-dasharray: 8 7;
}

.town-dot {
  fill: var(--gold);
  opacity: 0.7;
}

.town-dot.north,
.town-dot.middle {
  stroke: #fff;
  stroke-width: 3;
}

.town-dot.santa {
  fill: #0d7f8f;
  stroke: #fff;
  stroke-width: 5;
  opacity: 1;
}

.map-label {
  fill: rgba(9, 38, 61, 0.62);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.map-label.santa-label {
  fill: var(--navy);
  font-size: 13px;
}

.santa-marker {
  position: absolute;
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  white-space: nowrap;
}

.pin-dot {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--navy);
}

.location-caption {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  color: rgba(255, 255, 255, 0.72);
}

.location-caption strong {
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.location-caption span {
  max-width: 300px;
  text-align: right;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .island-location {
    grid-template-columns: 1fr;
  }

  .location-copy {
    max-width: 760px;
  }
}

@media (max-width: 620px) {
  .island-location {
    padding: 76px 22px;
  }

  .map-ocean {
    min-height: 560px;
  }

  .sal-map {
    width: min(74%, 280px);
  }

  .location-caption {
    display: grid;
    justify-items: start;
  }

  .location-caption span {
    text-align: left;
  }
}

/* Feature cards with real imagery */
.feature {
  overflow: hidden;
  align-content: start;
  justify-items: stretch;
  padding: 0;
  gap: 0;
}

.feature-photo {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.feature h3 {
  margin: 30px 30px 12px;
  text-align: center;
}

.feature p {
  margin: 0 30px 34px;
  text-align: center;
}

@media (max-width: 760px) {
  .feature-photo {
    height: 240px;
  }
}

/* Contact readability fix */
.contact h2 {
  color: var(--ink);
}

.contact .section-head .overline {
  color: var(--gold);
}

.contact .section-head p:not(.overline),
.contact-actions p {
  color: var(--muted);
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(9, 38, 61, 0.16);
}

.contact-card strong {
  color: var(--ink) !important;
  font-weight: 700;
  line-height: 1.35;
  font-size: 19px;
  word-break: break-word;
}

.contact-card span {
  color: var(--gold) !important;
}

.contact-card small {
  display: block;
  margin-top: -10px;
  color: var(--gold) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-grid,
.contact-card,
.contact-card * {
  opacity: 1;
  visibility: visible;
}

/* Keep main navigation visible on desktop/tablet */
@media (min-width: 861px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2vw, 34px);
  }

  .desktop-nav a {
    white-space: nowrap;
  }

  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }
}

/* Pixel-matched opening screen: reference canvas 1660 × 947 */
@media (min-width: 861px) {
  .site-header {
    inset: 0 0 auto !important;
    height: 130px !important;
    min-height: 130px !important;
    padding: 20px 65px !important;
    grid-template-columns: auto 1fr auto !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .site-header .logo {
    gap: 24px !important;
  }

  .site-header .logo img {
    width: 88px !important;
    height: 88px !important;
    border-radius: 22px !important;
  }

  .site-header .logo-copy strong {
    font-size: 40px !important;
    line-height: 1 !important;
  }

  .site-header .header-actions {
    gap: 28px !important;
  }

  .site-header .lang {
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    font-size: 20px !important;
    font-weight: 600 !important;
  }

  .site-header .btn.compact {
    width: 252px !important;
    min-width: 252px !important;
    min-height: 74px !important;
    padding: 0 30px !important;
    font-size: 25px !important;
  }

  .site-header .menu-toggle {
    display: block !important;
    width: 60px !important;
    height: 60px !important;
    margin-left: 2px !important;
  }

  .site-header .menu-toggle span {
    width: 39px !important;
    height: 3px !important;
    margin: 7px auto !important;
  }

  #hero.hero {
    width: 100% !important;
    height: calc(100vh - 130px) !important;
    min-height: 817px !important;
    margin-top: 130px !important;
    padding: 0 !important;
  }

  #hero .hero-launch-photo {
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center bottom !important;
  }

  #hero .hero-overlay {
    background: linear-gradient(180deg, rgba(7, 27, 40, 0.12), rgba(7, 27, 40, 0.42)) !important;
  }

  #hero .hero-launch-content {
    position: absolute !important;
    inset: 84px auto auto 50% !important;
    display: flex !important;
    width: 900px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: translateX(-50%) !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  #hero .launch-kicker {
    width: 500px !important;
    margin: 0 0 14px !important;
    gap: 28px !important;
    font-size: 22px !important;
    line-height: 28px !important;
  }

  #hero .launch-kicker span {
    width: 72px !important;
  }

  #hero .hero-launch-content h1 {
    margin: 0 !important;
    font-size: 86px !important;
    line-height: 0.98 !important;
  }

  #hero .launch-divider {
    width: 130px !important;
    margin: 22px 0 16px !important;
  }

  #hero .hero-copy {
    margin: 0 !important;
    font-size: 25px !important;
    line-height: 1.25 !important;
  }

  #hero .launch-services {
    width: 760px !important;
    margin: 42px auto 45px !important;
    gap: 20px !important;
  }

  #hero .launch-service {
    gap: 7px !important;
    font-size: 17px !important;
  }

  #hero .launch-service svg {
    width: 53px !important;
    height: 53px !important;
  }

  #hero .launch-cta {
    width: 390px !important;
    min-width: 390px !important;
    min-height: 67px !important;
    padding: 0 32px !important;
    font-size: 20px !important;
  }

  #hero .launch-socials {
    margin-top: 20px !important;
    gap: 25px !important;
  }

  #hero .launch-socials svg {
    width: 34px !important;
    height: 34px !important;
  }

  #hero .launch-email {
    margin-top: 15px !important;
    font-size: 20px !important;
  }

  #hero .board-mark {
    left: 76.4% !important;
    top: 37.5% !important;
    font-size: 42px !important;
  }
}

@media (min-width: 861px) and (max-height: 946px) {
  #hero.hero {
    min-height: 700px !important;
  }

  #hero .hero-launch-content {
    top: 50% !important;
    transform: translate(-50%, -50%) scale(0.86) !important;
  }
}

/* Exact desktop header language controls from the supplied reference */
@media (min-width: 1400px) {
  .site-header {
    padding-right: 145px !important;
  }

  .site-header .header-actions {
    width: 720px !important;
    justify-content: flex-start !important;
    gap: 28px !important;
  }

  .site-header .lang {
    flex: 0 0 52px !important;
    border: 0 !important;
    color: #5b5962 !important;
    background: transparent !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease !important;
  }

  .site-header .lang:hover {
    color: var(--navy) !important;
    transform: translateY(-1px) !important;
  }

  .site-header .lang.active {
    color: #fff !important;
    background: var(--gold) !important;
    box-shadow: 0 8px 20px rgba(215, 161, 59, 0.22) !important;
  }

  .site-header .btn.compact {
    margin-left: 60px !important;
  }

  .site-header .menu-toggle {
    flex: 0 0 50px !important;
    width: 50px !important;
    height: 50px !important;
  }
}

@media (min-width: 861px) and (max-width: 1399px) {
  .site-header {
    padding-inline: 28px !important;
  }

  .site-header .header-actions {
    width: auto !important;
    gap: 10px !important;
  }

  .site-header .lang {
    width: 42px !important;
    height: 42px !important;
    font-size: 16px !important;
  }

  .site-header .btn.compact {
    width: auto !important;
    min-width: 190px !important;
    min-height: 60px !important;
    font-size: 19px !important;
  }
}

/* Header correction based on the user's real browser screenshot */
@media (min-width: 1400px) {
  .site-header {
    height: 118px !important;
    min-height: 118px !important;
    padding: 15px 9vw 15px 52px !important;
  }

  .site-header .logo {
    gap: 21px !important;
  }

  .site-header .logo img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 20px !important;
  }

  .site-header .logo-copy strong {
    font-size: 36px !important;
  }

  .site-header .header-actions {
    position: absolute !important;
    top: 50% !important;
    right: 9vw !important;
    width: 710px !important;
    transform: translateY(-50%) scale(0.9) !important;
    transform-origin: right center !important;
  }

  #hero.hero {
    height: calc(100vh - 118px) !important;
    min-height: 817px !important;
    margin-top: 118px !important;
  }
}

/* Stronger selling sections */
.why-us {
  background:
    radial-gradient(circle at 18% 0%, rgba(13, 127, 143, 0.12), transparent 34%),
    linear-gradient(180deg, #fbfaf7 0%, #eef6f5 100%);
}

.why-us .section-head h2 {
  max-width: 980px;
  margin-inline: auto;
  color: var(--ink);
}

.why-grid {
  gap: 24px;
}

.why-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  padding: 34px 34px 32px;
  border: 1px solid rgba(9, 38, 61, 0.1);
  border-top: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 54px rgba(9, 38, 61, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.why-card::before {
  content: "";
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), #f0c574);
  color: #fff;
  font-size: 28px;
  box-shadow: 0 16px 28px rgba(201, 151, 62, 0.24);
}

.why-card:nth-child(1)::before { content: "01"; }
.why-card:nth-child(2)::before { content: "02"; }
.why-card:nth-child(3)::before { content: "03"; }
.why-card:nth-child(4)::before { content: "04"; }
.why-card:nth-child(5)::before { content: "05"; }
.why-card:nth-child(6)::before { content: "06"; }

.why-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(13, 127, 143, 0.08);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 151, 62, 0.36);
  box-shadow: 0 30px 70px rgba(9, 38, 61, 0.14);
}

.why-card strong {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.why-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.lessons {
  background:
    linear-gradient(180deg, #f7f9f8 0%, #fff 42%, #eef6f5 100%);
}

.lesson-grid,
.package-grid {
  align-items: stretch;
}

.lesson-card {
  isolation: isolate;
  overflow: hidden;
  min-height: 540px;
  padding: 0;
  border: 1px solid rgba(9, 38, 61, 0.12);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(9, 38, 61, 0.08);
}

.lesson-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 9px;
  background: linear-gradient(90deg, var(--gold), #f1c66d, var(--sea));
}

.price-grid .lesson-card img {
  display: block;
  width: 100%;
  height: 190px;
  margin: 0 0 24px;
  object-fit: cover;
}

.package-card {
  padding-top: 30px;
}

.lesson-card h3 {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  min-height: 0;
  margin: 0 28px 16px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: left;
  text-transform: none;
}

.offer-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--gold), #efc66d);
  color: #fff;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 24px rgba(201, 151, 62, 0.22);
}

.lesson-card .meta {
  justify-content: flex-start;
  margin: 0 28px 18px;
  color: #6d7788;
  font-size: 15px;
}

.lesson-card .meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f6f7;
}

.lesson-card strong {
  margin: 0 28px 20px;
  color: var(--ink);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 46px;
  font-weight: 800;
  text-align: left;
}

.lesson-card small {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.lesson-card p {
  margin: 0 28px 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.lesson-card .offer-details {
  margin-top: -8px;
  font-size: 15px;
  line-height: 1.55;
}

.included-list {
  margin: 0 28px 30px;
  color: var(--ink);
  font-size: 17px;
}

.lesson-card .btn {
  width: auto;
  margin: auto 28px 28px;
  min-height: 56px;
}

.lesson-card.featured {
  background: linear-gradient(160deg, var(--navy), #0e3a54);
  color: #fff;
  transform: translateY(-10px);
}

.lesson-card.featured h3,
.lesson-card.featured strong,
.lesson-card.featured p,
.lesson-card.featured .included-list,
.lesson-card.featured small {
  color: #fff;
}

.lesson-card.featured .meta span {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
}

.lesson-card.featured .offer-icon {
  background: rgba(255, 255, 255, 0.14);
}

.lesson-card.featured .btn {
  background: linear-gradient(135deg, #d7a64a, var(--gold));
  color: #fff;
}

@media (max-width: 1200px) {
  .price-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .package-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }
}

@media (max-width: 680px) {
  .why-card {
    min-height: auto;
  }

  .price-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .lesson-card.featured {
    transform: none;
  }
}

/* Footer readability fix */
.site-footer {
  background: var(--navy) !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

.site-footer h4 {
  color: #f4c46f !important;
}

.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.84) !important;
}

.site-footer p {
  font-size: 17px;
  line-height: 1.75;
}

.footer-brand strong {
  color: #fff !important;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.74) !important;
}

/* Instagram and WhatsApp booking actions */
.btn-instagram {
  min-height: 76px;
  padding: 0 48px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d 48%, #fcb045);
  color: #fff;
  box-shadow: 0 18px 34px rgba(131, 58, 180, 0.22);
}

.btn-whatsapp {
  border-color: #128c4a;
  background: #16a957;
  color: #fff;
  box-shadow: 0 18px 34px rgba(22, 169, 87, 0.24);
}

.btn-whatsapp:hover {
  background: #118846;
  color: #fff;
}

.contact-instagram {
  margin: 0;
}

.booking-whatsapp {
  width: 100%;
  margin-top: 12px;
}

a.contact-card {
  text-decoration: none;
}

.community .community-cta {
  border-color: rgba(244, 196, 111, 0.9);
  background: rgba(244, 196, 111, 0.12);
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.community .community-cta:hover {
  background: linear-gradient(135deg, #d7a64a, var(--gold));
  color: #fff !important;
}

/* Consistent sentence case across navigation, cards, buttons and legal pages */
body,
body * {
  letter-spacing: 0 !important;
  text-transform: none !important;
}

/* Header logo sizing */
.site-header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.site-header .logo img {
  display: block;
  width: 42px;
  height: auto !important;
  max-width: 100%;
  object-fit: contain;
}

.site-header .logo-copy {
  display: block;
}

@media (max-width: 768px) {
  .site-header .logo-copy {
    display: block;
  }

  .site-header .logo img {
    width: 34px;
  }
}

/* Live opening layout based on the supplied Vida Surf Sal preview */
.site-header {
  min-height: 130px;
  padding: 18px clamp(28px, 4vw, 66px);
}

.site-header .logo img {
  width: 88px;
  border-radius: 22px;
}

.site-header .logo-copy strong {
  font-size: clamp(30px, 2.35vw, 40px);
}

.desktop-nav {
  display: none !important;
}

.menu-toggle {
  display: block !important;
  width: 50px;
  height: 50px;
}

.menu-toggle span {
  width: 36px;
  height: 3px;
  margin: 7px auto;
}

.site-header .header-actions {
  gap: clamp(10px, 2vw, 30px);
}

.site-header .lang {
  width: 48px;
  height: 48px;
  font-size: 18px;
}

.site-header .lang.active {
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
}

.site-header .btn.compact {
  min-height: 70px;
  padding-inline: clamp(30px, 3vw, 52px);
  border-radius: 999px;
  font-size: clamp(17px, 1.5vw, 24px);
}

.hero {
  min-height: 100vh;
  padding-top: 130px;
  background: #0b2638;
}

.hero-launch-photo {
  top: 0;
  height: 100%;
  object-position: center center;
}

.hero .hero-overlay {
  display: block;
  background:
    linear-gradient(180deg, rgba(6, 26, 39, 0.12), rgba(6, 26, 39, 0.54)),
    linear-gradient(90deg, rgba(6, 26, 39, 0.08), rgba(6, 26, 39, 0.18));
}

.hero-launch-content {
  display: flex;
  width: min(920px, calc(100% - 40px));
  max-width: 920px;
  min-height: calc(100vh - 130px);
  margin: 0 auto;
  padding: clamp(54px, 7vh, 82px) 0 32px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.launch-kicker {
  display: flex;
  width: min(520px, 90%);
  margin: 0 0 14px;
  align-items: center;
  gap: 28px;
  justify-content: center;
  color: #fff;
  font-size: clamp(16px, 1.5vw, 23px);
  font-weight: 500;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
}

.launch-kicker span {
  width: 74px;
  height: 2px;
  background: var(--gold);
}

.launch-kicker strong {
  font: inherit;
  font-weight: 500;
  white-space: nowrap;
}

.hero .hero-launch-content h1 {
  color: #fff;
  font-size: clamp(52px, 5.4vw, 88px);
  line-height: 0.98;
  text-shadow: 0 3px 24px rgba(5, 24, 36, 0.28);
}

.launch-divider {
  width: 130px;
  height: 3px;
  margin: 22px 0 14px;
  background: var(--gold);
}

.hero .hero-launch-content .hero-copy {
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.28;
  text-shadow: 0 2px 14px rgba(5, 24, 36, 0.35);
}

.launch-services {
  display: grid;
  width: min(760px, 100%);
  margin: clamp(28px, 4vh, 46px) auto 30px;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.launch-service {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: #fff;
  font-size: clamp(13px, 1.15vw, 18px);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(5, 24, 36, 0.5);
}

.launch-service span {
  text-transform: uppercase !important;
}

.launch-service svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.launch-cta {
  min-width: min(390px, 90%);
  min-height: 64px;
  border-radius: 999px;
  font-size: clamp(16px, 1.35vw, 21px);
  text-transform: uppercase !important;
}

.launch-socials {
  display: flex;
  margin-top: 18px;
  gap: 24px;
}

.launch-socials a {
  color: #fff;
  line-height: 0;
}

.launch-socials svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.7;
}

.launch-socials .social-dot {
  fill: currentColor;
  stroke: none;
}

.launch-socials .social-fill {
  fill: currentColor;
  stroke: none;
}

.launch-email {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(15px, 1.25vw, 20px);
  text-shadow: 0 2px 10px rgba(5, 24, 36, 0.5);
}

.board-mark {
  position: absolute;
  z-index: 2;
  left: 76.2%;
  top: 45%;
  color: #152432;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.5vw, 43px);
  font-weight: 700;
  letter-spacing: -0.24em !important;
  transform: rotate(-4deg);
}

.board-mark em {
  font-size: 0.72em;
}

@media (min-width: 1200px) {
  .hero-launch-content {
    position: absolute;
    inset: 130px 0 0;
    width: min(920px, 56vw);
    min-height: 0;
    padding: clamp(78px, 9.2vh, 96px) 0 24px;
    justify-content: flex-start;
  }

  .launch-kicker {
    margin-bottom: 12px;
  }

  .hero .hero-launch-content h1 {
    font-size: clamp(68px, 5.25vw, 88px);
    line-height: 0.98;
  }

  .launch-divider {
    margin: 22px 0 16px;
  }

  .launch-services {
    margin: clamp(30px, 4.2vh, 42px) auto 32px;
  }

  .launch-cta {
    min-width: 390px;
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 82px;
    padding: 12px 18px;
  }

  .site-header .logo img {
    width: 52px;
    border-radius: 14px;
  }

  .site-header .logo-copy strong {
    font-size: clamp(20px, 5.5vw, 28px);
  }

  .site-header .header-actions {
    gap: 4px;
  }

  .site-header .lang {
    display: none;
  }

  .site-header .btn.compact {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .menu-toggle span {
    width: 28px;
  }

  .hero {
    min-height: 780px;
    padding-top: 82px;
  }

  .hero-launch-photo {
    top: 0;
    height: 100%;
    object-fit: cover;
    object-position: 64% center;
  }

  .hero-launch-content {
    width: calc(100% - 28px);
    min-height: 698px;
    padding: 42px 0 24px;
  }

  .launch-kicker {
    gap: 12px;
    font-size: 13px;
  }

  .launch-kicker span {
    width: 34px;
  }

  .hero .hero-launch-content h1 {
    font-size: clamp(43px, 13vw, 66px);
  }

  .launch-services {
    width: min(430px, 100%);
    margin: 28px auto 26px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
  }

  .launch-service svg {
    width: 44px;
    height: 44px;
  }

  .launch-cta {
    min-height: 56px;
  }

  .launch-socials svg {
    width: 30px;
    height: 30px;
  }

  .board-mark {
    display: none;
  }
}

/* Final responsive alignment and text-safety pass */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
video,
svg {
  max-width: 100%;
}

.site-header > *,
.header-actions,
.hero-launch-content,
.section-head,
.about-grid > *,
.why-grid > *,
.lesson-grid > *,
.package-grid > *,
.contact-grid > *,
.footer-grid > * {
  min-width: 0;
}

.logo-copy,
.hero-launch-content,
.section-head,
.why-card,
.lesson-card,
.contact-card,
.site-footer {
  overflow-wrap: anywhere;
}

.why-grid,
.lesson-grid,
.package-grid,
.contact-grid {
  align-items: stretch;
}

.why-card,
.lesson-card {
  height: 100%;
}

.why-card strong {
  display: block;
  line-height: 1.3;
}

.lesson-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
}

.lesson-card h3 {
  grid-template-columns: 48px minmax(0, 1fr);
  overflow-wrap: anywhere;
}

.lesson-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lesson-card .meta span {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.lesson-card strong,
.lesson-card small,
.lesson-card p,
.included-list,
.lesson-card .btn {
  max-width: calc(100% - 56px);
}

.lesson-card strong {
  line-height: 1.05;
}

.lesson-card .btn,
.btn {
  height: auto;
  white-space: normal;
  line-height: 1.25;
  text-align: center;
}

.lesson-card .btn {
  width: calc(100% - 56px);
  padding-block: 14px;
}

.included-list li {
  overflow-wrap: anywhere;
}

.contact-card,
.footer-grid,
.footer-bottom {
  overflow-wrap: anywhere;
}

@media (min-width: 681px) and (max-width: 1200px) {
  .lesson-card h3,
  .lesson-card .meta,
  .lesson-card strong,
  .lesson-card p,
  .included-list {
    margin-inline: 22px;
  }

  .lesson-card strong,
  .lesson-card small,
  .lesson-card p,
  .included-list,
  .lesson-card .btn {
    max-width: calc(100% - 44px);
  }

  .lesson-card .btn {
    width: calc(100% - 44px);
    margin-inline: 22px;
  }
}

@media (max-width: 680px) {
  .why-card {
    padding: 28px 24px;
  }

  .lesson-card h3,
  .lesson-card .meta,
  .lesson-card strong,
  .lesson-card p,
  .included-list {
    margin-inline: 20px;
  }

  .lesson-card h3 {
    grid-template-columns: 44px minmax(0, 1fr);
    font-size: 20px;
  }

  .offer-icon {
    width: 44px;
    height: 44px;
  }

  .lesson-card strong {
    font-size: clamp(36px, 12vw, 46px);
  }

  .lesson-card strong,
  .lesson-card small,
  .lesson-card p,
  .included-list,
  .lesson-card .btn {
    max-width: calc(100% - 40px);
  }

  .lesson-card .btn {
    width: calc(100% - 40px);
    margin-inline: 20px;
  }

  .launch-kicker {
    width: 100%;
  }

  .launch-kicker strong {
    white-space: normal;
  }

  .launch-email {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
}

/* Mobile language selector */
.mobile-language-switcher {
  display: none;
}

@media (max-width: 860px) {
  .mobile-nav {
    max-height: calc(100dvh - 98px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .mobile-language-switcher {
    display: grid;
    padding-top: 18px;
    border-top: 1px solid rgba(9, 38, 61, 0.12);
    gap: 12px;
  }

  .mobile-language-switcher > span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
  }

  .mobile-language-switcher > div {
    display: grid;
    grid-template-columns: repeat(4, minmax(48px, 1fr));
    gap: 10px;
  }

  .mobile-language-switcher .lang {
    display: grid !important;
    width: 100% !important;
    height: 48px !important;
    padding: 0 !important;
    place-items: center;
    border: 1px solid rgba(9, 38, 61, 0.14) !important;
    border-radius: 12px !important;
    background: #f4f7f7 !important;
    color: var(--navy) !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    cursor: pointer;
  }

  .mobile-language-switcher .lang.active {
    border-color: var(--gold) !important;
    background: var(--gold) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(201, 151, 62, 0.22);
  }
}

/* Pricing grids: keep every card and badge fully inside the viewport */
.lessons.section {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.price-grid,
.package-grid {
  width: min(100%, 1440px);
  max-width: 100%;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-card.featured {
  padding-top: 64px;
  transform: none;
}

.package-card .badge {
  top: 14px;
  z-index: 3;
  max-width: calc(100% - 32px);
  padding: 7px 20px;
  overflow-wrap: anywhere;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 1100px) {
  .price-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .price-grid,
  .package-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Banner cookie e nota "ultimo aggiornamento" nelle pagine legali */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--navy, #0d2440);
  color: var(--white, #fffdf9);
  box-shadow: 0 18px 40px rgba(13, 36, 64, 0.28);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  flex: 1 1 260px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: inherit;
  opacity: 0.92;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.cookie-banner-actions a {
  font-size: 13px;
  color: var(--gold, #d4a247);
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-banner .btn.compact {
  padding: 8px 18px;
  font-size: 13px;
  white-space: nowrap;
}

.legal-updated {
  font-size: 13px;
  opacity: 0.65;
  margin-top: -4px;
}

@media (max-width: 560px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner-actions {
    justify-content: center;
  }
}
