/* =====================================================================
   PSATHA SUMMER BAR — shared stylesheet (all pages)
   Palette (Lagoon-inspired): white · deep navy · coastal-blue accent · sandy earth tones
   Fonts:   Cormorant Garamond (display) + Inter (body)
   ===================================================================== */

/* ============ DESIGN TOKENS ============ */
:root {
  /* Lagoon-inspired: white + deep navy + coastal-blue accent + sandy earth tones */
  --whitewash: #f5fafe;
  --whitewash-2: #ece7dc;
  --sand: #e3d9c6;
  --aegean: #2aa6e6;          /* coastal blue accent */
  --aegean-deep: #16222e;     /* deep navy: headings, nav, footer, dark sections */
  --aegean-night: #0c151d;
  --aegean-soft: #88a8b8;
  --macrame: #d8c4a6;
  --macrame-deep: #1f9fdc;
  --bougainvillea: #1c2b3a;   /* navy "primary": buttons, eyebrows, prices, selected */
  --bougainvillea-soft: #6b7a88;
  --sun: #1f9fdc;             /* logo amber */
  --brand-mint: #3fbf9b;      /* logo mint-teal */
  --brand-coral: #d8442f;     /* logo coral-red */
  --ink: #1a232e;
  --ink-soft: #5d6772;

  --paper: #ffffff;
  --line: rgba(20, 30, 42, 0.12);
  --line-strong: rgba(20, 30, 42, 0.22);

  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 30px;
  --r-xl: 44px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 12px rgba(21, 72, 95, 0.08);
  --shadow-md: 0 18px 46px -20px rgba(21, 72, 95, 0.34);
  --shadow-lg: 0 44px 88px -34px rgba(21, 72, 95, 0.46);
  --glow: 0 24px 60px -22px rgba(20, 30, 42, 0.3);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.45s var(--ease);
  --maxw: 1200px;
  --nav-h: 124px;   /* nav bar height */
  --logo-h: 100px;  /* brand logo height */

  --disp: "Cormorant Garamond", Georgia, serif;
  --body: "Inter", system-ui, sans-serif;

  --weave:
    repeating-linear-gradient(45deg, rgba(184,156,116,0.18) 0 2px, transparent 2px 9px),
    repeating-linear-gradient(-45deg, rgba(184,156,116,0.18) 0 2px, transparent 2px 9px);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--whitewash);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-weight: 400;
}
h1, h2, h3, h4 { font-family: var(--disp); font-weight: 600; line-height: 1.04; margin: 0; letter-spacing: 0.005em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============ LAYOUT HELPERS ============ */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 56px); }
section { position: relative; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section.alt { background: var(--whitewash-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.sand { background: var(--sand); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--brand-coral);
}
.eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--sun); opacity: 0.9; }
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(2.4rem, 6vw, 4rem); margin: 0.4rem 0 0.7rem; color: var(--aegean-deep); }
.section-head h2 em { font-style: italic; color: var(--sun); }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; max-width: 54ch; }
.section-head.center p { margin-inline: auto; }

/* ============ BUTTONS ============ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 0.95em 1.7em; border-radius: var(--r-pill);
  font-family: var(--body); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  background: var(--bougainvillea); color: #fff; border: 1px solid transparent;
  box-shadow: var(--shadow-sm); cursor: pointer; overflow: hidden; white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t);
}
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.34) 50%, transparent 70%);
  transform: translateX(-120%); transition: transform 0.7s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--glow); }
.btn:hover::after { transform: translateX(120%); }
.btn:focus-visible { outline: 3px solid var(--sun); outline-offset: 3px; }
.btn--ghost { background: transparent; color: var(--aegean-deep); border-color: var(--line-strong); box-shadow: none; }
.btn--ghost:hover { background: rgba(43,110,143,0.07); border-color: var(--aegean); }
.btn--aegean { background: var(--aegean); }
.btn--light { background: #fff; color: var(--aegean-deep); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); box-shadow: none; }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ============ NAV (injected by app.js into #site-nav) ============ */
header.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(247, 245, 240, 0.74);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t), background var(--t), border-color var(--t);
}
header.nav.scrolled { box-shadow: var(--shadow-md); background: rgba(247,245,240,0.92); border-bottom-color: var(--line); }
/* transparent nav over a hero, until scrolled */
header.nav.over-hero:not(.scrolled) { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
header.nav.over-hero:not(.scrolled) .brand .name b,
header.nav.over-hero:not(.scrolled) nav.links a { color: #fff; }
header.nav.over-hero:not(.scrolled) .brand .name span { color: var(--bougainvillea-soft); }
header.nav.over-hero:not(.scrolled) .lang-toggle { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.4); }
header.nav.over-hero:not(.scrolled) .burger { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
header.nav.over-hero:not(.scrolled) .burger span,
header.nav.over-hero:not(.scrolled) .burger span::before,
header.nav.over-hero:not(.scrolled) .burger span::after { background: #fff; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 24px; }
/* distinctive layout — brand sits on the RIGHT (mirrored), actions on the left, links centered */
.nav-inner .nav-actions { order: 1; }
.nav-inner nav.links { order: 2; margin-inline: auto; }
.nav-inner .brand { order: 3; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { width: auto; height: var(--logo-h); flex: none; display: flex; align-items: center; justify-content: center; }
.brand .mark img { width: auto; height: 100%; object-fit: contain; }
.brand .mark .m-light { display: none; }
/* white logo on dark contexts (over-hero nav + footer) */
header.nav.over-hero:not(.scrolled) .mark .m-dark,
footer.site .mark .m-dark { display: none; }
header.nav.over-hero:not(.scrolled) .mark .m-light,
footer.site .mark .m-light { display: block; }
.brand .name { display: flex; flex-direction: column; line-height: 1.05; }
.brand .name b { font-family: var(--disp); font-weight: 700; font-size: 1.4rem; color: var(--aegean-deep); transition: color var(--t); }
.brand .name span { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.28em; color: var(--bougainvillea); transition: color var(--t); }

nav.links { display: flex; align-items: center; gap: 4px; }
nav.links a {
  position: relative; padding: 0.55em 0.85em; border-radius: var(--r-pill);
  font-size: 0.9rem; font-weight: 500; color: var(--ink-soft);
  transition: color var(--t), background var(--t);
}
nav.links a::after {
  content: ""; position: absolute; left: 50%; bottom: 6px; width: 0; height: 2px;
  background: var(--bougainvillea); transform: translateX(-50%); border-radius: 2px; transition: width var(--t);
}
nav.links a:hover { color: var(--aegean-deep); }
nav.links a:hover::after,
nav.links a[aria-current="page"]::after { width: 22px; }
nav.links a[aria-current="page"] { color: var(--bougainvillea); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 6px; padding: 0.5em 0.85em;
  border-radius: var(--r-pill); border: 1px solid var(--line-strong); background: var(--paper);
  font-family: var(--body); font-weight: 600; font-size: 0.8rem; color: var(--aegean-deep);
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
}
.lang-toggle:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.lang-toggle:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }
.lang-toggle svg { color: var(--bougainvillea); }

.burger { display: none; width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 12px; background: var(--paper); align-items: center; justify-content: center; }
.burger span, .burger span::before, .burger span::after { content: ""; display: block; width: 20px; height: 2px; background: var(--aegean-deep); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.burger span::before { transform: translateY(-6px); }
.burger span::after { transform: translateY(4px); }

/* ============ HOME HERO (video) ============ */
.hero {
  position: relative; min-height: clamp(580px, 88vh, 920px); display: flex; align-items: center;
  overflow: hidden; color: #fff; isolation: isolate; margin-top: calc(-1 * var(--nav-h)); padding-top: var(--nav-h);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background: linear-gradient(150deg, var(--aegean), var(--aegean-deep)); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(13,58,76,0.30) 0%, rgba(13,58,76,0.5) 55%, rgba(13,58,76,0.82) 100%); }
.hero-inner { padding: clamp(40px, 8vw, 96px) 0; max-width: 760px; }
.hero .eyebrow { color: var(--bougainvillea-soft); }
.hero .eyebrow::before { background: var(--bougainvillea-soft); }
.hero h1 { font-size: clamp(2.9rem, 8vw, 6rem); color: #fff; margin: 22px 0 22px; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero h1 em { font-style: italic; color: var(--sun); }
.hero .lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: rgba(255,255,255,0.9); max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.scroll-hint { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); color: rgba(255,255,255,0.8); display: grid; place-items: center; gap: 6px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.scroll-hint svg { animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ============ PAGE HERO (subpages — image/video banner) ============ */
.page-hero {
  position: relative; padding: clamp(140px, 20vw, 230px) 0 clamp(56px, 8vw, 92px);
  overflow: hidden; color: #fff; isolation: isolate; margin-top: calc(-1 * var(--nav-h));
  background-color: var(--aegean-deep); background-size: cover; background-position: center;
}
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(13,30,42,0.42), rgba(8,18,26,0.80)); }
.page-hero .eyebrow { color: var(--bougainvillea-soft); }
.page-hero .eyebrow::before { background: var(--bougainvillea-soft); }
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); color: #fff; margin: 14px 0 14px; }
.page-hero h1 em { font-style: italic; color: var(--sun); }
.page-hero p { color: rgba(255,255,255,0.9); max-width: 56ch; font-size: 1.08rem; }
.crumbs { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.crumbs a:hover { color: #fff; }

/* ============ MARQUEE (moving letters) ============ */
.marquee { overflow: hidden; background: var(--aegean-deep); color: var(--whitewash); padding: 16px 0; position: relative; }
.marquee::before, .marquee::after { content: ""; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.marquee::before { left: 0; background: linear-gradient(90deg, var(--aegean-deep), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--aegean-deep), transparent); }
.marquee-track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--disp); font-style: italic; font-weight: 500; font-size: clamp(1.4rem, 3vw, 2.3rem);
  white-space: nowrap; padding-right: 0; display: inline-block;
}
.marquee-track .sep { color: var(--sun); padding: 0 0.7em; font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ TRIBAL BANDS (Polynesian patterns, mask-tinted) ============ */
.tribal-band { width: 100%; background-color: var(--ink); -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x; -webkit-mask-position: center; mask-position: center; }
.tband-wave { height: 30px; -webkit-mask-image: url('../img/poly-wave.svg'); mask-image: url('../img/poly-wave.svg'); -webkit-mask-size: auto 30px; mask-size: auto 30px; }
.tband-geo  { height: 28px; -webkit-mask-image: url('../img/poly-geo.svg');  mask-image: url('../img/poly-geo.svg');  -webkit-mask-size: auto 28px; mask-size: auto 28px; }
.tband-tiki { height: 40px; -webkit-mask-image: url('../img/tiki-band.svg'); mask-image: url('../img/tiki-band.svg'); -webkit-mask-size: auto 40px; mask-size: auto 40px; }
.tband--sea   { background-color: var(--aegean); }
.tband--coral { background-color: var(--brand-coral); }
.tband--amber { background-color: var(--sun); }
.tband--cream { background-color: #efe7d4; }

/* ============ LETTER-BY-LETTER REVEAL ============ */
.letters .word { display: inline-block; white-space: nowrap; }
.letters .char {
  display: inline-block; opacity: 0; transform: translateY(0.85em) rotate(4deg);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease); will-change: transform, opacity;
}
.letters.lit .char { opacity: 1; transform: none; }

/* ============ WORLD — numbered 01/02/03 ============ */
.world-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.world-card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 38px); overflow: hidden; display: block;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.world-card::before { content: ""; position: absolute; left: 0; top: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sun), var(--brand-mint), var(--brand-coral)); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.world-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: transparent; }
.world-card:hover::before { transform: scaleX(1); }
.world-card .no { font-family: var(--disp); font-style: italic; font-weight: 600; font-size: 2.6rem; color: var(--sun); opacity: 0.7; line-height: 1; }
.world-card .ico { margin: 14px 0 16px; width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: rgba(43,110,143,0.1); color: var(--aegean); }
.world-card h3 { font-size: 1.7rem; color: var(--aegean-deep); }
.world-card p { color: var(--ink-soft); font-size: 0.96rem; margin-top: 10px; }
.world-card .more { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; font-family: var(--body); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--bougainvillea); transition: gap var(--t); }
.world-card:hover .more { gap: 12px; }

/* ============ PHILOSOPHY ============ */
.philosophy { padding: clamp(70px, 10vw, 130px) 0; text-align: center; background-color: var(--aegean-deep); background-size: cover; background-position: center; color: #eaf3f5; position: relative; overflow: hidden; isolation: isolate; }
.philosophy::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(12,21,29,0.74), rgba(8,15,21,0.86)); }
.philosophy::before { content: ""; position: absolute; inset: 0; background-image: var(--weave); background-size: 18px 18px; opacity: 0.12; mix-blend-mode: screen; }
.philosophy .eyebrow { color: var(--sun); justify-content: center; }
.philosophy .eyebrow::before { background: var(--sun); }
.philosophy blockquote { position: relative; z-index: 1; font-family: var(--disp); font-style: italic; font-weight: 500; font-size: clamp(1.9rem, 4.6vw, 3.4rem); line-height: 1.18; color: #fff; max-width: 16ch; margin: 18px auto 22px; }
.philosophy p { position: relative; z-index: 1; color: rgba(234,243,245,0.82); max-width: 56ch; margin: 0 auto; font-size: 1.06rem; }

/* ============ DISHES / MENU ============ */
.menu-cat { margin-bottom: clamp(40px, 5vw, 64px); }
.menu-cat:last-child { margin-bottom: 0; }
.menu-cat-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; }
.menu-cat-head h3 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--aegean-deep); font-style: italic; }
.menu-cat-head .rule { flex: 1; height: 1px; background: var(--line-strong); }
.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.dish-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.dish { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 22px; overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--bougainvillea-soft); }
.dish .ico { font-size: 1.5rem; display: block; margin-bottom: 8px; }
.dish .top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.dish h4 { font-size: 1.32rem; color: var(--aegean-deep); }
.dish .price { font-family: var(--disp); font-weight: 700; font-size: 1.2rem; color: var(--bougainvillea); white-space: nowrap; }
.dish p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 8px; }
.dish .tag { display: inline-block; margin-top: 12px; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--macrame-deep); font-weight: 700; background: rgba(184,156,116,0.16); padding: 3px 10px; border-radius: var(--r-pill); }

/* ============ DRINK LIST ============ */
.drink-list { display: grid; gap: 2px; }
.drink { display: flex; align-items: baseline; gap: 14px; padding: 18px 6px; border-bottom: 1px dashed var(--line-strong); transition: padding-left var(--t); }
.drink:hover { padding-left: 14px; }
.drink:last-child { border-bottom: none; }
.drink h4 { font-size: 1.24rem; color: var(--ink); }
.drink small { display: block; color: var(--ink-soft); font-size: 0.84rem; margin-top: 2px; }
.drink .dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); }
.drink .price { font-family: var(--disp); font-weight: 700; font-size: 1.16rem; color: var(--bougainvillea); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px, 4vw, 56px); }

/* ============ BEACH BEDS ============ */
.beds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.bed { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 3vw, 36px); position: relative; overflow: hidden; transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.bed:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.bed.feature { border-color: var(--bougainvillea); box-shadow: var(--glow); }
.bed .flag { position: absolute; top: 18px; right: 18px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; background: var(--bougainvillea); padding: 4px 12px; border-radius: var(--r-pill); }
.bed .ico { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: rgba(43,110,143,0.1); color: var(--aegean); margin-bottom: 16px; }
.bed h3 { font-size: 1.7rem; color: var(--aegean-deep); }
.bed .from { margin: 12px 0 4px; }
.bed .from b { font-family: var(--disp); font-weight: 700; font-size: 2.3rem; color: var(--bougainvillea); }
.bed .from span { color: var(--ink-soft); font-size: 0.86rem; }
.bed .min { font-size: 0.82rem; color: var(--ink-soft); }
.bed ul.perks { display: grid; gap: 10px; margin: 20px 0 24px; }
.bed ul.perks li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.bed ul.perks li svg { flex: none; color: var(--aegean); margin-top: 3px; }
.bed .btn { margin-top: auto; width: 100%; }

/* amenity chips / steps */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 9px; background: var(--paper); border: 1px solid var(--line); padding: 10px 16px; border-radius: var(--r-pill); font-size: 0.9rem; color: var(--ink-soft); transition: transform var(--t), box-shadow var(--t); }
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.chip svg { color: var(--aegean); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px,3vw,34px); }
.step .n { font-family: var(--disp); font-style: italic; font-size: 2.2rem; color: var(--bougainvillea); }
.step h4 { font-size: 1.4rem; color: var(--aegean-deep); margin: 8px 0 8px; }
.step p { color: var(--ink-soft); font-size: 0.94rem; }

/* ============ EVENTS / DJ LINEUP ============ */
.events-dark {
  background: linear-gradient(180deg, var(--aegean-deep), var(--aegean-night));
  color: #eaf3f5; position: relative; overflow: hidden;
}
/* amber tribal top/bottom bands removed per request */
.events-dark .wrap { position: relative; z-index: 3; }
.events-dark .section-head h2 { color: #fff; }
.events-dark .section-head h2 em { color: var(--sun); }
.events-dark .section-head p { color: rgba(234,243,245,0.8); }
.events-dark .eyebrow { color: var(--sun); }
.events-dark .eyebrow::before { background: var(--sun); }
.lineup { position: relative; z-index: 1; display: grid; gap: 12px; }
.gig { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; padding: 20px 24px; border-radius: var(--r-md); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); transition: transform var(--t), background var(--t), border-color var(--t); }
.gig:hover { transform: translateX(6px); background: rgba(255,255,255,0.1); border-color: var(--sun); }
.gig .date { text-align: center; min-width: 64px; }
.gig .date b { font-family: var(--disp); font-weight: 700; font-size: 1.9rem; color: var(--sun); display: block; line-height: 1; }
.gig .date span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(234,243,245,0.7); }
.gig .who h4 { color: #fff; font-size: 1.5rem; }
.gig .who span { font-size: 0.86rem; color: rgba(234,243,245,0.72); }
.gig .genre { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bougainvillea-soft); background: rgba(28,43,58,0.18); padding: 6px 14px; border-radius: var(--r-pill); white-space: nowrap; }

/* weekly schedule */
.week { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.day { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 14px; text-align: center; transition: transform var(--t), box-shadow var(--t); }
.day:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.day b { display: block; font-family: var(--disp); font-size: 1.3rem; color: var(--aegean-deep); }
.day span { font-size: 0.82rem; color: var(--ink-soft); }
.day .hl { color: var(--bougainvillea); font-weight: 600; }

/* ============ GALLERY ============ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 14px; }
.g-cell { position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); background-size: cover; background-position: center; transition: transform var(--t), box-shadow var(--t); }
.g-cell::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(43,110,143,0.18), rgba(28,43,58,0.18)); }
.g-cell:hover { transform: scale(1.02); box-shadow: var(--shadow-md); z-index: 2; }
.g-cell.tall { grid-row: span 2; }
.g-cell.wide { grid-column: span 2; }

/* ============ CTA BAND ============ */
.cta-band { background-color: var(--aegean-deep); background-size: cover; background-position: center; color: #fff; text-align: center; padding: clamp(56px, 8vw, 96px) 0; position: relative; overflow: hidden; isolation: isolate; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(20,30,42,0.82), rgba(28,43,58,0.66)); }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 50ch; margin: 14px auto 26px; }
.cta-band .hero-cta { justify-content: center; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.info-row:last-of-type { border-bottom: none; }
.info-row .ic { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(43,110,143,0.1); color: var(--aegean); }
.info-row b { color: var(--aegean-deep); font-family: var(--disp); font-weight: 600; font-size: 1.1rem; display: block; }
.info-row span { color: var(--ink-soft); font-size: 0.92rem; }
.map { margin-top: 22px; position: relative; border-radius: var(--r-md); overflow: hidden; height: 220px; border: 1px solid var(--line); background: linear-gradient(135deg, #e7eef0, #d2e6ea); }
.map .roads { position: absolute; inset: 0; opacity: 0.5; }
.map .pin { position: absolute; left: 50%; top: 46%; transform: translate(-50%, -100%); color: var(--bougainvillea); filter: drop-shadow(0 6px 8px rgba(21,72,95,0.3)); }
.map .pin::after { content: ""; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%); width: 18px; height: 6px; border-radius: 50%; background: rgba(21,72,95,0.25); }
/* real embedded location map */
.map-embed { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); height: clamp(340px, 48vh, 500px); background: var(--whitewash-2); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

form { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--aegean-deep); }
.field input, .field textarea, .field select { font-family: var(--body); font-size: 0.95rem; padding: 0.85em 1em; border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: var(--paper); color: var(--ink); transition: border-color var(--t), box-shadow var(--t), background var(--t); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--aegean); box-shadow: 0 0 0 3px rgba(43,110,143,0.16); background: #fff; }
.field textarea { resize: vertical; min-height: 108px; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--ink-soft); }

/* ============ FOOTER (injected into #site-footer) ============ */
footer.site { background: var(--aegean-deep); color: #d6e7eb; padding: clamp(50px, 7vw, 82px) 0 32px; position: relative; }
/* skull/tiki band removed per request */
footer.site { padding-top: clamp(64px, 8vw, 96px); }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.foot-brand .mark { background: none; }
.foot-brand .name b { color: #fff; }
.foot-brand p { color: rgba(214,231,235,0.8); margin-top: 16px; max-width: 32ch; font-size: 0.92rem; }
footer.site h4 { color: #fff; font-size: 1.2rem; margin-bottom: 16px; }
.foot-list { display: grid; gap: 10px; }
.foot-list a, .foot-list span { color: rgba(214,231,235,0.82); font-size: 0.92rem; transition: color var(--t); }
.foot-list a:hover { color: var(--sun); }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,0.08); color: #fff; transition: transform var(--t), background var(--t); }
.socials a:hover { transform: translateY(-3px); background: var(--sun); color: var(--aegean-deep); }
.foot-bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; color: rgba(214,231,235,0.7); }

/* payment methods + powered-by */
.foot-pay { margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.14); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot-pay + .foot-bottom { margin-top: 20px; padding-top: 0; border-top: none; }
.pay-methods { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: rgba(214,231,235,0.7); }
.pay-card { width: 52px; height: 33px; border-radius: 6px; background: #fff; display: grid; place-items: center; box-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.pay-card svg { display: block; }
.powered { font-size: 0.84rem; color: rgba(214,231,235,0.7); display: inline-flex; align-items: center; gap: 6px; }
.powered a { color: #fff; font-weight: 600; transition: color var(--t); }
.powered a:hover { color: var(--sun); }
@media (max-width: 560px) { .foot-pay { flex-direction: column; align-items: flex-start; } }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
body:not(.js-ready) .reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }
/* failsafe: if app.js throws after boot, content must never stay hidden */
body.js-failsafe .reveal { opacity: 1 !important; transform: none !important; }
body.js-failsafe .letters .char { opacity: 1 !important; transform: none !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .world-grid, .beds-grid, .steps { grid-template-columns: 1fr; }
  .dish-grid, .dish-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .week { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  :root { --nav-h: 76px; --logo-h: 56px; }
  nav.links { display: none; }
  nav.links.open { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(247,245,240,0.98); backdrop-filter: blur(16px); padding: 16px clamp(20px,5vw,56px) 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); gap: 4px; }
  nav.links.open a { padding: 0.85em 0.4em; font-size: 1.02rem; color: var(--ink-soft); }
  .burger { display: flex; }
  .hero-cta .btn { flex: 1; justify-content: center; }
  .gig { grid-template-columns: auto 1fr; }
  .gig .genre { grid-column: 2; justify-self: start; }
}
@media (max-width: 560px) {
  .dish-grid, .dish-grid.cols-3, .foot-grid, .two, .week { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .g-cell.wide, .g-cell.tall { grid-column: span 1; grid-row: span 1; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .letters .char { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}

/* ============ ABOUT US BLOCK ============ */
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.about-copy h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(3rem, 8vw, 5.6rem); color: var(--aegean-deep); line-height: 0.95; margin-bottom: 22px; }
.about-copy p { font-family: var(--disp); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.5; color: var(--ink-soft); max-width: 40ch; }
.about-copy p + p { margin-top: 16px; }
.about-figure { position: relative; display: grid; place-items: center; }
.about-figure svg { width: 100%; max-width: 480px; height: auto; filter: drop-shadow(0 30px 40px rgba(21,72,95,0.18)); }
.about-figure .about-photo { width: 100%; max-width: 460px; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }

/* ============ BOOKING MAP ============ */
.booking-tools { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.legend { display: flex; gap: 18px; flex-wrap: wrap; }
.legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--ink-soft); }
.legend i { width: 16px; height: 16px; border-radius: 5px; display: inline-block; border: 1px solid var(--line); }
.legend .l-free { background: var(--paper); border-color: var(--aegean-soft); }
.legend .l-book { background: #e6e8ea; border-color: transparent; }
.legend .l-sel { background: var(--bougainvillea); border-color: var(--bougainvillea); }

.cal-strip { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 12px; scrollbar-width: thin; }
.cal-day { flex: 0 0 auto; min-width: 78px; border: 1px solid var(--line); border-radius: var(--r-md); padding: 12px 8px; text-align: center; background: var(--paper); cursor: pointer; transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t); }
.cal-day:hover:not(.active) { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--aegean-soft); }
.cal-day .dow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.66rem; color: var(--ink-soft); }
.cal-day .dnum { font-family: var(--disp); font-weight: 700; font-size: 1.7rem; color: var(--aegean-deep); line-height: 1.1; }
.cal-day .mon { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); }
.cal-day.active { background: var(--aegean-deep); border-color: var(--aegean-deep); }
.cal-day.active .dow, .cal-day.active .dnum, .cal-day.active .mon { color: #fff; }

.plan { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px); margin-top: 20px; overflow: hidden; position: relative; }
.plan.beach { background: linear-gradient(180deg, var(--whitewash-2) 0%, var(--sand) 100%); }
.plan.indoor { background: linear-gradient(160deg, #efe2cd, #e3d2b6); }
.plan-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.plan-head h3 { font-size: 1.6rem; color: var(--aegean-deep); font-style: italic; }
.plan-head .zone { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--macrame-deep); font-weight: 700; }
.plan .shore { text-align: center; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--aegean); opacity: 0.8; margin-top: 10px; }
.plan .shore::before, .plan .shore::after { content: "≈≈≈≈≈"; color: var(--aegean-soft); margin: 0 10px; letter-spacing: 0; }

.rows { display: grid; gap: 14px; }
.row { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; align-items: center; }
.row .rl { flex: 0 0 22px; font-family: var(--disp); font-weight: 700; color: var(--aegean); opacity: 0.6; }

.spot { position: relative; width: 72px; height: 72px; border-radius: 14px; border: 1px solid var(--line); background: var(--paper); display: grid; place-items: center; cursor: pointer; transition: transform var(--t), box-shadow var(--t), background var(--t), border-color var(--t); padding: 0; }
.spot .sid { position: absolute; top: 5px; left: 0; right: 0; text-align: center; font-size: 0.56rem; color: var(--ink-soft); letter-spacing: 0.05em; }
.spot .sprice { position: absolute; bottom: 5px; left: 0; right: 0; text-align: center; font-size: 0.66rem; font-weight: 700; color: var(--aegean-deep); }
.spot svg { color: var(--aegean); transition: color var(--t); }
.spot.cabana { width: 104px; }
.spot.table { border-radius: 50%; }
.spot[data-state="free"]:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--aegean); }
.spot[data-state="booked"] { background: #e6e8ea; border-color: transparent; cursor: not-allowed; opacity: 0.75; }
.spot[data-state="booked"] svg { color: #98a1a9; }
.spot[data-state="booked"] .sid, .spot[data-state="booked"] .sprice { color: #98a1a9; }
.spot[data-state="selected"] { background: var(--bougainvillea); border-color: var(--bougainvillea); box-shadow: var(--glow); }
.spot[data-state="selected"] svg, .spot[data-state="selected"] .sid, .spot[data-state="selected"] .sprice { color: #fff; }
.spot:focus-visible { outline: 3px solid var(--sun); outline-offset: 2px; }

.booking-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding: 18px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.booking-bar .summary { font-size: 0.95rem; color: var(--ink-soft); }
.booking-bar .summary strong { color: var(--aegean-deep); font-family: var(--disp); font-size: 1.15rem; }
.booking-bar .summary .picks { color: var(--bougainvillea); font-weight: 600; }
.booking-bar .btn[disabled] { opacity: 0.45; pointer-events: none; }

@media (max-width: 980px) { .about-grid { grid-template-columns: 1fr; } .about-figure { order: -1; max-width: 380px; margin-inline: auto; } }
@media (max-width: 560px) { .spot { width: 62px; height: 62px; } .spot.cabana { width: 88px; } .spot svg { width: 20px; height: 20px; } .spot .sprice { font-size: 0.6rem; } .booking-tools { flex-direction: column; align-items: flex-start; } }

/* ============ FORM FEEDBACK: inline errors ============ */
.field .field-error { font-size: 0.78rem; font-weight: 600; color: var(--brand-coral); display: none; }
.field.invalid .field-error { display: block; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--brand-coral); }
.field.invalid input:focus, .field.invalid textarea:focus, .field.invalid select:focus { box-shadow: 0 0 0 3px rgba(216,68,47,0.16); }

/* ============ TOASTS (accessible, on-brand) ============ */
.toast-wrap { position: fixed; z-index: 9999; right: clamp(14px, 4vw, 28px); bottom: clamp(14px, 4vw, 28px); display: flex; flex-direction: column; gap: 12px; width: min(380px, calc(100vw - 28px)); pointer-events: none; }
.toast { pointer-events: auto; display: flex; align-items: flex-start; gap: 12px; padding: 15px 16px; background: var(--paper); color: var(--ink); border: 1px solid var(--line); border-left: 4px solid var(--brand-mint); border-radius: var(--r-md); box-shadow: var(--shadow-lg); font-family: var(--body); font-size: 0.92rem; line-height: 1.45; transform: translateY(14px); opacity: 0; transition: transform var(--t), opacity var(--t); }
.toast.in { transform: translateY(0); opacity: 1; }
.toast.error { border-left-color: var(--brand-coral); }
.toast .ic { flex: 0 0 auto; margin-top: 1px; color: var(--brand-mint); }
.toast.error .ic { color: var(--brand-coral); }
.toast .tx { flex: 1 1 auto; }
.toast .tx b { display: block; font-family: var(--disp); font-size: 1.08rem; font-weight: 700; color: var(--aegean-deep); margin-bottom: 2px; }
.toast .tx a { color: var(--aegean); font-weight: 600; }
.toast .x { flex: 0 0 auto; background: none; border: 0; cursor: pointer; color: var(--ink-soft); padding: 2px; line-height: 0; border-radius: var(--r-sm); transition: color var(--t); }
.toast .x:hover { color: var(--ink); }
@media (prefers-reduced-motion: reduce) { .toast { transition: opacity 0.2s linear; transform: none; } }

/* ============ HOME HERO — slideshow (photos + moving text) ============ */
.hero-show { position: relative; min-height: clamp(600px, 92vh, 960px); display: flex; align-items: flex-end; overflow: hidden; color: #fff; isolation: isolate; margin-top: calc(-1 * var(--nav-h)); padding: calc(var(--nav-h) + 24px) 0 clamp(34px, 5vw, 68px); }
.hs-stage { position: absolute; inset: 0; z-index: -2; background: var(--aegean-deep); }
.hs-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.08); transition: opacity 1.1s var(--ease), transform 7s linear; }
.hs-bg.is-active { opacity: 1; transform: scale(1); }
.hero-show::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(13,58,76,0.22) 0%, rgba(13,58,76,0.45) 45%, rgba(8,18,26,0.86) 100%); }
.hs-inner { width: 100%; display: grid; gap: clamp(20px, 3vw, 36px); grid-template-columns: 1fr auto; grid-template-areas: "body cards" "foot foot"; align-items: end; }
.hs-body { grid-area: body; }
.hs-cards { grid-area: cards; display: flex; gap: 14px; align-self: end; }
.hs-foot { grid-area: foot; }
.hs-card { position: relative; isolation: isolate; width: clamp(132px, 12vw, 168px); height: clamp(184px, 23vw, 234px); border-radius: var(--r-md); overflow: hidden; background-color: var(--aegean-deep); background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; padding: 16px; color: #fff; box-shadow: var(--shadow-md); transition: transform var(--t), box-shadow var(--t); }
.hs-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,18,26,0.12) 0%, rgba(8,18,26,0) 38%, rgba(8,18,26,0.8) 100%); transition: background var(--t); }
.hs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hs-card:hover::after { background: linear-gradient(180deg, rgba(8,18,26,0.1) 0%, rgba(8,18,26,0.04) 38%, rgba(8,18,26,0.72) 100%); }
.hs-card-kick { font-family: var(--body); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.hs-card-title { font-family: var(--disp); font-weight: 700; font-size: 1.3rem; line-height: 1.04; }
@media (max-width: 860px) { .hs-inner { grid-template-columns: 1fr; grid-template-areas: "body" "foot"; } .hs-cards { display: none; } }
.hs-brand { font-family: var(--body); font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.78rem; color: rgba(255,255,255,0.82); display: inline-flex; align-items: center; gap: 11px; }
.hs-brand::before { content: ""; width: 30px; height: 1px; background: var(--sun); }
.hs-body { max-width: 720px; }
.hs-line { display: block; line-height: 0.98; }
.hs-kicker, .hs-line, .hs-desc, .hs-cta { opacity: 0; transform: translateX(-64px); }
.hs-body.show .hs-kicker { animation: hsSlide .8s var(--ease) .02s forwards; }
.hs-body.show .hs-line:nth-of-type(1) { animation: hsSlide .9s var(--ease) .12s forwards; }
.hs-body.show .hs-line:nth-of-type(2) { animation: hsSlide .9s var(--ease) .22s forwards; }
.hs-body.show .hs-desc { animation: hsSlide .8s var(--ease) .34s forwards; }
.hs-body.show .hs-cta  { animation: hsSlide .8s var(--ease) .44s forwards; }
@keyframes hsSlide { from { opacity: 0; transform: translateX(-64px); } to { opacity: 1; transform: translateX(0); } }
.hs-kicker { display: inline-block; font-family: var(--body); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; font-size: 0.82rem; color: var(--sun); margin-bottom: 14px; }
.hs-title { font-family: var(--disp); font-weight: 700; line-height: 1.0; font-size: clamp(2.8rem, 8vw, 6rem); margin: 0 0 18px; text-shadow: 0 2px 30px rgba(0,0,0,0.28); }
.hs-title em { font-style: italic; color: var(--sun); }
.hs-desc { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: rgba(255,255,255,0.92); max-width: 42ch; margin: 0 0 26px; line-height: 1.5; }
.hs-foot { display: flex; align-items: center; gap: 16px; }
.hs-arrow { width: 46px; height: 46px; flex: 0 0 auto; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background var(--t), border-color var(--t); }
.hs-arrow:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.hs-count { font-family: var(--disp); letter-spacing: 0.08em; color: rgba(255,255,255,0.75); }
.hs-count .hs-cur { color: #fff; font-weight: 700; font-size: 1.5rem; }
.hs-dots { display: flex; gap: 10px; flex: 1 1 auto; }
.hs-dot { width: 40px; height: 3px; padding: 0; border: 0; cursor: pointer; background: rgba(255,255,255,0.28); border-radius: var(--r-pill); overflow: hidden; position: relative; }
.hs-dot.is-active { background: rgba(255,255,255,0.5); }
.hs-dot.is-active::after { content: ""; position: absolute; inset: 0; background: var(--sun); transform-origin: left; transform: scaleX(0); }
.hs-dot.is-active.run::after { animation: hsBar var(--hs-dur, 6s) linear forwards; }
@keyframes hsBar { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-show .scroll-hint { color: rgba(255,255,255,0.7); }
@media (max-width: 680px) { .hs-foot { flex-wrap: wrap; } .hs-dots { order: 3; flex-basis: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .hs-bg { transition: opacity .4s linear; transform: none; }
  .hs-kicker, .hs-title, .hs-line, .hs-desc, .hs-cta { opacity: 1 !important; transform: none !important; animation: none !important; }
  .hs-dot.is-active.run::after { animation: none; }
}

/* ============ MAIN VIDEO (film) ============ */
.film { position: relative; background: var(--aegean-night); line-height: 0; }
.film-video { display: block; width: 100%; height: clamp(420px, 78vh, 860px); object-fit: cover; }
.film-sound { position: absolute; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px); width: 50px; height: 50px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.45); background: rgba(8,18,26,0.42); color: #fff; cursor: pointer; display: grid; place-items: center; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: background var(--t); }
.film-sound:hover { background: rgba(8,18,26,0.72); }


/* ── two-direction marquee ── */
.marquee-2 { display: flex; flex-direction: column; gap: 6px; }
.marquee-2 .marquee-track { width: max-content; }
.marquee-2 .mq-a { animation: marquee 34s linear infinite; }
.marquee-2 .mq-b { animation: marqueeRev 34s linear infinite; }
@keyframes marqueeRev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ── Lagoon-style film overlay + brush borders ── */
.film-overlay { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 34px 24px; background: rgba(8,18,26,0.42); line-height: 1.5; }
.film-sun { width: 64px; height: auto; margin-bottom: 14px; opacity: .95; }
.film-script { font-family: 'Dancing Script', cursive; font-weight: 700; font-size: clamp(28px, 4.4vw, 52px); color: #fff; margin-bottom: 14px; text-shadow: 0 2px 16px rgba(0,0,0,.55); line-height: 1.1; }
.film-desc { max-width: 680px; color: rgba(255,255,255,.92); font-size: 1rem; line-height: 1.75; }
.film-brush { position: absolute; left: 0; right: 0; height: 42px; z-index: 3; background-repeat: repeat-x; background-position: center; background-size: 160px 42px; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='42' viewBox='0 0 160 42' preserveAspectRatio='none'%3E%3Cpath d='M0,0 H160 V20 Q120,42 80,20 T0,20 Z' fill='%23ffffff'/%3E%3C/svg%3E"); }
.film-brush-top { top: -1px; }
.film-brush-bottom { bottom: -1px; transform: scaleY(-1); }


/* ── Swipe showcase (full-width photo gallery) ── */
.showcase { position: relative; background: var(--aegean-deep); overflow: hidden; }
.showcase-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; cursor: grab; }
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.showcase-slide { flex: 0 0 100%; height: clamp(380px, 74vh, 780px); scroll-snap-align: center; background-size: cover; background-position: center; position: relative; }
.showcase-slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,18,26,0.62) 0%, rgba(8,18,26,0) 46%); pointer-events: none; }
.sc-cap { position: absolute; left: clamp(20px,5vw,64px); bottom: clamp(24px,5vw,54px); z-index: 1; color: #fff; font-family: var(--disp); font-style: italic; font-size: clamp(1.6rem,4vw,3rem); text-shadow: 0 2px 16px rgba(0,0,0,.5); }
.sc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 52px; height: 52px; border-radius: var(--r-pill); border: none; cursor: pointer; background: rgba(255,255,255,0.92); color: var(--aegean-deep); font-size: 28px; line-height: 1; display: grid; place-items: center; box-shadow: var(--shadow-md); transition: background var(--t), transform .15s; }
.sc-arrow:hover { background: #fff; }
.sc-arrow:active { transform: translateY(-50%) scale(0.92); }
.sc-prev { left: clamp(12px,2vw,24px); } .sc-next { right: clamp(12px,2vw,24px); }
.sc-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.sc-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.45); border: none; padding: 0; cursor: pointer; transition: background .2s, transform .2s; }
.sc-dot.active { background: #fff; transform: scale(1.3); }
@media (max-width: 560px) { .sc-arrow { display: none; } }
