/* ══════════════════════════════════════════════
   TOKENS — GOA BEACH CLUB
══════════════════════════════════════════════ */
:root {
  --sand-100: #fdf6ec;
  --sand-200: #f5e9d0;
  --sand-300: #e8d2a8;
  --sand-400: #c9a86c;
  --coral:    #e8553a;
  --coral-2:  #ff7a54;
  --coral-dk: #c13820;
  --teal:     #1a8a7e;
  --teal-lt:  #2ebfb0;
  --teal-pale:#e0f5f3;
  --ocean:    #0d4d5a;
  --night:    #0a2a33;
  --gold:     #d4a012;
  --gold-lt:  #f5c842;
  --ink:      #1c1208;
  --ink-50:   rgba(28,18,8,0.50);
  --ink-20:   rgba(28,18,8,0.20);
  --white-80: rgba(255,255,255,0.80);
  --white-40: rgba(255,255,255,0.40);
  --white-12: rgba(255,255,255,0.12);
  --r:        12px;
  --r2:       20px;
  --r3:       28px;
  --ff-h: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-b);
  background: var(--sand-100);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── ANIMATED BACKGROUND ── */
.bg-canvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.bg-canvas::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 15%, rgba(232,85,58,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(26,138,126,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(253,246,236,1) 0%, rgba(245,233,208,0.6) 100%);
}
/* Subtle noise texture */
.bg-canvas::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 1;
}

/* ── PALM SILHOUETTES ── */
.palm-left, .palm-right {
  position: fixed; bottom: 0; z-index: 0; pointer-events: none;
  opacity: 0.07;
}
.palm-left { left: -40px; transform-origin: bottom left; }
.palm-right { right: -40px; transform-origin: bottom right; transform: scaleX(-1); }

/* ── TICKER ── */
.ticker {
  position: relative; z-index: 100;
  background: var(--coral);
  overflow: hidden; height: 32px;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker 32s linear infinite;
}
.ticker-track span {
  padding: 0 28px;
  font-size: 11px; font-weight: 500; color: #fff;
  text-transform: uppercase; letter-spacing: 0.12em;
  display: flex; align-items: center; gap: 16px;
}
.ticker-track span::after { content: '◆'; opacity: 0.5; margin-left: 16px; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(253,246,236,0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--sand-300);
}
.logo-mark {
  display: flex; align-items: baseline; gap: 2px;
  text-decoration: none;
}
.logo-goa {
  font-family: var(--ff-h);
  font-size: 28px; font-weight: 700; font-style: italic;
  color: var(--coral);
  letter-spacing: -0.02em;
}
.logo-taxis {
  font-family: var(--ff-h);
  font-size: 28px; font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex; gap: 32px; align-items: center;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--ink-50);
  text-decoration: none; letter-spacing: 0.04em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--coral); }
.nav-cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--ink); color: var(--sand-100);
  font-family: var(--ff-b); font-size: 12px; font-weight: 600;
  padding: 9px 20px; border-radius: 99px;
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--coral); transform: translateY(-1px); }
@media (max-width: 600px) { .nav-links { display: none; } }

/* ── SECTION ANCHOR ── */
.section-anchor { display: block; height: 88px; margin-top: -88px; visibility: hidden; }

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative; z-index: 10;
  padding: 80px 5% 64px;
  text-align: center;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.hero-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); }
.hero h1 {
  font-family: var(--ff-h);
  font-size: clamp(56px, 10vw, 104px);
  font-weight: 700; line-height: 0.92;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic; color: var(--coral);
  display: block;
}
.hero-sub {
  font-size: 16px; font-weight: 300; color: var(--ink-50);
  max-width: 480px; margin: 0 auto 36px;
  line-height: 1.75; letter-spacing: 0.01em;
}
.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 40px;
}
.hero-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--white-80); backdrop-filter: blur(8px);
  border: 1px solid var(--sand-300);
  border-radius: 99px; padding: 6px 14px;
  font-size: 12px; font-weight: 500; color: var(--ink);
}
.hero-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: #fff;
  font-family: var(--ff-b); font-size: 14px; font-weight: 600;
  padding: 14px 32px; border-radius: 99px;
  text-decoration: none; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(232,85,58,0.35);
}
.btn-hero-primary:hover { background: var(--coral-dk); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,85,58,0.4); }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--ink);
  font-family: var(--ff-b); font-size: 14px; font-weight: 500;
  padding: 14px 28px; border-radius: 99px;
  border: 1.5px solid var(--sand-300);
  text-decoration: none; letter-spacing: 0.03em;
  transition: border-color 0.2s, background 0.2s;
}
.btn-hero-ghost:hover { border-color: var(--ink); background: var(--sand-200); }

/* Wave divider */
.wave-divider {
  position: relative; z-index: 5; margin-top: -2px;
  line-height: 0;
}
.wave-divider svg { display: block; width: 100%; }

/* ═══════════════════════════════════
   CALCULATOR ZONE
═══════════════════════════════════ */
.calc-zone {
  position: relative; z-index: 10;
  background: var(--ocean);
  padding: 60px 5% 80px;
}
.calc-zone::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(46,191,176,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 15% 80%, rgba(232,85,58,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.calc-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }

/* Zone header */
.zone-header { text-align: center; margin-bottom: 40px; }
.zone-label {
  display: inline-block;
  font-size: 11px; font-weight: 600; color: var(--teal-lt);
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.zone-title {
  font-family: var(--ff-h);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; color: var(--sand-100);
  line-height: 1.05; letter-spacing: -0.02em;
}
.zone-title em { font-style: italic; color: var(--coral-2); }

/* ── TABS ── */
.tab-shell {
  display: flex; justify-content: center;
  gap: 4px; margin-bottom: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r3);
  padding: 5px;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .tab-shell { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; border-radius: var(--r2); }
  .tab-shell::-webkit-scrollbar { display: none; }
}
.tb {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 6px;
  padding: 10px 22px;
  border-radius: calc(var(--r3) - 2px);
  background: transparent;
  border: none; color: rgba(255,255,255,0.45);
  font-family: var(--ff-b); font-size: 13px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  transition: all 0.25s; letter-spacing: 0.02em;
}
.tb:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.06); }
.tb.on {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 2px 16px rgba(232,85,58,0.45);
}

/* ── CALC CARD ── */
.calc-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r3);
  overflow: hidden;
}
.calc-card-stripe {
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--coral-2), var(--gold-lt), var(--teal-lt));
}
.calc-card-body { padding: 36px; }
@media (max-width: 560px) { .calc-card-body { padding: 24px 20px; } }

.calc-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 32px;
}
.calc-icon-ring {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.calc-title {
  font-family: var(--ff-h);
  font-size: 26px; font-weight: 700;
  color: var(--sand-100); letter-spacing: -0.01em;
}
.calc-subtitle { font-size: 13px; color: rgba(255,255,255,0.40); margin-top: 2px; }

/* ── FORM ELEMENTS ── */
.fg { display: flex; flex-direction: column; gap: 7px; }
label {
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 0.10em;
}
.fi {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: var(--r);
  padding: 12px 16px;
  color: var(--sand-100);
  font-family: var(--ff-b); font-size: 14px; font-weight: 400;
  width: 100%; outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.fi::placeholder { color: rgba(255,255,255,0.22); }
.fi:focus { border-color: var(--teal-lt); background: rgba(255,255,255,0.09); }
.fi option { background: var(--night); color: var(--sand-100); }
select.fi { cursor: pointer; }

.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.g3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 680px) { .g3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .g2, .g3 { grid-template-columns: 1fr; } }

/* ── AUTOCOMPLETE ── */
.ac { position: relative; }
.acd {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--night); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r); max-height: 200px; overflow-y: auto;
  z-index: 50; display: none;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.acd.on { display: block; }
.aci {
  padding: 11px 16px; font-size: 13px; color: var(--sand-200);
  cursor: pointer; transition: background 0.1s;
}
.aci:hover { background: rgba(232,85,58,0.15); color: #fff; }

/* ── TOGGLE ── */
.tog-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r); padding: 13px 16px;
  margin-bottom: 14px;
}
.tog-lbl { font-size: 13px; font-weight: 400; color: rgba(255,255,255,0.75); line-height: 1.4; }
.tog-lbl small { display: block; font-size: 11px; color: rgba(255,255,255,0.35); margin-top: 2px; }
.tog { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.tog input { opacity: 0; width: 0; height: 0; }
.tog-sl {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15); border-radius: 99px;
  cursor: pointer; transition: background 0.2s;
}
.tog-sl::before {
  content: ''; position: absolute; width: 18px; height: 18px;
  left: 3px; top: 3px; background: #fff; border-radius: 50%;
  transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.tog input:checked + .tog-sl { background: var(--coral); }
.tog input:checked + .tog-sl::before { transform: translateX(20px); }
.tog-locked .tog-sl { opacity: 0.55; cursor: not-allowed; }
.tog-locked .tog-lbl { color: var(--gold-lt); }
.tog-locked .tog-lbl small { color: rgba(212,160,18,0.7); }

/* ── PRICE OUTPUT ── */
.po-wrap { position: relative; }
.po {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r);
  padding: 14px 18px;
  font-family: var(--ff-h); font-size: 26px; font-weight: 600;
  color: rgba(255,255,255,0.25);
  min-height: 56px; transition: color 0.2s, border-color 0.2s;
}
.po.lit { color: var(--gold-lt); border-color: rgba(212,160,18,0.3); }
.po-spin {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--teal-lt); border-radius: 50%;
  display: none; animation: spin 0.7s linear infinite;
}
.po-spin.on { display: block; }
@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }
.po-note { font-size: 11px; color: rgba(255,255,255,0.3); margin-top: 5px; }

/* ── SURCHARGE ── */
.surcharge-badge {
  display: none; align-items: center; gap: 10px;
  background: rgba(212,160,18,0.10);
  border: 1px solid rgba(212,160,18,0.30);
  border-radius: var(--r); padding: 12px 16px;
  font-size: 13px; font-weight: 500; color: var(--gold-lt);
  width: 100%; min-height: 56px;
}
.surcharge-badge.show { display: flex; }
.sc-time-note { font-size: 11px; color: rgba(212,160,18,0.6); margin-top: 4px; }

/* ── RESULT PANEL ── */
.rp {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r2);
  padding: 20px 22px; margin: 16px 0; display: none;
}
.rp.show { display: block; animation: fadeUp 0.35s ease; }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.rr { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; }
.rl { font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.rv { font-size: 14px; color: rgba(255,255,255,0.80); font-weight: 400; text-align: right; }
.rv.big { font-family: var(--ff-h); font-size: 28px; font-weight: 700; color: var(--gold-lt); }
.rv-tag {
  background: rgba(46,191,176,0.12); border: 1px solid rgba(46,191,176,0.25);
  border-radius: 99px; padding: 2px 10px; font-size: 12px; color: var(--teal-lt); font-weight: 500;
}
.rdiv { height: 1px; background: rgba(255,255,255,0.07); margin: 8px 0; }
.rnote { font-size: 12px; color: rgba(255,255,255,0.28); margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.07); line-height: 1.7; }

/* ── STATUS ── */
.st { font-size: 13px; border-radius: var(--r); }
.st.ok  { padding: 11px 16px; background: rgba(46,191,176,0.10); color: var(--teal-lt); border: 1px solid rgba(46,191,176,0.25); }
.st.err { padding: 11px 16px; background: rgba(232,85,58,0.10); color: #ff8c6e; border: 1px solid rgba(232,85,58,0.25); }
.st.info{ padding: 11px 16px; background: rgba(212,160,18,0.08); color: var(--gold-lt); border: 1px solid rgba(212,160,18,0.22); }

/* ── CHIPS ── */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(46,191,176,0.08); border: 1px solid rgba(46,191,176,0.18);
  border-radius: 99px; padding: 5px 12px;
  font-size: 12px; color: var(--teal-lt); font-weight: 500;
}
.chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal-lt); flex-shrink: 0; }

/* ── DEPOSIT ── */
.deposit-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r); padding: 12px 16px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  width: 100%; min-height: 56px;
}
.deposit-badge.hidden { display: none; }
.dep-amt { color: var(--teal-lt); font-weight: 600; }
.dep-note { font-size: 11px; color: rgba(255,255,255,0.3); }

/* ── BUTTONS ── */
.g2-btn { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
@media (max-width: 480px) { .g2-btn { grid-template-columns: 1fr; } }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 99px;
  font-family: var(--ff-b); font-size: 14px; font-weight: 600;
  cursor: pointer; border: none;
  transition: all 0.2s; letter-spacing: 0.03em;
  text-decoration: none;
}
.btn-primary {
  background: var(--coral); color: #fff;
  box-shadow: 0 4px 20px rgba(232,85,58,0.35);
}
.btn-primary:hover { background: var(--coral-dk); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(232,85,58,0.45); }
.btn-wa {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.14);
}
.btn-wa:hover { background: rgba(255,255,255,0.13); }

/* pkg select spinner */
.pkg-select-wrap { position: relative; }
.pkg-loading {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; border: 2px solid rgba(255,255,255,0.12);
  border-top-color: var(--teal-lt); border-radius: 50%;
  display: none; animation: spin 0.7s linear infinite;
}
.pkg-loading.on { display: block; }

/* ── CRUISE ── */
.cruise-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 22px; }
@media (max-width: 600px) { .cruise-grid { grid-template-columns: repeat(2,1fr); } }
.cruise-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--r2); padding: 18px 14px;
  cursor: pointer; text-align: center;
  transition: all 0.22s; user-select: none;
}
.cruise-card:hover { border-color: rgba(232,85,58,0.4); background: rgba(232,85,58,0.07); }
.cruise-card.selected {
  border-color: var(--coral-2);
  background: rgba(232,85,58,0.12);
  box-shadow: 0 0 24px rgba(232,85,58,0.18);
}
.ct-icon { font-size: 30px; margin-bottom: 8px; }
.ct-name { font-size: 12px; font-weight: 600; color: var(--sand-200); margin-bottom: 5px; letter-spacing: 0.02em; }
.ct-price { font-size: 12px; color: var(--coral-2); font-weight: 500; }
.ct-dur { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 3px; }
.cruise-inclusions { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.incl-tag {
  background: rgba(46,191,176,0.08); border: 1px solid rgba(46,191,176,0.18);
  color: var(--teal-lt); border-radius: 99px;
  padding: 4px 12px; font-size: 11px; font-weight: 500;
}
.pax-stepper {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.10);
  border-radius: var(--r); padding: 8px 14px; height: 48px;
}
.pax-stepper button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: var(--sand-100);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.pax-stepper button:hover { background: rgba(232,85,58,0.2); border-color: var(--coral-2); }
.pax-val { font-family: var(--ff-h); font-size: 22px; font-weight: 700; color: var(--sand-100); min-width: 28px; text-align: center; }
.addons-check-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.addon-row {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r);
  font-size: 13px; color: rgba(255,255,255,0.70); cursor: pointer;
  transition: background 0.15s;
}
.addon-row:hover { background: rgba(232,85,58,0.07); }
.addon-row input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--coral); cursor: pointer; }
.addon-price { margin-left: auto; font-weight: 600; font-size: 13px; color: var(--coral-2); }
.cruise-note {
  background: rgba(212,160,18,0.07); border: 1px solid rgba(212,160,18,0.22);
  border-radius: var(--r); padding: 12px 16px;
  font-size: 13px; color: var(--gold-lt); margin-bottom: 14px;
  line-height: 1.6; display: none;
}
.cr-empty { text-align: center; padding: 48px 20px; color: rgba(255,255,255,0.3); }
.cr-empty .cr-big { font-size: 52px; margin-bottom: 14px; }
.cr-empty p { font-size: 14px; line-height: 1.7; }

/* ── TABS content ── */
.tc { display: none; }
.tc.on { display: block; animation: fadeUp 0.35s ease; }

/* ═══════════════════════════════════
   WAVE UP
═══════════════════════════════════ */
.wave-up { position: relative; z-index: 5; margin-bottom: -2px; line-height: 0; background: var(--ocean); }
.wave-up svg { display: block; width: 100%; }

/* ═══════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════ */
.about-section {
  position: relative; z-index: 10;
  background: var(--sand-100);
  padding: 80px 5% 60px;
}
.section-label {
  font-size: 11px; font-weight: 600; color: var(--coral);
  text-transform: uppercase; letter-spacing: 0.16em;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--ff-h);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700; color: var(--ink);
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.section-title em { font-style: italic; color: var(--coral); }

/* Stats */
.stats-band {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 56px;
}
@media (max-width: 600px) { .stats-band { grid-template-columns: repeat(2,1fr); } }
.stat-tile {
  background: var(--sand-100);
  border: 1.5px solid var(--sand-300);
  border-radius: var(--r2); padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.stat-tile:hover { border-color: var(--coral); }
.stat-n {
  font-family: var(--ff-h);
  font-size: 42px; font-weight: 700; color: var(--coral);
  line-height: 1; margin-bottom: 6px;
}
.stat-l { font-size: 11px; color: var(--ink-50); text-transform: uppercase; letter-spacing: 0.08em; }

/* Story */
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 56px; align-items: start; }
@media (max-width: 680px) { .story-layout { grid-template-columns: 1fr; } }
.story-body p {
  font-size: 15px; color: var(--ink-50); line-height: 1.85;
  margin-bottom: 14px; font-weight: 300;
}
.story-body p:last-child { margin-bottom: 0; }

/* Owner card */
.owner-tile {
  background: var(--ocean); border-radius: var(--r3);
  padding: 28px; color: var(--sand-100);
  position: relative; overflow: hidden;
}
.owner-tile::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 90% 0%, rgba(46,191,176,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.owner-inner { position: relative; z-index: 1; }
.owner-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.owner-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(232,85,58,0.15);
  border: 2px solid var(--coral-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.owner-name { font-family: var(--ff-h); font-size: 20px; font-weight: 700; color: var(--sand-100); }
.owner-role { font-size: 12px; color: rgba(255,255,255,0.40); margin-top: 2px; letter-spacing: 0.04em; }
.owner-div { height: 1px; background: rgba(255,255,255,0.10); margin-bottom: 18px; }
.owner-row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: rgba(255,255,255,0.60); margin-bottom: 12px; }
.owner-row:last-child { margin-bottom: 0; }
.owner-row-icon { font-size: 14px; width: 20px; text-align: center; flex-shrink: 0; }
.owner-row a { color: var(--coral-2); text-decoration: none; }
.owner-row a:hover { text-decoration: underline; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 48px; }
@media (max-width: 640px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
.svc-tile {
  border: 1.5px solid var(--sand-300);
  border-radius: var(--r2); padding: 22px 18px;
  background: var(--sand-100);
  transition: all 0.2s;
}
.svc-tile:hover { border-color: var(--coral); background: var(--sand-200); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.svc-e { font-size: 26px; margin-bottom: 12px; }
.svc-n { font-family: var(--ff-h); font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.svc-d { font-size: 12px; color: var(--ink-50); line-height: 1.65; }

/* Why us */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
.why-tile {
  display: flex; gap: 14px;
  background: var(--sand-100);
  border: 1.5px solid var(--sand-300);
  border-radius: var(--r2); padding: 18px;
}
.why-tile:hover { border-color: var(--teal); }
.why-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--teal-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.why-t { font-family: var(--ff-h); font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.why-d { font-size: 12px; color: var(--ink-50); line-height: 1.6; }

/* subsection heading */
.sub-heading {
  font-family: var(--ff-h);
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700; color: var(--ink);
  letter-spacing: -0.02em; margin-bottom: 20px;
  margin-top: 48px;
}
.sub-heading em { font-style: italic; color: var(--teal); }

/* ═══════════════════════════════════
   WAVE INTO CONTACT
═══════════════════════════════════ */
.wave-contact-in { position: relative; z-index: 5; line-height: 0; margin-top: -2px; }
.wave-contact-in svg { display: block; width: 100%; }

/* ═══════════════════════════════════
   CONTACT SECTION
═══════════════════════════════════ */
.contact-section {
  position: relative; z-index: 10;
  background: var(--night);
  padding: 80px 5% 80px;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 50%, rgba(46,191,176,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner { position: relative; z-index: 1; max-width: 900px; margin: 0 auto; }
.contact-title {
  font-family: var(--ff-h);
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700; color: var(--sand-100);
  line-height: 0.95; letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.contact-title em { font-style: italic; color: var(--teal-lt); }
.contact-label { font-size: 11px; font-weight: 600; color: var(--teal-lt); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 14px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; } }

/* Info */
.contact-info {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r3); padding: 32px;
}
.ci-title {
  font-family: var(--ff-h); font-size: 22px; font-weight: 700;
  color: var(--sand-100); margin-bottom: 24px; letter-spacing: -0.01em;
}
.ci-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ci-item:last-of-type { margin-bottom: 0; }
.ci-ic {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(232,85,58,0.12);
  border: 1px solid rgba(232,85,58,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.ci-lbl { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.30); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 3px; }
.ci-val { font-size: 14px; color: var(--sand-200); }
.ci-val a { color: var(--coral-2); text-decoration: none; }
.ci-val a:hover { text-decoration: underline; }
.ci-sub { font-size: 11px; color: rgba(255,255,255,0.30); margin-top: 2px; }
.wa-big-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff;
  font-family: var(--ff-b); font-size: 14px; font-weight: 600;
  padding: 14px 24px; border-radius: 99px;
  text-decoration: none; margin-top: 24px;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}
.wa-big-btn:hover { background: #1ea855; transform: translateY(-2px); }

/* Contact form */
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r3); padding: 32px;
}
.form-title {
  font-family: var(--ff-h); font-size: 22px; font-weight: 700;
  color: var(--sand-100); margin-bottom: 24px; letter-spacing: -0.01em;
}
/* form fi inside contact */
.contact-section .fi {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.10);
  color: var(--sand-100);
}
.contact-section .fi:focus { border-color: var(--teal-lt); }
.contact-section label { color: rgba(255,255,255,0.40); }
.form-st { font-size: 13px; border-radius: var(--r); margin-top: 12px; }
.form-st.ok  { padding: 11px 16px; background: rgba(46,191,176,0.10); color: var(--teal-lt); border: 1px solid rgba(46,191,176,0.25); display: block; }
.form-st.err { padding: 11px 16px; background: rgba(232,85,58,0.10); color: #ff8c6e; border: 1px solid rgba(232,85,58,0.25); display: block; }
.form-st.inf { padding: 11px 16px; background: rgba(212,160,18,0.08); color: var(--gold-lt); border: 1px solid rgba(212,160,18,0.22); display: block; }
.btn-full { width: 100%; margin-top: 4px; }

/* ═══════════════════════════════════
   MODAL
═══════════════════════════════════ */
.modal-ov {
  position: fixed; inset: 0;
  background: rgba(10,42,51,0.85);
  backdrop-filter: blur(16px);
  z-index: 1000; display: none;
  align-items: center; justify-content: center; padding: 20px;
}
.modal-ov.on { display: flex; }
.modal-box {
  background: var(--night);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r3); padding: 36px;
  max-width: 520px; width: 100%; max-height: 90vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  animation: fadeUp 0.3s ease;
}
.modal-stripe {
  height: 3px; margin: -36px -36px 28px;
  border-radius: var(--r3) var(--r3) 0 0;
  background: linear-gradient(90deg, var(--coral), var(--coral-2), var(--teal-lt));
}
.modal-close {
  position: absolute; top: 18px; right: 20px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.50); width: 32px; height: 32px;
  border-radius: 50%; font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.modal-close:hover { background: rgba(232,85,58,0.2); color: var(--coral-2); }
.modal-hdr h3 { font-family: var(--ff-h); font-size: 26px; font-weight: 700; color: var(--sand-100); margin-bottom: 6px; }
.modal-hdr p { font-size: 13px; color: rgba(255,255,255,0.40); margin-bottom: 20px; }
.modal-hdr a { color: var(--coral-2); text-decoration: none; }
.modal-prefill { background: rgba(232,85,58,0.07); border: 1px solid rgba(232,85,58,0.18); border-radius: var(--r); padding: 14px 16px; margin-bottom: 18px; display: none; }
.modal-prefill.show { display: block; }
.modal-prefill-inner { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 13px; color: rgba(255,255,255,0.50); }
.modal-prefill-inner span b { color: var(--sand-200); }
.modal-box .fi { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.10); color: var(--sand-100); }
.modal-box .fi:focus { border-color: var(--teal-lt); }
.modal-box label { color: rgba(255,255,255,0.40); }

/* ── COOKIE ── */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(10,42,51,0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.10);
  z-index: 9999; padding: 14px 5%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cookie-bar.hidden { display: none; }
.cookie-text { font-size: 12.5px; color: rgba(255,255,255,0.50); max-width: 680px; line-height: 1.6; }
.cookie-text a { color: var(--coral-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn { font-family: var(--ff-b); font-size: 12.5px; font-weight: 600; padding: 8px 18px; border-radius: 99px; border: none; cursor: pointer; transition: background 0.15s; }
.cookie-accept { background: var(--coral); color: #fff; }
.cookie-accept:hover { background: var(--coral-dk); }
.cookie-decline { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.50); border: 1px solid rgba(255,255,255,0.12); }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 10;
  background: #080f14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 5%;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 18px;
}
.f-logo { font-family: var(--ff-h); font-size: 24px; font-weight: 700; }
.f-logo .cor { color: var(--coral-2); font-style: italic; }
.f-logo .wt  { color: rgba(255,255,255,0.80); }
.flinks { display: flex; gap: 28px; flex-wrap: wrap; }
.flinks a { font-size: 12px; color: rgba(255,255,255,0.30); text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.15s; }
.flinks a:hover { color: var(--coral-2); }

/* ── SCROLL INDICATOR ── */
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
.scroll-bob { animation: bob 2s ease-in-out infinite; display: inline-block; }