/* ============================================================
   Clean Getaway Car Wash & Detail Center — Mansfield, TX
   Ocean-fresh single page. Display: Lilita One · Body: Rubik
   ============================================================ */

:root {
  /* Palette — bright ocean air with sunny accents (lightened 2026-08-13 per owner) */
  --ocean: oklch(0.55 0.15 242);
  --ocean-deep: oklch(0.42 0.125 248);
  --ocean-abyss: oklch(0.33 0.1 252);
  --ocean-ink: oklch(0.32 0.08 248);
  --aqua: oklch(0.89 0.075 205);
  --aqua-pop: oklch(0.82 0.125 203);
  --sky: oklch(0.955 0.025 215);
  --foam: oklch(0.975 0.012 215);
  --white: oklch(1 0 0);
  --sun: oklch(0.87 0.165 88);
  --sun-deep: oklch(0.79 0.16 78);
  --amber-ink: oklch(0.58 0.125 65);
  --cream: oklch(0.982 0.012 85);
  --coral: oklch(0.68 0.16 38);
  --ink: oklch(0.26 0.03 255);
  --ink-soft: oklch(0.42 0.035 252);

  --font-display: "Lilita One", "Arial Black", sans-serif;
  --font-body: "Rubik", "Segoe UI", sans-serif;

  --radius: 22px;
  --radius-lg: 34px;

  --shadow-pop: 0 10px 30px oklch(0.3 0.09 250 / 0.18);
  --shadow-float: 0 22px 60px oklch(0.3 0.09 250 / 0.28);

  /* z scale */
  --z-sticky: 50;
  --z-skip: 100;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.04; text-wrap: balance; letter-spacing: 0.005em; }

p { max-width: 62ch; text-wrap: pretty; }

a { color: inherit; }

.skip-link {
  position: fixed; top: -100px; left: 16px; z-index: var(--z-skip);
  background: var(--ink); color: var(--white);
  padding: 12px 20px; border-radius: 12px; text-decoration: none;
  transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 12px; }

.wrap { width: min(1180px, calc(100% - clamp(32px, 6vw, 96px))); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em;
  padding: 16px 30px; border-radius: 999px; text-decoration: none;
  border: none; cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-sun { background: var(--sun); color: var(--ink); box-shadow: 0 6px 0 var(--sun-deep), var(--shadow-pop); }
.btn-sun:hover { box-shadow: 0 9px 0 var(--sun-deep), var(--shadow-float); }
.btn-ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 3px oklch(1 0 0 / 0.55); }
.btn-ghost:hover { box-shadow: inset 0 0 0 3px var(--white); }
.btn-ocean { background: var(--ocean); color: var(--white); box-shadow: 0 6px 0 var(--ocean-deep), var(--shadow-pop); }
.btn-ocean:hover { box-shadow: 0 9px 0 var(--ocean-deep), var(--shadow-float); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-sticky);
  background: oklch(1 0 0 / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(0.9 0.02 230);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap; gap: clamp(12px, 1.8vw, 24px); padding-block: clamp(10px, 1.2vw, 14px);
}
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-link .logo-img { width: auto; height: clamp(30px, 3.6vw, 46px); }
@media (max-width: 480px) { .logo-link .logo-img { height: 38px; } }
.main-nav { display: flex; gap: clamp(8px, 1.3vw, 30px); }
.main-nav a {
  text-decoration: none; font-weight: 600; font-size: clamp(0.8rem, 1.05vw, 0.98rem);
  white-space: nowrap; color: var(--ink);
  padding: 6px 2px; border-radius: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='6' viewBox='0 0 40 6'%3E%3Cpath d='M0 3 Q5 0 10 3 T20 3 T30 3 T40 3' fill='none' stroke='%234a90c9' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x; background-position: 0 200%; background-size: 40px 6px;
  transition: background-position 0.3s var(--ease-out);
}
.main-nav a:hover { background-position: 0 calc(100% + 1px); }
.header-phone {
  white-space: nowrap;
  padding: clamp(9px, 1.1vw, 12px) clamp(14px, 1.8vw, 22px);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
}
/* mobile menu (hidden on desktop) */
.nav-toggle, .mobile-menu { display: none; }
.btn-arrow { display: none; }
@media (max-width: 744px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle {
    display: grid; gap: 6px; padding: 10px; border: none; background: transparent; cursor: pointer;
  }
  .nav-toggle span { display: block; width: 30px; height: 4px; border-radius: 4px; background: var(--white); transition: transform 0.25s var(--ease-out), opacity 0.25s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
  .mobile-menu {
    display: grid; gap: 4px; padding: 8px 20px 20px;
    background: oklch(1 0 0 / 0.96); backdrop-filter: blur(12px);
    border-bottom: 1px solid oklch(0.9 0.02 230);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a {
    text-decoration: none; font-weight: 700; font-size: 1.1rem; color: var(--ink);
    padding: 14px 6px; border-bottom: 1px solid oklch(0.93 0.015 230);
  }
  .mobile-menu .mm-phone { color: var(--ocean); border-bottom: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* golden-hour storefront render (v2: sign now reads EXPRESS WASH); light left tint for the headline */
  background:
    linear-gradient(100deg, oklch(0.3 0.1 252 / 0.6) 0%, oklch(0.33 0.11 250 / 0.34) 46%, oklch(0.4 0.13 242 / 0.05) 100%),
    url("assets/hero-desktop-b.jpg") center 62% / cover no-repeat,
    linear-gradient(178deg, var(--ocean-deep) 0%, var(--ocean) 58%, oklch(0.6 0.13 235) 100%);
  color: var(--white);
  padding-top: clamp(56px, 9vh, 110px);
  overflow: clip;
}
.hero-inner {
  position: relative; z-index: 2;
  min-height: clamp(440px, 68vh, 860px);
  display: grid; grid-template-columns: 1fr; align-content: center;
  padding-bottom: clamp(48px, 8vh, 100px);
}
.hero-copy { max-width: 680px; }
.hero-logo {
  display: inline-block; background: var(--white);
  padding: 12px 18px; border-radius: 16px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-pop);
}
.hero-logo img { width: auto; height: clamp(40px, 5.5vw, 56px); }
.hero h1 {
  font-size: clamp(2.9rem, 7.2vw, 5.6rem);
  text-shadow: 0 4px 0 oklch(0.3 0.1 252 / 0.35);
}
.hero h1 .getaway { color: var(--sun); display: inline-block; transform: rotate(-2deg); }
.hero-tag {
  font-size: clamp(1.05rem, 1.7vw, 1.3rem); font-weight: 500;
  color: var(--aqua); margin-top: 18px; max-width: 44ch;
  text-shadow: 0 1px 14px oklch(0.22 0.08 255 / 0.7), 0 1px 3px oklch(0.22 0.08 255 / 0.55);
}
.hero-tag strong { color: var(--white); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.award-chip {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 38px; padding: 10px 18px 10px 12px;
  background: oklch(0.32 0.1 252 / 0.55); border: 1.5px solid oklch(1 0 0 / 0.25);
  border-radius: 999px; font-size: 0.88rem; font-weight: 600; color: var(--aqua);
}
.award-chip .trophy {
  width: 34px; height: 34px; border-radius: 50%; background: var(--sun);
  display: grid; place-items: center; font-size: 1.05rem; flex-shrink: 0;
}
.award-chip b { color: var(--white); font-weight: 700; }

@media (max-width: 760px) {
  /* PHONE HERO — per Luke's mockup 2026-08-15:
     transparent header floating over the photo (white logo badge + hamburger),
     headline high in the sky, building mid-frame, full-width stacked buttons +
     award pill pinned to the bottom. */
  /* header floats transparent over the hero; once you scroll past the hero (body.scrolled,
     set by JS) it becomes a fixed white bar — still hamburger + singled-out logo */
  .site-header {
    position: fixed; top: 0; left: 0; right: 0;
    background: transparent; backdrop-filter: none; border-bottom: none;
    transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  }
  .site-header .wrap { padding-block: 14px; }
  .site-header .logo-link { background: var(--white); padding: 9px 13px; border-radius: 16px; box-shadow: var(--shadow-pop); }
  .site-header .logo-link .logo-img { height: 40px; }
  body.scrolled .site-header, body.menu-open .site-header {
    background: oklch(1 0 0 / 0.96); backdrop-filter: blur(12px);
    box-shadow: 0 2px 14px oklch(0.3 0.09 250 / 0.12);
  }
  body.scrolled .site-header .logo-link { box-shadow: none; padding: 0; }
  body.scrolled .nav-toggle span, body.menu-open .nav-toggle span { background: var(--ink); }
  html { scroll-padding-top: 84px; }

  .hero {
    background:
      linear-gradient(180deg, oklch(0.3 0.1 252 / 0.28) 0%, oklch(0.3 0.1 252 / 0.18) 45%, oklch(0.28 0.09 252 / 0.6) 100%),
      url("assets/hero-mobile-d.jpg") center 90% / auto 120% no-repeat,
      linear-gradient(178deg, var(--ocean-deep) 0%, var(--ocean) 58%, oklch(0.6 0.13 235) 100%);
    padding-top: 0;
  }
  .hero-logo { display: none; }
  .hero-inner {
    min-height: 100svh; padding-top: 112px; padding-bottom: 24px;
    display: grid; grid-template-columns: 1fr; grid-template-rows: auto auto 1fr auto auto;
    align-content: stretch;
  }
  .hero-copy { display: contents; }
  .hero h1 { grid-row: 1; font-size: clamp(3rem, 14.5vw, 3.9rem); line-height: 0.98; }
  .hero-tag { grid-row: 2; margin-top: 18px; max-width: 30ch; }
  .hero-ctas {
    grid-row: 4; flex-direction: column; gap: 12px; margin-top: 0; align-self: end;
  }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 18px 44px 18px 26px; font-size: 1.15rem; position: relative; }
  .btn-arrow { display: inline; position: absolute; right: 24px; }
  .btn-ghost { box-shadow: inset 0 0 0 2px oklch(1 0 0 / 0.75); }
  .award-chip {
    grid-row: 5; margin-top: 12px; width: 100%; padding: 12px 18px 12px 12px;
    background: oklch(0.32 0.1 252 / 0.72); border: 2px solid oklch(0.62 0.13 240 / 0.6);
    border-radius: 999px; font-size: 0.95rem;
  }
  .award-chip .trophy { width: 44px; height: 44px; font-size: 1.3rem; }
  .award-chip span:last-child { display: grid; line-height: 1.3; }
  .award-chip b { font-size: 1.05rem; }
  .award-chip .award-org { display: block; color: var(--aqua); font-weight: 600; }
}

/* floating bubbles */
.bubble {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, oklch(1 0 0 / 0.85), oklch(1 0 0 / 0.12) 58%, transparent 72%);
  border: 1.5px solid oklch(1 0 0 / 0.35);
  animation: bubble-rise 9s linear infinite;
  pointer-events: none;
}
@keyframes bubble-rise {
  from { transform: translateY(0) translateX(0); opacity: 0; }
  12%  { opacity: 1; }
  85%  { opacity: 1; }
  to   { transform: translateY(-72vh) translateX(24px); opacity: 0; }
}

/* wave divider */
.wave-divider { display: block; width: 100%; height: clamp(50px, 8vw, 110px); }
.wave-divider.flip { transform: scaleY(-1); }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--sun); color: var(--ink);
  overflow: clip; padding-block: 13px;
  font-family: var(--font-display); font-size: 1.02rem; letter-spacing: 0.03em;
  border-block: 3px solid var(--ink);
}
.ticker-track { display: flex; width: max-content; animation: ticker-scroll 60s linear infinite; }
.ticker-group { display: flex; flex-shrink: 0; }
.ticker-group span { display: inline-flex; align-items: center; gap: 18px; padding-inline: 18px; white-space: nowrap; }
.ticker-group .tick-star { font-size: 0.8em; }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding-block: clamp(72px, 9.5vw, 132px); }
.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); color: var(--ocean-ink); }
.section-head .squiggle { margin-top: 14px; width: 130px; height: 12px; color: var(--aqua-pop); }
.section-head p { margin-top: 16px; font-size: 1.08rem; color: var(--ink-soft); }
.section-head .price-note { font-weight: 600; color: var(--ocean); }

/* ---------- Trust strip (press + award, right under the hero) ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid oklch(0.93 0.015 90);
  padding-block: 26px;
}
.trust-strip .wrap {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px 34px;
}
.trust-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink-soft); flex-basis: 100%; text-align: center;
}
.trust-strip img { height: 44px; width: auto; opacity: 0.92; }
.trust-award {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sun); color: var(--ink);
  font-family: var(--font-display); font-size: 0.88rem; line-height: 1.2;
  padding: 8px 16px; border-radius: 999px;
}
.trust-award small { font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; }
@media (max-width: 600px) { .trust-strip img { height: 34px; } }

/* ---------- Wash menu (rising tide ladder) ---------- */
.washes { background: var(--cream); }
.wash-ladder {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; align-items: end;
}
.wash {
  border-radius: var(--radius); padding: 24px 20px 22px;
  background: var(--white); border: 2px solid oklch(0.91 0.02 210);
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.wash:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.wash:nth-child(2) { padding-top: 40px; }
.wash:nth-child(3) { padding-top: 56px; }
.wash:nth-child(4) { padding-top: 72px; }
.wash:nth-child(5) { padding-top: 88px; }
.wash h3 { font-size: 1.28rem; color: var(--ocean-ink); }
.wash .price {
  font-family: var(--font-display); font-size: 2.5rem; line-height: 1;
  color: var(--ocean); margin-top: 8px;
}
.wash .price sup { font-size: 0.5em; top: -0.6em; position: relative; }
.wash ul { list-style: none; margin-top: 16px; display: grid; gap: 8px; font-size: 0.92rem; color: var(--ink-soft); }
.wash li { padding-left: 22px; position: relative; }
.wash li::before {
  content: ""; position: absolute; left: 0; top: 0.42em;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--aqua-pop);
  box-shadow: inset -2px -2px 0 oklch(0.62 0.12 215);
}
.wash .inherits {
  font-size: 0.8rem; font-weight: 700; color: var(--ocean);
  background: oklch(0.93 0.04 220); border-radius: 999px;
  padding: 5px 12px; margin-top: 16px; align-self: flex-start;
}
.wash-featured {
  background: var(--ocean); border-color: var(--ocean-deep);
  color: var(--white); position: relative;
  box-shadow: var(--shadow-float);
}
.wash-featured:hover { transform: translateY(-9px); }
.wash-featured h3 { color: var(--white); }
.wash-featured .price { color: var(--sun); }
.wash-featured ul { color: oklch(0.93 0.03 220); }
.wash-featured li::before { background: var(--sun); box-shadow: inset -2px -2px 0 var(--sun-deep); }
.wash-featured .inherits { background: oklch(0.32 0.1 252); color: var(--aqua); }
.fan-fave {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%) rotate(-3deg);
  background: var(--sun); color: var(--ink);
  font-family: var(--font-display); font-size: 0.85rem; letter-spacing: 0.03em;
  padding: 7px 16px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 12px oklch(0.3 0.09 250 / 0.3);
}
.fan-value { background: var(--coral); color: var(--white); transform: translateX(-50%) rotate(2deg); }
@media (max-width: 1020px) {
  .wash-ladder { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
  .wash, .wash:nth-child(n) { padding-top: 24px; }
  .wash-featured { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .wash-ladder { grid-template-columns: 1fr; }
}
/* phones: wash cards get a darker-blue border + shadow so they lift off the cream */
@media (max-width: 744px) {
  .wash {
    border: 2px solid oklch(0.62 0.12 240);
    box-shadow: 0 8px 22px oklch(0.35 0.1 250 / 0.18), 0 2px 6px oklch(0.35 0.1 250 / 0.12);
  }
  .wash-featured { border-color: var(--ocean-deep); }
}

/* ---------- Full service (light & airy) ---------- */
.full-service { background: linear-gradient(180deg, var(--sky) 0%, var(--foam) 100%); position: relative; }
.full-service .section-head h2 { color: var(--ocean-ink); }
.full-service .section-head p { color: var(--ink-soft); }
.fs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.fs-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 2px solid oklch(0.88 0.045 210);
  padding: 30px 28px;
  box-shadow: 0 8px 24px oklch(0.55 0.1 235 / 0.08);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.fs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.fs-card header { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.fs-card h3 { font-size: 1.45rem; color: var(--ocean-ink); }
.fs-card .price { font-family: var(--font-display); font-size: 2.1rem; color: var(--ocean); }
.fs-card ul { list-style: none; margin-top: 18px; display: grid; gap: 9px; color: var(--ink-soft); font-size: 0.95rem; }
.fs-card li { padding-left: 24px; position: relative; }
.fs-card li::before {
  content: "✦"; position: absolute; left: 0; color: var(--sun-deep); font-size: 0.85em; top: 0.15em;
}
.fs-card .inherits {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; color: var(--ocean);
  background: oklch(0.93 0.04 215); border-radius: 999px;
  padding: 5px 12px; margin-top: 16px;
}
.fs-card .guarantee {
  margin-top: 20px; display: inline-block;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em;
  color: var(--ocean-ink); background: var(--aqua);
  border-radius: 999px; padding: 6px 14px;
}

/* ---------- Gallery + park map ---------- */
.gallery { background: var(--cream); }
.carousel { position: relative; }
/* one slide visible at a time; the track glides via transform (Chrome cancels smooth
   scroll on snap tracks, so this is a transform slider, not a scroller) */
.car-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.car-track {
  display: flex;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}
.car-slide { flex: 0 0 100%; position: relative; margin: 0; }
.car-slide img {
  width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: var(--radius-lg); display: block;
}
.car-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.car-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: oklch(0.85 0.03 220); padding: 0;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.car-dot[aria-current="true"] { background: var(--ocean); transform: scale(1.35); }
.detail-photos { display: grid; gap: 14px; margin-top: 12px; }
.car-slide figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: oklch(0.28 0.06 250 / 0.72); color: var(--white);
  backdrop-filter: blur(6px);
  padding: 10px 16px; border-radius: 14px;
  font-size: 0.9rem; font-weight: 500;
}
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 52px; height: 52px; border-radius: 50%; border: none;
  background: var(--white); color: var(--ocean);
  font-size: 2rem; line-height: 1; cursor: pointer;
  box-shadow: var(--shadow-pop);
  display: grid; place-items: center;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.car-prev { left: 14px; }
.car-next { right: 14px; }
.car-btn:hover { background: var(--sun); transform: translateY(-50%) scale(1.06); }
@media (max-width: 700px) {
  .car-slide img { aspect-ratio: 4 / 3; }
  .car-btn { width: 42px; height: 42px; font-size: 1.6rem; }
}
@media (prefers-reduced-motion: reduce) { .car-track { transition: none; } }
.park-map { margin-top: clamp(44px, 6vw, 68px); }
.park-map h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; color: var(--ocean-ink); }
.map-sub { color: var(--ink-soft); margin-top: 6px; font-size: 0.98rem; }
.map-img {
  display: block; width: min(100%, 820px); height: auto;
  margin: 18px auto 0;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-pop);
}

/* portrait slide keeps the row height; crops to the same frame */
.car-slide-tall img { object-position: center 40%; }

/* section photos: full-service pair + detail pair */
.fs-photos {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: clamp(28px, 4vw, 44px);
}
.fs-photos figure, .detail-photo { margin: 0; position: relative; }
.fs-photos img, .detail-photo img {
  width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius-lg); display: block;
  box-shadow: 0 8px 24px oklch(0.55 0.1 235 / 0.12);
}
.fs-photos figcaption, .detail-photo figcaption {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: oklch(0.28 0.06 250 / 0.72); color: var(--white);
  backdrop-filter: blur(6px);
  padding: 9px 14px; border-radius: 12px;
  font-size: 0.88rem; font-weight: 500;
}
.detail-photo { margin-top: 12px; }

/* ---------- Ways to save ---------- */
.save { background: oklch(0.5 0.145 244); color: var(--white); position: relative; overflow: clip; }
.save .section-head h2 { color: var(--white); }
.save .section-head p { color: var(--white); font-weight: 500; }
.save-stack { display: grid; gap: 26px; }

/* punch card */
.punch-card {
  background: var(--white); color: var(--ink);
  border-radius: var(--radius-lg); padding: 30px clamp(22px, 4vw, 40px);
  box-shadow: var(--shadow-float);
  transform: rotate(-0.6deg);
}
.punch-card h3 { font-size: 1.5rem; color: var(--ocean-ink); }
.punch-card .punch-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; align-items: center;
}
.punch {
  width: 46px; height: 46px; border-radius: 50%;
  border: 2.5px dashed oklch(0.68 0.06 240);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.9rem; color: var(--ink-soft);
}
.punch.stamped {
  border-style: solid; border-color: var(--ocean);
  background: oklch(0.93 0.04 220); color: var(--ocean);
}
.punch.free {
  width: 62px; height: 62px;
  background: var(--sun); border: 3px solid var(--sun-deep);
  color: var(--ink); font-family: var(--font-display); font-size: 0.8rem;
  transform: rotate(8deg);
}
.punch-card .fine { margin-top: 16px; font-size: 0.9rem; color: var(--ink-soft); }

/* tickets row */
.ticket-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.ticket {
  position: relative; background: var(--white); color: var(--ink);
  border-radius: var(--radius); padding: 28px 30px;
  box-shadow: var(--shadow-pop);
}
.ticket.tilt-l { transform: rotate(0.8deg); }
.ticket.tilt-r { transform: rotate(-0.9deg); }
.ticket::before, .ticket::after {
  content: ""; position: absolute; top: 50%; width: 26px; height: 26px;
  border-radius: 50%; background: oklch(0.5 0.145 244); transform: translateY(-50%);
}
.ticket::before { left: -13px; }
.ticket::after { right: -13px; }
.ticket-inner { border-inline: 2px dashed oklch(0.85 0.02 240); padding-inline: 18px; margin-inline: 6px; }
.ticket h3 { font-size: 1.35rem; color: var(--ocean-ink); }
.ticket .deal { font-family: var(--font-display); font-size: 1.9rem; color: var(--ocean); line-height: 1.15; margin-top: 8px; }
.ticket .deal .free-word { color: var(--amber-ink); }
.ticket .deal .redeem-note {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.5em; color: var(--ink-soft); margin-top: 2px;
}
.ticket p { margin-top: 12px; font-size: 0.94rem; color: var(--ink-soft); }
.save-note {
  margin-top: 30px; display: inline-block;
  color: var(--white); font-size: 0.95rem; font-weight: 500;
  background: oklch(0.36 0.1 250 / 0.5);
  padding: 10px 18px; border-radius: 999px;
}
.save-note a { color: var(--sun); }

/* ---------- Detail center ---------- */
.detail { background: var(--cream); }
.detail-cols {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px); align-items: start;
}
.detail-menu h3 {
  font-size: 1.3rem; color: var(--ocean-ink);
  margin-bottom: 6px; margin-top: 34px;
}
.detail-menu h3:first-child { margin-top: 0; }
.detail-menu .menu-sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 14px; }
.menu-item {
  display: flex; align-items: baseline; gap: 10px;
  padding-block: 11px; border-bottom: 1.5px solid oklch(0.92 0.015 230);
}
.menu-item .name { font-weight: 600; }
.menu-item .dots { flex: 1; border-bottom: 2.5px dotted oklch(0.8 0.03 230); transform: translateY(-4px); }
.menu-item .p { font-family: var(--font-display); font-size: 1.15rem; color: var(--ocean); white-space: nowrap; }
.menu-item .desc { font-size: 0.88rem; color: var(--ink-soft); width: 100%; margin-top: 2px; }
.menu-item-wrap { display: flex; flex-wrap: wrap; }

.getaway-tiers { display: grid; gap: 14px; }
.getaway-tiers > p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 6px; }
.tier {
  display: flex; align-items: center; gap: 18px;
  border-radius: var(--radius); padding: 18px 24px;
  border: 2px solid oklch(0.91 0.02 210); background: var(--white);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.tier:hover { transform: translateX(6px); box-shadow: var(--shadow-pop); }
.tier .medal {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 0.72rem; color: var(--ink);
  text-align: center;
}
.tier-bronze .medal { background: oklch(0.72 0.09 60); }
.tier-silver .medal { background: oklch(0.85 0.01 250); }
.tier-gold .medal { background: var(--sun); }
.tier-platinum .medal { background: var(--aqua-pop); }
.tier .tier-body { flex: 1; min-width: 0; }
.tier h4 { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; color: var(--ocean-ink); }
.tier p { font-size: 0.88rem; color: var(--ink-soft); margin-top: 2px; }
.tier .p { font-family: var(--font-display); font-size: 1.6rem; color: var(--ocean); }
.tier-platinum { background: var(--ocean-deep); border-color: var(--ocean-abyss); }
.tier-platinum h4 { color: var(--white); }
.tier-platinum p { color: var(--aqua); }
.tier-platinum .p { color: var(--sun); }
@media (max-width: 900px) {
  .detail-cols { grid-template-columns: 1fr; }
}

/* full-service #1 badge needs an anchor */
.fs-card { position: relative; }

/* ---------- Glowing primary CTA ---------- */
.btn-glow { animation: glow-pulse 2.8s ease-in-out infinite; }
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 6px 0 var(--sun-deep), 0 0 0 oklch(0.87 0.165 88 / 0), var(--shadow-pop); }
  50%      { box-shadow: 0 6px 0 var(--sun-deep), 0 0 34px oklch(0.87 0.165 88 / 0.7), var(--shadow-pop); }
}

/* ---------- Open-now chip (Visit section) ---------- */
.open-chip {
  display: inline-flex; align-items: center; gap: 9px;
  margin-top: 14px; padding: 8px 16px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 700;
}
.open-chip::before { content: ""; width: 10px; height: 10px; border-radius: 50%; }
.open-chip.is-open { background: oklch(0.93 0.07 150); color: oklch(0.34 0.09 152); }
.open-chip.is-open::before { background: oklch(0.62 0.17 148); }
.open-chip.is-closed { background: oklch(0.94 0.03 40); color: oklch(0.42 0.12 35); }
.open-chip.is-closed::before { background: var(--coral); }

/* ---------- Mobile sticky action bar ---------- */
.quick-bar {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 70;
  display: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -8px 24px oklch(0.3 0.09 250 / 0.22);
}
.quick-bar a {
  display: grid; place-items: center;
  padding: 15px 10px calc(15px + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-display); font-size: 1.02rem; letter-spacing: 0.02em;
  text-decoration: none;
}
.qb-call { background: var(--ocean); color: var(--white); }
.qb-dir { background: var(--sun); color: var(--ink); }
@media (max-width: 744px) {
  /* hidden on the hero; slides up once you start scrolling (same trigger as the header) */
  .quick-bar {
    display: grid;
    transform: translateY(110%);
    transition: transform 0.35s var(--ease-out);
  }
  body.scrolled .quick-bar { transform: translateY(0); }
  body { padding-bottom: 64px; }
}
@media (prefers-reduced-motion: reduce) { .quick-bar { transition: none; } }

/* ---------- Visit ---------- */
.visit { background: var(--foam); }
.visit-grid {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 60px); align-items: start;
}
.visit-info h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--ocean-ink); }
.visit-info address { font-style: normal; margin-top: 20px; font-size: 1.1rem; }
.visit-phone {
  display: inline-block; margin-top: 10px;
  font-family: var(--font-display); font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--ocean); text-decoration: none;
}
.visit-phone:hover { color: var(--ocean-deep); }
.hours { margin-top: 30px; display: grid; gap: 18px; }
.hours-block h3 { font-size: 1.05rem; color: var(--ocean-ink); display: flex; align-items: center; gap: 8px; }
.hours-block table { border-collapse: collapse; margin-top: 8px; font-size: 0.98rem; }
.hours-block td { padding: 3px 0; }
.hours-block td:first-child { padding-right: 28px; color: var(--ink-soft); font-weight: 500; }
.hours-block td:last-child { font-weight: 600; }
.visit-ctas { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-pop); border: 3px solid var(--white);
  min-height: 420px; height: 100%;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
@media (max-width: 860px) {
  .visit-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ocean-abyss); color: var(--aqua); padding-block: 56px 40px; }
.footer-grid {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 32px; align-items: flex-start;
}
.footer-logo { background: var(--white); padding: 10px 16px; border-radius: 14px; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { text-decoration: none; font-weight: 500; font-size: 0.95rem; }
.footer-nav a:hover { color: var(--white); }
.footer-meta { margin-top: 36px; padding-top: 22px; border-top: 1px solid oklch(0.4 0.06 250); font-size: 0.85rem; color: oklch(0.68 0.05 235); display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; }
.footer-meta a { color: oklch(0.78 0.06 220); }

/* ---------- Reveal on scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bubble { animation: none; opacity: 0.5; }
  .ticker-track { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .wash, .fs-card, .tier { transition: none; }
  .btn-glow { animation: none; }
}
