/* ==========================================================================
   Koh Tao Thailand — main.css
   Design system ported from the claude.ai prototype (Site Web/*.dc.html)
   Light: cream #fbfaf7 / ink #1d1d1f / accent #0a7ea4
   Night: #0b1922 / cyan #57c4e5
   ========================================================================== */

:root {
  --cream: #fbfaf7;
  --ink: #1d1d1f;
  --ink-80: rgba(29, 29, 31, .8);
  --ink-65: rgba(29, 29, 31, .65);
  --ink-55: rgba(29, 29, 31, .55);
  --ink-40: rgba(29, 29, 31, .4);
  --line: rgba(29, 29, 31, .1);
  --line-strong: rgba(29, 29, 31, .12);
  --accent: #0a7ea4;
  --accent-dark: #085d78;
  --accent-bg: rgba(10, 126, 164, .1);
  --night: #0b1922;
  --night-2: #10222e;
  --night-line: rgba(255, 255, 255, .14);
  --cyan: #57c4e5;
  --cyan-bg: rgba(87, 196, 229, .14);
  --gold: #ffd166;
  --green: #0f8a6d;
  --white-80: rgba(255, 255, 255, .8);
  --white-65: rgba(255, 255, 255, .65);
  --radius: 24px;
  --radius-sm: 18px;
  --nav-h: 56px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}

body.night { background: var(--night); color: #fff; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
body.night a { color: var(--cyan); }
body.night a:hover { color: #8ad8ef; }

img { max-width: 100%; }

::selection { background: rgba(10, 126, 164, .18); }

@keyframes heroFade { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroZoom { from { scale: 1.08; } to { scale: 1; } }

/* ---------- layout helpers ---------- */

.wrap { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section { padding-top: clamp(70px, 9vw, 110px); padding-bottom: clamp(70px, 9vw, 110px); }
.section-tight { padding-top: 48px; padding-bottom: 48px; }

.kicker {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.night .kicker, .on-dark .kicker { color: var(--cyan); }

.h-display {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 56px);
  letter-spacing: -.03em;
  font-weight: 700;
  line-height: 1.05;
  text-wrap: balance;
}

.h-sub { margin: 14px 0 0; max-width: 620px; font-size: 18px; line-height: 1.55; color: var(--ink-65); }
.night .h-sub, .on-dark .h-sub { color: rgba(255, 255, 255, .75); }

.section-head { margin-bottom: 40px; }
.section-head.split { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---------- nav ---------- */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  background: rgba(251, 250, 247, .78);
  border-bottom: 1px solid rgba(29, 29, 31, .08);
}
body.night .nav { background: rgba(11, 25, 34, .78); border-bottom-color: rgba(255, 255, 255, .1); }

.nav-inner { max-width: 1200px; margin: 0 auto; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; gap: 16px; }

.nav-logo { font-size: 15px; font-weight: 700; letter-spacing: .14em; color: var(--ink); white-space: nowrap; }
body.night .nav-logo { color: #fff; }

.nav-links { display: flex; align-items: center; gap: 22px; font-size: 13px; }
.nav-links > a { color: var(--ink); opacity: .8; font-weight: 500; }
.nav-links > a:hover, .nav-links > a.active { opacity: 1; color: var(--ink); }
.nav-links > a.active { font-weight: 700; }
body.night .nav-links > a { color: #fff; }
body.night .nav-links > a:hover, body.night .nav-links > a.active { color: #fff; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff !important; background: var(--accent);
  padding: 7px 16px; border-radius: 99px; font-weight: 600; opacity: 1 !important;
}
.nav-cta:hover { filter: brightness(1.08); color: #fff !important; }

.cart-badge {
  min-width: 18px; height: 18px; padding: 0 5px; border-radius: 99px;
  background: #fff; color: var(--accent);
  font-size: 11px; font-weight: 700; line-height: 18px; text-align: center;
  display: none;
}
.cart-badge.show { display: inline-block; }

.nav-burger {
  display: none; background: transparent; border: none; cursor: pointer;
  width: 40px; height: 40px; padding: 8px; border-radius: 10px;
}
.nav-burger span { display: block; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: transform .25s, opacity .25s; }
body.night .nav-burger span { background: #fff; }

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .nav-links {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 8px 0 16px;
  }
  body.night .nav-links { background: var(--night); border-bottom-color: var(--night-line); }
  .nav-links.open { display: flex; }
  .nav-links > a { width: 100%; padding: 12px 24px; font-size: 15px; }
  .nav-links .nav-cta { margin: 10px 24px 0; width: auto; }
}

/* ---------- hero ---------- */

.hero { position: relative; min-height: 560px; height: 78vh; overflow: hidden; display: flex; align-items: flex-end; }
.hero.tall { height: 92vh; min-height: 620px; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 115%; object-fit: cover; animation: heroZoom 12s cubic-bezier(.2, .7, .2, 1) both; will-change: transform; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 20, 28, .66) 0%, rgba(8, 20, 28, .15) 55%); }
.hero-content { position: relative; max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 24px 72px; animation: heroFade 1s cubic-bezier(.2, .7, .2, 1) both; }
.hero-kicker { margin: 0 0 14px; font-size: 13px; letter-spacing: .22em; font-weight: 600; color: var(--white-80); text-transform: uppercase; }
.hero-title { margin: 0; font-size: clamp(46px, 8vw, 104px); line-height: .98; letter-spacing: -.03em; font-weight: 700; color: #fff; }
.hero-title.giant { font-family: 'Anton', 'Arial Narrow', sans-serif; font-weight: 400; font-size: clamp(56px, 16vw, 240px); line-height: .92; letter-spacing: .015em; text-transform: uppercase; margin-left: -4px; text-shadow: 0 10px 60px rgba(8, 20, 28, .35); }
.hero-sub { margin: 22px 0 0; max-width: 580px; font-size: 20px; line-height: 1.45; color: rgba(255, 255, 255, .9); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 99px;
  font-family: inherit; font-size: 16px; font-weight: 600; line-height: 1.2;
  border: none; cursor: pointer; transition: transform .25s, filter .25s, background .25s;
  text-align: center;
}
.btn:active { transform: scale(.98); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { filter: brightness(1.08); color: #fff; }

.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { transform: scale(1.03); color: var(--ink); }

.btn-glass { background: rgba(255, 255, 255, .16); backdrop-filter: blur(8px); color: #fff; border: 1px solid rgba(255, 255, 255, .4); }
.btn-glass:hover { transform: scale(1.03); color: #fff; }

.btn-ghost { background: transparent; color: var(--ink); border: 1px solid rgba(29, 29, 31, .2); }
.btn-ghost:hover { background: rgba(29, 29, 31, .05); color: var(--ink); }
.night .btn-ghost, .on-dark .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .35); }
.night .btn-ghost:hover, .on-dark .btn-ghost:hover { background: rgba(255, 255, 255, .08); color: #fff; }

.btn-cyan { background: var(--cyan); color: var(--night); }
.btn-cyan:hover { filter: brightness(1.06); color: var(--night); }

.btn-whatsapp { background: #25d366; color: #073b1c; }
.btn-whatsapp:hover { filter: brightness(1.05); color: #073b1c; }

/* keep button text colors above the body.night link color */
body.night .btn-primary { color: #fff; }
body.night .btn-white { color: var(--ink); }
body.night .btn-cyan { color: var(--night); }
body.night .btn-whatsapp { color: #073b1c; }
body.night .btn-glass, body.night .btn-ghost { color: #fff; }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* ---------- chips / tags ---------- */

.chip {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 99px;
  background: var(--accent-bg); color: var(--accent);
}
.night .chip, .on-dark .chip { background: var(--cyan-bg); color: var(--cyan); }
.chip.gold { background: rgba(255, 209, 102, .18); color: #8a6a12; }
.night .chip.gold, .on-dark .chip.gold { color: var(--gold); }

.filter-chip {
  font-family: inherit; font-size: 13px; font-weight: 600; padding: 8px 16px;
  border-radius: 99px; border: 1px solid rgba(29, 29, 31, .15);
  background: #fff; color: var(--ink); cursor: pointer; transition: all .25s;
}
.filter-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.night .filter-chip { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .2); color: rgba(255, 255, 255, .85); }
.night .filter-chip.active { background: var(--cyan); border-color: var(--cyan); color: var(--night); }

.filter-row { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.filter-label { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-40); width: 56px; }
.night .filter-label { color: rgba(255, 255, 255, .4); }

/* ---------- cards ---------- */

.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.card-grid.wide { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  background: #fff; display: flex; flex-direction: column; gap: 12px;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), box-shadow .35s;
  color: var(--ink);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(8, 20, 28, .1); color: var(--ink); }
.night .card { background: rgba(255, 255, 255, .03); border-color: var(--night-line); color: #fff; }
.night .card:hover { background: rgba(255, 255, 255, .07); box-shadow: none; color: #fff; }

.card h3 { margin: 6px 0 0; font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.card p { margin: 0; font-size: 15px; line-height: 1.55; color: var(--ink-65); flex: 1; }
.night .card p { color: rgba(255, 255, 255, .6); }
.card .price { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.card .chip { align-self: flex-start; }

/* photo cards (image background, text overlay) */
.photo-card {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 5; background: #e8e5df;
  transition: transform .4s cubic-bezier(.2, .7, .2, 1); color: #fff;
}
.photo-card:hover { transform: translateY(-6px); color: #fff; }
.photo-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.photo-card .shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8, 20, 28, .72) 0%, rgba(8, 20, 28, 0) 55%); }
.photo-card .meta { position: absolute; left: 24px; right: 24px; bottom: 22px; }
.photo-card .meta .kicker { color: var(--white-80); margin-bottom: 6px; font-size: 12px; letter-spacing: .18em; }
.photo-card .meta h3 { margin: 0; font-size: 26px; font-weight: 700; letter-spacing: -.02em; color: #fff; }
.photo-card .meta p { margin: 4px 0 0; font-size: 14px; color: rgba(255, 255, 255, .85); }
.photo-card .price-pill {
  position: absolute; top: 18px; right: 18px;
  background: #fff; color: var(--ink); font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 99px; box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}

/* ---------- event cards (poster grid, phangan.events pattern) ---------- */

.event-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }

.event-card {
  position: relative; display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--night-line);
  color: #fff; transition: transform .35s cubic-bezier(.2, .7, .2, 1), background .3s;
}
.event-card:hover { transform: translateY(-6px); background: rgba(255, 255, 255, .08); color: #fff; }
body.night .event-card, body.night .event-card:hover { color: #fff; }
.event-card h3 { color: #fff; }
.event-card .thumb { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #10222e; }
.event-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.2, .7, .2, 1); }
.event-card:hover .thumb img { transform: scale(1.05); }
.event-card .date-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: #fff; color: var(--ink); border-radius: 14px; padding: 8px 12px;
  text-align: center; line-height: 1.05; box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}
.event-card .date-badge .d { font-size: 20px; font-weight: 700; display: block; letter-spacing: -.02em; }
.event-card .date-badge .m { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.event-card .thumb .chip { position: absolute; top: 16px; right: 14px; background: rgba(11, 25, 34, .75); color: #fff; backdrop-filter: blur(6px); }
.event-card .ec-body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.event-card h3 { margin: 0; font-size: 21px; font-weight: 700; letter-spacing: -.015em; }
.event-card .ec-meta { margin: 0; font-size: 14px; line-height: 1.5; color: rgba(255, 255, 255, .6); flex: 1; }
.event-card .ec-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 8px; }
.event-card .ec-from { font-size: 14px; color: rgba(255, 255, 255, .7); }
.event-card .ec-from strong { font-size: 18px; color: #fff; letter-spacing: -.01em; }
.event-card .next-flag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* ---------- agenda rows ---------- */

.agenda { display: flex; flex-direction: column; border-top: 1px solid var(--night-line); }
.agenda-row {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 20px; align-items: center;
  padding: 26px 8px; border-bottom: 1px solid var(--night-line);
  color: #fff; transition: background .25s;
}
.agenda-row:hover { background: rgba(255, 255, 255, .05); color: #fff; }
.agenda-row .day { font-size: 32px; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.agenda-row .month { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .5); margin-top: 4px; }
.agenda-row h3 { margin: 0 0 4px; font-size: 23px; font-weight: 700; letter-spacing: -.015em; }
.agenda-row .where { margin: 0; font-size: 15px; color: rgba(255, 255, 255, .55); }
.agenda-row .next-flag { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-left: 10px; }
.agenda-row .side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.agenda-row .from { font-size: 13px; color: rgba(255, 255, 255, .55); }

.agenda.light { border-top-color: var(--line-strong); }
.agenda.light .agenda-row { border-bottom-color: var(--line-strong); color: var(--ink); }
.agenda.light .agenda-row:hover { background: rgba(10, 126, 164, .05); color: var(--ink); }
.agenda.light .agenda-row .month { color: var(--ink-55); }
.agenda.light .agenda-row .where { color: var(--ink-55); }
.agenda.light .agenda-row .from { color: var(--ink-55); }

@media (max-width: 640px) {
  .agenda-row { grid-template-columns: 64px 1fr; }
  .agenda-row .day { font-size: 26px; }
  .agenda-row .side { grid-column: 2; align-items: flex-start; flex-direction: row; align-items: center; }
}

/* ---------- feature band (image + text overlay) ---------- */

.feature { position: relative; border-radius: 32px; overflow: hidden; margin: 0 24px; max-width: 1400px; }
@media (min-width: 1448px) { .feature { margin: 0 auto; } }
.feature img { width: 100%; height: 74vh; min-height: 500px; object-fit: cover; display: block; }
.feature .shade { position: absolute; inset: 0; background: linear-gradient(to right, rgba(6, 26, 38, .72), rgba(6, 26, 38, .08) 65%); }
.feature .inner { position: absolute; inset: 0; display: flex; align-items: center; }
.feature .inner > div { padding: 0 clamp(28px, 6vw, 80px); max-width: 600px; }
.feature h2 { margin: 0 0 18px; font-size: clamp(34px, 4.5vw, 58px); line-height: 1.02; letter-spacing: -.03em; font-weight: 700; color: #fff; }
.feature p { margin: 0 0 28px; font-size: 18px; line-height: 1.55; color: rgba(255, 255, 255, .88); }
.feature .kicker { color: rgba(255, 255, 255, .7); }

/* ---------- detail page (event / trip) ---------- */

.detail-hero { position: relative; min-height: 420px; height: 56vh; overflow: hidden; display: flex; align-items: flex-end; }
.detail-grid { display: grid; grid-template-columns: 1fr 380px; gap: clamp(28px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }

.detail-body h2 { font-size: 26px; letter-spacing: -.02em; margin: 36px 0 14px; }
.detail-body p { font-size: 16px; line-height: 1.65; color: var(--ink-65); }
.night .detail-body p { color: rgba(255, 255, 255, .7); }

.fact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.fact-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.night .fact-list li { border-bottom-color: var(--night-line); }
.fact-list li span:first-child { color: var(--ink-55); }
.night .fact-list li span:first-child { color: rgba(255, 255, 255, .55); }
.fact-list li span:last-child { font-weight: 600; text-align: right; }

.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding: 6px 0 6px 28px; font-size: 15px; color: var(--ink-65); }
.night .check-list li { color: rgba(255, 255, 255, .7); }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 6px; color: var(--green); font-weight: 700; }
.night .check-list li::before { color: #7ee0b8; }

/* buy box */
.buy-box {
  position: sticky; top: calc(var(--nav-h) + 20px);
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 26px; display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 18px 44px rgba(8, 20, 28, .06);
}
.night .buy-box { background: rgba(255, 255, 255, .04); border-color: var(--night-line); box-shadow: none; }
.buy-box h3 { margin: 0; font-size: 20px; letter-spacing: -.015em; }
.buy-box .note { font-size: 13px; color: var(--ink-55); margin: 0; }
.night .buy-box .note { color: rgba(255, 255, 255, .55); }

.tier { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 14px; }
.night .tier { border-color: var(--night-line); }
.tier .t-name { font-weight: 600; font-size: 15px; }
.tier .t-note { font-size: 13px; color: var(--ink-55); margin-top: 2px; }
.night .tier .t-note { color: rgba(255, 255, 255, .55); }
.tier .t-price { font-weight: 700; font-size: 17px; white-space: nowrap; }

.qty { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: 99px; overflow: hidden; }
.night .qty { border-color: rgba(255, 255, 255, .25); }
.qty button {
  width: 34px; height: 34px; border: none; background: transparent; cursor: pointer;
  font-size: 17px; font-weight: 600; color: inherit; font-family: inherit;
}
.qty button:hover { background: rgba(29, 29, 31, .06); }
.night .qty button:hover { background: rgba(255, 255, 255, .1); }
.qty .q-val { min-width: 28px; text-align: center; font-weight: 700; font-size: 15px; }

/* ---------- forms ---------- */

.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink-55); }
.night .field label { color: rgba(255, 255, 255, .6); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; padding: 12px 14px;
  border: 1px solid rgba(29, 29, 31, .18); border-radius: 12px;
  background: #fff; color: var(--ink); outline: none; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.night .field input, .night .field select, .night .field textarea {
  background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .2); color: #fff;
}
.night .field input:focus, .night .field select:focus, .night .field textarea:focus { border-color: var(--cyan); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- cart / checkout ---------- */

.cart-line {
  display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center;
  padding: 20px 0; border-bottom: 1px solid var(--night-line);
}
.cart-line .c-name { font-weight: 700; font-size: 17px; letter-spacing: -.01em; }
.cart-line .c-meta { font-size: 13px; color: rgba(255, 255, 255, .55); margin-top: 3px; }
.cart-line .c-price { font-weight: 700; white-space: nowrap; }
.cart-line .c-remove { background: none; border: none; color: rgba(255, 255, 255, .45); cursor: pointer; font-size: 13px; font-family: inherit; padding: 4px; }
.cart-line .c-remove:hover { color: #ff9c9c; }
@media (max-width: 560px) { .cart-line { grid-template-columns: 1fr auto; } }

.total-row { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0; font-size: 18px; }
.total-row strong { font-size: 26px; letter-spacing: -.02em; }

.pay-note {
  border: 1px solid var(--night-line); border-radius: var(--radius-sm);
  padding: 18px 20px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .03);
}

/* ---------- island map (viewer + home teaser) ---------- */

:root { --map-bg: #35a2a7; }

.map-viewer {
  position: relative; overflow: hidden; background: var(--map-bg);
  height: calc(100vh - var(--nav-h)); height: calc(100dvh - var(--nav-h));
  min-height: 480px; cursor: grab; touch-action: none; outline: none;
}
.map-viewer.grabbing { cursor: grabbing; }
.map-viewer img {
  position: absolute; top: 0; left: 0; max-width: none;
  transform-origin: 0 0; will-change: transform; user-select: none; -webkit-user-drag: none;
}

.map-controls {
  position: absolute; top: 18px; right: 18px; z-index: 5;
  display: flex; flex-direction: column; gap: 8px;
}
.map-controls button {
  width: 44px; height: 44px; border-radius: 14px; border: none; cursor: pointer;
  background: rgba(11, 25, 34, .82); color: #fff; font-size: 20px; font-weight: 600;
  font-family: inherit; backdrop-filter: blur(8px); box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.map-controls button:hover { background: rgba(11, 25, 34, .95); }

.map-spots {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 5;
  display: flex; gap: 8px; padding: 14px 18px calc(14px + env(safe-area-inset-bottom, 0px));
  overflow-x: auto; scrollbar-width: none;
  background: linear-gradient(to top, rgba(11, 25, 34, .45), transparent);
}
.map-spots::-webkit-scrollbar { display: none; }
.map-spots .filter-chip {
  flex: 0 0 auto; background: rgba(11, 25, 34, .82); color: #fff;
  border-color: transparent; backdrop-filter: blur(8px);
}
.map-spots .filter-chip.active { background: #fff; color: var(--ink); }

.map-title {
  position: absolute; top: 18px; left: 18px; z-index: 5;
  background: rgba(11, 25, 34, .82); color: #fff; backdrop-filter: blur(8px);
  border-radius: 16px; padding: 12px 18px; max-width: min(340px, 70vw);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .25);
}
.map-title h1 { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -.01em; }
.map-title p { margin: 4px 0 0; font-size: 12px; color: rgba(255, 255, 255, .65); }

/* home teaser: section background = the map's own teal, seamless blend */
.map-teaser { background: var(--map-bg); color: #073b40; }
.map-teaser .kicker { color: #073b40; opacity: .75; }
.map-teaser .h-sub { color: rgba(7, 59, 64, .8); }
.map-teaser-frame {
  display: block; border-radius: 28px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(7, 59, 64, .35);
  transition: transform .4s cubic-bezier(.2, .7, .2, 1);
}
.map-teaser-frame:hover { transform: translateY(-6px) scale(1.01); }
.map-teaser-frame img { display: block; width: 100%; }

/* ---------- stats ---------- */

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.stat { border: 1px solid var(--line); border-radius: 20px; padding: 26px; background: #fff; }
.stat .big { font-size: 38px; font-weight: 700; letter-spacing: -.03em; color: var(--accent); }
.stat .label { font-size: 15px; color: var(--ink-60, rgba(29,29,31,.6)); margin-top: 6px; }

/* ---------- footer ---------- */

.footer { background: #0b1922; color: var(--white-65); font-size: 14px; }
.footer a { color: var(--white-80); }
.footer a:hover { color: #fff; }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 64px 24px 40px; display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { max-width: 320px; }
.footer-brand .logo { font-size: 15px; font-weight: 700; letter-spacing: .14em; color: #fff; margin-bottom: 12px; }
.footer-brand p { margin: 0; line-height: 1.6; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col .col-title { font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .45); margin-bottom: 4px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 24px 24px 40px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---------- misc ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s cubic-bezier(.2, .7, .2, 1), transform .9s cubic-bezier(.2, .7, .2, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

.empty-state { text-align: center; padding: 80px 24px; }
.empty-state p { color: rgba(255, 255, 255, .6); font-size: 17px; }

.crosssell { background: var(--night-2); color: #fff; }

.badge-dot { display: inline-block; width: 8px; height: 8px; border-radius: 99px; background: var(--gold); margin-right: 8px; }

/* FAQ accordions (native details/summary) */
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 36px 22px 4px;
  font-size: 20px; font-weight: 700; letter-spacing: -.015em; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-size: 24px; font-weight: 400; color: var(--accent); transition: transform .3s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { margin: 0; padding: 0 4px 22px; font-size: 16px; line-height: 1.6; color: var(--ink-65); max-width: 640px; }

.notice {
  border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: 12px; padding: 14px 18px; font-size: 14px; color: var(--ink-65); background: #fff;
}

/* Instagram follow band (bottom of themed pages) */
.ig-band { position: relative; background-size: cover; background-position: center; padding: clamp(70px,10vw,120px) 24px; text-align: center; overflow: hidden; }
.ig-band::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(8,20,28,.5), rgba(8,20,28,.72)); }
.ig-band-inner { position: relative; max-width: 720px; margin: 0 auto; color: #fff; }
.ig-band .kicker { color: rgba(255,255,255,.72); }
.ig-band h2 { font-size: clamp(34px,5vw,54px); letter-spacing: -.02em; margin: 8px 0 10px; color: #fff; }
.ig-band p { color: rgba(255,255,255,.9); font-size: 18px; margin: 0 0 26px; }
