/* =============================================================
   WheelerAutoSpa
   The identity is the checkered flag: the page alternates light and
   dark bands the way a flag alternates squares, and a running
   checker strip marks every transition. Bright and high-contrast to
   match the photography, which is all midday sun and white foam.
   ============================================================= */

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }

/* ---------- tokens ---------- */
:root {
  --paper:    #F2F3F5;
  --paper-2:  #E7E9ED;
  --white:    #FFFFFF;
  --ink:      #0A0A0C;
  --ink-2:    #16171B;
  --ink-3:    #22242A;
  --blue:     #0B57F0;
  --blue-hi:  #4785FF;
  --steel:    #666C78;
  --line:     rgba(10, 10, 12, .14);
  --line-2:   rgba(10, 10, 12, .08);
  --line-inv: rgba(255, 255, 255, .16);

  --display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --body:    "Barlow", system-ui, -apple-system, sans-serif;
  --mono:    "Space Mono", ui-monospace, "Courier New", monospace;

  --wrap: 1240px;
  --pad:  clamp(1.15rem, 4vw, 3rem);
  --sect: clamp(4.5rem, 10vh, 8rem);

  --ease: cubic-bezier(.16, .84, .28, 1);
  --slow: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- base ---------- */
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .2vw, 1.09rem);
  line-height: 1.6;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

::selection { background: var(--blue); color: #fff; }

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

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding-block: var(--sect); position: relative; }

/* =============================================================
   TYPE — Barlow Condensed is signage type: it belongs on vehicles
   ============================================================= */
.h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.15rem, 1.3rem + 3.6vw, 4.4rem);
  line-height: .95;
  letter-spacing: -.015em;
  text-transform: uppercase;
  text-wrap: balance;
}
.h2--inv { color: var(--white); }

.eyebrow {
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
}
.eyebrow--inv { color: var(--blue-hi); }

.lede {
  margin-top: 1.25rem;
  max-width: 54ch;
  font-size: clamp(1.02rem, .98rem + .3vw, 1.18rem);
  color: var(--steel);
}
.lede--inv { color: rgba(255, 255, 255, .74); }

.head { margin-bottom: clamp(2.25rem, 5vw, 3.75rem); }
.head .eyebrow { margin-bottom: .9rem; }
.head--row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  align-items: flex-end;
  justify-content: space-between;
}

/* =============================================================
   THE MARK
   The W-into-checkered-flag arrived as white artwork on solid black.
   It's cut to true transparency in two polarities — ink for the light
   nav, white for the dark bands — so the silver gradient in the middle
   reads correctly on either background.
   ============================================================= */
.brand__flag { width: 62px; height: auto; flex: 0 0 auto; }
.foot__flag  { width: 132px; height: auto; }

/* =============================================================
   THE FINISH LINE — a running checker strip between sections
   ============================================================= */
.checker {
  height: 20px;
  background-image:
    conic-gradient(var(--ink) 25%, transparent 0 50%, var(--ink) 0 75%, transparent 0);
  background-size: 20px 20px;
  background-color: var(--white);
  animation: run 2.4s linear infinite;
}
.checker--inv { background-color: var(--ink); background-image:
  conic-gradient(var(--white) 25%, transparent 0 50%, var(--white) 0 75%, transparent 0); }
@keyframes run { to { background-position: 20px 0; } }

/* =============================================================
   LOADER
   ============================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-content: center;
  gap: 1.6rem;
  background: var(--ink);
  transition: clip-path .9s var(--slow), opacity .45s ease .5s;
  clip-path: inset(0 0 0 0);
}
.loader__mark { display: grid; justify-items: center; gap: 1.1rem; opacity: 0; transform: translateY(12px); }
.loader__mark .flag { width: clamp(190px, 46vw, 300px); height: auto; }
.loader__word {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 6vw, 2.3rem);
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
}
.loader__word b { font-weight: 800; color: var(--blue-hi); }

.loader__line {
  position: absolute;
  left: 50%;
  bottom: clamp(3rem, 12vh, 5.5rem);
  translate: -50% 0;
  width: clamp(130px, 28vw, 210px);
  height: 2px;
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
}
.loader__line i {
  display: block;
  height: 100%;
  background: var(--blue-hi);
  transform-origin: left;
  scale: 0 1;
}

.loader.is-go .loader__mark { animation: markIn .8s var(--slow) forwards; }
.loader.is-go .loader__line i { animation: lineFill 1.5s var(--ease) forwards; }
.loader.is-done { clip-path: inset(0 100% 0 0); opacity: 0; pointer-events: none; }

@keyframes markIn  { to { opacity: 1; transform: none; } }
@keyframes lineFill { to { scale: 1 1; } }

/* hold the hero opening until the curtain clears */
body.is-loading .hero__h1 .l > span,
body.is-loading .hero__shot img { animation-play-state: paused; }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .7rem var(--pad);
  background: rgba(242, 243, 245, .82);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: transform .45s var(--ease), background .35s ease, border-color .35s ease;
}
.nav.is-solid { background: rgba(242, 243, 245, .96); border-bottom-color: var(--line); }
.nav.is-hidden { transform: translateY(-105%); }

.brand { display: flex; align-items: center; gap: .7rem; flex: 0 0 auto; }
.brand__txt {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.32rem;
  line-height: 1;
  letter-spacing: .005em;
  text-transform: uppercase;
}
.brand__txt b { font-weight: 800; color: var(--blue); }

.nav__links { display: flex; gap: 1.9rem; margin-inline: auto; }
.nav__links a {
  position: relative;
  font-size: .95rem;
  font-weight: 500;
  color: var(--steel);
  transition: color .2s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%; height: 2px;
  background: var(--blue);
  scale: 0 1;
  transform-origin: left;
  transition: scale .3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { scale: 1 1; }

.nav__act { display: flex; align-items: center; gap: 1.1rem; flex: 0 0 auto; }
.tel {
  font-family: var(--mono);
  font-size: .82rem;
  font-weight: 700;
  transition: color .2s ease;
}
.tel:hover { color: var(--blue); }

.burger { display: none; width: 30px; height: 30px; position: relative; flex: 0 0 auto; }
.burger span {
  position: absolute; left: 3px; right: 3px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease);
}
.burger span:first-child { top: 11px; }
.burger span:last-child  { top: 18px; }
.burger[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 54px 0 auto 0;
  z-index: 89;
  display: grid;
  padding: 1rem var(--pad) 1.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  animation: drawerIn .3s var(--ease);
}
.drawer[hidden] { display: none; }
.drawer a {
  padding: .65rem 0;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.45rem;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line-2);
}
.drawer__tel { font-family: var(--mono) !important; font-size: 1rem !important; color: var(--blue); border-bottom: 0 !important; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(-8px); } }

/* =============================================================
   BUTTONS — the fill wipes across like a car crossing the line
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.5rem;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: color .3s ease, border-color .3s ease;
}
.btn--lg { padding: 1.02rem 2rem; font-size: .82rem; }
.btn--full { width: 100%; }

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform-origin: left;
  transition: scale .38s var(--ease);
}
.btn--blue { background: var(--blue); color: #fff; }
.btn--blue::before { background: var(--ink); scale: 0 1; }
.btn--blue:hover::before { scale: 1 1; }

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

/* =============================================================
   HERO — split, because every source photo is portrait
   ============================================================= */
.hero { position: relative; padding-block: clamp(6.5rem, 15vh, 9rem) 0; }
.hero__body { max-width: 640px; }

.hero__h1 {
  margin-top: 1.1rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.1rem, 1.6rem + 8vw, 7rem);
  line-height: .88;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.hero__h1 .l { display: block; overflow: hidden; padding-bottom: .03em; }
.hero__h1 .l > span {
  display: block;
  translate: -104% 0;
  animation: wipeIn .95s var(--slow) forwards;
}
.hero__h1 .l:nth-child(1) > span { animation-delay: .12s; }
.hero__h1 .l:nth-child(2) > span { animation-delay: .22s; }
.hero__h1 .l:nth-child(3) > span { animation-delay: .32s; }
.hero__h1 em { font-style: normal; color: var(--blue); }
@keyframes wipeIn { to { translate: 0 0; } }

.hero__sub { margin-top: 1.5rem; max-width: 46ch; font-size: clamp(1.03rem, 1rem + .35vw, 1.2rem); color: var(--steel); }
.hero__cta { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

.hero__pts {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--steel);
}
.hero__pts li { position: relative; padding-left: 1.1rem; }
.hero__pts li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 8px; height: 8px;
  background: var(--blue);
}

/* No frame, no card. On phones it runs edge to edge; on desktop it
   bleeds off the right and bottom of the viewport and the left edge is
   cut on a forward lean, echoing the angle of the flag in the mark. */
.hero__shot {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  background: var(--paper-2);
}
.hero__shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 64%;
  scale: 1.07;
  translate: 4% 0;
  animation: settle 1.7s var(--slow) .25s forwards;
}
@keyframes settle { to { scale: 1; translate: 0 0; } }

.hero__shot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: grid;
  padding: 3.5rem 1.25rem 1.1rem;
  background: linear-gradient(to top, rgba(10, 10, 12, .78), transparent);
  pointer-events: none;
}
.hero__shot figcaption b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
}
.hero__shot figcaption span {
  margin-top: .3rem;
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-hi);
}

/* =============================================================
   TICKER
   ============================================================= */
.ticker { background: var(--white); padding-block: clamp(1.1rem, 2.5vw, 1.75rem); overflow: hidden; border-bottom: 1px solid var(--line-2); }
.ticker__track { display: flex; width: max-content; animation: roll 30s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__run { display: flex; align-items: center; }
.ticker__run span {
  padding-inline: 1.4rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.15rem, .9rem + 1.5vw, 2rem);
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.ticker__run i { width: 9px; height: 9px; flex: 0 0 auto; background: var(--blue); }
@keyframes roll { to { translate: -50% 0; } }

/* =============================================================
   WHY CARDS
   ============================================================= */
.cards { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--white);
  border: 1px solid var(--line-2);
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s ease;
}
/* a checker corner grows on hover */
.card::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 0; height: 40px;
  background-image: conic-gradient(var(--ink) 25%, transparent 0 50%, var(--ink) 0 75%, transparent 0);
  background-size: 20px 20px;
  transition: width .4s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line); }
.card:hover::after { width: 80px; }
.card__n {
  display: block;
  margin-bottom: 1.3rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--blue);
}
.card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.55rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.card p { margin-top: .6rem; font-size: .98rem; color: var(--steel); }

/* =============================================================
   FOAM — dark band
   ============================================================= */
.foam { background: var(--ink); padding-block: var(--sect); }
.foam__grid { display: grid; gap: clamp(2.25rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
.foam__shot { overflow: hidden; }
.foam__shot img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }

.facts { display: grid; gap: 1rem; margin-top: 2.25rem; padding-top: 1.6rem; border-top: 1px solid var(--line-inv); }
.facts li { display: grid; gap: .15rem; }
.facts b {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-hi);
}
.facts span { font-size: .95rem; color: rgba(255, 255, 255, .66); }

/* =============================================================
   SERVICES
   ============================================================= */
.services { background: var(--white); }
.svc { border-top: 2px solid var(--ink); }
.svc__row {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem 1fr 11rem;
  gap: 1.25rem 1.75rem;
  align-items: start;
  padding-block: clamp(1.6rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line-2);
  transition: background .3s ease;
}
.svc__row:hover { background: var(--paper); }
.svc__n {
  padding-top: .35rem;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--blue);
}
.svc__txt h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}
.svc__txt p { margin-top: .65rem; max-width: 52ch; color: var(--steel); }
.svc__tag {
  justify-self: end;
  padding: .34rem .8rem;
  border: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.addons { display: flex; flex-wrap: wrap; gap: .6rem 1rem; align-items: center; margin-top: 2.25rem; }
.addons__label {
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--steel);
}
.addons ul { display: flex; flex-wrap: wrap; gap: .5rem; }
.addons li {
  padding: .42rem .9rem;
  background: var(--paper);
  font-size: .88rem;
  transition: background .25s ease, color .25s ease;
}
.addons li:hover { background: var(--blue); color: #fff; }

/* =============================================================
   PLANS
   ============================================================= */
.plan { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.plan__card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--white);
  border: 2px solid transparent;
  transition: border-color .3s ease, transform .3s var(--ease);
}
.plan__card:hover { transform: translateY(-4px); border-color: var(--ink); }
.plan__card--pick { border-color: var(--blue); }
.plan__flag {
  position: absolute;
  top: -.75rem; left: clamp(1.5rem, 3vw, 2.1rem);
  padding: .2rem .6rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.plan__when {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.15rem);
  line-height: 1;
  text-transform: uppercase;
}
.plan__who { margin-top: .7rem; font-size: .96rem; color: var(--steel); }
.plan__note {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--steel);
}

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how { background: var(--white); }
.how__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: start; }

.steps { position: relative; display: grid; gap: clamp(1.75rem, 3.5vw, 2.75rem); padding-left: 3.25rem; }
.steps__rail { position: absolute; left: 7px; top: .5rem; bottom: .5rem; width: 2px; background: var(--line); }
.steps__rail i {
  position: absolute; inset: 0 auto 0 0; width: 100%;
  background: var(--blue);
  transform-origin: top;
  scale: 1 var(--fill, 0);
  transition: scale .2s linear;
}
.step { position: relative; }
.step__dot {
  position: absolute;
  left: -3.25rem; top: .3rem;
  width: 16px; height: 16px;
  background: var(--paper-2);
  border: 2px solid var(--line);
  transition: background .35s ease, border-color .35s ease;
}
.step.in .step__dot { background: var(--blue); border-color: var(--blue); }
.step__n {
  display: block;
  margin-bottom: .35rem;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--blue);
}
.step h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.45rem, 1.15rem + 1.2vw, 2rem);
  line-height: 1.02;
  text-transform: uppercase;
}
.step p { margin-top: .5rem; max-width: 50ch; color: var(--steel); }

.how__shot { position: relative; }
.how__shot img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; }
.how__shot figcaption {
  padding: .85rem 1rem;
  background: var(--paper);
  font-family: var(--mono);
  font-size: .72rem;
  line-height: 1.6;
  color: var(--steel);
}

/* =============================================================
   GALLERY — every photo is 3:4, so the grid stays perfectly even
   ============================================================= */
.filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip {
  padding: .5rem 1.05rem;
  border: 2px solid var(--ink);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.chip:hover { background: var(--paper-2); }
.chip.is-on { background: var(--ink); color: var(--white); }

.grid { display: grid; gap: .6rem; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.tile {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--paper-2);
  aspect-ratio: 3 / 4;
  transition: opacity .35s ease, transform .35s var(--ease);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--slow); }
.tile:hover img { transform: scale(1.06); }

.tile__cap {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: .1rem;
  padding: 2rem .8rem .7rem;
  text-align: left;
  background: linear-gradient(to top, rgba(10,10,12,.9), transparent);
  translate: 0 .4rem;
  opacity: 0;
  transition: opacity .3s ease, translate .3s var(--ease);
}
.tile:hover .tile__cap,
.tile:focus-visible .tile__cap { opacity: 1; translate: 0 0; }
.tile__cap b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
.tile__cap i {
  font-family: var(--mono);
  font-style: normal;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-hi);
}
.tile.is-out { display: none; }

/* =============================================================
   BOOK — dark band
   ============================================================= */
.book { background: var(--ink); padding-block: var(--sect); }
.book__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: start; }

.bigtel { display: block; margin-top: 2.25rem; }
.bigtel span {
  display: block;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-hi);
}
.bigtel b {
  display: block;
  margin-top: .3rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 1.4rem + 3.4vw, 3.8rem);
  line-height: 1;
  color: var(--white);
  transition: color .25s ease;
}
.bigtel:hover b { color: var(--blue-hi); }

.book__meta { display: grid; gap: 1rem; margin-top: 2.25rem; padding-top: 1.6rem; border-top: 1px solid var(--line-inv); }
.book__meta li { display: grid; gap: .15rem; }
.book__meta span {
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.book__meta a, .book__meta b {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  overflow-wrap: anywhere;
  transition: color .25s ease;
}
.book__meta a:hover { color: var(--blue-hi); }

.form { display: grid; gap: .9rem; grid-template-columns: 1fr 1fr; padding: clamp(1.4rem, 3vw, 2.1rem); background: var(--ink-2); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field { display: grid; gap: .4rem; grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
.field label {
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.field input, .field select, .field textarea {
  padding: .75rem .85rem;
  border: 1px solid var(--line-inv);
  background: var(--ink-3);
  color: var(--white);
  font-size: .98rem;
  transition: border-color .25s ease;
}
.field textarea { resize: vertical; min-height: 88px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.32); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-hi); }
.field.is-bad input, .field.is-bad textarea { border-color: #FF8A6B; }
.field select {
  appearance: none;
  padding-right: 2.3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue-hi) 50%),
    linear-gradient(135deg, var(--blue-hi) 50%, transparent 50%);
  background-position: calc(100% - 17px) 52%, calc(100% - 12px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.form .btn { grid-column: 1 / -1; margin-top: .3rem; }
.form .btn[disabled] { opacity: .6; pointer-events: none; }
.form__note {
  grid-column: 1 / -1;
  min-height: 1.2em;
  font-family: var(--mono);
  font-size: .74rem;
  color: var(--blue-hi);
}
.form__note.is-bad { color: #FF8A6B; }

/* =============================================================
   FOOTER
   ============================================================= */
.foot { background: var(--ink); color: var(--white); padding-top: clamp(2.75rem, 6vw, 4rem); }
.foot__grid { display: grid; gap: 2.25rem; grid-template-columns: 1fr; padding-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.foot__flag { margin-bottom: 1rem; }
.foot__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  line-height: 1;
}
.foot__name b { font-weight: 800; color: var(--blue-hi); }
.foot__tag { margin-top: .8rem; font-size: .94rem; color: rgba(255,255,255,.5); max-width: 30ch; }

.foot__nav { display: grid; gap: .5rem; align-content: start; }
.foot__nav p {
  margin-bottom: .3rem;
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.foot__nav a { font-size: .96rem; color: rgba(255,255,255,.75); width: fit-content; transition: color .2s ease; }
.foot__nav a:hover { color: var(--blue-hi); }

.foot__base {
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 1.25rem var(--pad) 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lb {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(10, 10, 12, .95);
  animation: fade .25s ease;
}
.lb[hidden] { display: none; }
.lb__fig { display: grid; gap: .8rem; justify-items: center; max-width: min(900px, 100%); }
.lb__fig img { max-width: 100%; max-height: 78svh; width: auto; animation: pop .4s var(--slow); }
.lb__fig figcaption {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-hi);
}
.lb__x, .lb__nav {
  position: absolute;
  border: 2px solid rgba(255,255,255,.3);
  color: #fff;
  line-height: 1;
  transition: border-color .25s ease, color .25s ease;
}
.lb__x { top: clamp(.75rem,2vw,1.5rem); right: clamp(.75rem,2vw,1.5rem); width: 46px; height: 46px; font-size: 1.5rem; }
.lb__nav { top: 50%; translate: 0 -50%; width: 50px; height: 50px; font-size: 1.7rem; }
.lb__nav--prev { left: clamp(.5rem,2vw,1.5rem); }
.lb__nav--next { right: clamp(.5rem,2vw,1.5rem); }
.lb__x:hover, .lb__nav:hover { border-color: var(--blue-hi); color: var(--blue-hi); }

@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: scale(.97); } }

/* =============================================================
   SCROLL REVEAL — gated on .js so no-JS still renders everything
   ============================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease) var(--d, 0s), transform .7s var(--ease) var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (min-width: 720px) {
  .facts { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .foot__grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
}

/* book__meta stays stacked on purpose — it sits in a narrow column and
   three across breaks the email address mid-word */

@media (min-width: 1000px) {
  .hero {
    display: flex;
    align-items: center;
    min-height: clamp(600px, 86vh, 860px);
    padding-block: clamp(5rem, 10vh, 7rem) clamp(2.5rem, 6vh, 4rem);
    overflow: hidden;
  }
  .hero > .wrap { width: 100%; }
  .hero__body { max-width: min(620px, 48vw); }

  .hero__shot {
    position: absolute;
    inset: 0 0 0 auto;
    width: clamp(430px, 47vw, 820px);
    margin: 0;
    background: none;
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
  }
  .hero__shot img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-position: 56% 58%;
  }
  /* keep a soft fade — a sunlit driveway swallows white text without it */
  .hero__shot figcaption {
    padding: 5.5rem 1.5rem 1.7rem clamp(1.5rem, 7%, 4rem);
    background: linear-gradient(to top,
      rgba(10, 10, 12, .9) 0%,
      rgba(10, 10, 12, .55) 42%,
      transparent 80%);
  }
}

@media (min-width: 940px) {
  .foam__grid { grid-template-columns: 1fr 1.08fr; }
  .how__grid  { grid-template-columns: 1.2fr .8fr; }
  .book__grid { grid-template-columns: .95fr 1.05fr; }
  .how__shot  { position: sticky; top: 6rem; }
}

@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__act .tel { display: none; }
  .burger { display: block; }
  .nav { gap: 1rem; justify-content: space-between; }
}

@media (max-width: 760px) {
  .svc__row { grid-template-columns: 3rem 1fr; }
  .svc__tag { grid-column: 2; justify-self: start; }
  .form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: .45rem; }
}

@media (max-width: 620px) {
  .nav__act { display: none; }
  .checker { height: 14px; background-size: 14px 14px; }
  @keyframes run { to { background-position: 14px 0; } }
}

/* =============================================================
   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;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero__h1 .l > span { translate: 0 0; }
  .hero__shot img { scale: 1; translate: 0 0; }
  .loader { display: none; }
  .loader__mark { opacity: 1; transform: none; }
  .ticker__track, .checker { animation: none; }
  .steps__rail i { scale: 1 1; }
}
