/* ============================================================
   SUMMAZ ESCAPE — Design System
   ============================================================ */

/* ── 1. Design tokens ─────────────────────────────────────── */
:root {
  --ocean:   #031D2F;
  --sea:     #01A9CE;
  --sea-d:   #0190b0;
  --teal:    #00C4A1;
  --gold:    #F4A340;

  --surface:      #F4F7FA;
  --surface-alt:  #EEF3F8;
  --white:        #FFFFFF;

  --text:         #111827;
  --text-sub:     #4B5563;
  --text-muted:   #9CA3AF;
  --border:       #E5E9EF;
  --border-focus: #01A9CE;

  --radius-sm:  6px;
  --radius:     10px;
  --radius-lg:  16px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);

  --font: 'Urbanist', system-ui, sans-serif;
  --nav-h: 74px;
  --anchor-h: 48px;
}

/* ── 2. Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font); font-size: 16px; line-height: 1.6; color: var(--text); background: var(--white); }
img, svg { display: block; max-width: 100%; }
a { color: var(--sea); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; animation: none !important; } }

/* ── 3. Container ─────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 4. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background .15s, color .15s, transform .1s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--sea); color: #fff; }
.btn--primary:hover { background: var(--sea-d); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: #00a889; }
.btn--outline {
  background: transparent;
  color: var(--text-sub);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { border-color: var(--sea); color: var(--sea); }
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.7); color: #fff; }
.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 14px 28px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

/* ── 5. Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .85s ease, box-shadow .85s ease;
}
.nav--transparent { background: transparent; }
.nav--solid { background: #FDDB24; box-shadow: 0 1px 0 rgba(0,0,0,.07); }
.nav__logo { display: flex; align-items: center; gap: 8px; }
.nav__logo-img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
  border-radius: 5px;
}
.nav__wordmark { transition: color .6s ease; }
.nav--solid .nav__wordmark { color: #031D2F; }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}
.nav__wordmark {
  font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  color: #fff; white-space: nowrap;
}
.nav__logo-text { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -.3px; }
.nav__logo-text span { color: var(--teal); }
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__whatsapp {
  display: flex; align-items: center;
  text-decoration: none; opacity: .9; transition: opacity .15s;
}
.nav__whatsapp:hover { opacity: 1; text-decoration: none; }
.nav__whatsapp svg { display: block; }

@media (min-width: 768px) {
  .btn--nav-book { display: none; }
}
@media (max-width: 767px) {
  .nav__logo-img { height: 36px; }
  .nav__wordmark { font-size: 16px; }
}

/* ── 6. Hero ──────────────────────────────────────────────── */
.hero {
  background: var(--ocean);
  padding: calc(var(--nav-h) + 52px) 0 60px;
  position: relative;
  overflow: hidden;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transition: opacity 1.6s ease;
}
.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(3,29,47,.80) 0%, rgba(3,29,47,.60) 55%, rgba(3,29,47,.75) 100%);
}
.hero__slide--1 { background-image: url('https://res.cloudinary.com/dko76z0df/image/upload/v1782304919/summaz/hero1.jpg'); opacity: 1; background-position: center 65%; }
.hero__slide--2 { background-image: url('https://res.cloudinary.com/dko76z0df/image/upload/v1782304920/summaz/hero2.jpg');  opacity: 0; }
.hero__slide--3 { background-image: url('https://res.cloudinary.com/dko76z0df/image/upload/v1782304722/summaz/hero3.jpg');  opacity: 0; background-position: center 65%; }
.hero__slide--4 { background-image: url('https://res.cloudinary.com/dko76z0df/image/upload/v1782304725/summaz/hero4.jpg');  opacity: 0; }
.hero__inner { position: relative; z-index: 1; max-width: 680px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,196,161,.1);
  border: 1px solid rgba(0,196,161,.2);
  color: var(--teal);
  font-size: 12px; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  margin-bottom: 20px;
}
.hero__badge-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.hero__title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 16px;
}
.hero__title em { font-style: normal; color: var(--teal); }
.hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-bottom: 32px;
}
.hero__meta-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 14px; color: rgba(255,255,255,.6);
}
.hero__meta-item svg { width: 14px; height: 14px; stroke: rgba(255,255,255,.4); flex-shrink: 0; }
.hero__meta-item strong { color: rgba(255,255,255,.88); font-weight: 600; }
.hero__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

/* ── 7. Anchor nav ────────────────────────────────────────── */
.anchor-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--anchor-h);
}
.anchor-nav__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--anchor-h); gap: 8px;
}
.anchor-nav__links {
  display: flex; gap: 2px;
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  flex: 1; min-width: 0;
}
.anchor-nav__links::-webkit-scrollbar { display: none; }
.anchor-nav__link {
  display: inline-block;
  padding: 0 14px;
  height: var(--anchor-h);
  line-height: var(--anchor-h);
  font-size: 13.5px; font-weight: 500;
  color: var(--text-sub);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  text-decoration: none;
}
.anchor-nav__link:hover { color: var(--text); text-decoration: none; }
.anchor-nav__link.is-active { color: var(--sea); border-bottom-color: var(--sea); font-weight: 600; }

/* ── 8. Listing layout ────────────────────────────────────── */
.listing-body { padding: 48px 0 80px; }
.listing-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
.listing-content {}

.listing-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.listing-section:first-child { padding-top: 0; }
.listing-section:last-child { border-bottom: none; }

.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--sea); margin-bottom: 7px;
}
.section-heading {
  font-size: 22px; font-weight: 700;
  line-height: 1.25; letter-spacing: -.015em;
  color: var(--text); margin-bottom: 14px;
}
.section-body {
  font-size: 15.5px; color: var(--text-sub); line-height: 1.7;
}
.section-body p + p { margin-top: 12px; }

/* ── 9. What's included list ──────────────────────────────── */
.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
}
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--text); line-height: 1.5; padding: 5px 0;
}
.check-icon {
  flex-shrink: 0;
  width: 18px; height: 18px; margin-top: 1px;
  background: rgba(0,196,161,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 10px; height: 10px; stroke: var(--teal); stroke-width: 2.5; }
.check-list li p { font-size: 12.5px; color: var(--text-muted); margin-top: 1px; }

/* ── 10. Ticket options (pricing blocks) ──────────────────── */
.ticket-options {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 4px;
}
.ticket {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px; position: relative;
  transition: border-color .2s;
}
.ticket--featured { border-color: var(--sea); box-shadow: 0 0 0 3px rgba(0,119,182,.06); }
.ticket__badge {
  position: absolute; top: -10px; left: 18px;
  background: var(--sea); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}
.ticket__price {
  font-size: 30px; font-weight: 800; letter-spacing: -.02em;
  color: var(--text); line-height: 1; margin-bottom: 2px;
}
.ticket__per { font-size: 13px; color: var(--text-muted); font-weight: 400; margin-left: 2px; }
.ticket__name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.ticket__tagline { font-size: 13px; color: var(--text-sub); margin-bottom: 14px; line-height: 1.5; }
.ticket__features { display: flex; flex-direction: column; gap: 7px; }
.ticket__feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13.5px; color: var(--text-sub); line-height: 1.4;
}
.ticket__feature .chk {
  flex-shrink: 0; width: 15px; height: 15px; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.ticket__feature .chk svg { width: 15px; height: 15px; stroke: var(--teal); stroke-width: 2.2; }
.ticket__note {
  margin-top: 12px; padding: 10px 12px;
  background: var(--surface); border-radius: var(--radius-sm);
  font-size: 12.5px; color: var(--text-sub); line-height: 1.55;
}

/* ── Extras learn-more link ───────────────────────────────── */
.extras-learn-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--sea);
  text-decoration: none;
}
.extras-learn-more:hover { text-decoration: underline; }

/* ── 11. Extras table ─────────────────────────────────────── */
.extras-list {
  border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-top: 4px;
}
.extra-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: start; gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.extra-row:last-child { border-bottom: none; }
.extra-row:hover { background: var(--surface); }
.extra-row__name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.extra-row__desc { font-size: 13px; color: var(--text-sub); line-height: 1.5; }
.extra-row__price { font-size: 14px; font-weight: 600; color: var(--sea); white-space: nowrap; padding-top: 2px; }
.extras-note { margin-top: 12px; font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ── 12. Location ─────────────────────────────────────────── */
.location-map {
  border-radius: var(--radius); overflow: hidden;
  margin: 16px 0 24px; border: 1px solid var(--border);
  aspect-ratio: 16/6;
}
.location-map iframe { width: 100%; height: 100%; border: none; display: block; }
.location-address {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14.5px; font-weight: 600; color: var(--text);
  margin-bottom: 20px; text-decoration: none; transition: color .15s;
}
.location-address:hover { color: var(--sea); text-decoration: none; }
.location-address svg { width: 15px; height: 15px; stroke: var(--sea); flex-shrink: 0; }
.location-steps { display: flex; flex-direction: column; gap: 13px; }
.location-step { display: flex; gap: 13px; align-items: flex-start; }
.location-step__num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--sea); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.location-step__text { font-size: 14px; color: var(--text-sub); line-height: 1.65; }
.location-hours {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 18px; font-size: 14px; font-weight: 600; color: var(--text);
  padding: 9px 14px; background: var(--surface);
  border-radius: var(--radius-sm); border: 1px solid var(--border);
}
.location-hours svg { width: 14px; height: 14px; stroke: var(--sea); }

/* ── 13. FAQ accordion ────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 18px; font-size: 14.5px; font-weight: 600; color: var(--text);
  cursor: pointer; list-style: none; user-select: none; gap: 12px;
  transition: background .15s;
}
.faq-item summary:hover { background: var(--surface); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0; width: 16px; height: 16px;
  stroke: var(--text-muted); stroke-width: 2; fill: none;
  transition: transform .2s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { background: var(--surface); }
.faq-answer {
  padding: 4px 18px 16px; font-size: 14px; color: var(--text-sub);
  line-height: 1.7; background: var(--surface);
}
.faq-answer p + p { margin-top: 8px; }

/* ── 14. Booking widget ───────────────────────────────────── */
.listing-sidebar { align-self: stretch; }
.booking-widget {
  position: sticky;
  top: calc(var(--nav-h) + var(--anchor-h) + 20px);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bw-head { background: var(--ocean); padding: 20px 24px; }
.bw-head-from {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 4px;
}
.bw-head-price { font-size: 26px; font-weight: 800; letter-spacing: -.02em; color: #fff; line-height: 1; }
.bw-head-price span { font-size: 13px; font-weight: 400; color: rgba(255,255,255,.5); margin-left: 4px; }
.bw-body { padding: 18px 24px 8px; display: flex; flex-direction: column; gap: 0; }
.bw-field-label {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; margin-top: 14px;
}
.bw-field-label:first-child { margin-top: 0; }
.bw-date-input {
  width: 100%; height: 44px; padding: 0 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--text);
  background: var(--white); appearance: none; cursor: pointer;
  transition: border-color .15s;
}
.bw-date-input:focus { outline: none; border-color: var(--border-focus); }
.bw-stepper-rows { border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.bw-stepper-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 12px 14px;
  border-bottom: 1px solid var(--border);
}
.bw-stepper-row:last-child { border-bottom: none; }
.bw-stepper-info {}
.bw-stepper-name { font-size: 14px; font-weight: 500; color: var(--text); }
.bw-stepper-price { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.bw-stepper { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.bw-stepper-btn {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 18px; font-weight: 300;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); cursor: pointer; transition: border-color .15s;
  font-family: inherit; line-height: 1;
}
.bw-stepper-btn:hover:not(:disabled) { border-color: var(--sea); color: var(--sea); }
.bw-stepper-btn:disabled { opacity: .3; cursor: default; }
.bw-stepper-count { font-size: 15px; font-weight: 700; min-width: 20px; text-align: center; }
.bw-total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0 4px;
}
.bw-total-label { font-size: 13px; font-weight: 600; color: var(--text-sub); }
.bw-total-amount { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -.02em; }
.bw-foot { padding: 0 24px 18px; display: flex; flex-direction: column; gap: 8px; }
.bw-trust {
  padding: 14px 24px 18px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 8px;
}
.bw-trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-sub); }
.bw-trust-item svg { width: 14px; height: 14px; stroke: var(--teal); flex-shrink: 0; }
.bw-whatsapp {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; color: var(--sea); text-decoration: none;
  transition: color .15s;
}
.bw-whatsapp:hover { color: var(--sea-d); text-decoration: none; }
.bw-whatsapp svg { width: 14px; height: 14px; stroke: currentColor; }

/* ── 15. Mobile bottom bar ────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 95;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 12px 20px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  align-items: center; justify-content: space-between; gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.09);
  /* hidden until hero scrolls away */
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
  transition: opacity .4s ease, transform .4s ease;
}
.mobile-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.mobile-bar__price {
  font-size: 18px; font-weight: 800; color: var(--text); letter-spacing: -.02em;
}
.mobile-bar__label { font-size: 12px; color: var(--text-muted); }

/* ── 16. Inline collage gallery ───────────────────────────── */
.collage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 160px;
  gap: 4px;
  border-radius: var(--radius);
  overflow: hidden;
}
.collage-cell { overflow: hidden; position: relative; }
.collage-cell--main { grid-row: 1 / 3; }
.collage-cell--wide { grid-column: 1 / 3; }
.collage-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.collage-cell:hover img { transform: scale(1.04); }
.collage-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.collage-placeholder span { font-size: 11.5px; color: rgba(255,255,255,.35); font-weight: 500; }
.cp1 { background: linear-gradient(135deg, #0077B6 0%, #031D2F 100%); }
.cp2 { background: linear-gradient(135deg, #031D2F 0%, #006B9E 100%); }
.cp3 { background: linear-gradient(135deg, #006B9E 0%, #00C4A1 100%); }
.cp4 { background: linear-gradient(135deg, #031D2F 0%, #0077B6 100%); }

@media (max-width: 600px) {
  .collage { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 120px; }
  .collage-cell--main { grid-column: 1 / 3; grid-row: 1; }
  .collage-cell--wide { grid-column: 1 / 3; }
}

/* ── Full-width gallery (kept for reference) ──────────────── */
.gallery-standalone { border-top: 1px solid var(--border); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 200px;
  gap: 3px;
}
.gallery-cell { overflow: hidden; position: relative; }
.gallery-cell:nth-child(1) { grid-column: 1 / 7; grid-row: 1; }
.gallery-cell:nth-child(2) { grid-column: 7 / 10; grid-row: 1; }
.gallery-cell:nth-child(3) { grid-column: 10 / 13; grid-row: 1; }
.gallery-cell:nth-child(4) { grid-column: 1 / 5; grid-row: 2; }
.gallery-cell:nth-child(5) { grid-column: 5 / 9; grid-row: 2; }
.gallery-cell:nth-child(6) { grid-column: 9 / 13; grid-row: 2; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-cell:hover img { transform: scale(1.03); }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.gallery-placeholder.c1 { background: linear-gradient(135deg, #031D2F 0%, #0077B6 100%); }
.gallery-placeholder.c2 { background: linear-gradient(135deg, #0055A4 0%, #00C4A1 100%); }
.gallery-placeholder.c3 { background: linear-gradient(135deg, #006B9E 0%, #031D2F 100%); }
.gallery-placeholder.c4 { background: linear-gradient(135deg, #031D2F 0%, #005f94 100%); }
.gallery-placeholder.c5 { background: linear-gradient(135deg, #007D9A 0%, #00C4A1 100%); }
.gallery-placeholder.c6 { background: linear-gradient(135deg, #00C4A1 0%, #0077B6 100%); }
.gallery-placeholder svg { width: 24px; height: 24px; opacity: .22; color: #fff; }
.gallery-placeholder span { font-size: 11px; color: rgba(255,255,255,.35); font-weight: 500; }

/* ── 17. Reviews — scrolling columns ─────────────────────── */
.reviews-section {
  padding: 64px 0 0;
  background: var(--white);
  overflow: hidden;
}

/* Header block */
.tcols-header {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 500px; margin: 0 auto 48px;
}
.tcols-badge {
  display: inline-block;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase;
  color: var(--text-sub); margin-bottom: 16px;
}
.tcols-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800; letter-spacing: -.025em; color: var(--text);
  line-height: 1.15; margin-bottom: 12px;
}
.tcols-sub { font-size: 15px; color: var(--text-sub); line-height: 1.65; }

/* Column outer — fades at top/bottom */
.tcols-outer {
  display: flex; justify-content: center; gap: 20px;
  max-height: 720px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

/* Each column */
.tcols-col { flex: 0 0 auto; width: 300px; overflow: hidden; }
.tcols-col--2 { display: none; }
.tcols-col--3 { display: none; }

/* Scrolling inner */
.tcol-inner {
  display: flex; flex-direction: column; gap: 20px;
  animation: tcol-scroll 24s linear infinite;
}
.tcol-inner:hover { animation-play-state: paused; }

@keyframes tcol-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* Card */
.tcol-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  width: 300px;
}
.tcol-card__rating {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.tcol-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; line-height: 1; }
.tcol-score { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.tcol-card__text {
  font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 16px;
}
.tcol-card__author {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.tcol-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--surface-alt);
}
.tcol-card__name { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.3; }
.tcol-card__loc  { font-size: 12px; color: var(--text-muted); line-height: 1.3; }

/* Show more columns at wider viewports */
@media (min-width: 720px)  { .tcols-col--2 { display: block; } }
@media (min-width: 1024px) { .tcols-col--3 { display: block; } }

/* ── 18. CTA strip ────────────────────────────────────────── */
.cta-strip {
  background:
    linear-gradient(rgba(3,29,47,.68), rgba(3,29,47,.68)),
    url('https://res.cloudinary.com/dko76z0df/image/upload/v1782304920/summaz/hero2.jpg') center 40% / cover no-repeat;
  padding: 64px 0; text-align: center;
}
.cta-strip__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}
.cta-strip__title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  letter-spacing: -.02em; color: #fff; margin-bottom: 10px;
}
.cta-strip__sub { font-size: 16px; color: rgba(255,255,255,.55); margin-bottom: 28px; }
.cta-strip__actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── 19. Footer ───────────────────────────────────────────── */
.footer { background: var(--white); border-top: 1px solid var(--border); padding: 40px 0 24px; }
.footer__inner {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 40px; align-items: start;
  padding-bottom: 32px; border-bottom: 1px solid var(--border); margin-bottom: 20px;
}
.footer__logo { display: block; }
.footer__logo img { height: 140px; width: auto; display: block; }
.footer__col {}
.footer__col-head {
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 10px;
}
.footer__links { display: flex; flex-direction: column; gap: 7px; }
.footer__link { font-size: 13.5px; color: var(--text-sub); text-decoration: none; transition: color .15s; }
.footer__link:hover { color: var(--text); text-decoration: none; }
.footer__bottom {
  font-size: 12px; color: var(--text-muted);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.footer__socials { display: flex; align-items: center; gap: 14px; }
.footer__social {
  color: var(--text-muted); display: flex; align-items: center;
  transition: color .15s;
}
.footer__social:hover { color: var(--text); text-decoration: none; }

/* ── 20. Modal overlay + panel ────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(3,29,47,.6);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .2s;
  backdrop-filter: blur(3px);
}
.modal-overlay.is-open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 520px; max-height: 90vh;
  display: flex; flex-direction: column; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.2);
  transform: translateY(12px);
  transition: transform .25s cubic-bezier(.25,.46,.45,.94);
  position: relative;
}
.modal-overlay.is-open .modal { transform: translateY(0); }

/* Thin progress line at top */
.modal-progress { height: 3px; background: var(--border); flex-shrink: 0; }
.modal-progress-fill {
  height: 3px; background: var(--sea);
  transition: width .35s ease; width: 0%;
}

/* Modal header */
.modal__head {
  padding: 20px 24px 4px;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; flex-shrink: 0;
}
.modal__step-meta {}
.modal__step-counter {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 3px;
}
.modal__step-title {
  font-size: 20px; font-weight: 700; color: var(--text);
  letter-spacing: -.01em; line-height: 1.25;
}
.modal__close {
  width: 30px; height: 30px; flex-shrink: 0; border-radius: 50%;
  background: var(--surface); display: flex; align-items: center; justify-content: center;
  transition: background .15s; margin-top: 4px;
}
.modal__close:hover { background: var(--surface-alt); }
.modal__close svg { width: 15px; height: 15px; stroke: var(--text-sub); }

/* Modal body */
.modal__body {
  flex: 1; overflow-y: auto;
  padding: 18px 24px;
  -webkit-overflow-scrolling: touch;
}

/* Modal footer */
.modal__foot {
  padding: 14px 24px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-shrink: 0; background: var(--white);
}
.modal__foot-total {}
.modal__foot-label {
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-muted);
}
.modal__foot-amount { font-size: 19px; font-weight: 800; color: var(--text); letter-spacing: -.02em; line-height: 1.2; }
.modal__foot-actions { display: flex; gap: 8px; }

/* ── 21. Step content ─────────────────────────────────────── */
.step-sub { font-size: 14px; color: var(--text-sub); line-height: 1.65; margin-bottom: 20px; }

/* Guest count steppers */
.stepper-group {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 20px;
}
.stepper-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; gap: 16px; border-bottom: 1px solid var(--border);
}
.stepper-row:last-child { border-bottom: none; }
.stepper-row__label { font-size: 15px; font-weight: 600; color: var(--text); }
.stepper-row__price { font-size: 13px; color: var(--text-muted); margin-top: 1px; }
.stepper { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.stepper__btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 20px; font-weight: 300; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  color: var(--text); cursor: pointer; transition: border-color .15s;
  font-family: inherit;
}
.stepper__btn:hover:not(:disabled) { border-color: var(--sea); color: var(--sea); }
.stepper__btn:disabled { opacity: .3; cursor: default; }
.stepper__count { font-size: 17px; font-weight: 700; min-width: 22px; text-align: center; }

.price-summary {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.price-summary__rows { padding: 2px 0; }
.price-summary__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 16px; font-size: 14px; color: var(--text-sub);
}
.price-summary__row.is-hidden { display: none; }
.price-summary__total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 11px 16px; border-top: 1px solid var(--border); font-weight: 600;
}
.price-summary__total-label { font-size: 14px; color: var(--text); }
.price-summary__total-amount { font-size: 18px; font-weight: 800; color: var(--text); }

/* Date step */
.date-input {
  width: 100%; height: 52px; padding: 0 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font); font-size: 16px; font-weight: 500; color: var(--text);
  background: var(--white); appearance: none; cursor: pointer;
  transition: border-color .15s;
}
.date-input:focus { outline: none; border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(0,119,182,.08); }
.date-hint {
  display: flex; align-items: flex-start; gap: 7px;
  font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-top: 10px;
}
.date-hint svg { width: 14px; height: 14px; stroke: var(--text-muted); flex-shrink: 0; margin-top: 1px; }

/* Form fields */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13.5px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-label span { color: #E53E3E; }
.form-input {
  width: 100%; height: 48px; padding: 0 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--text);
  background: var(--white); transition: border-color .15s, box-shadow .15s;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus { outline: none; border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(0,119,182,.08); }
.form-error { font-size: 12.5px; color: #E53E3E; margin-top: 5px; display: none; }
.form-error.is-visible { display: block; }
.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

/* Add-on checkboxes */
.addon-check-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.addon-check {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: border-color .15s, background .15s;
}
.addon-check:hover { border-color: #c8d1db; background: var(--surface); }
.addon-check.is-checked { border-color: var(--sea); background: rgba(0,119,182,.04); }
.addon-check input { display: none; }
.addon-check__box {
  width: 19px; height: 19px; border-radius: 5px;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color .15s, background .15s;
}
.addon-check.is-checked .addon-check__box { background: var(--sea); border-color: var(--sea); }
.addon-check__box svg { width: 11px; height: 11px; opacity: 0; stroke: #fff; transition: opacity .15s; }
.addon-check.is-checked .addon-check__box svg { opacity: 1; }
.addon-check__info { flex: 1; min-width: 0; }
.addon-check__label { font-size: 14px; font-weight: 600; color: var(--text); }
.addon-check__note { font-size: 12.5px; color: var(--text-muted); margin-top: 1px; }
.addon-check__tag {
  font-size: 11.5px; font-weight: 600; color: var(--sea);
  background: rgba(0,119,182,.08); padding: 3px 8px; border-radius: 100px; flex-shrink: 0;
}
.notes-textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 15px; color: var(--text);
  background: var(--white); resize: vertical; min-height: 90px;
  transition: border-color .15s;
}
.notes-textarea:focus { outline: none; border-color: var(--border-focus); box-shadow: 0 0 0 3px rgba(0,119,182,.08); }

/* Waiver */
.waiver-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; margin-bottom: 14px;
  font-size: 14px; color: var(--text-sub); line-height: 1.7;
  max-height: 170px; overflow-y: auto;
}
.policy-check {
  display: flex; align-items: flex-start; gap: 12px; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: border-color .15s;
}
.policy-check:hover { border-color: #c8d1db; }
.policy-check.is-checked { border-color: var(--sea); }
.policy-check input { display: none; }
.policy-check__box {
  width: 19px; height: 19px; border-radius: 5px;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; transition: border-color .15s, background .15s;
}
.policy-check.is-checked .policy-check__box { background: var(--sea); border-color: var(--sea); }
.policy-check__box svg { width: 11px; height: 11px; opacity: 0; stroke: #fff; transition: opacity .15s; }
.policy-check.is-checked .policy-check__box svg { opacity: 1; }
.policy-check__text { font-size: 14px; color: var(--text-sub); line-height: 1.55; }

/* Payment options */
.payment-options { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; }
.payment-option {
  display: flex; align-items: center; gap: 14px; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: border-color .15s, background .15s;
}
.payment-option:hover { border-color: #c8d1db; }
.payment-option.is-selected { border-color: var(--sea); background: rgba(0,119,182,.04); }
.payment-option input { display: none; }
.payment-option__radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: border-color .15s;
}
.payment-option.is-selected .payment-option__radio { border-color: var(--sea); }
.payment-option__radio-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sea); opacity: 0; transition: opacity .15s;
}
.payment-option.is-selected .payment-option__radio-dot { opacity: 1; }
.payment-option__icon { font-size: 20px; flex-shrink: 0; width: 50px; display: flex; align-items: center; }
.payment-option__logo { height: 22px; width: auto; max-width: 50px; display: block; object-fit: contain; }
.payment-option__name { font-size: 15px; font-weight: 600; color: var(--text); }
.payment-option__tag { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.payment-note {
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text-sub); line-height: 1.6;
  display: none; margin-bottom: 6px;
  background: rgba(0,119,182,.05); border: 1px solid rgba(0,119,182,.15);
}
.payment-note.is-visible { display: block; }
.payment-note.is-arrival { background: rgba(0,196,161,.06); border-color: rgba(0,196,161,.2); }

/* Review step */
.submit-error {
  background: #FFF5F5; border: 1px solid #FC8181; border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 13.5px; color: #C53030;
  margin-bottom: 14px; display: none;
}
.submit-error.is-visible { display: block; }
.review-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-bottom: 12px; }
.review-card__head {
  padding: 10px 16px; background: var(--surface);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-sub); border-bottom: 1px solid var(--border);
}
.review-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; padding: 10px 16px; border-bottom: 1px solid var(--border); font-size: 14px;
}
.review-row:last-child { border-bottom: none; }
.review-row__label { color: var(--text-muted); flex-shrink: 0; }
.review-row__value { color: var(--text); font-weight: 500; text-align: right; }
.review-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; background: var(--surface); border-top: 1px solid var(--border);
}
.review-total__label { font-size: 14px; font-weight: 600; color: var(--text-sub); }
.review-total__amount { font-size: 18px; font-weight: 800; color: var(--text); }

/* ── 22. Loading overlay ──────────────────────────────────── */
.loading-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.92); backdrop-filter: blur(3px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; z-index: 10;
  opacity: 0; pointer-events: none; transition: opacity .2s;
  border-radius: var(--radius-lg);
}
.loading-overlay.is-visible { opacity: 1; pointer-events: all; }
.spinner {
  width: 34px; height: 34px;
  border: 3px solid var(--border); border-top-color: var(--sea);
  border-radius: 50%; animation: spin .75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-size: 14.5px; font-weight: 600; color: var(--text-sub); }

/* ── 23. Confirmation screen ──────────────────────────────── */
.confirmation {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 8px 0;
}
.confirmation__check {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(0,196,161,.1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.confirmation__check svg { width: 26px; height: 26px; stroke: var(--teal); stroke-width: 2.5; }
.confirmation__title { font-size: 21px; font-weight: 800; color: var(--text); margin-bottom: 6px; letter-spacing: -.01em; }
.confirmation__sub { font-size: 14px; color: var(--text-sub); margin-bottom: 10px; max-width: 320px; line-height: 1.6; }
.confirmation__email-notice { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.reference-box {
  background: var(--surface); border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 14px 24px; margin-bottom: 18px; width: 100%; max-width: 280px; text-align: center;
}
.reference-box__label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 5px;
}
.reference-box__code { font-size: 22px; font-weight: 800; letter-spacing: .06em; color: var(--text); margin-bottom: 8px; }
.copy-btn {
  font-size: 12px; font-weight: 600; color: var(--sea);
  background: none; border: none; cursor: pointer; padding: 3px 8px; border-radius: 4px;
  transition: background .15s; font-family: inherit;
}
.copy-btn:hover { background: rgba(0,119,182,.08); }
.confirmation__instructions {
  width: 100%; text-align: left;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px 18px; font-size: 13.5px; color: var(--text-sub); line-height: 1.7; margin-bottom: 14px;
}
.confirmation__instructions ol {
  margin: 8px 0 0; padding-left: 20px;
}
.confirmation__instructions ol li {
  margin-bottom: 8px; line-height: 1.65;
}
.confirmation__instructions a { color: var(--sea); }
.confirmation__meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  width: 100%; margin-bottom: 18px; text-align: left;
}
.confirmation__meta-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 12px;
}
.confirmation__meta-label {
  font-size: 10.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2px;
}
.confirmation__meta-value { font-size: 13.5px; font-weight: 600; color: var(--text); }

/* ── 24. Behold feed sections ─────────────────────────────── */

/* Shared feed header */
.feed-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.feed-ig-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 600;
  color: var(--text-sub); border: 1px solid var(--border);
  padding: 7px 14px; border-radius: var(--radius-sm);
  text-decoration: none; transition: color .15s, border-color .15s; flex-shrink: 0;
}
.feed-ig-link:hover { color: var(--sea); border-color: var(--sea); text-decoration: none; }
.feed-ig-link svg { width: 15px; height: 15px; stroke: currentColor; }

/* Reels section */
.reels-section {
  background: var(--white);
  padding: 56px 0 0;
  overflow: hidden;
}
.reels-section .section-label { color: var(--sea); }
.reels-section .section-heading { color: var(--text); margin-bottom: 0; }

.reels-strip-wrap {
  margin-top: 0;
  overflow: hidden;
  padding: 28px 0 40px;
}

.reels-strip {
  display: flex; gap: 14px; width: max-content;
  will-change: transform;
}

.reel-card {
  flex-shrink: 0; width: 160px;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 8px;
}
.reel-card:hover { text-decoration: none; }
.reel-card__thumb {
  width: 160px; height: 284px;
  border-radius: var(--radius);
  overflow: hidden; position: relative;
  background: rgba(255,255,255,.06);
}
.reel-card__thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.reel-card:hover .reel-card__thumb img { transform: scale(1.04); }
.reel-card__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.25);
  transition: background .2s;
}
.reel-card:hover .reel-card__play { background: rgba(0,0,0,.38); }
.reel-card__play svg { width: 28px; height: 28px; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }
.reel-card__caption {
  font-size: 12px; color: var(--text-muted); line-height: 1.45;
  max-width: 160px; overflow: hidden; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

/* Behold photo gallery */
.behold-section {
  background: var(--white);
  padding: 56px 0 64px;
}
.behold-section .section-heading { margin-bottom: 0; }

.behold-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.behold-photo {
  display: block; overflow: hidden; border-radius: var(--radius-sm);
  position: relative; aspect-ratio: 1;
  background: var(--surface-alt);
  text-decoration: none;
}
.behold-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.behold-photo:hover img { transform: scale(1.05); }
.behold-photo__overlay {
  position: absolute; inset: 0;
  background: rgba(3,29,47,0);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
}
.behold-photo:hover .behold-photo__overlay { background: rgba(3,29,47,.45); }
.behold-photo__overlay svg { width: 22px; height: 22px; opacity: 0; transition: opacity .25s; }
.behold-photo:hover .behold-photo__overlay svg { opacity: 1; }

/* ── 25. Responsive ───────────────────────────────────────── */
@media (max-width: 960px) {
  .listing-grid { grid-template-columns: 1fr; }
  .listing-sidebar { display: none; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 72px; }
  .behold-grid { grid-template-columns: repeat(3, 1fr); }
  .anchor-nav .btn { display: none; }
  .anchor-nav__inner { padding: 0 16px; }
}

/* ── Meet the Kids grid ──────────────────────────────────── */
.kids-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.kids-grid .vcard { aspect-ratio: 16 / 9; }

/* ── More from Experience ────────────────────────────────── */
.experience-cta { margin-top: 24px; margin-bottom: 28px; }
.vcards-grid--5 .vcard:last-child {
  grid-column: 1 / -1;
  max-width: calc(50% - 5px);
  justify-self: start;
}
@media (max-width: 600px) {
  .vcards-grid--5 .vcard:last-child { max-width: 100%; grid-column: auto; }
}

/* ── Overview intro vcard ────────────────────────────────── */
.overview-hero-vcard {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  margin-bottom: 24px;
}
.vcard__brand-cover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #e6f4f8 0%, #f5fbfd 60%, #eaf6f9 100%);
}
.vcard__brand-logo {
  width: 52%;
  max-width: 260px;
  height: auto;
  pointer-events: none;
}

/* ── Video cards grid ────────────────────────────────────── */
.vcards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.vcard {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: var(--ocean);
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.vcard:focus-visible { box-shadow: 0 0 0 3px var(--teal); }
.vcard__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.vcard:hover .vcard__poster,
.vcard:focus-visible .vcard__poster { transform: scale(1.04); }
.vcard__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.vcard:hover .vcard__play { background: rgba(0,0,0,0.12); }

/* ── Video lightbox ──────────────────────────────────────── */
.vlightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.vlightbox.is-open { display: flex; }
.vlightbox__wrap {
  position: relative;
  width: 100%;
  max-width: 920px;
}
.vlightbox__wrap video {
  width: 100%;
  border-radius: 10px;
  display: block;
  max-height: 88vh;
  background: #000;
}
.vlightbox__close {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.vlightbox__close:hover,
.vlightbox__close:active { background: rgba(255,255,255,0.28); }
@media (max-width: 600px) {
  .vlightbox { padding: 0; }
  .vlightbox__wrap { max-width: 100%; }
  .vlightbox__wrap video { border-radius: 0; max-height: 100vh; }
  .vlightbox__close { top: 12px; right: 12px; width: 48px; height: 48px; }
  .vcards-grid { gap: 8px; }
}

@media (max-width: 768px) {
  .hero { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 40px; }
  .hero__title { font-size: 34px; }
  .behold-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .reels-section { padding-top: 40px; }
  .behold-section { padding: 40px 0 48px; }
  .feed-head { margin-bottom: 20px; }
  .reel-card { width: 140px; }
  .reel-card__thumb { width: 140px; height: 248px; }
  .listing-body { padding: 24px 0 48px; }
  .check-list { grid-template-columns: 1fr; }
  .ticket-options { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 150px);
  }
  .gallery-cell:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
  .gallery-cell:nth-child(2) { grid-column: 1 / 2; grid-row: 2; }
  .gallery-cell:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
  .gallery-cell:nth-child(4) { grid-column: 1 / 2; grid-row: 3; }
  .gallery-cell:nth-child(5) { grid-column: 2 / 3; grid-row: 3; }
  .gallery-cell:nth-child(6) { display: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 20px; }
  .cta-strip { padding: 48px 0; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal { max-height: 94vh; border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-width: 100%; }
  .listing-body { padding: 28px 0 60px; }
  .confirmation__meta { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav__whatsapp { display: none; }
  .hero__meta { gap: 10px; }
  .hero__meta-item { font-size: 13px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
  .anchor-nav__link { padding: 0 9px; font-size: 12px; }
  .modal__head { padding: 16px 18px 0; }
  .modal__body { padding: 14px 18px; }
  .modal__foot { padding: 12px 18px; }
  .ticket-options { grid-template-columns: 1fr; }
  .check-list { grid-template-columns: 1fr; }
  .behold-grid { grid-template-columns: repeat(2, 1fr); }
  .reels-section { padding-top: 32px; }
  .behold-section { padding: 32px 0 40px; }
  .cta-strip { padding: 40px 0; }
  .footer__bottom { font-size: 12px; }
}
