/* ============================================================
   Washimoto — Hero
   Fresh & aqueous · Cyan/aqua · Liquid glass with water beads
   Built on the YasMarinaAuto editorial scaffolding
   ============================================================ */

:root {
  /* THEME */
  --bg: #150624;
  --bg-2: #25103a;
  --ink: #fbf6ff;
  --ink-dim: rgba(251, 246, 255, 0.72);
  --ink-faint: rgba(251, 246, 255, 0.42);
  --hair: rgba(220, 200, 255, 0.10);

  /* ACCENT — purple primary, orange highlight, white pop */
  --accent: #7c3aed;       /* vivid purple */
  --accent-2: #ff8b3d;     /* warm orange */
  --accent-3: #ffffff;     /* white pop */

  /* GLASS — driven by tweaks */
  --glass-blur: 28px;
  --glass-sat: 180%;
  --glass-tint-a: 0.16;
  --glass-tint-b: 0.04;
  --glass-spec: 0.42;
  --glass-border: 0.22;
  --glass-shadow: 0.55;

  /* WETNESS — driven by tweaks 0..1 */
  --wet: 0.85;
  --bead-opacity: 0.85;
  --trickle-opacity: 0.75;

  /* Background overlay strength */
  --bg-overlay: 0.55;

  /* Cursor */
  --mx: 50%;
  --my: 50%;

  /* Type */
  --display: "Sora", "Helvetica Neue", -apple-system, system-ui, sans-serif;
  --body: "Sora", "Helvetica Neue", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
}

html {
  scroll-behavior: smooth;
}
* { box-sizing: border-box; }
html, body, #app { margin: 0; padding: 0; min-height: 100%; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Home page scrolls past the hero */
body[data-page="home"],
body[data-page="content"] {
  overflow-y: auto;
  overflow-x: hidden;
}

.stage {
  /* Stage is the fixed parallax backdrop for every page */
  z-index: 0;
}

/* ============================================================
   STAGE — full-bleed background with parallax wrapper
   ============================================================ */
.stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
  pointer-events: none; /* purely decorative — never intercept touch/click */
  background:
    radial-gradient(90% 70% at 75% 20%, rgba(255, 139, 61, 0.22) 0%, transparent 55%),
    radial-gradient(110% 90% at 25% 70%, #3d1a6b 0%, #1a0a2e 55%, #0a0214 100%),
    #150624;
}

.bg-wrap {
  position: absolute;
  inset: -6%;
  z-index: 0;
  transform: translate3d(0, 0, 0);
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
  will-change: transform;
}

.bg-wrap image-slot {
  width: 100%;
  height: 100%;
  display: block;
  --is-bg: #1f0c36;
  --is-fg: rgba(255, 200, 160, 0.30);
  --is-border: rgba(180, 120, 220, 0.08);
}

/* Atmospheric overlays for legibility */
.vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(130% 90% at 28% 50%, transparent 0%, rgba(14, 4, 28, calc(var(--bg-overlay) * 0.55)) 70%, rgba(8, 2, 18, var(--bg-overlay)) 100%),
    linear-gradient(180deg, rgba(12, 4, 24, calc(var(--bg-overlay) * 0.45)) 0%, transparent 28%, transparent 55%, rgba(10, 2, 20, calc(var(--bg-overlay) * 0.85)) 100%),
    linear-gradient(90deg, rgba(14, 4, 28, calc(var(--bg-overlay) * 0.85)) 0%, transparent 38%);
  mix-blend-mode: multiply;
}

/* Caustics — slow shimmering warm/purple light gradient */
.caustics {
  position: absolute;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(40% 30% at 70% 30%, rgba(255, 139, 61, 0.18) 0%, transparent 60%),
    radial-gradient(30% 25% at 30% 70%, rgba(124, 58, 237, 0.22) 0%, transparent 60%),
    radial-gradient(50% 40% at 85% 80%, rgba(255, 200, 160, 0.10) 0%, transparent 60%);
  mix-blend-mode: screen;
  animation: causticsShift 18s ease-in-out infinite;
  opacity: 0.9;
}
@keyframes causticsShift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(2%,-1%) scale(1.05); }
  66%      { transform: translate(-1.5%,2%) scale(0.98); }
}

/* Film grain */
.grain {
  position: absolute;
  inset: -50%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grain 8s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); }
  10% { transform: translate(-2%,-1%); }
  20% { transform: translate(2%,1%); }
  30% { transform: translate(-1%,2%); }
  40% { transform: translate(1%,-2%); }
  50% { transform: translate(-2%,1%); }
  60% { transform: translate(2%,-1%); }
  70% { transform: translate(-1%,-2%); }
  80% { transform: translate(1%,2%); }
  90% { transform: translate(-2%,-1%); }
}

/* Cursor light — wide warm glow that follows the pointer */
.cursor-light {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(
      560px 560px at var(--mx) var(--my),
      color-mix(in oklch, var(--accent-2) 30%, transparent) 0%,
      transparent 70%
    );
  mix-blend-mode: screen;
  opacity: 0.85;
}

/* Floating bubbles — slow rising backdrop ornaments */
.bubbles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  opacity: calc(0.55 + var(--wet) * 0.45);
}
.bubble {
  position: absolute;
  bottom: -10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,0.85) 0%, rgba(200, 230, 255, 0.55) 18%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(78, 160, 240, 0.55) 0%, transparent 50%);
  border: 1px solid rgba(200, 230, 255, 0.40);
  box-shadow:
    inset 0 0 8px rgba(255,255,255,0.40),
    0 0 14px rgba(120, 190, 255, 0.40);
  animation: rise-b linear infinite;
  mix-blend-mode: screen;
}
@keyframes rise-b {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-120vh) translateX(40px); opacity: 0; }
}

/* ============================================================
   LIQUID GLASS — wet, beaded
   ============================================================ */
.glass {
  position: relative;
  background:
    linear-gradient(135deg,
      rgba(240, 220, 255, var(--glass-tint-a)) 0%,
      rgba(200, 170, 230, var(--glass-tint-b)) 100%);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  border: 1px solid rgba(240, 220, 255, var(--glass-border));
  box-shadow:
    inset 0 1.2px 0 rgba(255,255,255, var(--glass-spec)),
    inset 0 -1px 0 rgba(255, 139, 61, 0.10),
    inset 0 0 0 0.5px rgba(240, 220, 255, 0.06),
    0 24px 60px rgba(14, 4, 28, var(--glass-shadow)),
    0 2px 8px rgba(0,0,0, 0.35);
  overflow: hidden;
  isolation: isolate;
}

/* Specular sheen — follows local cursor (set per-element via --lx/--ly) */
.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    280px 200px at var(--lx, 50%) var(--ly, 0%),
    rgba(255,255,255, calc(var(--glass-spec) * 0.7)) 0%,
    transparent 60%
  );
  mix-blend-mode: screen;
  opacity: 0.95;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Refractive top-edge highlight */
.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg,
      rgba(255,255,255, calc(var(--glass-spec) * 0.55)) 0%,
      transparent 18%,
      transparent 82%,
      rgba(255, 139, 61, 0.14) 100%);
  mix-blend-mode: overlay;
  z-index: 1;
}

/* Water bead layer — small SVG droplets scattered across .wet-glass */
.wet-glass {
  position: relative;
}
.wet-glass .beads {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--bead-opacity);
  mix-blend-mode: screen;
  z-index: 2;
}
.wet-glass .trickle {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--trickle-opacity);
  mix-blend-mode: screen;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
}

/* A single trickling droplet — stretches as it falls */
.drop {
  position: absolute;
  top: -14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.9) 0%, rgba(255, 220, 200, 0.6) 35%, transparent 70%);
  box-shadow:
    0 0 6px rgba(255, 139, 61, 0.5),
    inset 0 0 3px rgba(255,255,255,0.4);
  animation: drop-fall linear infinite;
  will-change: transform;
}
@keyframes drop-fall {
  0%   { transform: translateY(-10px) scaleY(1);   opacity: 0; }
  10%  { transform: translateY(0)    scaleY(1.6); opacity: 1; }
  90%  { transform: translateY(calc(100% + 24px)) scaleY(2.4); opacity: 0.95; }
  100% { transform: translateY(calc(100% + 60px)) scaleY(0.6); opacity: 0; }
}

/* ============================================================
   BRAND LOGO — wordmark top-left
   ============================================================ */
.brand-stamp {
  position: fixed;
  top: 22px;
  left: 48px;
  z-index: 50;
  display: flex;
  align-items: center;
  text-decoration: none;
  animation: navIn 1s 0.05s cubic-bezier(.2,.7,.2,1) both;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.brand-stamp:hover { transform: translateY(-1px) rotate(-1deg); }
.brand-logo {
  display: block;
  height: 104px;
  width: auto;
  filter:
    drop-shadow(0 8px 22px rgba(14, 4, 28, 0.65))
    drop-shadow(0 0 22px rgba(255, 139, 61, 0.22));
  image-rendering: -webkit-optimize-contrast;
}

/* ============================================================
   NAV — pill top-right
   ============================================================ */
.nav {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 50;
  border-radius: 999px;
  padding: 8px 8px 8px 18px;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: navIn 1s 0.1s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes navIn {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-links {
  display: flex;
  gap: 2px;
}
.nav-link {
  position: relative;
  z-index: 2;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.nav-link:hover {
  color: var(--ink);
  background: rgba(240, 220, 255, 0.08);
}
.nav-link.active {
  color: var(--ink);
}
.nav-link.active::after {
  content: "";
  position: absolute;
  inset: auto 14px -2px;
  height: 1px;
  background: var(--accent-2);
  box-shadow: 0 0 8px rgba(255, 139, 61, 0.75);
}

.nav-cta { margin-left: 6px; }

/* ── Hamburger button — hidden on desktop, shown on mobile ── */
.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  margin-left: 4px;
  background: transparent;
  border: none;
  border-radius: 8px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger:focus-visible {
  outline: 2px solid rgba(255,255,255,0.35);
  outline-offset: 2px;
}
.nav-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
  pointer-events: none;
}
.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile dropdown menu ── */
.mobile-menu {
  position: fixed;
  top: 76px;
  right: 14px;
  z-index: 49;
  border-radius: 18px;
  padding: 8px;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  transform-origin: top right;
  animation: menuIn 0.22s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}
.mobile-menu-link {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-dim);
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 12px;
  transition: color 0.15s, background 0.15s;
  display: block;
}
.mobile-menu-link:hover { color: var(--ink); background: rgba(240,220,255,0.08); }
.mobile-menu-link.active { color: var(--ink); }

/* ============================================================
   HERO CONTENT
   ============================================================ */
.hero {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 240px 64px 110px;
  pointer-events: none;
}
.hero > * { pointer-events: auto; }

.hero-copy {
  max-width: 980px;
}

.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--ink-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  animation: rise 1s 0.35s cubic-bezier(.2,.7,.2,1) both;
}
.kicker .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.3); }
}
.kicker .hair {
  width: 32px; height: 1px;
  background: var(--ink-faint);
}

.headline {
  font-family: "Bebas Neue", var(--display);
  font-weight: 400;
  font-size: clamp(72px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 36px;
  color: var(--ink);
  position: relative;
}
.headline .line {
  display: block;
  padding: 0.02em 0;
}
.headline .line > span {
  display: inline-block;
  animation: lineUp 1.1s cubic-bezier(.2,.7,.2,1) both;
  will-change: transform, opacity;
}
.headline .line:nth-child(1) > span { animation-delay: 0.45s; }
.headline .line:nth-child(2) > span { animation-delay: 0.6s; }

/* H1 — stacked black 3D shadow, white fill (matches logo wordmark) */
.headline .solid {
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.55),
    2px 2px 0 rgba(0,0,0,0.50),
    3px 3px 0 rgba(0,0,0,0.45),
    4px 4px 0 rgba(0,0,0,0.40),
    5px 5px 0 rgba(0,0,0,0.35),
    6px 6px 0 rgba(0,0,0,0.30),
    7px 7px 0 rgba(0,0,0,0.26),
    8px 8px 0 rgba(0,0,0,0.22),
    9px 9px 0 rgba(0,0,0,0.18),
    10px 10px 0 rgba(0,0,0,0.14),
    14px 22px 36px rgba(0,0,0,0.60);
}

/* Tagline H2 — light editorial */
.tagline {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: -8px 0 32px;
  max-width: 640px;
  animation: rise 1s 0.7s cubic-bezier(.2,.7,.2,1) both;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.tagline br { display: inline; }

/* Subtle pulsing wet sheen behind the wordmark */
.headline .liquid {
  position: relative;
}

@keyframes lineUp {
  from { transform: translateY(40%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-dim);
  max-width: 560px;
  margin: 0 0 40px;
  font-weight: 400;
  animation: rise 1s 0.95s cubic-bezier(.2,.7,.2,1) both;
}
.sub strong { color: var(--ink); font-weight: 600; }

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  animation: rise 1s 1.1s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BUTTONS — liquid glass
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  cursor: pointer;
  border: none;
  background: transparent;
  text-decoration: none;
  user-select: none;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.btn > * { position: relative; z-index: 3; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn .arrow {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  color: #ffffff;
  background:
    radial-gradient(120% 100% at 50% 0%, #ffd4a8 0%, #ff8b3d 38%, #c2410c 78%, #5b1a05 100%);
  border: 1px solid rgba(255, 212, 168, 0.7);
  box-shadow:
    inset 0 1.2px 0 rgba(255,255,255,0.7),
    inset 0 -2px 0 rgba(60, 18, 4, 0.32),
    0 12px 36px rgba(255, 139, 61, 0.45),
    0 2px 6px rgba(0,0,0,0.45);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(200px 90px at var(--lx,50%) var(--ly,0%), rgba(255,255,255,0.65), transparent 60%);
  mix-blend-mode: screen;
  z-index: 2;
}

.btn-ghost {
  padding: 15px 23px;
}

/* ============================================================
   PROMO CHIP — Google rating / trust marker (small)
   ============================================================ */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  margin-top: 32px;
  animation: rise 1s 1.35s cubic-bezier(.2,.7,.2,1) both;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.trust-chip:hover { transform: translateY(-1px); }
.trust-chip .pin {
  color: var(--ink);
  display: inline-flex;
}
.trust-chip .pin svg { display: block; }
.trust-chip .sep {
  width: 1px; height: 12px;
  background: var(--ink-faint);
}

/* ============================================================
   WHATSAPP PILL
   ============================================================ */
.whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  animation: rise 1s 1.6s cubic-bezier(.2,.7,.2,1) both;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.whatsapp:hover { transform: translateY(-2px); }
.whatsapp .wa-ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  display: grid;
  place-items: center;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -2px 4px rgba(0,0,0,0.18),
    0 4px 14px rgba(37,211,102,0.45);
}
.whatsapp .wa-label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  padding-right: 4px;
}

/* ============================================================
   SCROLL HINT — center-bottom
   ============================================================ */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--ink-faint);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  animation: rise 1s 1.7s cubic-bezier(.2,.7,.2,1) both;
  cursor: pointer;
  transition: color .25s ease;
}
.scroll-hint:hover { color: var(--ink); }
.scroll-hint .bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--ink-faint));
  animation: scrollBar 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollBar {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .hero { padding: 200px 28px 100px; }
  .brand-stamp { left: 22px; top: 18px; }
  .brand-logo { height: 76px; }
  .nav { top: 18px; right: 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================================
   HOME SCROLL SECTIONS — Packages + Locations teasers
   Below the hero on the landing page.
   ============================================================ */

.home-section {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 120px 64px 140px;
  max-width: 1440px;
  margin: 0 auto;
  scroll-margin-top: 80px;
}

.home-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.home-section-head .copy {
  max-width: 720px;
}
.home-section-head .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ── Eyebrow shimmer — animated white sheen sweeping across the text ──
   Applied to <span class="shimmer"> inside any eyebrow. */
.eyebrow .shimmer,
.page-eyebrow .shimmer {
  position: relative;
  display: inline-block;
  color: #ffffff;
  background-image: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.82) 38%,
    rgba(255, 255, 255, 0.98) 47%,
    #ffffff 50%,
    rgba(255, 255, 255, 0.98) 53%,
    rgba(255, 255, 255, 0.82) 62%,
    rgba(255, 255, 255, 0.82) 100%
  );
  background-size: 240% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: eyebrow-shimmer 4.5s linear infinite;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

/* A subtle drifting glow that sits behind the text for extra wetness */
.eyebrow .shimmer::after,
.page-eyebrow .shimmer::after {
  content: "";
  position: absolute;
  inset: -6px -10px;
  border-radius: 999px;
  background: radial-gradient(
    60% 100% at 50% 50%,
    rgba(255, 255, 255, 0.10) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
  animation: eyebrow-glow 4.5s ease-in-out infinite;
}

@keyframes eyebrow-shimmer {
  0%   { background-position: 220% 50%; }
  100% { background-position: -120% 50%; }
}
@keyframes eyebrow-glow {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 0.9; }
}
.home-section-head .eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
}
.home-section-head h2 {
  font-family: "Bebas Neue", var(--display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 14px;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.55),
    2px 2px 0 rgba(0,0,0,0.45),
    3px 3px 0 rgba(0,0,0,0.38),
    4px 4px 0 rgba(0,0,0,0.32),
    5px 5px 0 rgba(0,0,0,0.26),
    6px 6px 0 rgba(0,0,0,0.20),
    7px 8px 18px rgba(0,0,0,0.55);
}
.home-section-head p {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}
.home-section-head .head-cta {
  flex: 0 0 auto;
}

/* Compact 3-up tier card for the home packages teaser */
.tier-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) {
  .tier-strip { grid-template-columns: 1fr; }
}
.tier-card {
  position: relative;
  border-radius: 22px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 240px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
  color: inherit;
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card.featured {
  outline: 1px solid rgba(255, 139, 61, 0.5);
  outline-offset: -1px;
  box-shadow:
    inset 0 1.2px 0 rgba(255,255,255, var(--glass-spec)),
    inset 0 -1px 0 rgba(255, 139, 61, 0.20),
    0 0 60px rgba(255, 139, 61, 0.18),
    0 24px 60px rgba(14, 4, 28, var(--glass-shadow)),
    0 2px 8px rgba(0,0,0, 0.35);
}
.tier-card .flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hair);
}
.tier-card.featured .flag {
  color: #2a0f04;
  background: linear-gradient(180deg, #ffd4a8 0%, #ff8b3d 100%);
  border-color: transparent;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 4px 14px rgba(255, 139, 61, 0.55);
}
.tier-card .tier-name {
  position: relative;
  z-index: 3;
  font-family: "Bebas Neue", var(--display);
  font-size: 42px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.tier-card .tier-meta {
  position: relative;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: -8px;
}
.tier-card .tier-from {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}
.tier-card .tier-from .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.tier-card .tier-from .val {
  font-family: "Bebas Neue", var(--display);
  font-size: 36px;
  color: #ffffff;
  line-height: 1;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    2px 3px 10px rgba(0,0,0,0.55);
  margin-left: 4px;
}
.tier-card.featured .tier-from .val {
  color: var(--accent-2);
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    2px 3px 14px rgba(255, 139, 61, 0.45);
}

/* Locations teaser — single info card + mini hours */
.loc-teaser {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 22px;
}
@media (max-width: 980px) {
  .loc-teaser { grid-template-columns: 1fr; }
}
.loc-teaser-card {
  position: relative;
  border-radius: 24px;
  padding: 32px 34px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.loc-teaser-card .addr {
  position: relative;
  z-index: 3;
  font-family: "Bebas Neue", var(--display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 0.96;
  margin: 0;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    2px 3px 14px rgba(0,0,0,0.55);
}
.loc-teaser-card .addr small {
  display: block;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--ink-dim);
  margin-top: 12px;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.loc-teaser-card .row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  font-size: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--hair);
}
.loc-teaser-card .row .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 2px;
}
.loc-teaser-card .row .val { color: var(--ink); }
.loc-teaser-card .row a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 1px;
}
.loc-teaser-card .row a:hover { border-bottom-color: var(--accent-2); }

.loc-teaser-card .cta-row {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.loc-hours-mini {
  position: relative;
  border-radius: 24px;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-hours-mini .title {
  position: relative;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 6px;
}
.loc-hours-mini .row {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "Bebas Neue", var(--display);
  font-size: 18px;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--hair);
}
.loc-hours-mini .row:last-child { border-bottom: none; }
.loc-hours-mini .row .day {
  letter-spacing: 0.06em;
}
.loc-hours-mini .row .time {
  letter-spacing: 0.02em;
  color: var(--ink);
}
.loc-hours-mini .row.closed .time { color: var(--ink-faint); }

@media (max-width: 1100px) {
  .home-section { padding: 80px 28px 100px; }
  .tier-card { padding: 22px 22px; }
  .loc-teaser-card { padding: 26px 28px; }
}

.pkg-blurb {
  position: relative;
  z-index: 3;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-dim);
  font-style: italic;
  font-weight: 300;
}

.pkg-price-stack {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--hair);
}
.pkg-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.pkg-price-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.pkg-price-val {
  font-family: "Bebas Neue", var(--display);
  font-size: 30px;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    2px 2px 0 rgba(0,0,0,0.38),
    3px 4px 12px rgba(0,0,0,0.55);
}
.pkg-card.featured .pkg-price-val {
  color: var(--accent-2);
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    2px 2px 0 rgba(0,0,0,0.38),
    3px 4px 14px rgba(255, 139, 61, 0.45);
}

/* ── Wash menu (data-table glass) ── */
.wash-section { margin-bottom: 100px; }
.wash-table {
  position: relative;
  border-radius: 24px;
  padding: 10px 14px;
  overflow: hidden;
}
.wash-thead,
.wash-row {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.4fr 2.2fr 0.7fr 0.9fr;
  align-items: center;
  gap: 22px;
  padding: 18px 18px;
}
.wash-thead {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-bottom: 1px solid var(--hair);
}
.wash-thead .wash-col-price { text-align: right; }
.wash-row + .wash-row,
.wash-thead + .wash-row { border-top: 1px solid var(--hair); }
.wash-row { transition: background .2s ease; }
.wash-row:hover { background: rgba(255, 255, 255, 0.035); }
a.wash-row { text-decoration: none; color: inherit; cursor: pointer; }
a.addon   { text-decoration: none; color: inherit; cursor: pointer; }

.wash-col-name {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Bebas Neue", var(--display);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.wash-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  background: rgba(255, 139, 61, 0.12);
  border: 1px solid rgba(255, 139, 61, 0.35);
  padding: 4px 8px;
  border-radius: 6px;
  line-height: 1;
}
.wash-col-inc {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-dim);
}
.wash-col-price {
  text-align: right;
  font-family: "Bebas Neue", var(--display);
  font-size: 30px;
  letter-spacing: 0.01em;
  color: #ffffff;
  line-height: 1;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    2px 3px 10px rgba(0,0,0,0.55);
}
.wash-col-price .cur {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  margin-right: 4px;
  vertical-align: 5px;
}

@media (max-width: 900px) {
  .wash-thead { display: none; }
  .wash-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "name name"
      "inc inc"
      "p1 p2";
    gap: 10px;
    padding: 18px 16px;
  }
  .wash-row .wash-col-name { grid-area: name; }
  .wash-row .wash-col-inc { grid-area: inc; }
  .wash-row .wash-col-price:nth-of-type(3) {
    grid-area: p1;
    text-align: left;
  }
  .wash-row .wash-col-price:nth-of-type(4) {
    grid-area: p2;
    text-align: right;
  }
  .wash-row .wash-col-price::before {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-faint);
    display: block;
    margin-bottom: 2px;
  }
  .wash-row .wash-col-price:nth-of-type(3)::before { content: "Car"; }
  .wash-row .wash-col-price:nth-of-type(4)::before { content: "Bakkie · SUV · 4×4"; }
}

/* ── Premium grid ── */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-bottom: 100px;
}
.premium-card {
  position: relative;
  border-radius: 22px;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.premium-card:hover { transform: translateY(-4px); }
.premium-name {
  position: relative;
  z-index: 3;
  font-family: "Bebas Neue", var(--display);
  font-size: 28px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}
.premium-name small {
  display: block;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--ink-dim);
  margin-top: 8px;
  line-height: 1.4;
}
.premium-prices {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}
.premium-price-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.premium-price-row .lbl {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.premium-price-row .val {
  font-family: "Bebas Neue", var(--display);
  font-size: 28px;
  letter-spacing: 0.01em;
  color: #ffffff;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    2px 3px 10px rgba(0,0,0,0.55);
}

/* ── Disclaimer line ── */
.disclaimer {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  max-width: 720px;
  margin: 0 0 80px;
  padding: 18px 22px;
  border-left: 2px solid var(--accent-2);
  background: rgba(255, 139, 61, 0.04);
  border-radius: 0 12px 12px 0;
}
.disclaimer-flag {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   CONTENT PAGES — Packages & Locations
   ============================================================ */

.page-main {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 200px 64px 160px;
  max-width: 1440px;
  margin: 0 auto;
}

.page-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.page-eyebrow > span:not(.dot):not(.hair) {
  white-space: nowrap;
}
.page-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 10px var(--accent-2);
}
.page-eyebrow .hair {
  flex: 0 0 36px;
  height: 1px;
  background: var(--ink-faint);
}

.page-title {
  font-family: "Bebas Neue", var(--display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: #ffffff;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.55),
    2px 2px 0 rgba(0,0,0,0.50),
    3px 3px 0 rgba(0,0,0,0.45),
    4px 4px 0 rgba(0,0,0,0.40),
    5px 5px 0 rgba(0,0,0,0.35),
    6px 6px 0 rgba(0,0,0,0.30),
    7px 7px 0 rgba(0,0,0,0.26),
    8px 8px 0 rgba(0,0,0,0.22),
    9px 9px 0 rgba(0,0,0,0.18),
    10px 10px 0 rgba(0,0,0,0.14),
    14px 22px 36px rgba(0,0,0,0.60);
}

.page-lede {
  font-family: var(--display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 720px;
  margin: 0 0 80px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.45);
}

/* ── Packages grid ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
  margin-bottom: 100px;
}

.pkg-card {
  position: relative;
  border-radius: 26px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 580px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.pkg-card:hover {
  transform: translateY(-6px);
}
.pkg-card.featured {
  outline: 1px solid rgba(255, 139, 61, 0.5);
  outline-offset: -1px;
  box-shadow:
    inset 0 1.2px 0 rgba(255,255,255, var(--glass-spec)),
    inset 0 -1px 0 rgba(255, 139, 61, 0.20),
    0 0 60px rgba(255, 139, 61, 0.18),
    0 24px 60px rgba(14, 4, 28, var(--glass-shadow)),
    0 2px 8px rgba(0,0,0, 0.35);
}

.pkg-flag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  color: #2a0f04;
  background: linear-gradient(180deg, #ffd4a8 0%, #ff8b3d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    0 4px 14px rgba(255, 139, 61, 0.55);
}

.pkg-head {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--hair);
}
.pkg-name {
  font-family: "Bebas Neue", var(--display);
  font-size: 38px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.pkg-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.pkg-price {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.pkg-price .cur {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
}
.pkg-price .amt {
  font-family: "Bebas Neue", var(--display);
  font-size: 64px;
  color: #ffffff;
  line-height: 1;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    2px 2px 0 rgba(0,0,0,0.38),
    3px 3px 0 rgba(0,0,0,0.30),
    4px 6px 14px rgba(0,0,0,0.55);
}
.pkg-price .per {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-left: 2px;
}

.pkg-includes {
  position: relative;
  z-index: 3;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-dim);
  flex: 1;
}
.pkg-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pkg-includes .check {
  flex: 0 0 14px;
  margin-top: 4px;
  color: var(--accent-2);
}

.pkg-card .pkg-cta {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

/* ── Add-ons strip ── */
.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--hair);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-bottom: 100px;
}
.addon {
  position: relative;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.addon:hover { transform: translateY(-2px); }
.addon-name {
  position: relative;
  z-index: 3;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.addon-name small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
  font-weight: 400;
}
.addon-price {
  position: relative;
  z-index: 3;
  font-family: "Bebas Neue", var(--display);
  font-size: 26px;
  color: var(--accent-2);
  letter-spacing: 0.01em;
}

/* ── Booking strip ── */
.book-strip {
  position: relative;
  border-radius: 28px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.book-strip-copy {
  position: relative;
  z-index: 3;
  max-width: 560px;
}
.book-strip-copy h3 {
  font-family: "Bebas Neue", var(--display);
  font-size: 42px;
  margin: 0 0 10px;
  letter-spacing: 0.005em;
  color: #ffffff;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    3px 4px 12px rgba(0,0,0,0.55);
}
.book-strip-copy p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.5;
}
.book-strip .cta-row {
  position: relative;
  z-index: 3;
}

/* ── Locations ── */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  margin-bottom: 80px;
}
@media (max-width: 980px) {
  .location-grid { grid-template-columns: 1fr; }
}

.location-card {
  position: relative;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-height: 420px;
}
.location-card .loc-name {
  position: relative;
  z-index: 3;
  font-family: "Bebas Neue", var(--display);
  font-size: 44px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0;
  color: #ffffff;
  text-shadow:
    1px 1px 0 rgba(0,0,0,0.45),
    2px 2px 0 rgba(0,0,0,0.38),
    3px 4px 14px rgba(0,0,0,0.55);
}
.location-card .loc-address {
  position: relative;
  z-index: 3;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.location-card .loc-address strong { font-weight: 600; }

.loc-rows {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.loc-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 18px;
  font-size: 14px;
}
.loc-row .lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 2px;
}
.loc-row .val { color: var(--ink); }
.loc-row .val a { color: var(--ink); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 1px; }
.loc-row .val a:hover { border-bottom-color: var(--accent-2); }

.loc-cta-row {
  position: relative;
  z-index: 3;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
}

.location-map {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  background: #1a0a30;
  border: 1px solid rgba(240, 220, 255, var(--glass-border));
  box-shadow:
    inset 0 1.2px 0 rgba(255,255,255, var(--glass-spec)),
    0 24px 60px rgba(14, 4, 28, var(--glass-shadow));
}
.location-map image-slot {
  width: 100%;
  height: 100%;
  display: block;
  --is-bg: #1a0a30;
  --is-fg: rgba(255, 200, 160, 0.35);
  --is-border: rgba(180, 120, 220, 0.08);
}

/* Hours table */
.hours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 60px;
}
.hours-card {
  position: relative;
  border-radius: 18px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hours-card .day {
  position: relative;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hours-card .time {
  position: relative;
  z-index: 3;
  font-family: "Bebas Neue", var(--display);
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.hours-card.closed .time { color: var(--ink-faint); }

@media (max-width: 1100px) {
  .page-main { padding: 160px 28px 120px; }
  .book-strip { padding: 32px 28px; }
  .location-card { padding: 28px; }
}

/* ============================================================
   MOBILE — tablet + phone (768px and below)
   ============================================================ */
@media (max-width: 768px) {

  /* ── Brand logo ── */
  .brand-stamp { left: 16px; top: 14px; }
  .brand-logo { height: 52px; }

  /* ── Nav ── */
  .nav { top: 14px; right: 14px; padding: 6px 6px 6px 14px; }
  .nav-links { display: none; }
  .mobile-menu { top: 68px; right: 12px; }

  /* ── Hero ── */
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 120px 20px 60px;
    align-items: flex-start;
  }
  .hero-copy { max-width: 100%; }

  .sub { font-size: 15px; max-width: 100%; }
  .tagline { font-size: clamp(20px, 5.5vw, 28px); }

  /* ── Hero CTAs — stacked, natural width (not full-width) ── */
  .hero .cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  /* ── Trust chip ── */
  .trust-chip { font-size: 9.5px; letter-spacing: 0.14em; }

  /* ── Scroll hint — too cluttered on mobile ── */
  .scroll-hint { display: none; }

  /* ── WhatsApp — icon only ── */
  .whatsapp { bottom: 16px; right: 16px; padding: 10px; gap: 0; }
  .whatsapp .wa-label { display: none; }

  /* ── Home sections ── */
  .home-section { padding: 60px 20px 72px; }
  .home-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
  }

  /* ── Packages teaser ── */
  .tier-strip { grid-template-columns: 1fr; }
  .tier-card { min-height: unset; }

  /* ── Locations teaser (home page) ── */
  .loc-teaser { grid-template-columns: 1fr; }
  .loc-teaser-card { padding: 22px 20px; }
  .loc-teaser-card .addr { font-size: clamp(26px, 7vw, 44px); }
  .loc-teaser-card .row { grid-template-columns: 86px 1fr; gap: 10px; }
  .loc-teaser-card .cta-row { flex-direction: column; }
  .loc-teaser-card .cta-row .btn { width: 100%; justify-content: space-between; }
  .loc-hours-mini { padding: 20px 22px; }

  /* ── Packages page ── */
  .page-main { padding: 110px 20px 72px; }
  .page-lede { font-size: clamp(16px, 4vw, 22px); margin-bottom: 40px; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card { min-height: unset; }
  .premium-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }

  /* ── Book strip ── */
  .book-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 28px 22px;
  }
  .book-strip-copy h3 { font-size: 34px; }
  .book-strip .cta-row { flex-direction: column; }
  .book-strip .cta-row .btn { width: 100%; justify-content: space-between; }

  /* ── Locations page ── */
  .location-grid { grid-template-columns: 1fr; }
  .location-card { padding: 24px 22px; }
  .loc-row { grid-template-columns: 86px 1fr; gap: 10px; }
  .loc-cta-row { flex-direction: column; }
  .loc-cta-row .btn { width: 100%; justify-content: space-between; }
  .location-map { min-height: 280px !important; }
  .location-map iframe { min-height: 280px !important; }

  /* ── Hours grid ── */
  .hours { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SMALL MOBILE — phones 480px and below
   ============================================================ */
@media (max-width: 480px) {

  /* ── Brand / Nav ── */
  .brand-logo { height: 44px; }
  .brand-stamp { left: 14px; top: 12px; }
  .nav { top: 12px; right: 12px; }

  /* ── Hero ── */
  .hero { padding: 110px 16px 60px; }
  .sub { font-size: 14px; }
  .btn { padding: 14px 20px; font-size: 13px; }

  /* ── Home sections ── */
  .home-section { padding: 48px 16px 60px; }
  .loc-teaser-card { padding: 18px 16px; }
  .loc-teaser-card .row { grid-template-columns: 76px 1fr; }

  /* ── Packages / content pages ── */
  .page-main { padding: 96px 16px 60px; }
  .book-strip { padding: 22px 16px; }

  /* ── Locations page ── */
  .location-card { padding: 18px 16px; }
  .loc-row { grid-template-columns: 76px 1fr; }

  /* ── Hours — 2 columns still fits ── */
  .hours { grid-template-columns: 1fr 1fr; }
}
