/* =============================================================
   THE TINT LAB — Premium Window Tinting
   Design system + styles
   Brand: Matte Black / Graphite / Champagne Gold / Soft White / Slate
   Type:  Bebas Neue (display) · Montserrat (body)
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --black:      #0D0D0D;   /* primary background */
  --graphite:   #1E1E1E;   /* secondary surface */
  --graphite-2: #171717;   /* card base */
  --gold:       #B89B5E;   /* accent / CTA */
  --gold-lite:  #d4bd86;   /* hover / highlight */
  --gold-deep:  #8f7642;
  --white:      #F5F5F5;   /* text / light bg */
  --slate:      #6D6D6D;   /* secondary text */
  --slate-lite: #9a9a9a;
  --line:       rgba(184,155,94,.22);  /* gold hairline */
  --line-soft:  rgba(245,245,245,.09);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --radius: 4px;

  --f-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --f-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--gold); color: var(--black); }

/* Grain overlay */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Shared type ---------- */
.section-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: .92;
  letter-spacing: .01em;
  margin: .18em 0 .5em;
  text-transform: uppercase;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .72rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .4em;
}
.eyebrow--center { justify-content: center; }
.tick { width: 26px; height: 1px; background: var(--gold); display: inline-block; }

.lede { font-size: clamp(1rem, 1.6vw, 1.18rem); color: #e9e6df; line-height: 1.75; }
.body { color: var(--slate-lite); line-height: 1.8; }

/* ---------- Buttons ---------- */
.btn {
  --pad: .95em 1.7em;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: var(--pad);
  font-family: var(--f-body); font-weight: 600; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
}
.btn--lg { --pad: 1.15em 2.2em; font-size: .86rem; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-lite), var(--gold) 55%, var(--gold-deep));
  color: #17130a; box-shadow: 0 8px 30px -12px rgba(184,155,94,.7);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -12px rgba(184,155,94,.85); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lite); transform: translateY(-2px); }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: .7rem var(--gutter);
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(13,13,13,.82); backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft); padding-top: .5rem; padding-bottom: .5rem;
}
.nav__brand img { height: 46px; width: auto; }
.nav__links { display: flex; gap: 2rem; }
.nav__links a {
  font-size: .78rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: #d9d6cf; position: relative; padding: .3em 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: var(--gold-lite);
}
.nav__phone:hover { color: var(--gold); }
.nav__cta { display: inline-flex; }
.nav__toggle { display: none; background: none; border: 0; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; padding: 0; }
.nav__toggle span { display: block; height: 2px; width: 24px; background: var(--white); margin: 0 auto; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); z-index: 99;
  background: var(--graphite); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; gap: .3rem; padding: 6rem 2rem 2rem;
  transform: translateX(100%); transition: transform .4s var(--ease);
}
.mobile-menu.open { transform: translateX(0); box-shadow: -30px 0 60px -20px rgba(0,0,0,.7); }
.mobile-menu a {
  font-family: var(--f-display); font-size: 1.9rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--white); padding: .35rem 0; border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:hover { color: var(--gold-lite); }
.mobile-menu .btn { font-family: var(--f-body); font-size: .85rem; margin-top: 1.2rem; }
.mobile-menu__phone { font-family: var(--f-body) !important; font-size: 1rem !important; color: var(--gold-lite) !important; border: 0 !important; }

/* =============================================================
   HERO — branded LED light-arch bay photo (split layout)
   ============================================================= */
.hero {
  position: relative; min-height: 100svh; overflow: hidden; background: #060606;
  display: grid; grid-template-columns: 1fr 1.05fr; align-items: stretch;
}
/* Branded hero photo (black BMW under The Tint Lab light-arch) */
.hero__photo {
  grid-column: 2; grid-row: 1; position: relative; align-self: stretch;
  background: #060606 url("../assets/hero-tintlab.jpg") center / cover no-repeat;
}
/* Blend the photo's left edge into the matte-black text panel */
.hero__photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, #060606 0%, rgba(6,6,6,.55) 10%, transparent 30%);
}

.hero__inner {
  grid-column: 1; grid-row: 1; position: relative; z-index: 2;
  align-self: center; justify-self: end;
  max-width: 620px; width: 100%; padding: 7rem var(--gutter) 3rem; text-align: left;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .7em;
  font-size: .74rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-lite); margin: 0 0 1.3rem;
}
.hero__eyebrow .tick { background: var(--gold); }

.hero__title {
  font-family: var(--f-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(3.4rem, 8vw, 6.6rem); line-height: .86; letter-spacing: .01em;
  margin: 0 0 1.3rem; text-shadow: 0 4px 40px rgba(0,0,0,.7);
}
.hero__title .line { display: block; }
.hero__title .line--gold {
  color: transparent;
  background: linear-gradient(120deg, var(--gold-lite), var(--gold) 45%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text;
}
.hero__sub {
  max-width: 46ch; font-size: clamp(1rem, 1.5vw, 1.18rem); color: #d8d5ce; line-height: 1.7;
  margin: 0 0 2.1rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }

.hero__stats { list-style: none; display: flex; gap: clamp(1.5rem, 4vw, 3.2rem); margin: 0; padding: 1.6rem 0 0; border-top: 1px solid var(--line-soft); max-width: 560px; }
.hero__stats li { display: flex; flex-direction: column; gap: .2rem; }
.hero__stats strong { font-family: var(--f-display); font-size: clamp(2rem, 4vw, 3rem); color: var(--gold-lite); line-height: 1; letter-spacing: .02em; }
.hero__stats span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-lite); }

.hero__scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--slate-lite);
}
.hero__scroll svg { animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--graphite); overflow: hidden; padding: 1.05rem 0;
}
.marquee__track {
  display: flex; width: max-content; white-space: nowrap; will-change: transform;
  font-family: var(--f-display); font-size: 1.5rem; letter-spacing: .06em; text-transform: uppercase;
  color: #cfcabf;
  animation: scroll var(--marquee-dur, 34s) linear infinite;
}
/* Trailing padding (not an outer gap) keeps the seam between clones even. */
.marquee__group {
  display: flex; align-items: center; gap: 1.6rem; padding-right: 1.6rem; flex: none;
}
.marquee__track .dot { color: var(--gold); }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll { to { transform: translate3d(calc(-1 * var(--marquee-shift, 50%)), 0, 0); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* =============================================================
   SECTION SHELL
   ============================================================= */
.about, .services, .why, .book, .contact { padding: clamp(4.5rem, 10vw, 9rem) var(--gutter); position: relative; }
.about { max-width: none; }

/* ---------- ABOUT ---------- */
.about__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 6vw, 5.5rem); align-items: center;
}
.about__media { position: relative; }
.about__panel {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius);
  background:
    linear-gradient(135deg, #232323, #141414 60%),
    repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 2px, transparent 2px 5px); /* brushed aluminum */
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0,0,0,.9);
}
.about__panel::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(184,155,94,.14), transparent 55%);
}
.about__mark { width: 66%; opacity: .92; position: relative; z-index: 1; filter: drop-shadow(0 8px 24px rgba(0,0,0,.5)); }
.about__badge {
  position: absolute; bottom: -1px; right: -1px; z-index: 2;
  display: flex; align-items: center; gap: .6rem;
  background: var(--gold); color: #17130a; padding: .9rem 1.2rem;
  border-radius: var(--radius) 0 var(--radius) 0;
}
.about__badge svg { flex-shrink: 0; }
.about__badge span { font-family: var(--f-display); font-size: 1.1rem; line-height: .95; letter-spacing: .04em; text-transform: uppercase; }

.about__values { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--line-soft); }
.value { display: flex; align-items: baseline; gap: .7rem; }
.value__no { font-family: var(--f-display); font-size: 1.4rem; color: var(--gold); letter-spacing: .05em; }
.value__label { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #d9d6cf; }

/* ---------- SERVICES ---------- */
.services { background: linear-gradient(180deg, var(--black), #0a0a0a); }
.services__head { max-width: var(--maxw); margin: 0 auto 3.4rem; }
.services__intro { color: var(--slate-lite); max-width: 46ch; font-size: 1.02rem; }

.services__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.svc {
  position: relative; background: linear-gradient(180deg, var(--graphite), var(--graphite-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 2.2rem 1.7rem 2rem; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  overflow: hidden;
}
.svc::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.svc:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 30px 60px -30px rgba(0,0,0,.9); }
.svc:hover::before { transform: scaleX(1); }
.svc__num { position: absolute; top: 1.3rem; right: 1.5rem; font-family: var(--f-display); font-size: 1.6rem; color: rgba(184,155,94,.4); letter-spacing: .05em; }
.svc__icon { color: var(--gold-lite); margin-bottom: 1.3rem; }
.svc__title { font-family: var(--f-display); font-weight: 400; font-size: 1.75rem; line-height: 1; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 .7rem; }
.svc__desc { color: var(--slate-lite); font-size: .92rem; line-height: 1.7; margin: 0 0 1.2rem; }
.svc__list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.svc__list li { position: relative; padding-left: 1.2rem; font-size: .84rem; color: #cbc8c1; }
.svc__list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; background: var(--gold); border-radius: 1px; transform: rotate(45deg); }
.svc__link { margin-top: auto; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lite); display: inline-flex; gap: .5em; transition: gap .3s var(--ease), color .3s var(--ease); }
.svc__link:hover { gap: .9em; color: var(--gold); }
.svc__link--muted { color: var(--slate-lite); }
.svc__link--muted:hover { color: var(--white); }

.svc--soon { background: linear-gradient(180deg, #141414, #101010); border-style: dashed; border-color: rgba(184,155,94,.28); }
.svc--soon .svc__title, .svc--soon .svc__desc { opacity: .82; }
.svc__soon-tag {
  position: absolute; top: 1.3rem; right: 1.4rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line); border-radius: 100px; padding: .35em .8em; background: rgba(184,155,94,.06);
}
.svc--soon .svc__num { display: none; }

/* ---------- SHOWCASE ---------- */
.showcase { padding: clamp(4.5rem, 10vw, 9rem) var(--gutter); background: var(--black); }
.showcase__head { max-width: var(--maxw); margin: 0 auto 3rem; }
.showcase__intro { color: var(--slate-lite); max-width: 46ch; }
.showcase__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 240px; gap: 1.1rem; grid-auto-flow: dense;
}
.shot {
  position: relative; margin: 0; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line-soft); background: var(--graphite);
}
.shot--tall { grid-row: span 2; }
.shot--wide { grid-column: span 2; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .6s var(--ease); filter: saturate(.92) contrast(1.02); }
.shot::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(13,13,13,.15) 62%, rgba(13,13,13,.9) 100%);
  transition: opacity .5s var(--ease);
}
.shot:hover img { transform: scale(1.06); filter: saturate(1.05) contrast(1.05); }
.shot figcaption {
  position: absolute; left: 0; bottom: 0; z-index: 2; padding: 1.3rem 1.4rem; width: 100%;
  display: flex; flex-direction: column; gap: .15rem;
  transform: translateY(4px); opacity: .96; transition: transform .5s var(--ease);
}
.shot:hover figcaption { transform: translateY(0); }
.shot__cat { font-size: .64rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lite); }
.shot__name { font-family: var(--f-display); font-size: 1.35rem; letter-spacing: .03em; text-transform: uppercase; color: var(--white); line-height: 1; }

.showcase__cta {
  max-width: var(--maxw); margin: 2.4rem auto 0;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem 1.6rem;
  padding-top: 2.2rem; border-top: 1px solid var(--line-soft); text-align: center;
}
.showcase__cta p { margin: 0; font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: .03em; text-transform: uppercase; color: #d9d6cf; }

/* ---------- WHY ---------- */
.why__head { max-width: var(--maxw); margin: 0 auto 3.4rem; }
.why__intro { color: var(--slate-lite); max-width: 44ch; }
.why__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.benefit {
  background: var(--graphite-2); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 2.2rem 1.9rem; transition: border-color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
}
.benefit:hover { border-color: var(--line); transform: translateY(-4px); }
.benefit__icon {
  width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 1.2rem;
  color: var(--gold-lite); border: 1px solid var(--line); border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(184,155,94,.14), transparent);
}
.benefit h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.9rem; line-height: .95; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 .55rem; }
.benefit p { color: var(--slate-lite); font-size: .92rem; line-height: 1.7; margin: 0; }
.benefit--cta {
  background: linear-gradient(150deg, var(--gold-deep), #2a2418 70%);
  border-color: var(--gold); display: flex; flex-direction: column; justify-content: center;
}
.benefit--cta h3 { color: var(--white); }
.benefit--cta p { color: rgba(245,245,245,.8); margin-bottom: 1.4rem; }
.benefit--cta .btn { align-self: flex-start; }

/* ---------- BOOKING ---------- */
.book { background: linear-gradient(180deg, #0a0a0a, var(--black)); }
.book__head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.book__intro { color: var(--slate-lite); font-size: 1.02rem; line-height: 1.75; max-width: 60ch; margin: 0 auto; }
.book__intro strong { color: var(--gold-lite); font-weight: 600; }

.book__wrap {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr .9fr; gap: 1.4rem; align-items: start;
}
.book__embed {
  background: linear-gradient(180deg, var(--graphite), var(--graphite-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.6rem);
}
/* Cross-origin iframes can't auto-size, so this tracks the Tint Wiz form's
   measured content height (1059px at 390/570/760px wide) plus headroom.
   Re-measure whenever fields change in Tint Wiz > Lead Forms, or the form
   grows a scrollbar inside the frame. Measure main.container-fluid, not
   body.scrollHeight -- the custom CSS makes body fill the frame. */
/* Transparent, not a colour: .book__embed is a gradient (graphite -> graphite-2)
   and any flat colour here shows as a visible rectangle against it. The Tint Wiz
   custom CSS makes its own body transparent under body.page__embed to match. */
/* Content measures 1011px at 390/570/760px wide; keep a little headroom. */
.book__embed iframe { width: 100%; min-height: 1030px; border: 0; background: transparent; display: block; }

/* Booking / contact form fields */
.bform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.1rem; }
.field label { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #cbc8c1; }
.req { color: var(--gold); }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: .95rem; color: var(--white);
  background: rgba(13,13,13,.6); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: .85rem .95rem; transition: border-color .3s var(--ease), background .3s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #5f5f5f; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: rgba(13,13,13,.9); }
.field input:invalid:not(:placeholder-shown), .field textarea:invalid:not(:placeholder-shown) { border-color: rgba(200,80,80,.55); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23B89B5E' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.4rem; }
.field select option { background: var(--graphite); color: var(--white); }
/* iOS Safari zooms the page in on focus if a control is under 16px, and never
   zooms back out. Keep form text at 16px on touch-sized screens. */
@media (max-width: 900px) {
  .field input, .field select, .field textarea { font-size: 16px; }
}

.bform__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.4rem; margin-top: .4rem; }
.bform__submit { flex-shrink: 0; }
.bform__note { font-size: .8rem; color: var(--slate); margin: 0; }
.bform__note.ok { color: var(--gold-lite); }
.bform__note.err { color: #d98a8a; }

.book__aside { display: flex; flex-direction: column; gap: 1.4rem; }
/* The Tint Wiz form runs ~1080px tall while the aside is ~400px, which left a
   large dead gap on the right. Sticking the aside keeps the phone CTA and the
   3-step explainer beside the fields the whole way down. Desktop only -- below
   1025px the aside becomes a horizontal row above the form. */
@media (min-width: 1025px) {
  .book__aside { position: sticky; top: 6.5rem; }
}
.book__card { background: linear-gradient(150deg, var(--gold-deep), #241f14 75%); border: 1px solid var(--gold); border-radius: var(--radius); padding: 1.8rem; }
.book__card h3 { font-family: var(--f-display); font-weight: 400; font-size: 1.7rem; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 .3rem; }
.book__card p { color: rgba(245,245,245,.82); font-size: .9rem; margin: 0 0 1.1rem; }
.book__phone { display: inline-flex; align-items: center; gap: .6em; font-family: var(--f-display); font-size: 1.9rem; letter-spacing: .04em; color: var(--white); }
.book__phone:hover { color: #17130a; }

.book__steps { list-style: none; margin: 0; padding: 1.8rem; background: var(--graphite-2); border: 1px solid var(--line-soft); border-radius: var(--radius); display: flex; flex-direction: column; gap: 1.3rem; }
.book__steps li { display: flex; gap: 1rem; align-items: flex-start; }
.book__steps span { flex-shrink: 0; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--gold); color: var(--gold-lite); font-family: var(--f-display); font-size: 1.1rem; }
.book__steps strong { display: block; font-size: .92rem; letter-spacing: .02em; margin-bottom: .1rem; }
.book__steps p { margin: 0; font-size: .82rem; color: var(--slate-lite); }

/* ---------- CONTACT ---------- */
.contact { background: var(--black); }
.contact__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact__lede { color: var(--slate-lite); max-width: 42ch; line-height: 1.75; }
.contact__list { list-style: none; margin: 2.4rem 0; padding: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.contact__list li { display: flex; align-items: center; gap: 1.1rem; }
.contact__ic { flex-shrink: 0; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-lite); }
.contact__k { display: block; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate); margin-bottom: .1rem; }
.contact__list a, .contact__list span:not(.contact__k) { font-size: 1.05rem; color: var(--white); }
.contact__list a:hover { color: var(--gold-lite); }
.contact__social { display: flex; gap: .8rem; margin-top: .5rem; }
.contact__social a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #cbc8c1; transition: all .3s var(--ease); }
.contact__social a:hover { color: #17130a; background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

.contact__formwrap { background: linear-gradient(180deg, var(--graphite), var(--graphite-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); }
.cform__title { font-family: var(--f-display); font-weight: 400; font-size: 1.9rem; letter-spacing: .03em; text-transform: uppercase; margin: 0 0 1.4rem; }
.cform__note { font-size: .82rem; margin: .9rem 0 0; min-height: 1.2em; }
.cform__note.ok { color: var(--gold-lite); }
.cform__note.err { color: #d98a8a; }
.cform .btn { width: 100%; margin-top: .3rem; }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: #080808; border-top: 1px solid var(--line); padding: clamp(3.5rem, 7vw, 6rem) var(--gutter) 2rem; }
.footer__top { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-soft); }
.footer__brand img { height: 58px; width: auto; margin-bottom: 1.2rem; }
.footer__brand p { color: var(--slate-lite); font-size: .9rem; margin: 0 0 .4rem; max-width: 34ch; }
.footer__vet { color: var(--gold-lite) !important; font-weight: 500; }
.footer__hours { color: var(--slate) !important; font-size: .82rem !important; margin-top: .2rem !important; }
.footer__loc { display: block; color: #b8b5ae; font-size: .9rem; padding: .3rem 0; }
.footer__social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer__social a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #cbc8c1; transition: all .3s var(--ease); }
.footer__social a:hover { color: #17130a; background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__nav h4 { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin: 0 0 1rem; }
.footer__nav a { display: block; color: #b8b5ae; font-size: .9rem; padding: .3rem 0; transition: color .25s var(--ease); }
.footer__nav a:hover { color: var(--white); }

.footer__slogan { max-width: var(--maxw); margin: 2.6rem auto; text-align: center; }
.footer__slogan span { display: block; font-family: var(--f-display); font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: .04em; text-transform: uppercase; color: var(--white); }
.footer__slogan em { font-style: italic; font-family: var(--f-body); color: var(--gold-lite); font-weight: 500; letter-spacing: .02em; }

.footer__bottom { max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; padding-top: 1.8rem; border-top: 1px solid var(--line-soft); }
.footer__bottom p { margin: 0; font-size: .78rem; color: var(--slate); letter-spacing: .04em; }
.footer__made { color: var(--gold-deep) !important; text-transform: uppercase; letter-spacing: .16em; }

/* =============================================================
   REVEAL ANIMATION
   ============================================================= */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__phone span { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .book__wrap { grid-template-columns: 1fr; }
  .book__aside { flex-direction: row; flex-wrap: wrap; }
  .book__card, .book__steps { flex: 1 1 260px; }
}

@media (max-width: 760px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 380px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__nav { grid-template-columns: repeat(3, 1fr); }
  .showcase__grid { grid-auto-rows: 200px; }
}

/* Stacked hero: photo as a band on top, copy below on solid black.
   The old version overlaid the text on the photo, which put the paragraph
   straight over the bright logo/car and made it unreadable. */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr; grid-template-rows: auto auto;
    min-height: 0; overflow: visible;
  }
  .hero__photo {
    position: relative; inset: auto; grid-column: 1; grid-row: 1;
    width: 100%; height: min(52svh, 420px); min-height: 260px;
    background-position: center 42%;
  }
  /* Dark the top so the fixed nav stays legible, fade the base into the panel. */
  .hero__photo::after {
    background: linear-gradient(180deg,
      rgba(6,6,6,.78) 0%, rgba(6,6,6,.25) 22%, transparent 45%,
      rgba(6,6,6,.55) 82%, #060606 100%);
  }
  .hero__inner {
    grid-column: 1; grid-row: 2;
    align-self: start; justify-self: center;
    max-width: 640px; text-align: center;
    padding: 2.4rem var(--gutter) 3.5rem;
  }
  .hero__eyebrow { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; margin-left: auto; margin-right: auto; }
  /* Overlapped the stats once the hero stopped being full-height. */
  .hero__scroll { display: none; }
}

@media (max-width: 560px) {
  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .bform__row { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; }
  /* Three even columns beats flex-wrap, which stranded "100%" on its own row. */
  .hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem .6rem; width: 100%; }
  .hero__stats li { align-items: center; text-align: center; }
  .hero__stats strong { font-size: 1.85rem; }
  .hero__stats span { font-size: .6rem; letter-spacing: .08em; line-height: 1.4; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .book__aside { flex-direction: column; }
  .showcase__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .shot--tall { grid-row: span 1; }
}
