:root {
  --cream: #faf7f2;
  --clay: #ede5d8;
  --clay-2: #d4c5b0;
  --gold: #bf9a4e;
  --gold-2: #d8b869;
  --navy: #1b2a4a;
  --night: #07111f;
  --aqua: #2bbdb4;
  --terra: #c4713a;
  --ink: #1a1a2e;
  --muted: #60616e;
  --line: rgba(27, 42, 74, .13);
  --fd: "Cormorant Garamond", Georgia, serif;
  --fb: "Jost", system-ui, sans-serif;
  --max: 1300px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--fb);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 4rem)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 1.15rem 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  padding: .62rem 0;
  background: rgba(27, 42, 74, .96);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(0,0,0,.2);
}
.hdr {
  width: min(var(--max), calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.2rem;
  align-items: center;
}
.brand { display: flex; align-items: center; gap: .75rem; min-width: 0; }
.brand img { width: 156px; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,.24)); }
.brand strong {
  display: block;
  color: #fff;
  font-family: var(--fd);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.brand small {
  display: block;
  color: var(--gold);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.main-nav { display: flex; justify-content: center; gap: .2rem; flex-wrap: wrap; align-items: center; }
.main-nav a,
.nav-trigger {
  padding: .45rem .55rem;
  border-radius: 4px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.76);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
  cursor: pointer;
}
.main-nav a:hover,
.main-nav a.active,
.nav-group.active > .nav-trigger,
.nav-trigger:hover { color: var(--gold-2); background: rgba(191,154,78,.1); }
.nav-group {
  position: relative;
}
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.nav-trigger span {
  color: var(--gold);
  font-size: .75rem;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + .7rem);
  left: 50%;
  min-width: 230px;
  display: none;
  transform: translateX(-50%);
  padding: .55rem;
  border: 1px solid rgba(191,154,78,.26);
  border-radius: 10px;
  background: rgba(27,42,74,.98);
  box-shadow: 0 20px 54px rgba(0,0,0,.28);
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -.7rem;
  height: .7rem;
}
.nav-group:hover .nav-dropdown,
.nav-group.open .nav-dropdown {
  display: grid;
  gap: .15rem;
}
.nav-dropdown a {
  display: block;
  padding: .7rem .8rem;
  border-radius: 6px;
  letter-spacing: .08em;
}
.hdr-right { display: flex; align-items: center; gap: .8rem; }
.lang-menu { position: relative; }
.lang-trigger {
  min-height: 35px;
  padding: .35rem .7rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  cursor: pointer;
}
.lang-panel {
  position: absolute;
  top: calc(100% + .55rem);
  right: 0;
  display: none;
  min-width: 150px;
  overflow: hidden;
  border: 1px solid rgba(191,154,78,.28);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.lang-menu.open .lang-panel { display: block; }
.lang-panel a {
  display: block;
  padding: .62rem .9rem;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
}
.lang-panel a:hover, .lang-panel a.active { color: var(--gold); background: rgba(191,154,78,.12); }
.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 4px;
  background: rgba(255,255,255,.08);
}
.menu-btn span { display: block; width: 18px; height: 2px; margin: 4px auto; background: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .82rem 1.55rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 38px; padding: .55rem 1rem; }
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 12px 34px rgba(191,154,78,.28); }
.btn-gold:hover { background: var(--gold-2); }
.btn-outline { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(191,154,78,.08); }
.btn-text { color: rgba(255,255,255,.7); background: transparent; }
.btn-text:hover { color: #fff; }
.btn-ink { background: var(--navy); color: #fff; }
.btn-wa { background: #25d366; color: white; }
.cta-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.cta-row.center { justify-content: center; }

.hero-home {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: 7rem max(2rem, calc((100vw - var(--max)) / 2 + 2rem)) 5rem;
  isolation: isolate;
  overflow: hidden;
  background: var(--night);
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -4;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,17,31,.9), rgba(7,17,31,.56) 48%, rgba(7,17,31,.28)),
    linear-gradient(0deg, rgba(7,17,31,.74), transparent 42%),
    radial-gradient(ellipse 65% 80% at 76% 30%, rgba(43,189,180,.16), transparent 64%),
    repeating-linear-gradient(45deg, rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px, transparent 1px, transparent 10px);
  z-index: -3;
}
.hero-watermark {
  position: absolute;
  right: clamp(1rem, 7vw, 6rem);
  bottom: clamp(.5rem, 4vw, 3rem);
  width: min(34vw, 430px);
  opacity: .14;
  z-index: -2;
  filter: grayscale(.08) drop-shadow(0 28px 60px rgba(0,0,0,.32));
  pointer-events: none;
}
.hero-content { max-width: 1080px; color: white; }
.location-line {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.35rem;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.location-line::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.hero-eyebrow {
  margin: 0 0 .45rem;
  color: rgba(255,255,255,.54);
  font-family: var(--fd);
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  letter-spacing: .32em;
  text-transform: uppercase;
}
.hero-content h1 {
  margin: 0;
  color: #fff;
  font-family: var(--fd);
  max-width: 920px;
  font-size: clamp(2.35rem, 4.25vw, 4.65rem);
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: 0;
  white-space: normal;
}
.hero-content h1 em { color: var(--gold-2); font-style: italic; }
.hero-slogan {
  margin: 1.1rem 0 1.5rem;
  color: var(--aqua);
  font-size: clamp(.72rem, 1.3vw, .88rem);
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.hero-desc {
  max-width: 620px;
  margin: 0 0 2.2rem;
  color: rgba(255,255,255,.68);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stats strong {
  display: block;
  color: var(--gold);
  font-family: var(--fd);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}
.hero-stats span {
  display: block;
  margin-top: .25rem;
  color: rgba(255,255,255,.45);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-media { position: relative; min-height: 420px; }
.hero-logo {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: clamp(1rem, 5vw, 4rem);
  width: min(340px, 34vw);
  transform: translateY(-50%);
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.38));
}
.video-badge {
  align-self: stretch;
}
.video-note {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: 4rem;
  width: min(320px, 34vw);
  padding: 1rem 1.15rem;
  border: 1px solid rgba(191,154,78,.28);
  border-radius: 10px;
  background: rgba(7,17,31,.58);
  backdrop-filter: blur(14px);
}
.video-note strong {
  display: block;
  color: var(--gold);
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}
.video-note span {
  color: rgba(255,255,255,.64);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.media-card {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card.primary { inset: 7rem 0 0 8%; }
.media-card.secondary { left: -2rem; bottom: 2rem; width: 45%; height: 250px; }

.strip { background: var(--navy); }
.strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.strip a {
  min-height: 98px;
  padding: 1.35rem .8rem;
  display: grid;
  place-items: center;
  gap: .25rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .2s ease;
}
.strip a:hover { background: rgba(191,154,78,.09); }
.strip strong {
  color: var(--gold);
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.strip span {
  color: rgba(255,255,255,.64);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section.dark { background: var(--navy); color: white; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .72rem;
  margin-bottom: .9rem;
  color: var(--gold);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-label::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.section-label.aqua { color: var(--aqua); }
h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--fd);
  font-size: clamp(2.3rem, 4.4vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
}
.dark h2, .booking-cta h2 { color: #fff; }
h3 {
  margin: 0 0 .55rem;
  color: var(--navy);
  font-family: var(--fd);
  font-size: 1.45rem;
  line-height: 1.15;
}
.section-copy p, .center-head p, .editorial p {
  max-width: 610px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.9;
}
.dark .section-copy p, .dark .center-head p { color: rgba(255,255,255,.64); }
.why-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.why-card {
  min-height: 220px;
  padding: 1.55rem;
  border: 1px solid var(--clay);
  border-radius: 14px;
  background: #fff;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.why-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 18px 48px rgba(27,42,74,.11); }
.why-card span {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--gold);
  font-family: var(--fd);
  font-size: 2rem;
  line-height: 1;
}
.why-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.kpis { display: flex; gap: 2rem; margin: 2rem 0; }
.kpis strong { display: block; color: var(--gold); font-family: var(--fd); font-size: 2.4rem; font-weight: 300; line-height: 1; }
.kpis span { color: var(--muted); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }

.clay-heritage {
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(191,154,78,.1), transparent 60%),
    linear-gradient(180deg, #fff, var(--cream));
}
.heritage-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.heritage-note {
  margin: 1.4rem 0 2rem;
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  background: var(--clay);
  color: var(--navy) !important;
  font-weight: 500 !important;
}
.heritage-timeline {
  display: grid;
  gap: .9rem;
  counter-reset: heritage;
}
.heritage-card {
  position: relative;
  padding: 1.25rem 1.35rem 1.25rem 5.2rem;
  border: 1px solid var(--clay);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 36px rgba(27,42,74,.06);
}
.heritage-card span {
  position: absolute;
  top: 1.15rem;
  left: 1.2rem;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(191,154,78,.36);
  background: var(--cream);
  color: var(--gold);
  font-family: var(--fd);
  font-size: 1.45rem;
  line-height: 1;
}
.heritage-card h3 {
  margin-bottom: .35rem;
}
.heritage-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature-photo {
  margin: 0;
  overflow: hidden;
  min-height: 480px;
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(0,0,0,.22);
}
.feature-photo img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.feature-list {
  margin: 1.4rem 0 2rem;
  padding: 0;
  list-style: none;
}
.feature-list li {
  margin: .65rem 0;
  color: rgba(255,255,255,.68);
}
.section:not(.dark) .feature-list li { color: var(--muted); }
.feature-list li::before { content: "✓"; color: var(--aqua); margin-right: .6rem; }
.spa-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  margin-bottom: 5rem;
}
.service-card {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--clay-2);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 42px rgba(10, 24, 52, .07);
}
.service-card span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-card h3 { margin: .65rem 0; color: var(--navy); font-family: var(--fd); font-size: 1.8rem; }
.service-card p { color: var(--muted); }
.info-band { padding-top: 0; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.activities { background: var(--clay); }
.center-head {
  max-width: 680px;
  margin: 0 auto 3rem;
  text-align: center;
}
.center-head .section-label { justify-content: center; }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.activity-card, .activity-wide {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 16px;
  background: white;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.activity-card:hover, .activity-wide:hover { transform: translateY(-7px); border-color: var(--gold); box-shadow: 0 22px 54px rgba(27,42,74,.15); }
.activity-image {
  position: relative;
  height: 225px;
  overflow: hidden;
}
.activity-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.activity-card:hover img, .activity-wide:hover img { transform: scale(1.06); }
.activity-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,17,31,.02), rgba(7,17,31,.32));
}
.activity-image span {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: .28rem .72rem;
  border-radius: 999px;
  background: rgba(27,42,74,.88);
  color: var(--gold);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.activity-body { padding: 1.45rem; display: flex; flex: 1; flex-direction: column; }
.activity-body p { color: var(--muted); font-size: .88rem; line-height: 1.75; }
.activity-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--clay);
}
.activity-foot b {
  display: inline-flex;
  margin: .15rem .3rem .15rem 0;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: var(--clay);
  color: var(--muted);
  font-size: .62rem;
}
.activity-foot i {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  font-style: normal;
}
.activity-list { display: grid; gap: 1.1rem; }
.activity-wide {
  display: grid;
  grid-template-columns: 360px 1fr;
}
.activity-wide .activity-image { height: 100%; min-height: 270px; }

.location-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.map-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--clay-2);
  border-radius: 16px;
  background: var(--navy);
  box-shadow: 0 24px 60px rgba(10, 24, 52, .18);
}
.map-card img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: block;
  object-fit: cover;
}
.distance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin: 1.6rem 0;
}
.distance-grid div {
  display: flex;
  justify-content: space-between;
  padding: .72rem .9rem;
  border-radius: 8px;
  background: var(--clay);
}
.distance-grid span { color: var(--navy); font-weight: 700; }
.distance-grid b { color: var(--gold); }

.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: .8rem;
}
.gallery-grid.full { grid-auto-rows: 290px; }
.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: var(--clay);
}
.gallery-grid figure:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.gallery-grid figcaption {
  position: absolute;
  inset: auto .8rem .8rem;
  padding: .45rem .7rem;
  border-radius: 4px;
  background: rgba(7,17,31,.72);
  color: white;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.testimonials { background: var(--navy); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-grid figure {
  margin: 0;
  padding: 1.8rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.045);
}
.stars { color: var(--gold); letter-spacing: .15em; margin-bottom: 1rem; }
blockquote {
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,.78);
  font-family: var(--fd);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.55;
}
figcaption { color: rgba(255,255,255,.48); font-size: .8rem; }

.booking-cta {
  padding: clamp(5rem, 9vw, 8rem) 0;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(43,189,180,.1), transparent 62%),
    linear-gradient(135deg, #1b2a4a, #070d19);
  color: white;
}
.booking-inner { display: grid; justify-items: center; }
.booking-inner p {
  max-width: 590px;
  margin: 0 0 2rem;
  color: rgba(255,255,255,.64);
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.6rem;
  margin-top: 2.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.trust-row span { color: rgba(255,255,255,.46); font-size: .74rem; font-weight: 700; }
.trust-row span::before { content: "✓"; color: var(--aqua); margin-right: .35rem; }

.sub-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--night);
}
.sub-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,17,31,.85), rgba(7,17,31,.4) 55%, rgba(7,17,31,.2)), linear-gradient(0deg, rgba(7,17,31,.75), transparent 45%);
}
.sub-hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 0 5rem;
  color: white;
}
.sub-hero h1 {
  max-width: 820px;
  margin: 0 0 1rem;
  font-family: var(--fd);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
}
.sub-hero p:not(.location-line) {
  max-width: 680px;
  color: rgba(255,255,255,.72);
}
.breadcrumbs {
  display: flex;
  gap: .5rem;
  margin-bottom: 1.3rem;
  color: rgba(255,255,255,.58);
  font-size: .78rem;
}
.breadcrumbs a { color: var(--gold); }

.form-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}
.package-sales {
  background: linear-gradient(180deg, #fbf8f1 0%, #fff 100%);
}
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  margin-top: 2rem;
  align-items: stretch;
}
.package-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 1rem;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--clay);
  border-radius: 12px;
  background: white;
  box-shadow: 0 18px 48px rgba(27,42,74,.08);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.package-card:hover, .package-card.selected {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 22px 54px rgba(27,42,74,.13);
}
.package-badge {
  justify-self: start;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: .42rem .62rem;
  border: 1px solid rgba(191,154,78,.34);
  border-radius: 999px;
  background: #fbf8f1;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.package-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}
.package-card p { margin: 0; color: var(--muted); line-height: 1.65; }
.package-price {
  display: flex;
  align-items: end;
  gap: .75rem;
  padding-top: .4rem;
  border-top: 1px solid var(--clay);
}
.package-price del {
  color: #8b8790;
  font-size: 1rem;
  font-weight: 800;
}
.package-price strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: .92;
}
.package-card .btn { width: 100%; justify-content: center; }
.order-form {
  max-width: none;
  margin: 0;
}
.sales-flow {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 2rem;
  align-items: start;
  margin-top: 2rem;
}
.sales-copy {
  position: sticky;
  top: 132px;
}
.order-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(130px, auto);
  gap: .9rem;
  align-items: center;
  padding: .92rem 1rem;
  border: 1px solid rgba(191,154,78,.36);
  border-radius: 12px;
  background: linear-gradient(180deg, #fffaf1, #fbf8f1);
}
.summary-package, .summary-quantity, .summary-total {
  display: grid;
  gap: .28rem;
}
.order-summary span {
  color: var(--navy);
  opacity: .68;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.summary-package strong {
  color: var(--navy);
  font-size: .98rem;
  line-height: 1.35;
}
.summary-total {
  justify-self: end;
  text-align: right;
}
.summary-total strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.summary-quantity select {
  width: 92px;
  height: 42px;
  padding: 0 .9rem;
  border: 1px solid rgba(27,42,74,.16);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(27,42,74,.06);
}
.transfer-check {
  min-height: 76px;
  padding: .78rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf8f1;
  cursor: pointer;
}
.transfer-copy {
  display: grid;
  gap: .2rem;
}
.transfer-copy strong {
  color: var(--navy);
  font-size: .88rem;
  font-weight: 900;
}
.transfer-copy small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.35;
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  padding: 1.1rem;
  border: 1px solid var(--clay);
  border-radius: 16px;
  background: white;
  box-shadow: 0 18px 54px rgba(27,42,74,.1);
}
.booking-form label { display: grid; gap: .32rem; color: var(--navy); font-size: .82rem; font-weight: 800; }
.booking-form [hidden] { display: none !important; }
.booking-form input, .booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .82rem .9rem;
  background: var(--cream);
  color: var(--ink);
}
.booking-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .82rem .9rem;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800;
}
.phone-row {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: .55rem;
}
.billing-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  padding: 1rem;
  border: 1px solid rgba(191,154,78,.36);
  border-radius: 12px;
  background: #fbf8f1;
}
.billing-fields legend {
  padding: 0 .4rem;
  color: var(--navy);
  font-weight: 900;
}
.billing-fields p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}
.booking-form .wide { grid-column: 1 / -1; }
.booking-form .check {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
}
.booking-form .check input { width: 18px; height: 18px; }
.booking-form button:disabled { opacity: .62; cursor: wait; transform: none; }
.form-status { margin: 0; color: var(--navy); font-weight: 800; }
.contact-stack { display: grid; gap: .7rem; margin-top: 1.4rem; }
.contact-stack a {
  padding: .85rem 1rem;
  border-radius: 8px;
  background: var(--clay);
  color: var(--navy);
  font-weight: 800;
}
.editorial { max-width: 880px; }
.editorial p { font-size: 1.05rem; }
.faq .narrow { max-width: 920px; }
.faq details {
  margin: .8rem 0;
  padding: 1rem 1.15rem;
  border: 1px solid var(--clay);
  border-radius: 10px;
  background: white;
}
.faq summary { cursor: pointer; color: var(--navy); font-weight: 800; }
.faq p { color: var(--muted); }
.faq-page h2 { margin-bottom: 1.5rem; }
.faq-topic {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--clay);
}
.faq-topic h3 {
  margin: 0 0 .8rem;
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer {
  padding: 4.5rem 0 2rem;
  background: #06090f;
  color: rgba(255,255,255,.48);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer img { width: 145px; margin-bottom: 1rem; }
.footer-agency {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.25rem;
}
.footer-agency img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0;
}
.footer-agency span {
  display: grid;
  gap: .25rem;
}
.footer-agency strong {
  color: rgba(255,255,255,.9);
  font-size: .92rem;
  letter-spacing: .12em;
}
.footer-agency small {
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  letter-spacing: .08em;
}
.footer h2 {
  margin: 0 0 1rem;
  color: rgba(255,255,255,.82);
  font-family: var(--fb);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.footer-subtitle { margin-top: 1.8rem !important; }
.footer a, .footer p {
  display: block;
  margin: .4rem 0;
  color: rgba(255,255,255,.46);
  font-size: .8rem;
}
.footer a:hover { color: var(--gold); }
.footer-langs { display: flex; flex-wrap: wrap; gap: .45rem; }
.footer-langs a, .nearby {
  display: inline-flex;
  margin: .2rem;
  padding: .28rem .65rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px;
  background: rgba(255,255,255,.045);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: .72rem;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .45rem .85rem;
}
.footer-legal a {
  display: inline;
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: .72rem;
}
.legal-page .narrow { max-width: 920px; }
.legal-updated {
  margin: 0 0 1.75rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.legal-section {
  padding: 1.35rem 0;
  border-top: 1px solid var(--clay);
}
.legal-section h2 {
  margin: 0 0 .8rem;
  color: var(--navy);
  font-family: var(--fb);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}
.legal-section p {
  margin: .55rem 0;
  color: var(--muted);
  line-height: 1.75;
}
.floating-wa {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 45;
  display: flex;
  align-items: center;
  gap: .65rem;
}
.floating-wa span {
  opacity: 0;
  transform: translateX(8px);
  padding: .4rem .75rem;
  border-radius: 6px;
  background: var(--navy);
  color: rgba(255,255,255,.86);
  font-size: .72rem;
  transition: .2s ease;
}
.floating-wa:hover span { opacity: 1; transform: translateX(0); }
.floating-wa a {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-weight: 900;
  box-shadow: 0 8px 26px rgba(37,211,102,.38);
}
.floating-wa svg {
  width: 30px;
  height: 30px;
  display: block;
}
.mobile-book { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

@media (max-width: 1120px) {
  .hdr { grid-template-columns: auto auto 1fr; }
  .menu-btn { display: block; order: 2; }
  .brand { order: 1; }
  .hdr-right { order: 3; justify-content: end; }
  .main-nav {
    position: fixed;
    top: 108px;
    left: 1rem;
    right: 1rem;
    display: none;
    grid-template-columns: 1fr;
    justify-content: start;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: rgba(27,42,74,.98);
    box-shadow: 0 20px 60px rgba(0,0,0,.28);
  }
  .main-nav.open { display: grid; }
  .main-nav a { border-radius: 6px; }
  .nav-group {
    display: grid;
  }
  .nav-trigger {
    width: 100%;
    justify-content: space-between;
    border-radius: 6px;
  }
  .nav-dropdown {
    position: static;
    min-width: 0;
    display: none;
    transform: none;
    margin: .15rem 0 .45rem;
    padding: .35rem;
    background: rgba(255,255,255,.055);
    box-shadow: none;
  }
  .nav-dropdown::before {
    display: none;
  }
  .nav-group:hover .nav-dropdown {
    display: none;
  }
  .nav-group.open .nav-dropdown {
    display: grid;
  }
  .hero-home { grid-template-columns: 1fr; padding-top: 8rem; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .package-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container, .hdr { width: min(100% - 2rem, var(--max)); }
  .brand span { display: none; }
  .brand img { width: 118px; }
  .hdr-right .btn-small { display: none; }
  .hero-home { padding: 7rem 1rem 3.5rem; }
  .hero-content h1 {
    font-size: clamp(1.9rem, 7.4vw, 3rem);
    white-space: normal;
  }
  .hero-watermark {
    display: none;
  }
  .cta-row { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .main-nav { top: 104px; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .why-cards, .split, .location-grid, .activities-grid, .activity-wide, .testimonial-grid, .form-grid, .footer-grid, .heritage-grid, .spa-service-grid, .info-grid, .package-grid, .sales-flow { grid-template-columns: 1fr; }
  .sales-copy { position: static; }
  .activity-wide .activity-image { min-height: 230px; }
  .heritage-card { padding: 1.1rem; }
  .heritage-card span {
    position: static;
    margin-bottom: .75rem;
  }
  .gallery-head { display: grid; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-grid figure:first-child { grid-column: span 2; grid-row: span 1; }
  .booking-form { grid-template-columns: 1fr; }
  .phone-row, .billing-fields { grid-template-columns: 1fr; }
  .order-summary { grid-template-columns: 1fr; }
  .summary-total { justify-self: start; text-align: left; }
  .footer-bottom { display: grid; }
  .floating-wa { bottom: 4.4rem; }
  .floating-wa span { display: none; }
	  .mobile-book {
	    position: fixed;
	    left: 1rem;
	    right: 1rem;
	    bottom: .8rem;
	    z-index: 44;
	    display: grid;
	    place-items: center;
	    min-height: 48px;
	    border-radius: 4px;
	    background: var(--gold);
	    color: var(--navy);
	    font-size: .75rem;
	    font-weight: 900;
	    letter-spacing: .12em;
	    text-transform: uppercase;
	    box-shadow: 0 14px 38px rgba(0,0,0,.24);
	    opacity: 0;
	    pointer-events: none;
	    transform: translateY(calc(100% + 1.2rem));
	    transition: opacity .24s ease, transform .24s ease;
	  }
	  .mobile-book.visible {
	    opacity: 1;
	    pointer-events: auto;
	    transform: translateY(0);
	  }
	}
