:root {
  --ink: #15242c;
  --muted: #5c7080;
  --blue: #1ca7ec;
  --blue-dark: #0b84b3;
  --navy: #0a3b52;
  --paper: #fafbfa;
  --tint: #e8f0f2;
  --line: rgba(21, 36, 44, 0.13);
  --serif: "Zen Old Mincho", serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --latin: "Quicksand", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 8px 16px;
  transform: translateY(-140%);
  color: #fff;
  background: var(--navy);
}
.skip-link:focus { transform: none; }
.container { width: min(1120px, calc(100% - 48px)); margin-inline: auto; }
.narrow { max-width: 760px; text-align: center; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 80px;
  transition: background .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  background: rgba(250, 251, 250, .93);
  box-shadow: 0 1px 18px rgba(10, 59, 82, .08);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(1200px, calc(100% - 48px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  color: var(--navy);
  font-family: var(--latin);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -.5px;
}
.global-nav { display: flex; align-items: center; gap: 28px; }
.global-nav a {
  font-size: 13px;
  text-decoration: none;
  transition: color .2s;
}
.global-nav a:hover { color: var(--blue-dark); }
.global-nav .nav-cta {
  padding: 9px 22px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
}
.global-nav .nav-cta:hover { color: #fff; background: var(--blue-dark); }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 760px;
  padding: 160px 0 120px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #eaf6fd 0%, #f4fbfe 62%, var(--paper) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  top: -170px;
  left: -150px;
  border: 1px solid rgba(28, 167, 236, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.12), 0 0 0 140px rgba(255,255,255,.1);
}
.hero-content { position: relative; z-index: 2; }
.eyebrow, .section-label {
  color: var(--blue-dark);
  font-family: var(--latin);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
}
.eyebrow { margin: 0 0 18px; }
.hero h1, .section h2 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: .02em;
}
.hero h1 { margin: 0; font-size: clamp(38px, 4.2vw, 62px); }
.hero-lead {
  margin: 20px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.hero-price {
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 14px;
  font-size: 15px;
  color: var(--ink);
}
.hero-price strong {
  font: 600 clamp(32px, 4vw, 44px) var(--serif);
  color: var(--navy);
}
.hero-price strong small { font-size: 18px; }
.hero-price span { color: var(--muted); font-size: 12px; }
.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-copy { margin: 24px 0 38px; color: var(--muted); font-size: 16px; }
.button {
  display: inline-flex;
  min-height: 58px;
  padding: 13px 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 30px rgba(28,167,236,.22); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary {
  color: var(--navy);
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(21,36,44,.15);
  text-decoration: none;
}
.button-secondary:hover { background: #fff; transform: translateY(-2px); }
.hero-note { margin: 14px 0 0; color: var(--muted); font-size: 11px; }
.hero-art { position: absolute; inset: 0 0 0 48%; }
.sun {
  position: absolute;
  top: 170px;
  right: 13%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  box-shadow: 0 0 70px 45px rgba(255,255,255,.6);
}
.building {
  position: absolute;
  bottom: 200px;
  width: 220px;
  border-radius: 4px 4px 0 0;
  opacity: .45;
  background: repeating-linear-gradient(90deg, #9dcbdc 0 32px, #d8edf5 32px 48px);
}
.building-a { height: 230px; right: 0; }
.building-b { height: 150px; right: 260px; }
.parking-line {
  position: absolute;
  right: -5%;
  bottom: 95px;
  width: 80%;
  height: 3px;
  background: rgba(255,255,255,.9);
  transform: rotate(-14deg);
  transform-origin: right;
}
.line-b { bottom: 35px; width: 58%; }
.hero-car { position: absolute; right: 3%; bottom: 115px; width: min(620px, 90%); filter: drop-shadow(0 22px 20px rgba(10,59,82,.18)); }
.bubble { position: absolute; border: 2px solid rgba(28,167,236,.4); border-radius: 50%; }
.bubble-a { width: 28px; height: 28px; right: 15%; top: 155px; }
.bubble-b { width: 15px; height: 15px; right: 38%; top: 220px; }
.bubble-c { width: 40px; height: 40px; right: 7%; top: 300px; }

.section { padding: 120px 0; scroll-margin-top: 78px; }
.section-tint { background: var(--tint); }
.section-label { display: flex; align-items: center; gap: 10px; }
.section-label span { color: var(--blue); }
.section-label small { color: #64707a; font: 500 12px var(--sans); letter-spacing: .08em; }
.section-label.centered { justify-content: center; }
.section h2 { margin: 20px 0 0; font-size: clamp(30px, 3.5vw, 43px); }
.steps {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { position: relative; padding-top: 28px; border-top: 1px solid var(--line); }
.step-number { color: var(--blue); font: 600 25px var(--serif); }
.step-icon {
  width: 52px;
  height: 52px;
  margin: 22px 0;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: #e8f7fd;
  border-radius: 50%;
  font: 700 20px var(--latin);
}
.wash-icon { color: #fff; background: var(--blue); }
.step h3, .quality-card h3 { margin: 0 0 12px; font: 500 21px/1.6 var(--serif); }
.step p, .quality-card p { margin: 0; color: var(--muted); font-size: 14px; }
.step small { display: block; margin-top: 10px; color: #71828d; font-size: 11px; }

.quality-grid { margin-top: 60px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.quality-card { background: #f7fafb; }
.quality-visual { position: relative; height: 260px; overflow: hidden; }
.hand-visual { background: linear-gradient(140deg, #112b3a, #23627d); }
.car-panel {
  position: absolute;
  width: 120%;
  height: 120px;
  top: 68px;
  left: -10%;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 45% 15% 35% 10%;
  transform: rotate(-8deg);
  box-shadow: inset 0 -30px 60px rgba(0,0,0,.25);
}
.cloth {
  position: absolute;
  width: 125px;
  height: 80px;
  right: 24%;
  top: 80px;
  background: #e8f0f2;
  border-radius: 70% 30% 60% 35%;
  transform: rotate(-16deg);
  box-shadow: -20px 20px 50px rgba(0,0,0,.25);
}
.hand-visual i { position: absolute; top: 28px; right: 15%; color: #fff; font-size: 28px; }
.water-visual {
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 20%, #71ccec, #087da9 70%);
}
.drop {
  width: 125px;
  height: 155px;
  padding-top: 45px;
  color: #fff;
  background: rgba(255,255,255,.16);
  border: 2px solid rgba(255,255,255,.8);
  border-radius: 60% 60% 60% 60% / 80% 80% 45% 45%;
  text-align: center;
  font: 700 57px/1 var(--latin);
  transform: rotate(45deg);
}
.drop::first-line { transform: rotate(-45deg); }
.drop small { font-size: 18px; }
.drop, .drop small { writing-mode: horizontal-tb; }
.water-caption { position: absolute; right: 20px; bottom: 16px; color: #fff; font-size: 12px; }
.quality-content { padding: 38px 40px 44px; }
.quality-content .card-index { margin-bottom: 14px; color: var(--blue-dark); font: 700 11px var(--latin); letter-spacing: 1.6px; }

.section-heading-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.section-heading-row p { margin: 0 0 9px; color: var(--muted); font-size: 12px; }
.price-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card { position: relative; padding: 38px 32px; background: #fff; border: 1px solid var(--line); border-radius: 6px; }
.price-card.featured { border-color: var(--blue); box-shadow: 0 16px 35px rgba(10,59,82,.08); }
.price-card em {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 5px 12px;
  color: #fff;
  background: var(--blue);
  border-radius: 0 0 6px 6px;
  font: normal 700 9px var(--latin);
  letter-spacing: 1px;
}
.price-card p { margin: 0; color: #64707a; font: 600 15px var(--serif); letter-spacing: 2px; }
.price-card span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; }
.price-card strong { display: block; margin-top: 20px; font: 500 35px var(--serif); }
.price-card strong small { font-size: 17px; }
.options { margin-top: 64px; padding-top: 30px; border-top: 1px solid var(--line); }
.options h3 { margin: 0 0 20px; color: #64707a; font-size: 13px; font-weight: 500; letter-spacing: 1px; }
.options ul { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px 30px; list-style: none; }
.options li { position: relative; padding-left: 15px; font-size: 14px; }
.options li::before { content: ""; position: absolute; top: .85em; left: 0; width: 5px; height: 5px; background: var(--blue); border-radius: 50%; }
.options > p { margin: 24px 0 0; color: var(--muted); font-size: 11px; }

.menu-section { background: #fff; }
.menu-heading { margin-bottom: 8px; }
.vehicle-picker {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--tint);
  border-radius: 8px;
  border: 1px solid var(--line);
}
.picker-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.picker-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}
.picker-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font: inherit;
  color: var(--ink);
  cursor: pointer;
}
.picker-field select:disabled {
  background: #f3f6f7;
  color: #94a3ad;
  cursor: not-allowed;
}
.picker-field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28,167,236,.15);
}
.picker-hint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.picker-hint-error { color: #c0392b; }
.price-empty {
  margin-top: 32px;
  padding: 48px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fafcfd;
}
.price-result { margin-top: 40px; }
.price-result-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.selected-label { margin: 0; font-size: 11px; color: var(--muted); letter-spacing: 1px; }
.selected-vehicle { margin: 4px 0 0; font: 500 22px var(--serif); }
.size-badge-wrap { text-align: right; }
.size-badge {
  display: inline-block;
  padding: 6px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  font: 700 12px var(--latin);
  letter-spacing: 1px;
}
.size-desc { display: block; margin-top: 6px; color: var(--muted); font-size: 12px; }
.price-block-title {
  margin: 36px 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #64707a;
}
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.menu-price-card {
  position: relative;
  padding: 28px 24px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.menu-price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(10,59,82,.08);
}
.menu-badge {
  display: inline-block;
  padding: 4px 10px;
  color: var(--blue-dark);
  background: #e8f7fd;
  border-radius: 4px;
  font: 700 10px var(--latin);
  letter-spacing: 1px;
}
.menu-price-card.featured .menu-badge {
  color: #fff;
  background: var(--blue);
}
.menu-price-card h4 {
  margin: 14px 0 8px;
  font: 500 18px/1.5 var(--serif);
}
.menu-price {
  margin: 0 0 16px;
  font: 600 32px var(--serif);
  color: var(--navy);
}
.menu-includes {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.menu-includes li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}
.menu-includes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}
.options-table-wrap { overflow-x: auto; }
.options-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.options-table th,
.options-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.options-table th {
  background: var(--tint);
  font-size: 12px;
  font-weight: 600;
  color: #64707a;
}
.options-table td:last-child {
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
}
.price-note { margin: 20px 0 0; color: var(--muted); font-size: 11px; }
.reserve-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.reserve-btn {
  min-width: 240px;
  border: 0;
  opacity: .55;
  cursor: not-allowed;
}
.reserve-soon {
  display: block;
  margin-top: 12px;
  color: var(--blue-dark);
  font: 700 11px var(--latin);
  letter-spacing: 2px;
}

.stores { background: #e8f0f2; text-align: center; }
.stores h2 { font-size: clamp(28px, 3vw, 38px); }
.stores p, .contact p { margin: 20px auto 0; max-width: 520px; color: var(--muted); font-size: 14px; }
.status-pill { display: inline-block; margin-top: 32px; padding: 8px 22px; color: var(--blue-dark); border: 1px solid rgba(11,132,179,.3); border-radius: 999px; font: 700 11px var(--latin); letter-spacing: 2px; }
.facility { color: #fff; background: var(--navy); }
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; }
.section-label.light { color: rgba(255,255,255,.65); }
.section-label.light span { color: #78d2f5; }
.facility h2 { color: #fff; }
.facility-copy p { margin: 0 0 30px; color: rgba(255,255,255,.7); font-size: 15px; }
.button-light { color: var(--navy); background: #fff; }
.contact { text-align: center; }
.contact-form {
  margin-top: 40px;
  text-align: left;
  max-width: 560px;
  margin-inline: auto;
}
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}
.form-field .required {
  margin-left: 8px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 700;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(28, 167, 236, .15);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-submit { width: 100%; margin-top: 8px; border: 0; cursor: pointer; }
.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #eaf6fd 0%, var(--paper) 100%);
}
.thanks-page h1 {
  margin: 20px 0 0;
  font: 500 clamp(28px, 4vw, 36px)/1.55 var(--serif);
}
.thanks-page p {
  margin: 20px auto 36px;
  max-width: 480px;
  color: var(--muted);
  font-size: 14px;
}
.thanks-page .button { display: inline-flex; }

.site-footer { padding: 64px 0 28px; color: rgba(255,255,255,.65); background: #072c3e; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo { color: #fff; }
.footer-grid p { margin: 14px 0 0; font-size: 12px; }
.footer-grid nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 30px; }
.footer-grid nav a { font-size: 12px; text-decoration: none; }
.copyright { padding-top: 22px; color: rgba(255,255,255,.35); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 860px) {
  .container { width: min(100% - 36px, 680px); }
  .site-header { height: 68px; }
  .header-inner { width: calc(100% - 36px); }
  .menu-button {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    border: 0;
    background: transparent;
  }
  .menu-button span { width: 22px; height: 1px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .global-nav {
    position: fixed;
    inset: 0;
    padding: 100px 36px 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    background: var(--paper);
    transition: opacity .2s, visibility .2s;
  }
  .global-nav.is-open { visibility: visible; opacity: 1; }
  .global-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .global-nav .nav-cta { margin-top: 20px; padding: 12px 22px; text-align: center; border: 0; }
  body.menu-open { overflow: hidden; }
  .hero { min-height: 780px; padding: 120px 0 320px; text-align: center; }
  .hero-art { inset: auto 0 0; height: 350px; }
  .hero-content { align-self: start; }
  .hero h1 { font-size: clamp(33px, 8vw, 46px); }
  .hero-lead { margin-inline: auto; font-size: 14px; }
  .hero-price { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-copy { font-size: 14px; }
  .hero-note { margin-left: 0; }
  .sun { top: 15px; right: 12%; width: 120px; height: 120px; }
  .building { bottom: 50px; transform: scale(.75); transform-origin: bottom right; }
  .building-a { right: -25px; }
  .building-b { right: 140px; }
  .hero-car { right: 5%; bottom: 30px; width: 90%; }
  .parking-line { bottom: 36px; }
  .bubble-a { top: 25px; }
  .bubble-b { top: 70px; }
  .bubble-c { top: 115px; }
  .section { padding: 86px 0; }
  .steps { grid-template-columns: 1fr; gap: 42px; }
  .quality-grid, .price-grid { grid-template-columns: 1fr; }
  .quality-visual { height: 220px; }
  .section-heading-row { display: block; }
  .section-heading-row p { margin-top: 12px; }
  .options ul { grid-template-columns: repeat(2, 1fr); }
  .picker-row { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: 1fr; }
  .price-result-head { flex-direction: column; align-items: flex-start; }
  .size-badge-wrap { text-align: left; }
  .facility-grid { grid-template-columns: 1fr; gap: 38px; }
}

@media (max-width: 520px) {
  .desktop-only { display: none; }
  .hero { min-height: 740px; padding-bottom: 290px; }
  .hero h1 { font-size: 31px; line-height: 1.65; }
  .hero-copy { max-width: 330px; margin-inline: auto; margin-bottom: 32px; }
  .section h2 { font-size: 28px; }
  .quality-content { padding: 30px 26px 36px; }
  .price-card { padding: 30px 25px; }
  .options ul { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
