/* =====================================================================
   SOLAIRE ROOFTOP CLUB — golden-hour sundowner & DJ terrace
   Wembley, North-West London. v7. © 2026.
   Pure CSS/SVG. Offline-first. Day/dusk theme.
   ===================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* brand palette */
  --coral: #ff6f61;
  --tangerine: #ff9e3d;
  --dusk: #5b3b8c;
  --cream: #fbf3e7;
  --navy: #15183a;

  /* derived */
  --coral-deep: #e8503f;
  --tangerine-deep: #f0851f;
  --dusk-deep: #432a6b;
  --dusk-soft: #7a5bb0;

  /* semantic surfaces (DAY theme = default) */
  --bg: #fbf3e7;
  --bg-2: #fff9f0;
  --surface: #ffffff;
  --surface-2: #fef4e9;
  --ink: #15183a;
  --ink-soft: #4a4d70;
  --ink-faint: #7d7f9c;
  --line: rgba(21, 24, 58, 0.12);
  --line-strong: rgba(21, 24, 58, 0.22);
  --hero-text: #2a1c4a;
  --header-bg: rgba(251, 243, 231, 0.78);
  --footer-bg: #15183a;
  --footer-ink: #efe6f5;
  --footer-faint: #b6abce;

  /* sky gradient stops (day -> dusk transition handled via theme) */
  --sky-1: #ffd89b;
  --sky-2: #ff9e3d;
  --sky-3: #ff6f61;
  --sky-4: #c8567e;
  --sky-5: #5b3b8c;
  --sun: #fff1cf;
  --sun-glow: rgba(255, 211, 140, 0.85);

  /* layout */
  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 18px rgba(21, 24, 58, 0.08);
  --shadow: 0 18px 50px rgba(21, 24, 58, 0.16);
  --shadow-lift: 0 28px 70px rgba(91, 59, 140, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --space: 8px;
  --font-display: "Darker Grotesque", "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* DUSK theme — deeper, the night begins */
html.dusk {
  --bg: #161235;
  --bg-2: #1e1747;
  --surface: #211a4a;
  --surface-2: #2a2059;
  --ink: #fbeede;
  --ink-soft: #d6c9ec;
  --ink-faint: #9c8fc4;
  --line: rgba(255, 232, 200, 0.14);
  --line-strong: rgba(255, 232, 200, 0.26);
  --hero-text: #fff3e2;
  --header-bg: rgba(22, 18, 53, 0.82);
  --footer-bg: #0d0a24;
  --footer-ink: #f3ead9;
  --footer-faint: #a99ccb;

  --sky-1: #ff9e3d;
  --sky-2: #ff6f61;
  --sky-3: #c8567e;
  --sky-4: #5b3b8c;
  --sky-5: #15102e;
  --sun: #ffe2ad;
  --sun-glow: rgba(255, 158, 61, 0.7);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, select, textarea, button { font-family: inherit; }

::selection { background: var(--coral); color: #fff; }
:focus-visible {
  outline: 3px solid var(--dusk-soft);
  outline-offset: 3px;
  border-radius: 6px;
}
html.dusk :focus-visible { outline-color: var(--tangerine); }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
html.dusk .kicker { color: var(--tangerine); }
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: linear-gradient(90deg, var(--tangerine), var(--coral));
  border-radius: 2px;
}

/* ---------- Layout ---------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 128px) 0; position: relative; }
.section-sm { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.muted { color: var(--ink-soft); }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.55;
}
.eyebrow-head { margin-bottom: 14px; }
.section-head { max-width: 64ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; }
.section-head h2 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 14px 0 0;
}
.skip-link {
  position: absolute; left: -999px; top: 8px;
  background: var(--dusk); color: #fff; padding: 10px 18px;
  border-radius: 10px; z-index: 200; font-weight: 700;
}
.skip-link:focus { left: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: linear-gradient(120deg, var(--tangerine), var(--coral) 70%, var(--coral-deep));
  color: #fff;
  box-shadow: 0 12px 30px rgba(255, 111, 97, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(255, 111, 97, 0.52); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--coral); color: var(--coral-deep); transform: translateY(-3px); }
html.dusk .btn-ghost:hover { color: var(--tangerine); }
.btn-dark {
  background: var(--dusk);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-dark:hover { transform: translateY(-3px); background: var(--dusk-deep); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }
.btn:active { transform: translateY(-1px) scale(0.99); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s, background 0.5s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .sun-mark {
  width: 34px; height: 34px; flex-shrink: 0;
}
.brand b { color: var(--coral-deep); }
html.dusk .brand b { color: var(--tangerine); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.nav-links a:hover { color: var(--ink); background: var(--surface-2); }
.nav-links a.active { color: var(--coral-deep); }
html.dusk .nav-links a.active { color: var(--tangerine); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px;
  height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--tangerine), var(--coral));
}
.nav-right { display: flex; align-items: center; gap: 12px; }

/* theme toggle */
.theme-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--ink-soft);
  transition: transform 0.4s var(--ease), border-color 0.3s, color 0.3s;
}
.theme-toggle:hover { transform: rotate(-25deg); border-color: var(--coral); color: var(--coral-deep); }
html.dusk .theme-toggle:hover { color: var(--tangerine); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .moon { display: none; }
html.dusk .theme-toggle .sun { display: none; }
html.dusk .theme-toggle .moon { display: block; }
.nav-cta { display: inline-flex; }

/* hamburger */
.hamburger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--line-strong);
  position: relative;
}
.hamburger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--ink);
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a.active { color: var(--coral-deep); }
html.dusk .mobile-nav a.active { color: var(--tangerine); }
.mobile-nav .btn { margin-top: 20px; font-size: 1.1rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  display: flex; align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
/* the golden-hour gradient-mesh sky */
.sky {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(120% 90% at 78% 8%, var(--sky-1) 0%, transparent 42%),
    radial-gradient(120% 80% at 20% 0%, var(--sky-2) 0%, transparent 40%),
    linear-gradient(180deg, var(--sky-1) 0%, var(--sky-2) 26%, var(--sky-3) 52%, var(--sky-4) 74%, var(--sky-5) 100%);
  background-size: 100% 100%;
  animation: skyShift 22s ease-in-out infinite alternate;
}
@keyframes skyShift {
  0%   { filter: saturate(1) brightness(1); }
  100% { filter: saturate(1.12) brightness(0.96); }
}
/* sun-disc slowly sinking */
.sun-disc {
  position: absolute; z-index: -2;
  left: 50%; top: 20%;
  width: clamp(180px, 26vw, 320px); aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, var(--sun) 0%, var(--sun) 40%, rgba(255,211,140,0.55) 60%, transparent 72%);
  box-shadow: 0 0 120px 60px var(--sun-glow);
  animation: sunSink 24s ease-in-out infinite alternate;
}
@keyframes sunSink {
  0%   { top: 14%; filter: brightness(1.06); }
  100% { top: 40%; filter: brightness(0.92); }
}
/* drifting haze clouds */
.haze {
  position: absolute; z-index: -2; inset: 0;
  background:
    radial-gradient(60% 18% at 30% 30%, rgba(255,249,240,0.28), transparent 70%),
    radial-gradient(50% 14% at 72% 44%, rgba(255,249,240,0.22), transparent 70%);
  animation: hazeDrift 40s linear infinite alternate;
}
@keyframes hazeDrift { 0% { transform: translateX(-4%); } 100% { transform: translateX(4%); } }

/* long-shadow skyline silhouette anchored to bottom */
.skyline {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: -1;
  width: 100%; height: clamp(160px, 26vw, 300px);
  color: var(--sky-5);
  opacity: 0.92;
}
html.dusk .skyline { color: #0c0922; opacity: 0.95; }
.skyline svg { width: 100%; height: 100%; }

/* film grain overlay */
.grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.5; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-inner {
  position: relative; z-index: 2;
  padding-bottom: clamp(56px, 9vw, 110px);
  padding-top: 120px;
  max-width: 920px;
}
.hero h1 {
  font-size: clamp(3.4rem, 11vw, 8.6rem);
  color: var(--hero-text);
  line-height: 0.86;
  margin: 18px 0 0;
  text-shadow: 0 2px 30px rgba(91, 59, 140, 0.18);
}
.hero h1 .glow { color: #fff; text-shadow: 0 4px 30px rgba(255,158,61,0.5); }
html.dusk .hero h1 { color: var(--hero-text); }
html.dusk .hero h1 .glow { color: var(--sun); }
.hero .lede { color: var(--hero-text); max-width: 48ch; margin-top: 22px; font-weight: 500; opacity: 0.92; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-kicker { color: var(--dusk-deep); }
html.dusk .hero-kicker { color: var(--sun); }
.hero-kicker::before { background: linear-gradient(90deg, var(--sun), var(--coral)); }

/* ---------- Trust strip ---------- */
.trust {
  background: var(--navy);
  color: var(--cream);
  padding: 22px 0;
  position: relative; z-index: 3;
}
html.dusk .trust { background: #0d0a24; }
.trust-track {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(20px, 5vw, 64px);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 0.92rem;
  color: var(--footer-faint);
  letter-spacing: 0.02em;
}
.trust-item svg { width: 19px; height: 19px; color: var(--tangerine); flex-shrink: 0; }
.trust-item b { color: var(--cream); font-weight: 700; }

/* ---------- Cards / services preview ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }

.svc-card { display: flex; flex-direction: column; }
.svc-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  margin-bottom: 18px;
  color: var(--coral-deep);
}
html.dusk .svc-icon { color: var(--tangerine); }
.svc-icon svg { width: 28px; height: 28px; }
.svc-card h3 { font-size: 1.7rem; margin-bottom: 8px; }
.svc-card p { color: var(--ink-soft); font-size: 0.98rem; flex-grow: 1; }
.svc-foot {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.price .free { color: var(--coral-deep); }
html.dusk .price .free { color: var(--tangerine); }
.price small { font-size: 0.85rem; font-weight: 600; color: var(--ink-faint); font-family: var(--font-body); }
.svc-link {
  font-weight: 700; color: var(--coral-deep); font-size: 0.92rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s;
}
html.dusk .svc-link { color: var(--tangerine); }
.svc-link:hover { gap: 11px; }
.svc-link svg { width: 15px; height: 15px; }

/* popular ribbon */
.popular { border: 2px solid var(--coral); box-shadow: 0 20px 50px rgba(255,111,97,0.2); }
.popular-tag {
  position: absolute; top: 20px; right: -34px;
  background: linear-gradient(120deg, var(--tangerine), var(--coral));
  color: #fff; font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 40px; transform: rotate(45deg);
  box-shadow: var(--shadow-sm);
}

/* ---------- Why us / stats ---------- */
.stats-band {
  background: linear-gradient(135deg, var(--dusk) 0%, var(--dusk-deep) 60%, var(--navy) 100%);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  position: relative; overflow: hidden;
}
.stats-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 50% at 85% 10%, rgba(255,158,61,0.4), transparent 60%);
  pointer-events: none;
}
.stats-band .grain { opacity: 0.3; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 2; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  line-height: 1;
  background: linear-gradient(120deg, var(--sun), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .label { color: var(--footer-faint); font-weight: 600; margin-top: 8px; font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.quote-mark {
  font-family: var(--font-display); font-weight: 800;
  font-size: 4rem; line-height: 0.6; color: var(--coral);
  opacity: 0.4; margin-bottom: 6px;
}
.quote-card p { font-size: 1.08rem; color: var(--ink); line-height: 1.5; }
.quote-by { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  color: #fff; flex-shrink: 0;
}
.quote-by .name { font-weight: 700; font-size: 0.96rem; }
.quote-by .area { color: var(--ink-faint); font-size: 0.84rem; }
.stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--tangerine); }
.stars svg { width: 17px; height: 17px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 96px) clamp(28px, 6vw, 80px);
  background: linear-gradient(115deg, var(--coral) 0%, var(--tangerine) 48%, var(--sky-1) 100%);
  color: #fff;
  text-align: center;
}
.cta-band::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 20% 110%, rgba(91,59,140,0.5), transparent 60%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2.6rem, 7vw, 5rem); color: #fff; }
.cta-band p { margin: 16px auto 30px; max-width: 52ch; font-size: 1.1rem; opacity: 0.95; font-weight: 500; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.7); color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.16); color: #fff; }
.cta-band .btn-dark { background: var(--navy); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-ink);
  padding: clamp(56px, 8vw, 88px) 0 32px;
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--tangerine), var(--coral), var(--dusk));
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .brand { color: var(--footer-ink); margin-bottom: 16px; }
.footer-brand p { color: var(--footer-faint); max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 {
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--tangerine); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { color: var(--footer-faint); font-size: 0.95rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--footer-ink); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 17px; height: 17px; color: var(--tangerine); flex-shrink: 0; margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  color: var(--footer-faint); font-size: 0.86rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center; color: var(--footer-faint);
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--tangerine); color: var(--navy); border-color: var(--tangerine); transform: translateY(-3px); }
.footer-social svg { width: 17px; height: 17px; }

/* ---------- Sticky mobile book bar ---------- */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 12px; align-items: center;
  box-shadow: 0 -8px 30px rgba(21,24,58,0.16);
}
.book-bar .bb-info { flex: 1; min-width: 0; }
.book-bar .bb-info .bb-from { font-size: 0.72rem; color: var(--ink-faint); font-weight: 600; }
.book-bar .bb-info .bb-price { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; line-height: 1; }
.book-bar .btn { flex-shrink: 0; }

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(120px, 16vw, 180px) 0 clamp(50px, 7vw, 80px);
  isolation: isolate;
}
.page-hero .sky { animation: none; opacity: 1; }
.page-hero .sun-disc { animation: none; top: 26%; opacity: 0.9; }
.page-hero h1 {
  font-size: clamp(3rem, 9vw, 6.4rem);
  color: var(--hero-text);
  margin-top: 14px;
}
.page-hero .lede { color: var(--hero-text); opacity: 0.92; margin-top: 16px; font-weight: 500; }
.page-hero .hero-kicker { color: var(--dusk-deep); }
html.dusk .page-hero .hero-kicker { color: var(--sun); }
.page-hero .skyline { height: clamp(90px, 14vw, 150px); }

/* ---------- Services list page ---------- */
.svc-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-detail {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  position: relative; overflow: hidden;
}
.svc-detail:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
  background: var(--surface-2); color: var(--ink-soft);
  border: 1px solid var(--line);
}
.tag.hot { background: linear-gradient(120deg, var(--tangerine), var(--coral)); color: #fff; border: none; }
.svc-detail h3 { font-size: 1.85rem; }
.svc-detail .svc-desc { color: var(--ink-soft); margin: 10px 0 20px; flex-grow: 1; font-size: 0.97rem; }
.svc-detail .svc-foot { margin-top: auto; }

/* ---------- About ---------- */
.story-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.story-visual {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow); position: relative;
}
.story-visual svg { width: 100%; height: 100%; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.value-card .v-num {
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  background: linear-gradient(120deg, var(--tangerine), var(--coral));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 12px;
}
.value-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 0.95rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar {
  width: 110px; height: 110px; border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.team-card h3 { font-size: 1.4rem; }
.team-card .role { color: var(--coral-deep); font-weight: 700; font-size: 0.9rem; margin-top: 4px; }
html.dusk .team-card .role { color: var(--tangerine); }
.team-card p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 10px; }

.certs { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.cert {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 24px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line);
  font-weight: 600; font-size: 0.92rem;
}
.cert svg { width: 26px; height: 26px; color: var(--coral-deep); }
html.dusk .cert svg { color: var(--tangerine); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 18px;
}
.tile {
  border-radius: var(--radius); overflow: hidden; position: relative;
  cursor: pointer;
}
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 2; }
.tile-art { position: absolute; inset: 0; }
.tile-art svg { width: 100%; height: 100%; }
.tile-cap {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(180deg, transparent 40%, rgba(21,24,58,0.78) 100%);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.tile:hover .tile-cap { opacity: 1; transform: translateY(0); }
.tile:hover .tile-art { transform: scale(1.06); }
.tile-art { transition: transform 0.6s var(--ease); }
.tile-cap h3 { color: #fff; font-size: 1.45rem; }
.tile-cap span { color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.contact-method {
  display: flex; gap: 16px; align-items: center;
  padding: 20px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--line);
  transition: transform 0.3s, border-color 0.3s;
}
.contact-method:hover { transform: translateX(6px); border-color: var(--coral); }
.contact-method .cm-icon {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--tangerine), var(--coral)); color: #fff;
}
.contact-method .cm-icon svg { width: 22px; height: 22px; }
.contact-method .cm-label { font-size: 0.78rem; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-method .cm-value { font-weight: 700; font-size: 1.05rem; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.hours-table th, .hours-table td { padding: 13px 0; text-align: left; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.hours-table th { font-family: var(--font-body); font-weight: 600; color: var(--ink-soft); }
.hours-table td { text-align: right; font-weight: 700; }
.hours-table tr.today td, .hours-table tr.today th { color: var(--coral-deep); }
html.dusk .hours-table tr.today td, html.dusk .hours-table tr.today th { color: var(--tangerine); }
.hours-table .closed { color: var(--ink-faint); font-weight: 600; }

/* forms */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.field .req { color: var(--coral-deep); }
.input, .select, .textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-2); color: var(--ink);
  font-size: 1rem; transition: border-color 0.25s, box-shadow 0.25s, background 0.3s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(255,111,97,0.16);
}
.textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error { color: var(--coral-deep); font-size: 0.84rem; margin-top: 6px; display: none; font-weight: 600; }
.field.invalid .input, .field.invalid .select, .field.invalid .textarea { border-color: var(--coral-deep); }
.field.invalid .field-error { display: block; }
.form-success {
  display: none; align-items: center; gap: 14px;
  padding: 20px; border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(255,158,61,0.16), rgba(255,111,97,0.12));
  border: 1.5px solid var(--coral);
  margin-top: 8px;
}
.form-success.show { display: flex; }
.form-success svg { width: 34px; height: 34px; color: var(--coral-deep); flex-shrink: 0; }
html.dusk .form-success svg { color: var(--tangerine); }
.form-success p { font-weight: 600; font-size: 0.96rem; }

/* map placeholder */
.map-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  position: relative; aspect-ratio: 16/12;
}
.map-card svg { width: 100%; height: 100%; }
.map-pin {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%, -100%);
  animation: pinBob 2.4s ease-in-out infinite;
}
@keyframes pinBob { 0%,100% { transform: translate(-50%, -100%); } 50% { transform: translate(-50%, -116%); } }
.map-pin svg { width: 46px; height: 56px; filter: drop-shadow(0 6px 10px rgba(21,24,58,0.3)); }
.map-badge {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--surface); padding: 12px 18px; border-radius: 12px;
  box-shadow: var(--shadow-sm); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; gap: 8px;
}
.map-badge svg { width: 16px; height: 16px; color: var(--coral-deep); }

/* ---------- Tables / Bottle service page ---------- */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.pkg {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px 30px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pkg:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pkg.featured {
  background: linear-gradient(160deg, var(--dusk) 0%, var(--dusk-deep) 70%, var(--navy) 100%);
  color: var(--cream); border: none; box-shadow: var(--shadow-lift);
}
.pkg.featured h3, .pkg.featured .pkg-price { color: #fff; }
.pkg.featured .pkg-feat li { color: var(--footer-ink); }
.pkg.featured .pkg-feat svg { color: var(--tangerine); }
.pkg-tier { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral-deep); }
.pkg.featured .pkg-tier { color: var(--tangerine); }
html.dusk .pkg-tier { color: var(--tangerine); }
.pkg h3 { font-size: 2rem; margin: 8px 0 4px; }
.pkg-price { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; margin: 14px 0 6px; }
.pkg-price small { font-size: 0.9rem; font-weight: 600; color: var(--ink-faint); font-family: var(--font-body); }
.pkg.featured .pkg-price small { color: var(--footer-faint); }
.pkg-sub { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 22px; }
.pkg.featured .pkg-sub { color: var(--footer-faint); }
.pkg-feat { display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex-grow: 1; }
.pkg-feat li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.pkg-feat svg { width: 19px; height: 19px; color: var(--coral-deep); flex-shrink: 0; margin-top: 2px; }
html.dusk .pkg-feat svg { color: var(--tangerine); }
.pkg-pop {
  position: absolute; top: 22px; right: -36px;
  background: linear-gradient(120deg, var(--tangerine), var(--coral));
  color: #fff; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 44px; transform: rotate(45deg);
}

.spend-table { width: 100%; border-collapse: collapse; margin-top: 22px; background: var(--surface); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.spend-table th, .spend-table td { padding: 16px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.spend-table thead th { background: var(--surface-2); font-family: var(--font-body); font-weight: 700; font-size: 0.84rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); }
.spend-table tbody tr:last-child td { border-bottom: none; }
.spend-table td.val { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.spend-table tbody tr:hover { background: var(--surface-2); }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: clamp(28px, 4vw, 48px); align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: 24px; }
.panel {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-sm);
}
.panel-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.panel-head .step-no {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(120deg, var(--tangerine), var(--coral));
  color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
}
.panel-head h2 { font-size: 1.7rem; }

/* time slots */
.slot-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 12px; display: block; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 10px; }
.slot {
  padding: 12px 8px; border-radius: 12px; border: 1.5px solid var(--line-strong);
  background: var(--bg-2); font-weight: 700; font-size: 0.92rem; text-align: center;
  transition: all 0.25s; position: relative;
}
.slot:hover:not(:disabled) { border-color: var(--coral); transform: translateY(-2px); }
.slot.selected { background: linear-gradient(120deg, var(--tangerine), var(--coral)); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(255,111,97,0.3); }
.slot:disabled { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }
.slot .slot-tag { display: block; font-size: 0.66rem; font-weight: 600; opacity: 0.75; margin-top: 2px; }

/* payment tabs */
.pay-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.pay-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 12px;
  border: 1.5px solid var(--line-strong); background: var(--bg-2);
  font-weight: 700; font-size: 0.9rem; transition: all 0.25s;
}
.pay-tab:hover { border-color: var(--coral); }
.pay-tab.active { border-color: var(--coral); background: linear-gradient(120deg, rgba(255,158,61,0.16), rgba(255,111,97,0.12)); color: var(--coral-deep); }
html.dusk .pay-tab.active { color: var(--tangerine); }
.pay-tab svg { width: 30px; height: 19px; }
.pay-panel { display: none; }
.pay-panel.active { display: block; animation: fadeIn 0.4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.redirect-note {
  display: flex; gap: 14px; align-items: center;
  padding: 22px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1.5px dashed var(--line-strong);
}
.redirect-note svg { width: 34px; height: 34px; color: var(--dusk); flex-shrink: 0; }
html.dusk .redirect-note svg { color: var(--tangerine); }
.redirect-note p { font-size: 0.95rem; color: var(--ink-soft); }
.redirect-note b { color: var(--ink); }

.card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card-input-wrap { position: relative; }
.card-input-wrap .card-brand {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 34px; height: 22px;
}

/* order summary */
.summary { position: sticky; top: 96px; }
.summary-card {
  background: linear-gradient(165deg, var(--dusk) 0%, var(--dusk-deep) 65%, var(--navy) 100%);
  color: var(--cream); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 36px); position: relative; overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.summary-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 50% at 90% 0%, rgba(255,158,61,0.35), transparent 60%);
}
.summary-card > * { position: relative; z-index: 2; }
.summary-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 4px; }
.summary-card .sum-sub { color: var(--footer-faint); font-size: 0.88rem; margin-bottom: 22px; }
.sum-line { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.12); font-size: 0.96rem; }
.sum-line .sum-label { color: var(--footer-faint); }
.sum-line .sum-val { font-weight: 700; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 18px; padding-top: 18px; }
.sum-total .t-label { font-size: 1.05rem; font-weight: 700; }
.sum-total .t-val { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; background: linear-gradient(120deg, var(--sun), var(--coral)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* deposit toggle */
.pay-mode { display: flex; gap: 8px; background: rgba(255,255,255,0.1); border-radius: 100px; padding: 5px; margin: 18px 0; }
.pay-mode button {
  flex: 1; padding: 10px; border-radius: 100px; font-weight: 700; font-size: 0.88rem;
  color: var(--footer-faint); transition: all 0.3s;
}
.pay-mode button.active { background: #fff; color: var(--dusk-deep); box-shadow: var(--shadow-sm); }

.promo-row { display: flex; gap: 10px; margin: 18px 0; }
.promo-row .input { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: #fff; }
.promo-row .input::placeholder { color: var(--footer-faint); }
.promo-row .btn { padding: 14px 20px; }
.promo-msg { font-size: 0.85rem; font-weight: 600; margin-top: -8px; margin-bottom: 8px; min-height: 1.2em; }
.promo-msg.ok { color: var(--tangerine); }
.promo-msg.err { color: #ff9a8f; }

.trust-foot { margin-top: 22px; }
.ssl-row { display: flex; align-items: center; gap: 10px; color: var(--footer-ink); font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }
.ssl-row svg { width: 20px; height: 20px; color: var(--tangerine); }
.gateways { display: flex; flex-wrap: wrap; gap: 8px; }
.gw-chip {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.04em;
  padding: 6px 11px; border-radius: 7px;
  background: rgba(255,255,255,0.92); color: var(--navy);
}
.demo-note {
  margin-top: 18px; font-size: 0.8rem; color: var(--footer-faint);
  display: flex; gap: 8px; align-items: center;
}
.demo-note svg { width: 15px; height: 15px; flex-shrink: 0; }

.pay-btn-wrap { margin-top: 8px; }
.spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,0.4); border-top-color: #fff;
  animation: spin 0.7s linear infinite; display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn.loading .spinner { display: block; }
.btn.loading .btn-text { opacity: 0.7; }

/* ---------- Success ---------- */
.success-wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.check-circle {
  width: 120px; height: 120px; margin: 0 auto 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tangerine), var(--coral));
  display: grid; place-items: center;
  box-shadow: 0 20px 50px rgba(255,111,97,0.4);
  position: relative;
}
.check-circle::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid var(--coral); opacity: 0;
  animation: ring 2s ease-out infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.3); opacity: 0; } }
.check-circle svg { width: 58px; height: 58px; }
.check-circle svg path {
  stroke-dasharray: 60; stroke-dashoffset: 60;
  animation: draw 0.8s var(--ease) 0.3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }
.success-wrap h1 { font-size: clamp(3rem, 8vw, 5rem); margin-bottom: 12px; }
.ref-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface); border: 1.5px solid var(--coral);
  border-radius: 100px; padding: 10px 22px; margin: 12px 0 28px;
  font-weight: 700;
}
.ref-pill .ref-code { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--coral-deep); letter-spacing: 0.04em; }
html.dusk .ref-pill .ref-code { color: var(--tangerine); }
.success-summary {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; margin: 30px 0;
  text-align: left; box-shadow: var(--shadow-sm);
}
.success-summary .ss-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); }
.success-summary .ss-row:last-child { border-bottom: none; }
.success-summary .ss-label { color: var(--ink-soft); }
.success-summary .ss-val { font-weight: 700; }
.steps { display: grid; gap: 18px; margin: 30px 0; text-align: left; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-item .step-dot {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface-2); border: 1.5px solid var(--coral);
  display: grid; place-items: center; color: var(--coral-deep);
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
}
html.dusk .step-item .step-dot { color: var(--tangerine); }
.step-item h3 { font-size: 1.25rem; margin-bottom: 4px; }
.step-item p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ---------- Decorative palm ---------- */
.palm {
  position: absolute; bottom: 0; z-index: 0; pointer-events: none;
  opacity: 0.9; color: var(--sky-5);
}
html.dusk .palm { color: #0c0922; }
.palm.left { left: -10px; width: clamp(90px, 14vw, 200px); transform-origin: bottom; animation: sway 9s ease-in-out infinite alternate; }
.palm.right { right: -10px; width: clamp(90px, 14vw, 200px); transform: scaleX(-1); transform-origin: bottom; animation: sway 11s ease-in-out infinite alternate; }
@keyframes sway { 0% { transform: rotate(-1.5deg); } 100% { transform: rotate(1.5deg); } }
.palm.right { animation-name: swayR; }
@keyframes swayR { 0% { transform: scaleX(-1) rotate(-1.5deg); } 100% { transform: scaleX(-1) rotate(1.5deg); } }

/* ---------- Misc ---------- */
.split-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.intro-pair { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: end; margin-bottom: 56px; }
.faq-link { color: var(--coral-deep); font-weight: 700; }
html.dusk .faq-link { color: var(--tangerine); }
.mini-note { font-size: 0.86rem; color: var(--ink-faint); margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-list, .grid-3, .pkg-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .story-grid, .contact-grid, .checkout-grid, .intro-pair { grid-template-columns: 1fr; }
  .story-visual { max-width: 460px; margin: 0 auto; }
  .summary { position: static; }
  .book-bar { display: flex; }
  body { padding-bottom: 78px; }
  .summary { order: -1; }
}
@media (max-width: 640px) {
  .grid-3, .grid-2, .svc-list, .pkg-grid, .values-grid, .team-grid, .grid-4 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .tile.wide { grid-column: span 2; }
  .field-row, .card-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .section { padding: 56px 0; }
  .pay-tabs { gap: 6px; }
  .pay-tab { padding: 10px 12px; font-size: 0.82rem; }
}
@media (max-width: 380px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .tile.wide, .tile.tall { grid-column: auto; grid-row: auto; }
}
