: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; }
*:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 3px;
}
.container { width: min(var(--max), calc(100% - 4rem)); margin: 0 auto; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 100;
  transform: translateY(-160%);
  padding: .65rem .9rem;
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 900;
  letter-spacing: .05em;
}
.skip-link:focus-visible { transform: translateY(0); }

.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-video-toggle {
  position: absolute;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 3;
  min-height: 40px;
  padding: .55rem .85rem;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 4px;
  background: rgba(7,17,31,.62);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.hero-video-toggle:hover { border-color: var(--gold); color: var(--gold); }
.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 60%);
  padding-bottom: 4rem;
}
.package-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
.package-card {
  padding: 0;
  border: 1.5px solid var(--clay);
  border-radius: 20px;
  background: white;
  box-shadow: 0 8px 32px rgba(27,42,74,.07), 0 1px 2px rgba(27,42,74,.04);
  transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease;
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, #e8c96a 100%);
  border-radius: 20px 20px 0 0;
}
.package-card:hover, .package-card.selected {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 64px rgba(27,42,74,.14), 0 2px 4px rgba(191,154,78,.12);
}
.package-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .36rem .78rem;
  border: 1.5px solid rgba(191,154,78,.45);
  border-radius: 999px;
  background: linear-gradient(135deg, #fffaf0, #fdf4e0);
  color: #a07c28;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.package-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
}
.package-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: .93rem; }

/* Package card layout */
.pkg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 420px;
}
.pkg-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 2.25rem 2.25rem 2rem 2.25rem;
  border-right: 1px solid var(--clay);
}
.pkg-header { display: flex; flex-direction: column; gap: .6rem; }
.pkg-header h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  line-height: 1.15;
}
.pkg-price-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
  background: var(--navy);
  border-radius: 10px;
  margin-top: .25rem;
}
.pkg-price-main {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3rem);
  line-height: 1;
}
.pkg-price-sub {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.pkg-price-sub del {
  color: rgba(255,255,255,.4);
  font-size: .85rem;
  font-weight: 600;
}
.pkg-price-sub span {
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-weight: 500;
}
.pkg-section-label {
  margin: 0 0 .5rem;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #2d8a5e;
}
.pkg-chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.pkg-chip {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .65rem;
  background: #f0faf5;
  border: 1px solid rgba(45,138,94,.2);
  border-radius: 999px;
  color: #1e6b46;
  font-size: .78rem;
  font-weight: 600;
}
.pkg-chip::before {
  content: '✓';
  font-size: .7rem;
  font-weight: 900;
  color: #2d8a5e;
}
.pkg-extras-bar {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1rem;
  background: #1b2a4a;
  border-radius: 10px;
}
.pkg-extras-plus {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: .9rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pkg-extras-label {
  display: block;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .15rem;
}
.pkg-extras-list {
  color: rgba(255,255,255,.72);
  font-size: .8rem;
  font-weight: 500;
}
.pkg-note {
  margin: 0;
  font-size: .8rem;
  color: #a07c28;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.pkg-note::before {
  content: '●';
  font-size: .5rem;
  color: var(--gold);
}
.pkg-cta-btn {
  margin-top: auto;
  justify-content: center;
  width: 100%;
  padding: .9rem;
  font-size: .88rem;
  letter-spacing: .08em;
}
/* Photos side */
.pkg-photos {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 3px;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}
.pkg-photo-main { overflow: hidden; }
.pkg-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pkg-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.pkg-photo-grid img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}
.package-price {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clay);
  margin-top: .2rem;
}
.package-price del {
  color: #aaa4b0;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration-color: rgba(139,135,144,.6);
}
.package-price strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  line-height: .9;
}
.package-price-note {
  color: var(--muted);
  font-size: .76rem;
  margin-left: auto;
}
.package-card .btn {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: .92rem;
  letter-spacing: .07em;
}
.order-form {
  max-width: none;
  margin: 0;
}
.sales-flow {
  display: grid;
  grid-template-columns: .68fr 1.32fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--clay);
}
.sales-copy {
  position: sticky;
  top: 132px;
}
.sales-copy h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}
.order-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(140px, auto);
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border: 1.5px solid rgba(191,154,78,.4);
  border-radius: 14px;
  background: linear-gradient(135deg, #fffdf6 0%, #fff8e8 100%);
  box-shadow: 0 4px 16px rgba(191,154,78,.1);
}
.summary-package, .summary-quantity, .summary-total {
  display: grid;
  gap: .3rem;
}
.order-summary span {
  color: var(--navy);
  opacity: .55;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.summary-package strong {
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.35;
}
.summary-total {
  justify-self: end;
  text-align: right;
}
.summary-total strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.summary-quantity select {
  width: 88px;
  height: 40px;
  padding: 0 .8rem;
  border: 1.5px solid rgba(27,42,74,.14);
  border-radius: 8px;
  background: white;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(27,42,74,.05);
  cursor: pointer;
}
.summary-includes {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .9rem;
  padding-top: .9rem;
  border-top: 1px dashed rgba(191,154,78,.35);
}
.summary-includes .pkg-chip { background: rgba(255,255,255,.7); }
.transfer-check {
  min-height: 76px;
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fbf9f5;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.transfer-check:hover {
  border-color: rgba(191,154,78,.4);
  background: #fdf7ec;
}
.transfer-copy {
  display: grid;
  gap: .25rem;
}
.transfer-copy strong {
  color: var(--navy);
  font-size: .9rem;
  font-weight: 900;
}
.transfer-copy small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.4;
}
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.75rem;
  border: 1.5px solid rgba(191,154,78,.2);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 48px rgba(27,42,74,.09), 0 1px 3px rgba(27,42,74,.04);
}
.booking-form label {
  display: grid;
  gap: .4rem;
  color: var(--navy);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .03em;
}
.booking-form [hidden] { display: none !important; }
.booking-form input, .booking-form textarea {
  width: 100%;
  border: 1.5px solid rgba(27,42,74,.13);
  border-radius: 10px;
  padding: .88rem 1rem;
  background: #fafaf9;
  color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  outline: none;
}
.booking-form input:focus, .booking-form textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(191,154,78,.1);
}
.booking-form select {
  width: 100%;
  border: 1.5px solid rgba(27,42,74,.13);
  border-radius: 10px;
  padding: .88rem 1rem;
  background: #fafaf9;
  color: var(--ink);
  font-weight: 700;
  transition: border-color .2s ease, box-shadow .2s ease;
  outline: none;
  cursor: pointer;
}
.booking-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(191,154,78,.1);
}
.phone-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: .55rem;
}
.billing-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1.2rem;
  border: 1.5px solid rgba(191,154,78,.3);
  border-radius: 14px;
  background: linear-gradient(135deg, #fffdf6, #fdf8ed);
}
.billing-fields legend {
  padding: 0 .4rem;
  color: var(--navy);
  font-weight: 900;
  font-size: .9rem;
}
.billing-fields p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: .83rem;
}
.booking-form .wide { grid-column: 1 / -1; }
.booking-form .check {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 500;
  font-size: .85rem;
}
.booking-form .check input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.booking-form button:disabled { opacity: .62; cursor: wait; transform: none; }
.form-status {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
  font-size: .88rem;
  padding: .6rem 0;
}

/* --- Booking: urgency, trust, payment, extras, steps, sticky bar --- */
.booking-urgency {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 1.2rem auto 0;
  padding: .55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, #e8c96a 100%);
  color: var(--night);
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .02em;
  box-shadow: 0 8px 24px rgba(191,154,78,.28);
}
.booking-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem .8rem;
  margin: 1rem 0 2rem;
}
.booking-trust span {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-size: .76rem;
  font-weight: 800;
}
.booking-trust span::before { content: "✓"; color: var(--aqua); margin-right: .35rem; font-weight: 900; }

.step-nav {
  display: none;
  list-style: none;
  margin: 0 0 .4rem;
  padding: 0;
  gap: .6rem;
}
.order-form.wizard-ready .step-nav { display: flex; }
.step-nav li {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 1;
  padding: .7rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fbf9f5;
  color: var(--muted);
  font-weight: 800;
  font-size: .82rem;
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.step-nav li span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--clay-2);
  color: white;
  font-size: .72rem;
  font-weight: 900;
}
.step-nav li.active { border-color: var(--gold); color: var(--navy); background: #fdf7ec; }
.step-nav li.active span { background: var(--gold); }

.form-step {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.form-step .wide { grid-column: 1 / -1; }
.step-next, .step-back { display: none; }
.order-form.wizard-ready .step-next { display: inline-flex; }
.step-actions { display: flex; gap: .8rem; align-items: center; }
.order-form.wizard-ready .step-actions .step-back { display: inline-flex; }
.step-actions .step-submit { flex: 1; }

.extras-field, .pay-methods {
  padding: 1.2rem;
  border: 1.5px solid rgba(191,154,78,.25);
  border-radius: 14px;
  background: #fbf9f5;
}
.extras-field legend, .pay-methods legend {
  padding: 0 .4rem;
  color: var(--navy);
  font-weight: 900;
  font-size: .9rem;
}
.extras-field legend small {
  display: block;
  margin-top: .15rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 600;
}
.extras-options, .pay-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .65rem;
  margin-top: .7rem;
}
.extra-option, .pay-method {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem .95rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.extra-option:hover, .pay-method:not(.is-disabled):hover { border-color: rgba(191,154,78,.5); background: #fdf7ec; }
.extra-option input, .pay-method input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.extra-option span { color: var(--navy); font-weight: 700; font-size: .85rem; }
.pay-method span { display: grid; gap: .15rem; }
.pay-method strong { color: var(--navy); font-size: .86rem; font-weight: 900; }
.pay-method small { color: var(--muted); font-size: .74rem; font-weight: 600; }
.pay-method.is-disabled { opacity: .6; cursor: not-allowed; }
.pay-method.is-disabled small { color: var(--terra); font-weight: 800; }
.pay-method:has(input:checked) { border-color: var(--gold); background: #fdf7ec; }

.booking-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0));
  background: rgba(255,255,255,.97);
  border-top: 1.5px solid rgba(191,154,78,.35);
  box-shadow: 0 -8px 28px rgba(27,42,74,.14);
  backdrop-filter: blur(6px);
}
.booking-sticky-info { display: grid; gap: .1rem; }
.booking-sticky-info span { color: var(--navy); opacity: .55; font-size: .6rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.booking-sticky-info strong { color: var(--gold); font-size: 1.5rem; font-weight: 900; line-height: 1; }
.booking-sticky .btn { white-space: nowrap; }
@media (min-width: 861px) { .booking-sticky { display: none !important; } }
@media (max-width: 860px) {
  body:has(.booking-sticky:not([hidden])) { padding-bottom: 88px; }
  .order-summary { padding: 1rem 1.1rem; gap: .8rem; }
  .summary-total strong { font-size: 1.7rem; }
}
body:has(.booking-sticky:not([hidden])) .mobile-book { display: none; }

.contact-stack { display: grid; gap: .75rem; margin-top: 1.6rem; }
.contact-stack a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  background: var(--clay);
  color: var(--navy);
  font-weight: 800;
  font-size: .9rem;
  transition: background .2s ease, transform .2s ease;
}
.contact-stack a:hover {
  background: #ecdfc7;
  transform: translateX(3px);
}
.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; }

.cookie-consent {
  position: fixed;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(760px, calc(100% - 2.4rem));
  padding: 1rem;
  border: 1px solid rgba(191,154,78,.35);
  border-radius: 8px;
  background: rgba(27,42,74,.98);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.cookie-consent[hidden] { display: none; }
.cookie-consent strong {
  display: block;
  color: var(--gold);
  font-family: var(--fd);
  font-size: 1.2rem;
  line-height: 1.1;
}
.cookie-consent p {
  margin: .35rem 0 0;
  color: rgba(255,255,255,.74);
  font-size: .9rem;
  line-height: 1.5;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: flex-end;
}

.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: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  /* Package card tablet */
  .pkg-layout { grid-template-columns: 1.1fr 0.9fr; }
  .pkg-info { padding: 1.75rem 1.5rem; }
  .pkg-chips { gap: .3rem; }
  .pkg-chip { font-size: .76rem; padding: .28rem .55rem; }
  .pkg-extras-list { font-size: .78rem; }
}

@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; }
  /* Package card mobile: stack vertically */
  .pkg-layout { grid-template-columns: 1fr; }
  .pkg-photos { grid-template-rows: auto; border-radius: 0 0 18px 18px; }
  .pkg-photo-main img { height: 220px; }
  .pkg-photo-grid { display: none; }
  .pkg-info { padding: 1.5rem 1.25rem; border-right: none; border-bottom: 1px solid var(--clay); }
  .pkg-price-row { padding: .75rem .9rem; }
  .pkg-price-main { font-size: 2.2rem; }
  .pkg-chips { gap: .3rem; }
  .pkg-chip { font-size: .76rem; padding: .28rem .55rem; }
  .pkg-extras-bar { flex-wrap: nowrap; align-items: flex-start; }
  .pkg-extras-list { font-size: .78rem; line-height: 1.5; }
  .pkg-cta-btn { padding: .85rem; }
  .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, .form-step { grid-template-columns: 1fr; }
  .order-summary { grid-template-columns: 1fr; }
  .summary-total { justify-self: start; text-align: left; }
  .step-nav li { font-size: .78rem; padding: .6rem .7rem; }
  .footer-bottom { display: grid; }
  .floating-wa { bottom: 4.4rem; }
  body:has(.booking-sticky:not([hidden])) .floating-wa { bottom: 6.2rem; }
  .floating-wa span { display: none; }
  .cookie-consent {
    display: grid;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
  }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { width: 100%; }
	  .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);
	  }
	}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
