/* =============================================================
   Sachin's Mobile Detailing
   Palette + type are derived from the brand's own hoodie print:
   a mint/seafoam mark on near-black, warmed by the desert paver
   and adobe tones that show up in every photograph.
   ============================================================= */

/* ---------- 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 {
  --ink:        #06100E;
  --ink-2:      #0A1614;
  --surface:    #0E1D1A;
  --surface-2:  #142A25;
  --mint:       #7FD8C4;
  --mint-hi:    #B4EFE0;
  --mint-deep:  #2C7A6B;
  --sand:       #C9A87C;
  --bone:       #F1EDE6;
  --muted:      #8AA29E;
  --line:       rgba(127, 216, 196, .17);
  --line-soft:  rgba(241, 237, 230, .09);

  --display: "Archivo", "Arial Narrow", system-ui, sans-serif;
  --body:    "Manrope", system-ui, -apple-system, sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "Courier New", monospace;

  --wrap: 1240px;
  --pad:  clamp(1.25rem, 4vw, 3rem);
  --sect: clamp(5rem, 11vh, 9rem);

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

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

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--body);
  font-size: clamp(1rem, .96rem + .18vw, 1.075rem);
  line-height: 1.65;
  overflow-x: hidden;
  /* faint film grain, echoing the grade on the photographs */
  background-image:
    radial-gradient(900px 620px at 85% -8%, rgba(127, 216, 196, .07), transparent 70%),
    radial-gradient(760px 520px at 6% 34%, rgba(201, 168, 124, .05), transparent 72%);
  background-attachment: fixed;
}

body.is-locked { overflow: hidden; }

::selection { background: var(--mint); color: var(--ink); }

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

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

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

/* =============================================================
   TYPE
   Archivo carries the personality: wide, squared, automotive —
   the same proportions as the wordmark on the van and hoodie.
   ============================================================= */
.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  font-size: clamp(2rem, 1.15rem + 3.5vw, 3.9rem);
  line-height: .98;
  letter-spacing: -.024em;
  text-wrap: balance;
}
.h2--tight { line-height: .94; }

.eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--mint { color: var(--mint); }

.lede {
  margin-top: 1.35rem;
  max-width: 56ch;
  font-size: clamp(1.02rem, .98rem + .3vw, 1.2rem);
  color: rgba(241, 237, 230, .72);
}
.lede--light { color: rgba(241, 237, 230, .85); }

.body { margin-top: 1rem; max-width: 56ch; color: rgba(241, 237, 230, .68); }

.head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.head .eyebrow { margin-bottom: 1.1rem; }

.head--row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem 2rem;
  align-items: flex-end;
  justify-content: space-between;
}

/* =============================================================
   THE MARK
   The supplied logo came composited on black; it is un-premultiplied
   to true transparency so it sits on the page background rather than
   in a black box. Sizes below are the only places it appears.
   ============================================================= */
.brand__mark {
  width: 96px;
  height: auto;
  flex: 0 0 auto;
}
@media (max-width: 620px) { .brand__mark { width: 78px; } }

/* =============================================================
   LOADER — the mark resolves, a highlight rolls over it, curtain lifts
   ============================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-content: center;
  gap: 1.5rem;
  background: var(--ink);
  transition: clip-path 1s var(--slow), opacity .5s ease .55s;
  clip-path: inset(0 0 0 0);
}
.loader__inner { display: grid; justify-items: center; gap: 1.4rem; }

.loader__logo {
  position: relative;
  width: clamp(220px, 52vw, 380px);
  opacity: 0;
  transform: scale(.94);
  overflow: hidden;
}
.loader__logo img { width: 100%; height: auto; }

/* the same specular band that runs everywhere else on the site */
.loader__gloss {
  position: absolute;
  top: -30%;
  left: 0;
  width: 45%;
  height: 160%;
  background: linear-gradient(100deg, transparent, rgba(180,239,224,.2) 45%, rgba(255,255,255,.42) 50%, rgba(180,239,224,.2) 55%, transparent);
  filter: blur(5px);
  transform: skewX(-16deg);
  translate: -220% 0;
  pointer-events: none;
}

.loader__bar {
  position: absolute;
  left: 50%;
  bottom: clamp(3rem, 12vh, 6rem);
  translate: -50% 0;
  width: clamp(120px, 26vw, 200px);
  height: 1px;
  background: var(--line);
  overflow: hidden;
}
.loader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--mint);
  transform-origin: left;
  scale: 0 1;
}

/* animation states, driven from JS */
.loader.is-drawing .loader__logo  { animation: logoIn 1.1s var(--slow) forwards; }
.loader.is-drawing .loader__gloss { animation: sweep 1.5s var(--slow) .75s; }
.loader.is-drawing .loader__bar i { animation: barFill 1.6s var(--ease) forwards; }

.loader.is-done {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
}

@keyframes logoIn  { to { opacity: 1; transform: none; } }
@keyframes barFill { to { scale: 1 1; } }

/* hold the hero's opening sequence until the curtain lifts,
   so it plays for the viewer instead of behind the loader */
body.is-loading .hero__media img,
body.is-loading .hero__gloss,
body.is-loading .hero__h1 .line > span,
body.is-loading .hero__h1 em,
body.is-loading .hero__scroll i::after { animation-play-state: paused; }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .85rem var(--pad);
  background: rgba(6, 16, 14, .55);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: transform .5s var(--ease), background .4s ease, border-color .4s ease;
}
.nav.is-solid {
  background: rgba(6, 16, 14, .88);
  border-bottom-color: var(--line);
}
.nav.is-hidden { transform: translateY(-105%); }

.brand { display: flex; align-items: center; gap: .8rem; flex: 0 0 auto; }
.brand__text { display: grid; line-height: 1; }
.brand__text b {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  font-size: 1.02rem;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.brand__text i {
  margin-top: .28rem;
  font-family: var(--mono);
  font-style: normal;
  font-size: .56rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--mint);
}

.nav__links { display: flex; gap: 2rem; margin-inline: auto; }
.nav__links a {
  position: relative;
  font-size: .93rem;
  color: rgba(241, 237, 230, .74);
  transition: color .25s ease;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--mint);
  scale: 0 1;
  transform-origin: left;
  transition: scale .35s var(--ease);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { scale: 1 1; }

.nav__act { display: flex; align-items: center; gap: 1.25rem; flex: 0 0 auto; }
.tel {
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .04em;
  color: rgba(241, 237, 230, .8);
  transition: color .25s ease;
}
.tel:hover { color: var(--mint); }

/* burger */
.burger { display: none; width: 30px; height: 30px; position: relative; flex: 0 0 auto; }
.burger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: var(--bone);
  transition: transform .35s var(--ease), opacity .25s 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: 58px 0 auto 0;
  z-index: 89;
  display: grid;
  gap: .3rem;
  padding: 1.25rem var(--pad) 1.75rem;
  background: rgba(6, 16, 14, .97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  animation: drawerIn .35s var(--ease);
}
.drawer[hidden] { display: none; }
.drawer a {
  padding: .7rem 0;
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: 1.35rem;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__tel { font-family: var(--mono) !important; font-size: .95rem !important; color: var(--mint); border-bottom: 0 !important; }
@keyframes drawerIn { from { opacity: 0; transform: translateY(-8px); } }

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .72rem 1.4rem;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .3s var(--ease), color .3s ease, border-color .3s ease;
}
.btn--lg { padding: 1rem 2rem; font-size: .82rem; }
.btn--full { width: 100%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--mint { background: var(--mint); color: var(--ink); font-weight: 600; }
/* light wipes across the pill like a highlight crossing a panel */
.btn--mint::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.85) 50%, transparent 80%);
  translate: -110% 0;
  transition: translate .6s var(--ease);
}
.btn--mint:hover::after { translate: 110% 0; }

.btn--ghost {
  border: 1px solid var(--line);
  color: var(--bone);
  background: rgba(241, 237, 230, .04);
}
.btn--ghost:hover { border-color: var(--mint); color: var(--mint); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8rem var(--pad) 2rem;
  overflow: hidden;
  isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
  scale: 1.1;
  filter: saturate(.92) contrast(1.04);
  animation: heroIn 2.4s var(--slow) forwards, drift 34s ease-in-out 2.4s infinite alternate;
}
@keyframes heroIn { to { scale: 1.02; } }
@keyframes drift  { to { scale: 1.09; object-position: 56% 52%; } }

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,16,14,.97) 4%, rgba(6,16,14,.72) 34%, rgba(6,16,14,.28) 62%, rgba(6,16,14,.55) 100%),
    linear-gradient(100deg, rgba(6,16,14,.6), transparent 62%);
}

/* the signature: a specular band rolling over the paint */
.hero__gloss {
  position: absolute;
  top: -30%;
  left: 0;
  width: 42%;
  height: 160%;
  background: linear-gradient(100deg, transparent, rgba(180, 239, 224, .16) 42%, rgba(255,255,255,.3) 50%, rgba(180, 239, 224, .16) 58%, transparent);
  filter: blur(6px);
  transform: skewX(-14deg);
  translate: -140% 0;
  animation: sweep 3.4s var(--slow) 1.7s;
}
@keyframes sweep { from { translate: -140% 0; } to { translate: 340% 0; } }

/* cursor-following polish glow */
.hero__polish {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(180, 239, 224, .16), transparent 68%);
  transition: opacity .6s ease;
}
.hero:hover .hero__polish { opacity: 1; }

.hero__body { position: relative; width: 100%; max-width: var(--wrap); margin-inline: auto; }

.hero__h1 {
  margin-top: 1.4rem;
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 116%;
  font-size: clamp(2.6rem, 1rem + 8.4vw, 7.4rem);
  line-height: .9;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero__h1 .line { display: block; overflow: hidden; padding-bottom: .04em; }
.hero__h1 .line > span {
  display: block;
  translate: 0 110%;
  animation: lineUp 1.05s var(--slow) forwards;
}
.hero__h1 .line:nth-child(1) > span { animation-delay: .15s; }
.hero__h1 .line:nth-child(2) > span { animation-delay: .27s; }
.hero__h1 .line:nth-child(3) > span { animation-delay: .39s; }
.hero__h1 em {
  font-style: normal;
  color: var(--mint);
  /* mint underscore that draws itself after the line lands */
  background: linear-gradient(var(--mint), var(--mint)) no-repeat left 92% / 0% 5px;
  animation: ruleIn .9s var(--ease) 1.15s forwards;
}
@keyframes lineUp { to { translate: 0 0; } }
@keyframes ruleIn { to { background-size: 100% 5px; } }

.hero__sub {
  margin-top: 1.9rem;
  max-width: 50ch;
  font-size: clamp(1.02rem, .97rem + .35vw, 1.22rem);
  color: rgba(241, 237, 230, .8);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }

.hero__foot {
  position: relative;
  width: 100%;
  max-width: var(--wrap);
  margin: clamp(2.5rem, 7vh, 4.5rem) auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.hero__where {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mint);
}
.hero__scroll i {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--mint), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--mint);
  animation: nudge 2.1s ease-in-out infinite;
}
@keyframes nudge { 0%, 100% { translate: -100% 0; } 50% { translate: 100% 0; } }

/* =============================================================
   TICKER
   ============================================================= */
.ticker {
  padding-block: clamp(2rem, 4vw, 3rem);
  border-block: 1px solid var(--line);
  background: var(--ink-2);
  overflow: hidden;
}
.ticker__label {
  max-width: var(--wrap);
  margin: 0 auto .9rem;
  padding-inline: var(--pad);
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker__track { display: flex; width: max-content; animation: roll 34s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__run { display: flex; align-items: center; }
.ticker__run span {
  padding-inline: 1.6rem;
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: clamp(1.35rem, 1rem + 2vw, 2.6rem);
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: rgba(241, 237, 230, .34);
  white-space: nowrap;
  transition: color .3s ease;
}
.ticker__run span:hover { color: var(--bone); }
.ticker__run i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--mint);
  rotate: 45deg;
}
@keyframes roll { to { translate: -50% 0; } }

/* =============================================================
   CARDS (why mobile)
   ============================================================= */
.cards {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(165deg, var(--surface), var(--ink-2));
  overflow: hidden;
  transition: border-color .4s ease, transform .4s var(--ease);
}
.card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 55%;
  height: 180%;
  background: linear-gradient(100deg, transparent, rgba(180,239,224,.11) 45%, rgba(255,255,255,.16) 50%, rgba(180,239,224,.11) 55%, transparent);
  transform: skewX(-16deg);
  translate: -180% 0;
  transition: translate .9s var(--slow);
  pointer-events: none;
}
.card:hover { border-color: rgba(127, 216, 196, .42); transform: translateY(-4px); }
.card:hover::after { translate: 260% 0; }
.card__idx {
  display: block;
  margin-bottom: 1.6rem;
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--mint);
}
.card h3 {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 108%;
  font-size: 1.35rem;
  letter-spacing: -.015em;
}
.card p { margin-top: .7rem; font-size: .97rem; color: rgba(241, 237, 230, .66); }

/* =============================================================
   FOAM PANEL
   ============================================================= */
.foam {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 92vh, 860px);
  padding-block: var(--sect);
  overflow: hidden;
  isolation: isolate;
}
.foam__media { position: absolute; inset: 0; z-index: -2; }
.foam__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  scale: 1.14;
  translate: 0 var(--par, 0px);
  filter: saturate(.86) contrast(1.05) brightness(.88);
}
/* Dark enough to read type over, light enough that the car still
   carries the section. The copy sits in the dark left third. */
.foam::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6,16,14,.93) 0%, rgba(6,16,14,.86) 32%, rgba(6,16,14,.42) 68%, rgba(6,16,14,.12) 100%),
    linear-gradient(to top, rgba(6,16,14,.7), transparent 55%);
}
.foam__col { max-width: 620px; }
.foam__sweep {
  position: absolute;
  top: -20%;
  left: 0;
  z-index: -1;
  width: 38%;
  height: 140%;
  background: linear-gradient(100deg, transparent, rgba(180,239,224,.15) 45%, rgba(255,255,255,.24) 50%, rgba(180,239,224,.15) 55%, transparent);
  filter: blur(5px);
  transform: skewX(-14deg);
  translate: -160% 0;
  pointer-events: none;
}
.foam.is-in .foam__sweep { animation: sweep 2.8s var(--slow) .3s; }

.facts {
  display: grid;
  gap: .9rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.facts li { display: grid; gap: .2rem; }
.facts b {
  font-family: var(--mono);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mint);
}
.facts span { font-size: .96rem; color: rgba(241, 237, 230, .66); }

/* =============================================================
   SERVICES
   ============================================================= */
.services { background: var(--ink-2); border-block: 1px solid var(--line); }

.svc { display: grid; border-top: 1px solid var(--line); }
.svc__item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr 13rem;
  gap: 1.5rem 2rem;
  align-items: start;
  padding-block: clamp(1.9rem, 3.4vw, 2.9rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background .45s ease;
}
.svc__item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--mint);
  scale: 1 0;
  transform-origin: top;
  transition: scale .5s var(--ease);
}
.svc__item:hover { background: linear-gradient(90deg, rgba(127,216,196,.06), transparent 70%); }
.svc__item:hover::before { scale: 1 1; }

.svc__n {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .16em;
  color: var(--mint);
  padding-top: .5rem;
}
.svc__txt h3 {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 110%;
  font-size: clamp(1.5rem, 1.1rem + 1.5vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -.022em;
}
.svc__txt p { margin-top: .8rem; max-width: 52ch; color: rgba(241, 237, 230, .66); }
.svc__tag {
  justify-self: end;
  padding: .42rem .85rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  transition: color .35s ease, border-color .35s ease;
}
.svc__item:hover .svc__tag { color: var(--mint); border-color: rgba(127,216,196,.4); }

/* water beading on the ceramic coating row */
.beads { position: absolute; inset: 0; pointer-events: none; }
.beads i {
  position: absolute;
  top: -14px;
  left: var(--x);
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(255,255,255,.95), rgba(180,239,224,.5) 42%, rgba(127,216,196,.14) 72%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.28);
  opacity: 0;
}
.svc__item--bead:hover .beads i { animation: bead 2.1s var(--ease) var(--t) infinite; }
@keyframes bead {
  0%        { opacity: 0; translate: 0 0; scale: .4; }
  18%       { opacity: .95; scale: 1; }
  75%       { opacity: .8; }
  100%      { opacity: 0; translate: 0 clamp(150px, 22vw, 260px); scale: .85; }
}

.addons {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1rem;
  align-items: center;
  margin-top: 2.5rem;
}
.addons__label {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
}
.addons ul { display: flex; flex-wrap: wrap; gap: .55rem; }
.addons li {
  padding: .45rem .95rem;
  border: 1px solid var(--line-soft);
  border-radius: 100px;
  font-size: .85rem;
  color: rgba(241, 237, 230, .74);
  transition: border-color .3s ease, color .3s ease;
}
.addons li:hover { border-color: rgba(127,216,196,.45); color: var(--mint); }

/* =============================================================
   PROCESS
   ============================================================= */
.process__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); grid-template-columns: 1fr; }

.process__fig {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  aspect-ratio: 4 / 5;
}
.process__fig img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.process__fig figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 3.5rem 1.1rem 1.1rem;
  background: linear-gradient(to top, rgba(6,16,14,.95), transparent);
  font-family: var(--mono);
  font-size: .7rem;
  line-height: 1.7;
  letter-spacing: .04em;
  color: rgba(241, 237, 230, .82);
}

.steps { position: relative; display: grid; gap: clamp(2rem, 4vw, 3.2rem); padding-left: 3.5rem; }
.steps__rail {
  position: absolute;
  left: 7px;
  top: .6rem;
  bottom: .6rem;
  width: 1px;
  background: var(--line);
}
.steps__rail i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: linear-gradient(var(--mint), var(--mint-deep));
  transform-origin: top;
  scale: 1 var(--fill, 0);
  transition: scale .25s linear;
}
.step { position: relative; }
.step__dot {
  position: absolute;
  left: -3.5rem;
  top: .45rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--ink);
  transition: background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.step.in .step__dot {
  background: var(--mint);
  border-color: var(--mint);
  box-shadow: 0 0 0 5px rgba(127,216,196,.14);
}
.step__n {
  display: block;
  margin-bottom: .5rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .2em;
  color: var(--mint);
}
.step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 110%;
  font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.1rem);
  letter-spacing: -.02em;
}
.step p { margin-top: .65rem; max-width: 54ch; color: rgba(241, 237, 230, .66); }

/* =============================================================
   GALLERY
   ============================================================= */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .5rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .3s ease, border-color .3s ease, background .3s ease;
}
.chip:hover { color: var(--bone); border-color: rgba(127,216,196,.4); }
.chip.is-on { background: var(--mint); border-color: var(--mint); color: var(--ink); font-weight: 600; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-auto-rows: 175px;
  grid-auto-flow: dense;
  gap: .7rem;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: var(--surface);
  padding: 0;
  transition: opacity .45s ease, transform .45s var(--ease), filter .45s ease;
}
.tile--wide { grid-column: span 2; }
.tile--tall { grid-row: span 2; }
.tile--big  { grid-column: span 2; grid-row: span 2; }

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) brightness(.92);
  transition: transform .8s var(--slow), filter .5s ease;
}
.tile::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 50%;
  height: 180%;
  background: linear-gradient(100deg, transparent, rgba(180,239,224,.16) 45%, rgba(255,255,255,.28) 50%, rgba(180,239,224,.16) 55%, transparent);
  transform: skewX(-18deg);
  translate: -200% 0;
  transition: translate .85s var(--slow);
  pointer-events: none;
}
.tile:hover img { transform: scale(1.07); filter: saturate(1.05) brightness(1); }
.tile:hover::after { translate: 300% 0; }

.tile__cap {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: .1rem;
  padding: 2.6rem .95rem .85rem;
  text-align: left;
  background: linear-gradient(to top, rgba(6,16,14,.94), transparent);
  translate: 0 .5rem;
  opacity: 0;
  transition: opacity .4s ease, translate .4s 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: 700;
  font-stretch: 108%;
  font-size: .98rem;
  letter-spacing: -.01em;
}
.tile__cap i {
  font-family: var(--mono);
  font-style: normal;
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mint);
}

.tile.is-out {
  opacity: 0;
  transform: scale(.94);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

/* =============================================================
   ABOUT
   ============================================================= */
.about { background: var(--ink-2); border-block: 1px solid var(--line); }
.about__grid {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
.about__media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
  aspect-ratio: 3 / 2;
}
.about__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.about__gloss {
  position: absolute;
  top: -30%;
  left: 0;
  width: 45%;
  height: 160%;
  background: linear-gradient(100deg, transparent, rgba(180,239,224,.14) 45%, rgba(255,255,255,.22) 50%, rgba(180,239,224,.14) 55%, transparent);
  filter: blur(4px);
  transform: skewX(-16deg);
  translate: -200% 0;
  pointer-events: none;
}
.about__media.in .about__gloss { animation: sweep 2.6s var(--slow) .35s; }

.specs { display: grid; gap: 1rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.specs > div { display: grid; gap: .25rem; }
.specs dt {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--mint);
}
.specs dd { font-size: .96rem; color: rgba(241, 237, 230, .72); }

/* =============================================================
   BOOK
   ============================================================= */
.book__grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); grid-template-columns: 1fr; align-items: start; }

.book__contact { display: grid; gap: 1.15rem; margin-top: 2.5rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.book__contact li { display: grid; gap: .2rem; }
.book__contact span {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.book__contact a, .book__contact b {
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 106%;
  /* capped so a long email address never forces an ugly wrap */
  font-size: clamp(1.02rem, .96rem + .45vw, 1.28rem);
  letter-spacing: -.015em;
  overflow-wrap: anywhere;
  transition: color .3s ease;
}
.book__contact a:hover { color: var(--mint); }

.form {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 5px;
  background: linear-gradient(165deg, var(--surface), var(--ink-2));
}
.field { display: grid; gap: .45rem; grid-column: 1 / -1; }
.field--half { grid-column: span 1; }
.field label {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  padding: .78rem .9rem;
  border: 1px solid var(--line-soft);
  border-radius: 3px;
  background: rgba(6, 16, 14, .55);
  color: var(--bone);
  font-size: .97rem;
  transition: border-color .3s ease, background .3s ease;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(138, 162, 158, .6); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: rgba(6, 16, 14, .8);
}
.field.is-bad input, .field.is-bad textarea { border-color: #E8927C; }
.field select { appearance: none; padding-right: 2.4rem; background-image: linear-gradient(45deg, transparent 50%, var(--mint) 50%), linear-gradient(135deg, var(--mint) 50%, transparent 50%); background-position: calc(100% - 18px) 51%, calc(100% - 13px) 51%; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }

/* Netlify honeypot — hidden from people, visible to bots that fill everything */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form .btn { grid-column: 1 / -1; margin-top: .5rem; }
.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;
  letter-spacing: .06em;
  color: var(--mint);
}
.form__note.is-bad { color: #E8927C; }

/* =============================================================
   FOOTER
   ============================================================= */
.foot { border-top: 1px solid var(--line); background: var(--ink-2); padding-top: clamp(3rem, 6vw, 4.5rem); }
.foot__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
.foot__logo { width: clamp(190px, 42vw, 250px); height: auto; }
.foot__tag { margin-top: 1.2rem; font-size: .92rem; color: rgba(241, 237, 230, .55); max-width: 32ch; }

.foot__nav { display: grid; gap: .55rem; align-content: start; }
.foot__nav p {
  margin-bottom: .35rem;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.foot__nav a { font-size: .95rem; color: rgba(241, 237, 230, .74); width: fit-content; transition: color .25s ease; }
.foot__nav a:hover { color: var(--mint); }

.foot__base {
  max-width: var(--wrap);
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  padding: 1.4rem var(--pad) 1.6rem;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(138, 162, 158, .75);
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lb {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(4, 10, 9, .95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn .3s ease;
}
.lb[hidden] { display: none; }
.lb__fig { display: grid; gap: .9rem; justify-items: center; max-width: min(1300px, 100%); }
.lb__fig img {
  max-width: 100%;
  max-height: 78svh;
  width: auto;
  border-radius: 3px;
  animation: lbIn .5s var(--slow);
}
.lb__fig figcaption {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mint);
  text-align: center;
}
.lb__x {
  position: absolute;
  top: clamp(.75rem, 2vw, 1.5rem);
  right: clamp(.75rem, 2vw, 1.5rem);
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--bone);
  transition: border-color .3s ease, color .3s ease;
}
.lb__x:hover { border-color: var(--mint); color: var(--mint); }
.lb__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--bone);
  transition: border-color .3s ease, color .3s ease, background .3s ease;
}
.lb__nav:hover { border-color: var(--mint); color: var(--mint); background: rgba(127,216,196,.08); }
.lb__nav--prev { left: clamp(.5rem, 2vw, 1.75rem); }
.lb__nav--next { right: clamp(.5rem, 2vw, 1.75rem); }

@keyframes fadeIn { from { opacity: 0; } }
@keyframes lbIn { from { opacity: 0; transform: scale(.965); } }

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
/* Gated behind .js so that without JavaScript — or if anything
   throws — the page renders fully visible instead of blank. */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .85s var(--ease) var(--d, 0s), transform .85s var(--ease) var(--d, 0s);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }

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

@media (min-width: 1000px) {
  .about__grid { grid-template-columns: 1.1fr 1fr; }
  .book__grid  { grid-template-columns: .9fr 1.1fr; }
  .steps { padding-left: 4.5rem; }
  .step__dot { left: -4.5rem; }

  .process__grid { grid-template-columns: 1fr .78fr; align-items: start; }
  .process__fig { position: sticky; top: 6.5rem; }
}

@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: 900px) {
  /* narrow screens put the copy over the middle of the photo, so the
     scrim has to darken from the bottom rather than the left */
  .foam::before {
    background: linear-gradient(to top, rgba(6,16,14,.95) 12%, rgba(6,16,14,.84) 55%, rgba(6,16,14,.74) 100%);
  }
}

@media (max-width: 760px) {
  .svc__item { grid-template-columns: 3rem 1fr; }
  .svc__tag { grid-column: 2; justify-self: start; }
  .svc__n { padding-top: .35rem; }
  .form { grid-template-columns: 1fr; }
  .field--half { grid-column: 1 / -1; }
  .hero { padding-top: 6.5rem; }
  .grid { grid-auto-rows: 150px; gap: .5rem; }

  /* A portrait viewport crops this landscape photo down to a narrow
     strip of dark bodywork, so ease off the scrim, shift the crop
     toward the lit desert, and stop the headline eating the frame. */
  .hero__h1 { font-size: clamp(2.25rem, .85rem + 6.2vw, 3.3rem); }
  .hero__media img { object-position: 62% 42%; filter: saturate(.95) contrast(1.02) brightness(1.06); }
  .hero__scrim {
    background: linear-gradient(to top, rgba(6,16,14,.96) 5%, rgba(6,16,14,.66) 46%, rgba(6,16,14,.36) 100%);
  }
  .hero__sub { margin-top: 1.5rem; }
}

@media (max-width: 620px) {
  /* brand + CTA + burger don't fit on a phone; the drawer already
     carries "Book a detail" and the phone number */
  .nav__act { display: none; }
  .brand__text i { font-size: .54rem; letter-spacing: .2em; }

  .grid { grid-template-columns: repeat(2, 1fr); }
  .tile--wide, .tile--big { grid-column: span 2; }
  .tile--big { grid-row: span 2; }
  .hero__foot { padding-top: 1rem; }
  .lb__nav { width: 42px; height: 42px; }
}

/* =============================================================
   REDUCED MOTION — keep the design, drop the movement
   ============================================================= */
@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 .line > span { translate: 0 0; }
  .hero__h1 em { background-size: 100% 5px; }
  .hero__media img { scale: 1.02; animation: none; }
  .hero__gloss, .foam__sweep, .about__gloss, .hero__polish { display: none; }
  .loader { display: none; }
  .ticker__track { animation: none; }
  .steps__rail i { scale: 1 1; }
  .loader__logo { opacity: 1; transform: none; }
  .loader__gloss { display: none; }
}
