:root {
  --ink: #101820;
  --blue: #208eea;
  --blue-dark: #0868bd;
  --yellow: #f5cc35;
  --paper: #f6f2e8;
  --white: #fffdf7;
  --grey: #d9d9d2;
  --line: rgba(16, 24, 32, 0.22);
  --shadow: 0 28px 60px rgba(16, 24, 32, 0.16);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-200%);
  background: var(--ink);
  color: var(--white);
  padding: .8rem 1rem;
}

.skip-link:focus { transform: translateY(0); }

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

.section-shell {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.notice-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem max(32px, calc((100vw - 1320px) / 2));
  background: var(--ink);
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.notice-rating { color: var(--yellow); }

.site-header {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1320px, calc(100% - 64px));
  min-height: 108px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}

.brand > span:last-child { display: grid; line-height: .86; }
.brand strong { font-family: var(--display); font-size: 2.1rem; letter-spacing: .02em; }
.brand small { margin-top: .35rem; font-size: .58rem; font-weight: 900; letter-spacing: .46em; }

.brand-mark {
  position: relative;
  display: block;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--yellow);
}

.brand-mark i {
  position: absolute;
  left: 12px;
  display: block;
  width: 30px;
  height: 7px;
  border-radius: 100%;
  background: var(--ink);
  transform: rotate(-24deg);
}

.brand-mark i:nth-child(1) { top: 12px; }
.brand-mark i:nth-child(2) { top: 21px; left: 6px; width: 29px; }
.brand-mark i:nth-child(3) { top: 30px; }

.site-nav { display: flex; align-items: center; gap: 2.25rem; }
.site-nav a { font-size: .78rem; font-weight: 800; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a:not(.nav-call) { position: relative; }
.site-nav a:not(.nav-call)::after { content: ""; position: absolute; right: 0; bottom: -.4rem; left: 0; height: 2px; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-call {
  padding: 1rem 1.25rem;
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-call:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.menu-toggle { display: none; }

.hero { padding-top: clamp(4rem, 8vw, 7.5rem); }

.hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  column-gap: 3rem;
}

.kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 1.25rem;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.kicker span { display: flex; align-items: center; gap: .75rem; }
.kicker span::before { content: ""; width: 28px; height: 8px; background: var(--blue); }
.kicker b { font-size: .62rem; color: rgba(16, 24, 32, .55); }

.hero .kicker { grid-column: 1 / -1; }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(5rem, 11.8vw, 10.9rem);
  line-height: .72;
}

h1 span { display: block; }
h1 span:last-child { color: var(--blue); margin-left: 8vw; }

.hero-intro {
  margin-bottom: 2rem;
  max-width: 36ch;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 550;
  line-height: 1.55;
}

.hero-actions { display: flex; align-items: center; gap: 1.8rem; }

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  border: 0;
  padding: 0 1.35rem;
  font-weight: 900;
  font-size: .74rem;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button-dark { background: var(--ink); color: var(--white); box-shadow: 7px 7px 0 var(--blue); }
.button-dark:hover { transform: translate(4px, 4px); box-shadow: 3px 3px 0 var(--blue); }
.button-yellow { background: var(--yellow); color: var(--ink); box-shadow: 7px 7px 0 var(--blue); }
.button-yellow:hover { transform: translate(4px, 4px); box-shadow: 3px 3px 0 var(--blue); }

.text-link { font-size: .75rem; font-weight: 900; letter-spacing: .08em; text-underline-offset: .35rem; text-transform: uppercase; }

.hero-visual {
  position: relative;
  margin: 4.5rem 0 6rem;
}

.hero-photo {
  margin: 0;
  padding: 10px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.hero-photo img { width: 100%; min-height: 440px; object-fit: cover; }

.open-ticket {
  position: absolute;
  top: -38px;
  right: 4%;
  width: min(310px, 30vw);
  padding: 1.4rem 1.5rem;
  background: var(--yellow);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(2deg);
}

.open-ticket p { display: flex; align-items: center; gap: .5rem; margin-bottom: .55rem; font-size: .68rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.open-ticket strong { display: block; margin-bottom: .8rem; font-family: var(--display); font-size: clamp(2rem, 3.5vw, 3.6rem); line-height: .9; }
.open-ticket a { font-size: .66rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #16a15d; box-shadow: 0 0 0 4px rgba(22, 161, 93, .16); }
.status-dot.is-closed { background: #c84a31; box-shadow: 0 0 0 4px rgba(200, 74, 49, .16); }

.score-stamp {
  position: absolute;
  bottom: -48px;
  left: 4%;
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: .1rem 1rem;
  width: 215px;
  min-height: 145px;
  padding: 1.25rem;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  transform: rotate(-7deg);
}

.score-stamp small { font-size: .55rem; font-weight: 900; letter-spacing: .12em; }
.score-stamp strong { font-family: var(--display); font-size: 4.5rem; line-height: .75; }
.score-stamp span { grid-column: 1 / -1; color: var(--yellow); letter-spacing: .14em; }

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--white);
}

.proof-strip p {
  position: relative;
  min-height: 110px;
  margin: 0;
  padding: 2rem;
  border-right: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2.2rem);
  line-height: .95;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip p:last-child { border-right: 0; }
.proof-strip sup { display: block; margin-top: .65rem; font-family: var(--body); font-size: .58rem; font-weight: 800; letter-spacing: .1em; color: var(--blue-dark); }

.wash-section { padding-block: clamp(6rem, 10vw, 10rem); }

.section-heading { display: grid; grid-template-columns: .7fr 1.3fr; gap: 3rem; }
.section-heading .kicker { align-self: start; border-top: 1px solid var(--line); padding-top: 1rem; }

h2 { margin-bottom: 1.6rem; font-size: clamp(3.7rem, 7.5vw, 7.8rem); line-height: .82; }
.section-heading > div > p { max-width: 54ch; font-size: 1.08rem; line-height: 1.7; }

.wash-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  align-items: stretch;
  gap: 1rem;
  margin-top: 4rem;
}

.wash-card { position: relative; min-height: 470px; padding: 2rem; overflow: hidden; }
.wash-card h3 { max-width: 10ch; margin: auto 0 1rem; font-family: var(--display); font-size: clamp(2.2rem, 3.5vw, 3.8rem); line-height: .88; text-transform: uppercase; }
.wash-card p { max-width: 34ch; margin-bottom: 0; line-height: 1.65; }
.card-number { font-size: .65rem; font-weight: 900; letter-spacing: .12em; }
.card-blue { display: flex; flex-direction: column; background: var(--blue); color: var(--white); }
.card-yellow { display: flex; flex-direction: column; margin-top: 4.5rem; background: var(--yellow); }
.card-paper { display: flex; flex-direction: column; margin-top: 9rem; border: 1px solid var(--ink); background: var(--white); }

.wash-icon { position: relative; width: 170px; height: 125px; margin: 3rem auto; }
.wash-icon::before { content: ""; position: absolute; top: 32px; left: 22px; width: 126px; height: 60px; border: 4px solid currentColor; border-radius: 50% 50% 18px 18px; transform: skewX(-7deg); }
.wash-icon::after { content: ""; position: absolute; left: 30px; bottom: 18px; width: 110px; height: 18px; border: 4px solid currentColor; border-top: 0; border-radius: 0 0 16px 16px; }
.wash-icon i { position: absolute; top: 0; width: 9px; height: 18px; border-radius: 50%; background: currentColor; transform: rotate(25deg); }
.wash-icon i:nth-child(1) { left: 35px; }
.wash-icon i:nth-child(2) { left: 80px; top: 8px; }
.wash-icon i:nth-child(3) { right: 23px; top: 1px; }
.wash-icon-inside::before { top: 15px; left: 25px; width: 122px; height: 95px; border-radius: 16px; transform: none; }
.wash-icon-inside::after { left: 55px; bottom: 25px; width: 70px; border-radius: 50% 50% 0 0; }
.wash-icon-inside i { top: 36px; height: 48px; border-radius: 0; transform: none; }
.wash-icon-inside i:nth-child(1) { left: 45px; }
.wash-icon-inside i:nth-child(2) { left: 80px; top: 36px; }
.wash-icon-inside i:nth-child(3) { right: 35px; top: 36px; }
.wash-icon-check::before { top: 18px; left: 30px; width: 110px; height: 90px; border-radius: 50%; transform: none; }
.wash-icon-check::after { left: 62px; top: 52px; width: 54px; height: 26px; border: solid currentColor; border-width: 0 0 6px 6px; border-radius: 0; transform: rotate(-45deg); }

.detail-section { display: grid; grid-template-columns: 1.05fr .95fr; background: var(--ink); color: var(--white); }
.detail-photo { position: relative; min-height: 740px; overflow: hidden; }
.detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.detail-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(16,24,32,.4)); pointer-events: none; }
.detail-photo > span { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; font-family: var(--display); font-size: clamp(3rem, 6vw, 6.5rem); line-height: .78; color: var(--yellow); text-align: right; text-transform: uppercase; transform: rotate(-4deg); }
.detail-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 8rem); }
.detail-copy .kicker span::before { background: var(--yellow); }
.detail-copy .kicker b { color: rgba(255,255,255,.5); }
.detail-copy h2 { max-width: 8ch; font-size: clamp(3.4rem, 6vw, 6.8rem); }
.detail-copy blockquote { margin: 1rem 0 2.5rem; padding-left: 1.5rem; border-left: 4px solid var(--blue); }
.detail-copy blockquote p { max-width: 38ch; margin-bottom: 1rem; font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.45; }
.detail-copy cite { font-style: normal; font-size: .66rem; font-weight: 800; letter-spacing: .1em; color: rgba(255,255,255,.65); text-transform: uppercase; }
.detail-copy .button { align-self: flex-start; }

.reviews-section { padding-block: clamp(6rem, 10vw, 10rem); }
.reviews-header { display: grid; grid-template-columns: 1.2fr .8fr; gap: 4rem; align-items: end; }
.reviews-header h2 { margin-bottom: 0; }
.review-score { display: flex; justify-content: flex-end; align-items: end; gap: 1.5rem; padding-bottom: 1rem; }
.review-score > strong { font-family: var(--display); font-size: clamp(6rem, 11vw, 11rem); line-height: .65; color: var(--blue); }
.review-score span { color: #e5aa00; letter-spacing: .18em; }
.review-score p { margin: .45rem 0 0; font-size: .67rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }

.review-stage { position: relative; margin-top: 5rem; padding: clamp(2rem, 5vw, 5rem); border: 1px solid var(--ink); background: var(--white); box-shadow: 12px 12px 0 var(--yellow); }
.review-card { display: grid; grid-template-columns: 120px 1fr; animation: reviewIn .35s ease both; }
.review-card[hidden] { display: none; }
.quote-mark { margin: 0; font-family: Georgia, serif; font-size: 10rem; line-height: .7; color: var(--blue); }
.review-card blockquote { max-width: 21ch; margin: 0; font-family: var(--display); font-size: clamp(2.6rem, 5.7vw, 6rem); line-height: .9; text-transform: uppercase; }
.review-card footer { grid-column: 2; display: flex; gap: 1rem; align-items: center; margin-top: 2rem; font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
.review-card footer span { color: rgba(16,24,32,.6); }
.review-controls { position: absolute; right: 2rem; bottom: 2rem; display: flex; align-items: center; gap: .8rem; }
.review-controls button { width: 48px; height: 48px; border: 1px solid var(--ink); border-radius: 50%; background: transparent; cursor: pointer; transition: background .2s, color .2s; }
.review-controls button:hover { background: var(--ink); color: var(--white); }
.review-controls p { margin: 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .72rem; }
@keyframes reviewIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.plan-section { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(3rem, 8vw, 8rem); padding-bottom: clamp(6rem, 10vw, 10rem); }
.plan-intro h2 { max-width: 7ch; }
.plan-intro > p:not(.kicker) { max-width: 42ch; line-height: 1.7; }
.plan-note { display: flex; gap: 1rem; align-items: flex-start; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.plan-note > span { display: grid; flex: 0 0 30px; width: 30px; height: 30px; place-items: center; border-radius: 50%; background: var(--blue); color: white; font-weight: 900; }
.plan-note p { margin: .25rem 0 0; font-size: .78rem; line-height: 1.5; }

.wash-planner { padding: clamp(2rem, 4vw, 4rem); background: var(--blue); color: var(--white); box-shadow: 12px 12px 0 var(--ink); }
.wash-planner fieldset { margin: 0 0 2.3rem; padding: 0 0 2.3rem; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); }
.wash-planner legend { margin-bottom: 1rem; font-family: var(--display); font-size: 1.85rem; text-transform: uppercase; }
.choice-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.choice-row label { position: relative; cursor: pointer; }
.choice-row input { position: absolute; opacity: 0; }
.choice-row span { display: grid; min-height: 62px; place-items: center; border: 1px solid rgba(255,255,255,.65); padding: .65rem; font-size: .7rem; font-weight: 900; letter-spacing: .06em; text-align: center; text-transform: uppercase; transition: background .2s, color .2s, border .2s; }
.choice-row input:checked + span { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
.choice-row input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 3px; }
.notes-label { display: flex; justify-content: space-between; margin-bottom: .65rem; font-size: .7rem; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.notes-label span { color: rgba(255,255,255,.65); }
.wash-planner textarea { width: 100%; min-height: 100px; resize: vertical; border: 1px solid rgba(255,255,255,.65); border-radius: 0; padding: 1rem; background: rgba(255,255,255,.1); color: var(--white); }
.wash-planner textarea::placeholder { color: rgba(255,255,255,.6); }
.planner-submit { margin-top: 1.25rem; width: 100%; box-shadow: 7px 7px 0 var(--yellow); }
.planner-submit:hover { box-shadow: 3px 3px 0 var(--yellow); }
.form-help { margin: 1rem 0 0; font-size: .66rem; color: rgba(255,255,255,.75); }

.visit-section { padding-top: clamp(6rem, 9vw, 9rem); background: var(--blue); color: var(--white); }
.visit-heading h2 { margin-bottom: -.1em; font-size: clamp(5rem, 12vw, 12.8rem); color: var(--yellow); }
.visit-heading .kicker span::before { background: var(--yellow); }
.visit-heading .kicker b { color: rgba(255,255,255,.6); }
.visit-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding-bottom: clamp(5rem, 9vw, 8rem); }
.address-card, .hours-card { min-height: 510px; padding: clamp(2rem, 4vw, 4rem); background: var(--white); color: var(--ink); }
.address-label, .hours-title > p { font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.address-card address { margin: 4rem 0; font-family: var(--display); font-size: clamp(3rem, 5vw, 5.4rem); font-style: normal; line-height: .85; text-transform: uppercase; }
.plus-code { margin: 2.3rem 0 0; font-size: .68rem; color: rgba(16,24,32,.6); }
.hours-title { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.hours-title > span { padding: .5rem .75rem; border-radius: 999px; background: #dff4e7; color: #08733d; font-size: .6rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.hours-title > span.is-closed { background: #f7dfd8; color: #9b321e; }
.hours-list { margin: 2.5rem 0 1.5rem; padding: 0; list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: .85rem .5rem; border-bottom: 1px solid var(--line); }
.hours-list li.is-today { margin-inline: -.5rem; padding-inline: 1rem; border-bottom-color: transparent; background: var(--yellow); font-weight: 900; }
.hours-list time { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.hours-note { max-width: 55ch; margin: 0; font-size: .66rem; line-height: 1.55; color: rgba(16,24,32,.6); }

.site-footer { padding: 4rem 0 2rem; background: var(--ink); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding-bottom: 3rem; }
.brand-footer .brand-mark { background: var(--blue); }
.brand-footer .brand-mark i { background: var(--white); }
.footer-top > p { margin: 0; color: rgba(255,255,255,.7); text-align: center; }
.footer-top > a:last-child { justify-self: end; color: var(--yellow); font-family: var(--display); font-size: clamp(1.6rem, 2.7vw, 2.8rem); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.2); }
.footer-bottom p, .footer-bottom a { margin: 0; color: rgba(255,255,255,.6); font-size: .66rem; text-decoration: none; }
.mobile-actions { display: none; }

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

@media (max-width: 980px) {
  .section-shell, .site-header { width: min(100% - 40px, 1320px); }
  .menu-toggle { display: inline-flex; align-items: center; gap: .75rem; border: 0; background: transparent; font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
  .menu-toggle i, .menu-toggle i::before { display: block; width: 24px; height: 2px; background: var(--ink); content: ""; transition: transform .2s; }
  .menu-toggle i::before { transform: translateY(7px); }
  .menu-toggle[aria-expanded="true"] i { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i::before { transform: rotate(-90deg); }
  .brand, .menu-toggle { position: relative; z-index: 2; }
  .site-nav { position: fixed; inset: 0; z-index: 1; display: none; flex-direction: column; justify-content: center; padding: 8rem 2rem 4rem; background: var(--yellow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { font-family: var(--display); font-size: clamp(2.7rem, 8vw, 5rem); }
  .site-nav .nav-call { margin-top: 1rem; background: var(--ink); color: var(--white); box-shadow: 6px 6px 0 var(--blue); font-family: var(--body); font-size: 1rem; }
  .hero-copy { grid-template-columns: 1fr; }
  h1 { font-size: clamp(4.5rem, 14vw, 8rem); }
  h1 span:last-child { margin-left: 0; }
  .hero-intro { margin-top: 1rem; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-strip p:nth-child(2) { border-right: 0; }
  .proof-strip p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading, .reviews-header, .plan-section { grid-template-columns: 1fr; }
  .wash-grid { grid-template-columns: 1fr 1fr; }
  .card-paper { grid-column: 1 / -1; min-height: 400px; margin-top: 0; }
  .detail-section { grid-template-columns: 1fr; }
  .detail-photo { min-height: 620px; }
  .detail-copy { padding: 5rem 2rem; }
  .detail-copy h2 { max-width: 10ch; }
  .review-score { justify-content: flex-start; }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-top .brand { justify-self: center; }
  .footer-top > a:last-child { justify-self: center; }
}

@media (max-width: 640px) {
  .section-shell, .site-header { width: min(100% - 28px, 1320px); }
  body { padding-bottom: 60px; }
  .notice-bar { justify-content: center; padding-inline: 14px; font-size: .56rem; }
  .notice-bar > span:first-child { display: none; }
  .site-header { min-height: 82px; }
  .brand strong { font-size: 1.6rem; }
  .brand small { font-size: .48rem; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-mark i { left: 10px; width: 25px; height: 6px; }
  .brand-mark i:nth-child(1) { top: 10px; }
  .brand-mark i:nth-child(2) { top: 18px; left: 5px; width: 25px; }
  .brand-mark i:nth-child(3) { top: 26px; }
  .hero { padding-top: 3.5rem; }
  .hero .kicker { margin-bottom: 2rem; }
  h1 { font-size: clamp(4.1rem, 21vw, 6.5rem); line-height: .78; }
  .hero-intro { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-visual { margin: 3rem -14px 6rem; }
  .hero-photo { padding: 6px; transform: none; }
  .hero-photo img { min-height: 440px; object-position: 61% center; }
  .open-ticket { top: auto; right: 14px; bottom: -46px; width: 245px; }
  .score-stamp { display: none; }
  .proof-strip p { min-height: 92px; padding: 1.35rem .5rem; font-size: 1.35rem; }
  .wash-section { padding-block: 5rem; }
  h2 { font-size: clamp(3.5rem, 17vw, 5.4rem); }
  .section-heading { gap: 1rem; }
  .wash-grid { display: flex; margin-top: 2.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .wash-grid::-webkit-scrollbar { display: none; }
  .wash-card { flex: 0 0 86%; min-height: 470px; margin-top: 0; scroll-snap-align: start; }
  .detail-photo { min-height: 500px; }
  .detail-copy { padding: 4rem 1.25rem; }
  .detail-copy h2 { font-size: 3.8rem; }
  .reviews-section { padding-block: 5rem; }
  .review-score { align-items: center; }
  .review-score > strong { font-size: 7rem; }
  .review-stage { margin-top: 3rem; padding: 2rem 1.25rem 6rem; box-shadow: 7px 7px 0 var(--yellow); }
  .review-card { display: block; }
  .quote-mark { height: 65px; font-size: 7rem; }
  .review-card blockquote { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .review-card footer { display: grid; margin-top: 1.5rem; }
  .review-controls { right: auto; bottom: 1.4rem; left: 1.25rem; }
  .plan-section { gap: 2.5rem; padding-bottom: 5rem; }
  .wash-planner { margin-inline: -14px; padding: 2rem 1.25rem; box-shadow: none; }
  .choice-row { grid-template-columns: 1fr; }
  .choice-row span { min-height: 50px; }
  .visit-section { padding-top: 5rem; }
  .visit-heading h2 { font-size: clamp(4.5rem, 21vw, 7rem); }
  .visit-grid { width: 100%; gap: 0; padding-bottom: 0; }
  .address-card, .hours-card { min-height: auto; padding: 3rem 1.25rem; }
  .address-card address { margin: 3rem 0; font-size: 3.7rem; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .mobile-actions { position: fixed; right: 0; bottom: 0; left: 0; z-index: 50; display: grid; grid-template-columns: 1fr 1fr; min-height: 60px; box-shadow: 0 -10px 30px rgba(16,24,32,.18); }
  .mobile-actions a { display: grid; place-items: center; background: var(--yellow); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
  .mobile-actions a:last-child { background: var(--ink); color: var(--white); }
}
