/* ============================================================
   NEA Good Dives — main.css
   Warm, ocean-first design system. Mobile-first.
   Palette: deep ocean blue / sun-bleached sand / coral accent /
   jungle green secondary. One accent color for CTAs (coral).
   ============================================================ */

:root {
  /* Color tokens */
  --ocean-950: #06222f;
  --ocean-900: #0a3145;
  --ocean-800: #0e425c;
  --ocean-700: #155a7c;
  --ocean-600: #1d739d;
  --ocean-500: #2b8fbf;
  --ocean-300: #7cc3e0;
  --ocean-100: #d7edf7;
  --sand-50:  #fdfbf6;
  --sand-100: #faf6ec;
  --sand-200: #f3ecdb;
  --sand-300: #e8dcc2;
  --sand-500: #cbb78e;
  --coral-600: #e85d3d;   /* the single CTA accent */
  --coral-700: #d14e30;
  --coral-100: #fdeae4;
  --jungle-700: #24634a;
  --jungle-600: #2e7d5b;
  --jungle-100: #e2f1e9;
  --ink: #142530;
  --ink-soft: #3d5361;
  --ink-faint: #6b8291;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 2px 6px rgba(10, 49, 69, 0.06), 0 12px 32px rgba(10, 49, 69, 0.08);
  --shadow-lift: 0 4px 10px rgba(10, 49, 69, 0.10), 0 20px 44px rgba(10, 49, 69, 0.14);
  --maxw: 1160px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16.5px;
}

img { max-width: 100%; display: block; }
a { color: var(--ocean-700); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--ocean-900); margin: 0 0 0.5em; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p  { margin: 0 0 1em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.section { padding: clamp(48px, 8vw, 96px) 0; }
.section-tight { padding: clamp(28px, 5vw, 56px) 0; }
.kicker {
  display: inline-block; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--jungle-600); margin-bottom: 10px;
}
.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: 13px 26px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s;
}
.btn-primary { background: var(--coral-600); color: #fff; box-shadow: 0 6px 18px rgba(232, 93, 61, 0.35); }
.btn-primary:hover { background: var(--coral-700); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(232, 93, 61, 0.4); }
.btn-ghost { background: transparent; color: var(--ocean-800); border: 1.5px solid var(--ocean-300); }
.btn-ghost:hover { border-color: var(--ocean-600); transform: translateY(-1px); }
.btn-ghost.on-dark { color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none !important; }
.btn-sm { padding: 9px 18px; font-size: 0.92rem; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
}
.site-header.scrolled, .site-header.solid {
  background: rgba(253, 251, 246, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(10,49,69,0.08);
}
.nav-bar { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { flex: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: #fff; letter-spacing: 0.01em; transition: color 0.3s; }
.brand-sub { display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color 0.3s; }
.site-header.scrolled .brand-name, .site-header.solid .brand-name { color: var(--ocean-900); }
.site-header.scrolled .brand-sub, .site-header.solid .brand-sub { color: var(--ink-faint); }

.nav-links { display: none; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-weight: 500; font-size: 0.97rem; color: rgba(255,255,255,0.92); transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.site-header.scrolled .nav-links a, .site-header.solid .nav-links a { color: var(--ink-soft); }
.site-header.scrolled .nav-links a:hover, .site-header.solid .nav-links a:hover { color: var(--ocean-800); }
.nav-cta { margin-left: 4px; }

.lang-toggle {
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px; padding: 6px 13px; cursor: pointer; transition: all 0.2s;
}
.site-header.scrolled .lang-toggle, .site-header.solid .lang-toggle { background: var(--sand-200); color: var(--ocean-800); border-color: var(--sand-300); }
.lang-toggle:hover { transform: translateY(-1px); }

.nav-burger { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; cursor: pointer; }
.nav-burger span { width: 24px; height: 2.5px; border-radius: 2px; background: #fff; transition: all 0.3s; }
.site-header.scrolled .nav-burger span, .site-header.solid .nav-burger span { background: var(--ocean-900); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--ocean-950);
  display: flex; flex-direction: column; justify-content: center; padding: 40px 32px;
  transform: translateX(100%); transition: transform 0.4s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: var(--sand-100); text-decoration: none; font-family: var(--font-display); font-size: 1.8rem; padding: 10px 0; }
.mobile-menu a:hover { color: var(--coral-600); }
.mobile-menu .menu-close { position: absolute; top: 22px; right: 22px; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; line-height: 1; }

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-burger { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92svh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media svg, .hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(6,34,47,0.30) 0%, rgba(6,34,47,0.05) 40%, rgba(6,34,47,0.72) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 20px clamp(56px, 10vh, 120px); max-width: var(--maxw); margin: 0 auto; }
.hero-tagline { font-size: clamp(1.05rem, 2.5vw, 1.35rem); font-weight: 400; color: rgba(255,255,255,0.92); max-width: 34ch; margin-bottom: 28px; }
.hero h1 { color: #fff; max-width: 14ch; margin-bottom: 12px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 36px; font-size: 0.86rem; color: rgba(255,255,255,0.85); }
.hero-badges span { display: inline-flex; align-items: center; gap: 7px; }
.hero-badges svg { flex: none; }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.fade-up.vis { opacity: 1; transform: none; }

/* ---------- Category strip / tour cards ---------- */
.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 30px; }
.cat-tab {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  background: #fff; color: var(--ink-soft); border: 1.5px solid var(--sand-300);
  padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: all 0.2s;
}
.cat-tab:hover { border-color: var(--ocean-500); color: var(--ocean-700); }
.cat-tab.active { background: var(--ocean-800); border-color: var(--ocean-800); color: #fff; }

.tour-grid { display: grid; gap: 26px; grid-template-columns: 1fr; }
@media (min-width: 640px)  { .tour-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .tour-grid { grid-template-columns: repeat(3, 1fr); } }

.tour-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.tour-card:hover { transform: translateY(-5px) scale(1.012); box-shadow: var(--shadow-lift); }
.tour-card-media { aspect-ratio: 4 / 2.7; position: relative; overflow: hidden; }
.tour-card-media svg, .tour-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.tour-card:hover .tour-card-media svg, .tour-card:hover .tour-card-media img { transform: scale(1.045); }
.tour-card-cat {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(253,251,246,0.92); color: var(--ocean-800);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.tour-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.tour-card-body h3 { margin: 0; font-size: 1.28rem; }
.tour-card-desc { color: var(--ink-soft); font-size: 0.95rem; margin: 0; flex: 1; }
.tour-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.tour-price { font-weight: 700; color: var(--ocean-800); font-size: 1.02rem; }
.tour-price small { font-weight: 500; color: var(--ink-faint); font-size: 0.8rem; }
.tour-card-link { font-weight: 600; font-size: 0.92rem; color: var(--coral-600); display: inline-flex; align-items: center; gap: 5px; }

/* ---------- Trust / why us ---------- */
.trust-grid { display: grid; gap: 22px; grid-template-columns: 1fr; margin-top: 34px; }
@media (min-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { background: #fff; border-radius: var(--radius-md); padding: 26px 24px; box-shadow: var(--shadow-card); }
.trust-item .t-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--ocean-100); margin-bottom: 14px; }
.trust-item h3 { font-size: 1.08rem; font-family: var(--font-body); font-weight: 700; }
.trust-item p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------- Reviews ---------- */
.review-row { display: grid; gap: 20px; grid-template-columns: 1fr; margin-top: 30px; }
@media (min-width: 800px) { .review-row { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: #fff; border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 10px; }
.review-stars { color: #eab308; letter-spacing: 2px; font-size: 0.95rem; }
.review-text { font-size: 0.97rem; color: var(--ink-soft); font-style: italic; flex: 1; }
.review-meta { font-size: 0.85rem; font-weight: 600; color: var(--ocean-800); }
.review-meta small { display: block; font-weight: 400; color: var(--ink-faint); }

/* ---------- Guides ---------- */
.guide-row { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; margin-top: 30px; }
@media (min-width: 900px) { .guide-row { grid-template-columns: repeat(4, 1fr); } }
.guide-card { text-align: center; }
.guide-photo { width: min(150px, 60%); aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin: 0 auto 14px; box-shadow: var(--shadow-card); }
.guide-photo svg, .guide-photo img { width: 100%; height: 100%; object-fit: cover; }
.guide-card h3 { font-size: 1.08rem; margin-bottom: 2px; }
.guide-role { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--jungle-600); }
.guide-bio { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Seasonal strip ---------- */
.seasonal {
  background: linear-gradient(120deg, var(--ocean-900), var(--ocean-700));
  color: #fff; border-radius: var(--radius-lg); padding: clamp(28px, 5vw, 48px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 24px; justify-content: space-between;
  position: relative; overflow: hidden;
}
.seasonal::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(124,195,224,0.35), transparent 70%); border-radius: 50%;
}
.seasonal h2 { color: #fff; margin: 0 0 6px; font-size: clamp(1.3rem, 3vw, 1.8rem); }
.seasonal p { margin: 0; color: rgba(255,255,255,0.85); max-width: 52ch; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
@media (min-width: 800px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; position: relative; }
.gallery-item svg, .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.gallery-item:hover svg, .gallery-item:hover img { transform: scale(1.05); }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2.05; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ocean-950); color: var(--sand-200); margin-top: clamp(48px, 8vw, 96px); }
.footer-grid { display: grid; gap: 36px; grid-template-columns: 1fr; padding: clamp(44px, 7vw, 72px) 20px 32px; max-width: var(--maxw); margin: 0 auto; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.4fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: var(--sand-200); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 0.95rem; }
.footer-brand p { font-size: 0.92rem; color: rgba(243,236,219,0.75); max-width: 36ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px; text-align: center; font-size: 0.82rem; color: rgba(243,236,219,0.6); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--ocean-900) 0%, var(--ocean-700) 100%);
  color: #fff; padding: clamp(120px, 18vh, 180px) 0 clamp(40px, 7vw, 72px);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; bottom: -2px; left: 0; right: 0; height: 60px;
  background: var(--sand-50);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero h1 { color: #fff; }
.page-hero .lede { color: rgba(255,255,255,0.85); }

/* ---------- Tour detail ---------- */
.detail-layout { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 980px) { .detail-layout { grid-template-columns: 1.5fr 1fr; align-items: start; } }
.detail-gallery { display: grid; gap: 12px; grid-template-columns: repeat(3, 1fr); }
.detail-gallery .g-main { grid-column: span 3; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.detail-gallery .g-thumb { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; }
.detail-gallery svg, .detail-gallery img { width: 100%; height: 100%; object-fit: cover; }

.spec-list { list-style: none; margin: 18px 0; padding: 0; display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.spec-list li { background: #fff; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.92rem; box-shadow: var(--shadow-card); }
.spec-list b { display: block; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 2px; }

.pricing-table { width: 100%; border-collapse: collapse; margin: 16px 0 8px; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.pricing-table th, .pricing-table td { text-align: left; padding: 13px 18px; font-size: 0.95rem; }
.pricing-table th { background: var(--sand-100); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); }
.pricing-table tr + tr td { border-top: 1px solid var(--sand-200); }
.pricing-table .p-amount { font-weight: 700; color: var(--ocean-800); white-space: nowrap; }

/* ---------- Booking widget ---------- */
.booking-widget {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lift);
  padding: 26px 24px 28px; position: sticky; top: 90px;
}
.booking-widget h3 { margin-bottom: 4px; }
.bw-sub { font-size: 0.88rem; color: var(--ink-faint); margin-bottom: 18px; }

.bw-cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.bw-cal-head b { font-family: var(--font-display); font-size: 1.05rem; color: var(--ocean-900); }
.bw-cal-nav { background: var(--sand-100); border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--ocean-800); transition: background 0.2s; }
.bw-cal-nav:hover { background: var(--sand-200); }
.bw-cal-nav[disabled] { opacity: 0.35; cursor: default; }

.bw-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bw-dow { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-align: center; color: var(--ink-faint); text-transform: uppercase; padding: 4px 0; }
.bw-day {
  aspect-ratio: 1; border: none; border-radius: 10px; background: transparent;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; color: var(--ink);
  cursor: pointer; position: relative; transition: background 0.15s, transform 0.15s;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
}
.bw-day:hover:not([disabled]) { background: var(--ocean-100); }
.bw-day[disabled] { color: #c4cfd6; cursor: default; text-decoration: line-through; text-decoration-color: rgba(196,207,214,0.6); }
.bw-day.selected { background: var(--ocean-800); color: #fff; font-weight: 700; transform: scale(1.06); }
.bw-day .dot { width: 5px; height: 5px; border-radius: 50%; }
.bw-day .dot.pending { background: var(--coral-600); }
.bw-day .dot.confirmed { background: var(--jungle-600); }
.bw-day.selected .dot { background: #fff; }

.bw-legend { display: flex; gap: 16px; margin: 12px 0 4px; font-size: 0.76rem; color: var(--ink-faint); flex-wrap: wrap; }
.bw-legend span { display: inline-flex; align-items: center; gap: 6px; }
.bw-legend i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.bw-legend .lg-pending i { background: var(--coral-600); }
.bw-legend .lg-confirmed i { background: var(--jungle-600); }

/* live status meter — the earned bit of delight */
.bw-status { background: var(--sand-100); border-radius: var(--radius-md); padding: 16px 18px; margin: 16px 0; }
.bw-status-label { font-size: 0.88rem; font-weight: 600; color: var(--ocean-900); display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.bw-status-label .st-tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px; }
.st-tag.pending { background: var(--coral-100); color: var(--coral-700); }
.st-tag.confirmed { background: var(--jungle-100); color: var(--jungle-700); }
.bw-meter { height: 8px; background: var(--sand-300); border-radius: 999px; margin-top: 10px; overflow: hidden; }
.bw-meter-fill {
  height: 100%; border-radius: 999px; width: 0;
  background: linear-gradient(90deg, var(--coral-600), #f2924f);
  transition: width 0.9s var(--ease-out);
}
.bw-meter-fill.full { background: linear-gradient(90deg, var(--jungle-600), #4caf82); }
.bw-status-note { font-size: 0.8rem; color: var(--ink-faint); margin: 8px 0 0; }

.bw-field { margin: 14px 0; }
.bw-field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--ocean-900); margin-bottom: 6px; }
.bw-select, .bw-input {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: 1.5px solid var(--sand-300);
  font-family: var(--font-body); font-size: 0.95rem; background: #fff; color: var(--ink);
}
.bw-select:focus, .bw-input:focus { outline: none; border-color: var(--ocean-500); }

.bw-addons { display: flex; flex-direction: column; gap: 8px; }
.bw-addon {
  display: flex; align-items: center; gap: 10px; background: var(--sand-100);
  border: 1.5px solid transparent; border-radius: 10px; padding: 10px 14px; cursor: pointer;
  font-size: 0.9rem; transition: border-color 0.15s;
}
.bw-addon:hover { border-color: var(--sand-300); }
.bw-addon input { accent-color: var(--coral-600); width: 17px; height: 17px; }
.bw-addon .ao-price { margin-left: auto; font-weight: 600; color: var(--ocean-800); font-size: 0.86rem; }

/* payment choice + cash discount */
.bw-pay { display: grid; gap: 8px; }
.bw-pay-opt {
  display: flex; align-items: flex-start; gap: 10px; border: 1.5px solid var(--sand-300);
  border-radius: 12px; padding: 12px 14px; cursor: pointer; transition: all 0.15s; background: #fff;
}
.bw-pay-opt:hover { border-color: var(--ocean-500); }
.bw-pay-opt.selected { border-color: var(--ocean-800); background: var(--ocean-100); }
.bw-pay-opt input { accent-color: var(--ocean-800); margin-top: 3px; }
.bw-pay-opt b { display: block; font-size: 0.92rem; }
.bw-pay-opt small { color: var(--ink-faint); font-size: 0.8rem; line-height: 1.4; }
.cash-badge {
  display: inline-block; background: var(--jungle-100); color: var(--jungle-700);
  font-size: 0.72rem; font-weight: 700; padding: 2px 9px; border-radius: 999px; margin-left: 6px;
}

.bw-total { display: flex; flex-direction: column; gap: 5px; border-top: 1.5px dashed var(--sand-300); margin-top: 16px; padding-top: 14px; font-size: 0.92rem; }
.bw-total-row { display: flex; justify-content: space-between; color: var(--ink-soft); }
.bw-total-row.grand { font-size: 1.12rem; font-weight: 700; color: var(--ocean-900); }
.bw-total-row.discount { color: var(--jungle-700); font-weight: 600; }
.bw-total-row.deposit { color: var(--ink-faint); font-size: 0.84rem; }
.bw-book-btn { width: 100%; justify-content: center; margin-top: 16px; font-size: 1.05rem; }
.bw-fineprint { font-size: 0.76rem; color: var(--ink-faint); text-align: center; margin: 10px 0 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; }
.faq-item { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card); margin-bottom: 12px; overflow: hidden; }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 600; color: var(--ocean-900);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--coral-600); transition: transform 0.25s; flex: none; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Forms (contact / custom trip) ---------- */
.form-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: clamp(24px, 4vw, 40px); max-width: 720px; }
.form-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: span 2; } }
.f-field label { display: block; font-size: 0.84rem; font-weight: 700; color: var(--ocean-900); margin-bottom: 6px; }
.f-field input, .f-field select, .f-field textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--sand-300);
  font-family: var(--font-body); font-size: 0.97rem; background: var(--sand-50);
}
.f-field input:focus, .f-field select:focus, .f-field textarea:focus { outline: none; border-color: var(--ocean-500); background: #fff; }
.f-field textarea { min-height: 120px; resize: vertical; }
.form-msg { border-radius: 10px; padding: 13px 16px; font-size: 0.92rem; margin-top: 14px; display: none; }
.form-msg.ok { display: block; background: var(--jungle-100); color: var(--jungle-700); }
.form-msg.err { display: block; background: var(--coral-100); color: var(--coral-700); }

/* ---------- Blog / conditions ---------- */
.post-list { display: grid; gap: 22px; grid-template-columns: 1fr; max-width: 820px; }
.post-card { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-card); padding: 26px 28px; }
.post-date { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--jungle-600); }
.post-card h3 { margin: 6px 0 8px; }
.post-card p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* ---------- Policies ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; }
.prose h3 { margin-top: 1.5em; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.parallax { will-change: transform; }
.skip-link { position: absolute; left: -9999px; top: 0; background: #fff; color: var(--ocean-900); padding: 10px 16px; z-index: 300; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
