/* ============================================================
   AUTO-GLO HAND CAR WASH — "Suds up. Shine out."
   Theme drawn from the line-art brand mark: white paper,
   navy ink linework, bubble blue, small orange + red accents.
   ============================================================ */

:root {
  --paper:      #FEFEFE; /* exact match to the logo background */
  --paper-tint: #EFF6FC;
  --ink:        #111F3D;
  --ink-line:   #1B2D55;
  --night:      #0A1732;
  --deep:       #102750;
  --blue:       #0E7ACC;
  --blue-soft:  #6FB5E8;
  --sky:        #C6E2F6;
  --orange:     #DB7104;
  --red:        #D20C0D;
  --white:      #FFFFFF;

  --font-display: "Archivo", sans-serif;
  --font-body: "Space Grotesk", sans-serif;

  --container: 1160px;
  --nav-h: 76px;
  --ease-punch: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

/* display face helper — upright, wide, heavy: matches the wordmark */
.hero-h1, .story-h2, .menu-h2, .ritual-h2, .visit-h2,
.tier-name, .tier-price, .surcharge-head h2, .footer-word {
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 122%;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.01em;
}

em {
  font-style: italic;
  font-weight: inherit;
  text-transform: none;
  letter-spacing: 0;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 1.1rem;
}
.eyebrow-dot {
  width: 10px; height: 10px;
  border: 2.5px solid var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue) 15%, transparent);
}
.eyebrow-light { color: var(--white); }

/* ---------- bubbles (decorative) ---------- */
.bub {
  position: absolute;
  border: 2.5px solid color-mix(in srgb, var(--blue) 55%, transparent);
  border-radius: 50%;
  pointer-events: none;
}
.bub::after {
  content: "";
  position: absolute;
  top: 16%; left: 16%;
  width: 34%; height: 34%;
  border: 2px solid transparent;
  border-top-color: inherit;
  border-left-color: inherit;
  border-radius: 50%;
  opacity: .7;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: 999px;
  padding: .95rem 1.9rem;
  transition: transform .25s var(--ease-punch), box-shadow .25s, background .25s, color .25s, border-color .25s;
  cursor: pointer;
}
.btn:active { transform: scale(.97); }

.btn-solid {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 0 0 var(--blue);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 9px 0 0 var(--blue); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-phone {
  background: var(--blue);
  color: var(--white);
  padding: .7rem 1.4rem;
  font-size: .9rem;
  white-space: nowrap;
}
.btn-phone svg { width: 17px; height: 17px; }
.btn-phone:hover { background: var(--ink); transform: translateY(-2px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--ink) 10%, transparent);
}
.nav-inner {
  width: min(1320px, 100% - 2.5rem);
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: auto;
}
.nav-logo {
  height: 64px;
  width: auto;
  mix-blend-mode: multiply;
}

.nav-links {
  display: flex;
  gap: 1.9rem;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 3px;
  border-radius: 2px;
  background: var(--blue);
  transition: right .3s var(--ease-punch);
}
.nav-links a:hover::after { right: 0; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 10px 6px;
}
.nav-burger span {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease-punch), opacity .2s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--night);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: grid; gap: 1.6rem; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display);
  font-weight: 880;
  font-stretch: 118%;
  text-transform: uppercase;
  font-size: clamp(1.7rem, 7vw, 2.7rem);
  color: var(--white);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--blue-soft); }
.mobile-menu .mm-phone {
  font-family: var(--font-body);
  font-stretch: 100%;
  text-transform: none;
  font-size: 1.1rem;
  color: var(--blue-soft);
  font-weight: 700;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  text-align: left;
  padding: calc(var(--nav-h) + 2rem) 2rem 3.5rem;
  overflow: hidden;
}

.hero-glo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  font-size: clamp(14rem, 42vw, 34rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--blue) 10%, transparent);
  user-select: none;
  pointer-events: none;
  transform: translateY(-4%);
}

/* rising bubbles */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.hero-bubbles .bub { opacity: 0; }
body.loaded .hero-bubbles .bub { animation: bubble-rise 11s ease-in-out infinite; }
.b1 { width: 34px; height: 34px; left: 7%;  bottom: 12%; }
.b2 { width: 18px; height: 18px; left: 13%; bottom: 4%;  animation-delay: 2.4s !important; }
.b3 { width: 26px; height: 26px; left: 46%; bottom: 6%;  animation-delay: 4.8s !important; }
.b4 { width: 14px; height: 14px; left: 88%; bottom: 14%; animation-delay: 1.2s !important; border-color: color-mix(in srgb, var(--orange) 60%, transparent); }
.b5 { width: 42px; height: 42px; left: 93%; bottom: 3%;  animation-delay: 6.2s !important; }
.b6 { width: 20px; height: 20px; left: 55%; bottom: 2%;  animation-delay: 8.4s !important; }
@keyframes bubble-rise {
  0%   { opacity: 0; transform: translateY(30px) scale(.85); }
  12%  { opacity: .8; }
  70%  { opacity: .5; }
  100% { opacity: 0; transform: translateY(-52vh) scale(1.06); }
}

.hero-copy { position: relative; z-index: 2; max-width: 560px; }

.hero-h1 {
  font-size: clamp(2.9rem, 5.4vw, 5.1rem);
  margin: .2rem 0 1.4rem;
}
.h1-line { display: block; }
.h1-line-2 { color: var(--blue); }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 34em;
  color: color-mix(in srgb, var(--ink) 82%, transparent);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 1.9rem;
}

/* entrance stagger */
.hero-eyebrow, .hero-h1 .h1-line, .hero-sub, .hero-ctas {
  opacity: 0;
  transform: translateY(26px);
}
body.loaded .hero-eyebrow,
body.loaded .hero-h1 .h1-line,
body.loaded .hero-sub,
body.loaded .hero-ctas {
  animation: rise .8s var(--ease-punch) forwards;
}
body.loaded .hero-eyebrow { animation-delay: .15s; }
body.loaded .h1-line { animation-delay: .3s; }
body.loaded .h1-line-2 { animation-delay: .42s; }
body.loaded .hero-sub { animation-delay: .58s; }
body.loaded .hero-ctas { animation-delay: .72s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* --- hero art / the brand mark --- */
.hero-art {
  position: relative;
  z-index: 1;
  flex: none;
  width: min(600px, 44vw);
}
body.loaded .hero-art {
  animation: settle 7s ease-in-out 2s infinite;
}
@keyframes settle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-logo {
  width: 100%;
  height: auto;
  /* multiply lets the white artwork sit on the page like print */
  mix-blend-mode: multiply;
  opacity: 0;
  transform: translateY(30px) scale(.97);
}
body.loaded .hero-logo {
  animation: logo-in 1s var(--ease-punch) .55s forwards;
}
@keyframes logo-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  position: relative;
  z-index: 3;
  background: var(--blue);
  color: var(--white);
  transform: rotate(-1.4deg) scale(1.02);
  margin: -1.2rem 0 0;
  padding: .85rem 0;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--night) 28%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-display);
  font-weight: 820;
  font-stretch: 114%;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: .06em;
  white-space: nowrap;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.mq-bubble, .mq-drop { flex: none; width: 20px; height: 20px; }
.mq-bubble {
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%23FFFFFF' stroke-width='2.4'/%3E%3Cpath d='M6.8 9.5 a6.5 6.5 0 0 1 3.4-3' fill='none' stroke='%23FFFFFF' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}
.mq-drop {
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2 C12 2 5.5 10.5 5.5 15.5 a6.5 6.5 0 0 0 13 0 C18.5 10.5 12 2 12 2 Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

/* ============================================================
   STORY  (night)
   ============================================================ */
.story {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, color-mix(in srgb, var(--blue) 30%, transparent), transparent 65%),
    var(--night);
  color: var(--white);
  padding: 7.5rem 0 7rem;
  margin-top: -2.4rem;
  overflow: hidden;
}

.story-bubbles { position: absolute; inset: 0; pointer-events: none; }
.story-bubbles .bub {
  border-color: color-mix(in srgb, var(--blue-soft) 45%, transparent);
  opacity: 0;
}
body.loaded .story-bubbles .bub { animation: bubble-rise 14s ease-in-out infinite; }
.sb1 { width: 46px; height: 46px; left: 90%; bottom: 8%; }
.sb2 { width: 22px; height: 22px; left: 84%; bottom: 2%; animation-delay: 4s !important; }
.sb3 { width: 30px; height: 30px; left: 5%;  bottom: 5%; animation-delay: 8s !important; }

.story-h2 {
  font-size: clamp(2.3rem, 5.6vw, 4.2rem);
  max-width: 17ch;
}
.story-h2 em { color: var(--blue-soft); }
.story-lede {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--white) 75%, transparent);
  max-width: 42em;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.6rem;
}
.story-card {
  background: color-mix(in srgb, var(--white) 5%, transparent);
  border: 1px solid color-mix(in srgb, var(--white) 14%, transparent);
  border-radius: 20px;
  padding: 2.1rem 1.9rem;
  transition: transform .35s var(--ease-punch), border-color .35s, background .35s;
}
.story-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--blue) 65%, transparent);
  background: color-mix(in srgb, var(--blue) 14%, transparent);
}
.story-card .story-icon .bub { position: static; }
.story-icon {
  width: 52px; height: 52px;
  margin-bottom: 1.3rem;
}
.story-icon [stroke="var(--ink-line)"] { stroke: var(--sky); }
.story-card h3 {
  font-family: var(--font-display);
  font-weight: 840;
  font-stretch: 114%;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: .7rem;
}
.story-card p {
  font-size: .98rem;
  color: color-mix(in srgb, var(--white) 72%, transparent);
}

/* ============================================================
   MENU
   ============================================================ */
.menu { padding: 7.5rem 0 5rem; }

.menu-h2 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
.menu-h2 em { color: var(--blue); }
.menu-lede {
  margin-top: 1.1rem;
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--ink) 75%, transparent);
}
.menu-lede a { color: var(--blue); font-weight: 600; }

.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
  margin-top: 3.4rem;
  align-items: stretch;
}

.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 22px;
  padding: 1.9rem 1.6rem 1.6rem;
  box-shadow: 0 4px 0 0 var(--ink);
  transition: transform .35s var(--ease-punch), box-shadow .35s;
}
.tier:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 0 0 var(--ink);
}

.tier-tag {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .5rem;
}
.tier-name { font-size: 1.5rem; }
.tier-price {
  font-size: 3.6rem;
  margin: .7rem 0 1.1rem;
  color: var(--ink);
}
.tier-price sup {
  font-size: 1.5rem;
  vertical-align: 1.4rem;
  margin-right: .1rem;
  color: var(--blue);
}

.tier-list {
  display: grid;
  gap: .55rem;
  padding-bottom: 1.5rem;
  margin-bottom: auto;
}
.tier-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: .95rem;
}
.tier-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .22em;
  width: 16px; height: 16px;
  background: no-repeat center / contain
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='%230E7ACC' stroke-width='2.6'/%3E%3Cpath d='M7.6 9.6 a6 6 0 0 1 3-2.7' fill='none' stroke='%230E7ACC' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E");
}

.tier-btn {
  background: var(--paper-tint);
  color: var(--ink);
  font-size: .9rem;
  padding: .8rem 1rem;
  border: 2px solid var(--ink);
}
.tier-btn:hover { background: var(--ink); color: var(--white); }

/* featured tier */
.tier-featured {
  background: linear-gradient(165deg, var(--deep), var(--night) 70%);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 0 0 var(--blue);
  transform: translateY(-10px);
}
.tier-featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 12px 0 0 var(--blue);
}
.tier-featured .tier-tag { color: var(--blue-soft); }
.tier-featured .tier-price { color: var(--white); }
.tier-featured .tier-price sup { color: var(--blue-soft); }
.tier-featured .tier-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8.5' fill='none' stroke='%236FB5E8' stroke-width='2.6'/%3E%3Cpath d='M7.6 9.6 a6 6 0 0 1 3-2.7' fill='none' stroke='%236FB5E8' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E");
}
.tier-flag {
  position: absolute;
  top: -14px;
  right: 18px;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: .35rem .9rem;
  box-shadow: 0 3px 0 0 var(--night);
}
.tier-btn-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.tier-btn-featured:hover { background: var(--white); border-color: var(--white); color: var(--ink); }

/* detail tier accent */
.tier-detail { border-color: var(--orange); box-shadow: 0 4px 0 0 var(--orange); }
.tier-detail:hover { box-shadow: 0 12px 0 0 var(--orange); }

.tiers-note {
  margin-top: 1.8rem;
  font-size: .88rem;
  color: color-mix(in srgb, var(--ink) 60%, transparent);
}

/* ============================================================
   SURCHARGE
   ============================================================ */
.surcharge { padding: 1rem 0 7rem; }

.surcharge-card {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  background: var(--night);
  color: var(--white);
  border-radius: 26px;
  padding: 3.2rem 3.4rem;
  background-image:
    radial-gradient(700px 320px at 110% 120%, color-mix(in srgb, var(--blue) 34%, transparent), transparent 60%);
}
.surcharge-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--blue-soft);
}
.surcharge-head p {
  margin-top: 1rem;
  color: color-mix(in srgb, var(--white) 72%, transparent);
  max-width: 26em;
}

.surcharge-list { display: grid; gap: .9rem; align-content: center; }
.surcharge-list li {
  display: flex;
  align-items: baseline;
  gap: .8rem;
  font-size: 1.05rem;
  font-weight: 500;
}
.surcharge-list i {
  flex: 1;
  border-bottom: 2px dotted color-mix(in srgb, var(--blue-soft) 45%, transparent);
  transform: translateY(-4px);
}
.surcharge-list b {
  font-family: var(--font-display);
  font-weight: 860;
  font-size: 1.25rem;
  color: var(--orange);
}

/* ============================================================
   RITUAL  (night)
   ============================================================ */
.ritual {
  background:
    radial-gradient(900px 420px at -10% 10%, color-mix(in srgb, var(--blue) 20%, transparent), transparent 60%),
    var(--night);
  color: var(--white);
  padding: 7.5rem 0;
}
.ritual-h2 {
  font-size: clamp(2.3rem, 5.6vw, 4.2rem);
  color: var(--white);
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 3.6rem;
}
.ritual-steps li {
  border-top: 2px solid color-mix(in srgb, var(--white) 22%, transparent);
  padding-top: 1.4rem;
  transition: border-color .3s;
}
.ritual-steps li:hover { border-color: var(--blue-soft); }
.step-n {
  font-family: var(--font-display);
  font-weight: 860;
  font-stretch: 118%;
  font-size: 2.4rem;
  color: var(--blue);
  display: block;
  margin-bottom: .8rem;
}
.ritual-steps h3 {
  font-family: var(--font-display);
  font-weight: 820;
  font-stretch: 112%;
  text-transform: uppercase;
  font-size: 1.2rem;
  margin-bottom: .6rem;
}
.ritual-steps p {
  font-size: .95rem;
  color: color-mix(in srgb, var(--white) 70%, transparent);
}

/* ============================================================
   VISIT
   ============================================================ */
.visit { padding: 7.5rem 0; }

.visit-h2 { font-size: clamp(2.5rem, 6vw, 4.6rem); }
.visit-h2 em { color: var(--blue); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 2.6rem;
  margin-top: 3.2rem;
  align-items: start;
}

.visit-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 880;
  font-stretch: 114%;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 1.1rem;
  transition: color .2s;
}
.visit-phone:hover { color: var(--ink); }

.visit-info address {
  font-size: 1.15rem;
  margin-bottom: 1.8rem;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: .8rem;
}
.hours td {
  padding: .55rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
  font-size: .98rem;
}
.hours td:last-child { text-align: right; font-weight: 600; }
.hours tr.today td {
  color: var(--blue);
  font-weight: 700;
}
.hours tr.today td:first-child::after {
  content: "· today";
  font-style: italic;
  margin-left: .5rem;
  color: var(--orange);
}
.hours-note {
  font-size: .85rem;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
  margin-bottom: 1.8rem;
}

.visit-map {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 0 6px 0 0 var(--blue);
  aspect-ratio: 4 / 3.1;
}
.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.9);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--night);
  color: var(--white);
  padding: 5rem 0 2.4rem;
  overflow: hidden;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.footer-logo {
  width: 200px;
  border-radius: 14px;
}
.footer-tag {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--blue-soft);
}
.footer-word {
  font-size: clamp(4rem, 15vw, 12.5rem);
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 2px color-mix(in srgb, var(--blue-soft) 34%, transparent);
  user-select: none;
  margin-bottom: 2.6rem;
  white-space: nowrap;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2.4rem;
  border-top: 1px solid color-mix(in srgb, var(--white) 15%, transparent);
}
.footer-cols h4 {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: .7rem;
}
.footer-cols p { font-size: .98rem; color: color-mix(in srgb, var(--white) 78%, transparent); }
.footer-cols a { color: var(--white); text-decoration-color: var(--blue); }
.footer-fine {
  margin-top: 3rem;
  font-size: .82rem;
  color: color-mix(in srgb, var(--white) 45%, transparent);
}

/* ============================================================
   REVEALS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease-punch), transform .8s var(--ease-punch);
}
.reveal.in { opacity: 1; transform: translateY(0); }
/* stagger siblings */
.story-grid .reveal:nth-child(2), .tiers .reveal:nth-child(2), .ritual-steps .reveal:nth-child(2) { transition-delay: .1s; }
.story-grid .reveal:nth-child(3), .tiers .reveal:nth-child(3), .ritual-steps .reveal:nth-child(3) { transition-delay: .2s; }
.tiers .reveal:nth-child(4), .ritual-steps .reveal:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .tier-featured { transform: none; }
  .tier-featured:hover { transform: translateY(-8px); }
  .ritual-steps { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.4rem; }
}

@media (max-width: 900px) {
  .nav-links, .nav .btn-phone { display: none; }
  .nav-burger { display: flex; }
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-inline: 1.25rem;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-art { width: min(500px, 88vw); }
  .story-grid { grid-template-columns: 1fr; }
  .surcharge-card { grid-template-columns: 1fr; gap: 1.8rem; padding: 2.4rem 1.8rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { aspect-ratio: 4 / 3; }
  .footer-cols { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .tiers { grid-template-columns: 1fr; }
  .br-desk { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 2rem); }
  .hero-ctas .btn { width: 100%; }
  .marquee-track { font-size: .9rem; }
  .nav-logo { height: 54px; }
}

/* ============================================================
   FLAT MODE (static render for screenshots/print)
   ============================================================ */
.flat *, .flat *::before, .flat *::after { animation: none !important; transition: none !important; }
.flat .hero { min-height: auto; padding-top: calc(var(--nav-h) + 4rem); }
.flat .hero-eyebrow, .flat .hero-h1 .h1-line, .flat .hero-sub, .flat .hero-ctas,
.flat .hero-logo, .flat .reveal {
  opacity: 1 !important;
  transform: none !important;
}
.flat .bub { opacity: .5 !important; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero-eyebrow, .hero-h1 .h1-line, .hero-sub, .hero-ctas,
  .hero-logo, .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .bub { opacity: 0 !important; }
  .marquee-track { animation: none !important; }
}
