/* ==========================================================================
   Detail Studio Kit — engine stylesheet
   Vanilla CSS. Grid for layout, flex for components, transform/opacity only
   for anything that moves.
   ========================================================================== */

@font-face {
  font-family: "Anton";
  src: url("fonts/Anton.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "InterVar";
  src: url("fonts/Inter-Variable.woff2") format("woff2-variations"),
       url("fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* colour */
  --red: #e12f2f;
  --red-dark: #b81f1f;
  --ink: #0f0f0f;
  --ink-2: #161616;
  --ink-3: #232323;
  --paper: #fafafa;
  --white: #fff;
  --muted: #6d6d6d;
  --muted-dark: #a7a7a7;
  --line: rgba(15, 15, 15, .14);
  --line-dark: rgba(255, 255, 255, .14);

  /* type */
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
  --body: "InterVar", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-display: clamp(2.75rem, 7.4vw, 6rem);
  --fs-h2: clamp(2.1rem, 5vw, 4rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body: clamp(1rem, .96rem + .2vw, 1.125rem);
  --fs-small: .875rem;

  /* space */
  --gutter: 1.25rem;
  --maxw: 1320px;
  --pad: max(var(--gutter), (100% - var(--maxw)) / 2);
  --gap: clamp(1.5rem, 3vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 999px;

  /* motion */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --cut: 4.8deg;         /* angle shared by the hero cut and every red stripe */
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.62;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* width/height attributes reserve the box against CLS; height:auto hands the
   final sizing back to the CSS aspect-ratio each image is cropped to. */
img, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; line-height: .92; letter-spacing: .01em; text-transform: uppercase; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; border: 0; clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip {
  position: fixed; top: .5rem; left: .5rem; z-index: 200;
  padding: .6rem 1rem; background: var(--ink); color: var(--white);
  border-radius: .4rem; text-decoration: none;
  transform: translateY(-160%);
  transition: transform .25s var(--ease);
}
.skip:focus-visible { transform: none; }

/* ---------- shared bits ------------------------------------------------- */

.section-title { font-size: var(--fs-h2); }
/* the two narrow sticky/intro columns need a smaller cut of the same scale */
.services-intro .section-title,
.pricing-intro .section-title { font-size: clamp(1.9rem, 3.4vw, 3rem); }
.section-title em { font-style: normal; color: var(--red); }

.eyebrow {
  font-size: var(--fs-small); font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--red);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 3.25rem; padding: 0 2rem;
  border: 1.5px solid transparent; border-radius: var(--radius);
  font-family: var(--display); font-size: 1.0625rem; letter-spacing: .04em;
  text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  will-change: transform;
}
.btn-solid { background: var(--red); color: var(--white); }
.btn-ghost { border-color: var(--red); background: transparent; color: currentColor; }
@media (hover: hover) {
  /* .btn:hover / :active transforms live in the inlined motion-floor block */
  .btn-solid:hover { background: var(--red-dark); }
  .btn-ghost:hover { background: var(--red); color: var(--white); }
}

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--display); font-size: 1rem; letter-spacing: .05em;
  text-transform: uppercase; text-decoration: none;
}
.link-arrow::after {
  content: ""; width: 1.6rem; height: 1.5px; background: currentColor;
  transition: transform .35s var(--ease);
}
@media (hover: hover) { .link-arrow:hover::after { transform: scaleX(1.6); transform-origin: left; } }

.round-btn {
  display: grid; place-items: center; width: 3.25rem; height: 3.25rem;
  border: 1.5px solid var(--line); border-radius: 50%;
  background: transparent; cursor: pointer;
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
@media (hover: hover) {
  .round-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
}

/* scroll reveal — transform + opacity only */
.reveal { opacity: 0; transform: translate3d(0, 28px, 0); }
.reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
  transition-delay: var(--d, 0ms);
}

/* ---------- header ------------------------------------------------------ */

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: flex; align-items: center; gap: var(--gap);
  padding: 1.35rem var(--pad);
  color: var(--white);
  transition: background-color .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.is-stuck {
  background: rgba(15, 15, 15, .92);
  padding-block: .85rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.brand {
  display: grid; justify-items: center; gap: .15rem;
  text-decoration: none; color: inherit; margin-right: auto;
}
.brand-swoosh { color: var(--red); width: clamp(78px, 8vw, 96px); height: auto; }
.brand-word { font-family: var(--display); font-size: 1.15rem; letter-spacing: .34em; text-indent: .34em; }

.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2.1rem); }
.site-nav a {
  font-size: .95rem; font-weight: 500; text-decoration: none;
  transition: color .25s var(--ease);
}
@media (hover: hover) { .site-nav a:not(.nav-cta):hover { color: var(--red); } }
.nav-cta {
  padding: .8rem 1.5rem; border: 1.5px solid var(--red); border-radius: var(--radius);
  font-family: var(--display); font-size: 1rem; font-weight: 400 !important;
  letter-spacing: .04em; text-transform: uppercase;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
@media (hover: hover) { .nav-cta:hover { background: var(--red); transform: translateY(-2px); } }

.nav-toggle {
  display: none; width: 3rem; height: 3rem; border: 0; border-radius: 50%;
  background: transparent; cursor: pointer; place-items: center;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 26px; height: 2px; background: currentColor;
  transition: transform .35s var(--ease), opacity .2s var(--ease);
}
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; top: 0; }
.nav-toggle-bars::before { transform: translateY(-8px); }
.nav-toggle-bars::after { transform: translateY(8px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: rotate(-90deg); }

/* ---------- hero -------------------------------------------------------- */

.hero {
  position: relative; isolation: isolate;
  display: grid; align-content: end;
  grid-template-columns: 1fr;
  min-height: 100svh;
  /* The top padding reserves the absolutely-positioned info bar's row. Without
     it, a short viewport (a 1200x630 link-preview shot, a landscape phone)
     leaves the content stack taller than the hero and `align-content: end`
     overflows it upward, straight through the address line. With it the hero
     grows instead of colliding. */
  padding: clamp(11rem, 16vw, 13rem) var(--pad) clamp(7rem, 14vw, 11rem);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.hero-video, .hero-scrim { position: absolute; inset: 0; z-index: -2; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(to right, rgba(10, 10, 10, .92) 0%, rgba(10, 10, 10, .55) 46%, rgba(10, 10, 10, .15) 78%),
    linear-gradient(to top, rgba(10, 10, 10, .85), rgba(10, 10, 10, 0) 45%);
}

.hero-info {
  position: absolute; top: clamp(5.5rem, 8vw, 7rem); left: var(--pad); right: var(--pad);
  display: flex; flex-wrap: wrap; gap: .75rem clamp(1.25rem, 4vw, 3.5rem);
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  font-size: var(--fs-small);
}
.hero-info li { display: flex; align-items: center; gap: .55rem; }
.hero-info svg { color: var(--red); flex: none; }
.hero-info a { text-decoration: none; transition: color .25s var(--ease); }
@media (hover: hover) { .hero-info a:hover { color: var(--red); } }

.hero-eyebrow { margin-bottom: .9rem; font-size: 1rem; }
.hero-title {
  max-width: 16ch; margin-bottom: 1.4rem;
  font-size: var(--fs-display); line-height: .88;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: block;
  transform: translate3d(0, 105%, 0);
  transition: transform 1s var(--ease-out) var(--d, 0ms);
  will-change: transform;
}
body.is-ready .hero-title .line > span { transform: none; }
.hero-title .line:nth-child(2) > span { --d: 130ms; }

.hero-lede { max-width: 46ch; margin-bottom: 2.2rem; color: rgba(255, 255, 255, .82); }
.hero .btn { justify-self: start; }
.hero .reveal { --d: 0ms; }
.hero-eyebrow.reveal { --d: 120ms; }
.hero-lede.reveal { --d: 260ms; }
.hero .btn.reveal { --d: 380ms; }

/* the angled cut + red stripes that carry the diagonal through the page */
.hero-cut {
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 1;
  height: clamp(56px, 8vw, 120px);
  background: var(--paper);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.hero-stripe {
  position: absolute; right: 0; z-index: 1;
  height: clamp(14px, 1.8vw, 26px);
  background: var(--red);
  transform: skewY(var(--cut));
  transform-origin: right bottom;
}
.hero-stripe-a { bottom: clamp(40px, 5.6vw, 84px); width: min(46%, 620px); }
.hero-stripe-b { bottom: clamp(22px, 3vw, 46px); width: min(28%, 380px); opacity: .78; }

/* ---------- why --------------------------------------------------------- */

.why {
  display: grid; align-items: center;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0 var(--gap);
  padding: var(--section-y) var(--pad);
}
.why-media {
  position: relative; grid-column: 1 / 7; grid-row: 1 / 5;
  margin: 0 0 0 clamp(0px, 1.6vw, 22px);
}
.why-media::before {
  content: ""; position: absolute; inset: auto auto -22px -22px;
  width: 78%; height: 62%; background: var(--red); z-index: -1;
}
.why-media video {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover; background: var(--ink-2);
}
.why .section-title { grid-column: 8 / 13; grid-row: 1; margin-bottom: 1.2rem; }
.why-copy { grid-column: 8 / 13; grid-row: 2; max-width: 46ch; color: var(--muted); }
.why-actions { grid-column: 8 / 13; grid-row: 3; display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.why .section-title.reveal { --d: 60ms; }
.why-copy.reveal { --d: 160ms; }
.why-actions.reveal { --d: 260ms; }

/* ---------- services ---------------------------------------------------- */

.services {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 5.5rem) var(--gap);
  padding: var(--section-y) var(--pad);
  background: var(--white);
}
.services-intro {
  grid-column: 1 / 5; grid-row: 1 / span 3;
  position: sticky; top: clamp(6rem, 12vh, 9rem); align-self: start;
  display: grid; gap: 1.1rem; justify-items: start;
  padding-left: 1.6rem;
  border-left: 3px solid var(--red);
}
.services-intro p:not(.eyebrow) { color: var(--muted); max-width: 34ch; }
.services-intro .btn { margin-top: .8rem; }

.service {
  grid-column: 6 / 13;
  display: grid; grid-template-columns: minmax(0, 270px) minmax(0, 1fr);
  gap: 0 clamp(1.5rem, 3vw, 2.5rem);
}
.service-media { grid-row: 1 / span 3; margin: 0; overflow: hidden; }
.service-media video {
  width: 100%; height: 100%; min-height: 300px; object-fit: cover;
  background: var(--ink-2);
  transition: transform .7s var(--ease);
}
@media (hover: hover) { .service:hover .service-media video { transform: scale(1.05); } }
.service h3 { font-size: var(--fs-h3); margin-bottom: .8rem; }
.service p { color: var(--muted); }
.service .link-arrow { align-self: end; margin-top: 1.5rem; justify-self: start; }

/* ---------- art of detailing -------------------------------------------- */

.art {
  position: relative; isolation: isolate;
  display: grid; align-content: center;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem var(--gap);
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  color: var(--white); background: var(--ink);
  overflow: hidden;
}
.art-video, .art-scrim { position: absolute; inset: 0; z-index: -2; }
.art-video { width: 100%; height: 100%; object-fit: cover; }
.art-scrim {
  z-index: -1;
  background: linear-gradient(to right, rgba(10, 10, 10, .9), rgba(10, 10, 10, .45) 60%, rgba(10, 10, 10, .75));
}
.art-title { grid-column: 1 / 7; }
.art-lede { grid-column: 1 / 6; color: rgba(255, 255, 255, .78); }
.art-card {
  grid-column: 7 / 13; grid-row: 1 / span 2;
  display: grid; gap: .55rem;
  padding: clamp(1.75rem, 3.4vw, 3rem);
  background: rgba(12, 12, 12, .94);
}
.stat { display: flex; align-items: flex-start; font-family: var(--display); font-size: clamp(3rem, 5vw, 4.5rem); line-height: 1; }
.stat-plus { color: var(--red); }
.stat-label { margin-bottom: 1.6rem; font-size: var(--fs-small); letter-spacing: .12em; text-transform: uppercase; color: var(--muted-dark); }
.art-card h3 { font-size: var(--fs-h3); padding-left: 1.25rem; border-left: 3px solid var(--red); }
.art-card h3 + p { margin: .6rem 0 1.6rem 1.25rem; color: rgba(255, 255, 255, .72); font-size: .975rem; }
.art-card .btn { justify-self: start; margin-top: .4rem; color: var(--white); }

/* ---------- pricing ----------------------------------------------------- */

.pricing {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  padding: var(--section-y) var(--pad);
  color: var(--white); background: var(--ink-2);
}
.pricing-intro { grid-column: 1 / 4; display: grid; gap: 1.1rem; align-content: start; justify-items: start; }
.pricing-intro p { color: var(--muted-dark); }
.pricing-intro .btn { margin-top: .8rem; color: var(--white); }

.plan {
  grid-column: span 3;
  display: grid; align-content: start; gap: .9rem;
  padding: clamp(1.5rem, 2.6vw, 2.25rem);
  background: var(--white); color: var(--ink);
  transition: transform .4s var(--ease);
}
@media (hover: hover) { .plan:hover { transform: translateY(-6px); } }
.plan h3 { font-size: var(--fs-h3); }
.plan p { color: var(--muted); font-size: .975rem; }
.plan p.plan-price { font-family: var(--display); font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1; color: var(--red); }
/* the price slot for a trade that quotes on the day — never an invented figure */
.plan p.plan-note { font-size: clamp(1.35rem, 2.2vw, 1.75rem); letter-spacing: .04em; text-transform: uppercase; }
.plan .btn { justify-self: start; margin-top: .8rem; }
.plan-feature { background: var(--red); color: var(--white); }
.plan-feature p, .plan-feature p.plan-price { color: var(--white); }
.plan-feature .btn-ghost { border-color: var(--white); }
@media (hover: hover) { .plan-feature .btn-ghost:hover { background: var(--white); color: var(--red); } }

/* ---------- team -------------------------------------------------------- */

.team {
  display: grid; gap: clamp(2rem, 4vw, 3.25rem);
  padding: 0 var(--pad) var(--section-y);
  color: var(--white); background: var(--ink-2);
}
.team-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; }
.member { position: relative; overflow: hidden; }
.member img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform .7s var(--ease), filter .5s var(--ease);
  filter: grayscale(.35) brightness(.85);
}
.member::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, .9) 4%, rgba(8, 8, 8, 0) 55%);
  pointer-events: none;
}
.member h3, .member p { position: absolute; left: clamp(1rem, 1.6vw, 1.5rem); z-index: 1; }
.member h3 { bottom: 2.6rem; font-size: clamp(1.1rem, 1.5vw, 1.4rem); }
.member p { bottom: 1.1rem; font-size: var(--fs-small); color: rgba(255, 255, 255, .74); }
@media (hover: hover) {
  .member:hover img { transform: scale(1.06); filter: grayscale(0) brightness(1); }
}

/* ---------- reviews ----------------------------------------------------- */

.reviews {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--gap);
  padding: var(--section-y) var(--pad);
}
.reviews .section-title {
  grid-column: 1 / 13; margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding-left: 1.6rem; border-left: 3px solid var(--red);
}
.review-stage { grid-column: 1 / 13; }
.review {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.5rem, 4vw, 4rem); margin: 0;
  animation: fade-slide .6s var(--ease-out) both;
}
.review[hidden] { display: none; }   /* display:grid would otherwise win */
/* a review with no photo — the honest default for a real, named reviewer */
.review-bare { grid-template-columns: minmax(0, 1fr); max-width: 62ch; }
.review-bare blockquote p { font-size: clamp(1.15rem, 1.9vw, 1.5rem); line-height: 1.5; color: var(--ink); }
.review-tag { font-size: var(--fs-small); letter-spacing: .12em; text-transform: uppercase; color: var(--red); }
/* photo-less quotes sit left, so the arrows belong under them, not adrift right */
.reviews:has(.review-bare) .review-nav { justify-content: flex-start; }
@keyframes fade-slide { from { opacity: 0; transform: translate3d(0, 18px, 0); } }
.review img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.review figcaption { display: grid; align-content: center; gap: 1.4rem; }
.review-who { display: flex; align-items: center; gap: 1rem; font-family: var(--display); font-size: clamp(1.35rem, 2.2vw, 1.9rem); text-transform: uppercase; }
.avatar {
  display: grid; place-items: center; width: 3.75rem; height: 3.75rem; flex: none;
  border-radius: 50%; background: var(--red); color: var(--white);
  font-size: 1.4rem;
}
.review blockquote { margin: 0; max-width: 54ch; color: var(--muted); }
.stars { color: var(--red); font-size: 1.4rem; letter-spacing: .1em; line-height: 1; }
.review-car { font-size: var(--fs-small); color: var(--muted); }
.review-nav { grid-column: 1 / 13; display: flex; justify-content: flex-end; gap: .75rem; }

/* ---------- booking ----------------------------------------------------- */

.book {
  position: relative; isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem) var(--gap);
  padding: var(--section-y) var(--pad);
  background: var(--paper);
  overflow: hidden;
}
.book-wedge {
  position: absolute; inset: 0 0 auto; z-index: -1;
  height: clamp(140px, 18vw, 240px);
  /* the image itself is set inline by the builder, from `book.wedge` */
  background-size: cover; background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 58%, 0 100%);
  opacity: .09;
  -webkit-mask-image: linear-gradient(to bottom, #000 25%, transparent);
  mask-image: linear-gradient(to bottom, #000 25%, transparent);
}
.book-title { grid-column: 1 / 8; }
.book-form {
  grid-column: 1 / 8;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem;
}
.book-lede { grid-column: 1 / 8; max-width: 46ch; color: var(--muted); }
/* align-self stops the row's height reaching the buttons, align-items stops
   the flex default stretching each one into a tall pill */
.book-actions {
  grid-column: 1 / 8; align-self: start;
  display: flex; flex-wrap: wrap; align-items: center; gap: .9rem; margin-top: .5rem;
}
.book-contact { grid-column: 9 / 13; align-self: start; display: grid; gap: .35rem; }
.book-contact h3 { font-size: 1.35rem; color: var(--red); margin-top: 1.75rem; }
.book-contact h3:first-child { margin-top: 0; }
.book-contact a { text-decoration: none; transition: color .25s var(--ease); }
@media (hover: hover) { .book-contact a:hover { color: var(--red); } }

.field { position: relative; margin: 0; }
.field-wide { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 1.15rem 1.4rem;
  border: 1px solid var(--line); border-radius: 1.75rem;
  background: transparent; color: inherit; font: inherit;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { border-radius: 1.4rem; resize: vertical; }
.field select { appearance: none; cursor: pointer; color: var(--muted); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225, 47, 47, .14);
}
.field label {
  position: absolute; left: 1.45rem; top: 1.15rem;
  color: var(--muted); pointer-events: none;
  transform-origin: left top;
  transition: transform .22s var(--ease), color .22s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field .label-static {
  transform: translate3d(0, -1.05rem, 0) scale(.74);
  color: var(--red);
}
.field input[type="date"] { color: var(--muted); }
.field input[type="date"]:focus, .field input[type="date"]:valid { color: inherit; }
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--red); }
.form-status { font-size: var(--fs-small); color: var(--red); }
.form-note { grid-column: 1 / -1; margin-top: -.25rem; font-size: var(--fs-small); color: var(--muted); max-width: 52ch; }

/* ---------- footer ------------------------------------------------------ */

.site-footer {
  display: grid; justify-items: center; gap: 1.25rem;
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad);
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.footer-nav a { text-decoration: none; font-size: .95rem; transition: color .25s var(--ease); }
@media (hover: hover) { .footer-nav a:hover { color: var(--red); } }
.footer-legal { font-size: var(--fs-small); color: var(--muted); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .why-media { grid-column: 1 / 6; }
  .why .section-title, .why-copy, .why-actions { grid-column: 7 / 13; }
  .services-intro { grid-column: 1 / 5; }
  .service { grid-column: 5 / 13; grid-template-columns: minmax(0, 200px) minmax(0, 1fr); }
  .art-title, .art-lede { grid-column: 1 / 13; }
  .art-card { grid-column: 1 / 13; grid-row: auto; margin-top: 1.5rem; }
  .pricing-intro { grid-column: 1 / 13; }
  .plan { grid-column: span 4; }
  .book-title, .book-form { grid-column: 1 / 9; }
  .book-contact { grid-column: 9 / 13; }
}

@media (max-width: 860px) {
  .site-header { padding-block: 1rem; }
  .nav-toggle { display: grid; }
  .site-nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.25rem; padding: 6rem var(--gutter) 3rem;
    background: var(--ink); color: var(--white);
    transform: translate3d(0, -100%, 0);
    transition: transform .55s var(--ease-out);
    will-change: transform;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: none; }
  .site-nav a { font-family: var(--display); font-size: clamp(1.9rem, 8vw, 2.75rem); text-transform: uppercase; }
  .nav-cta { margin-top: 1rem; font-size: 1.1rem; padding: .9rem 1.75rem; }
  body.nav-open { overflow: hidden; }

  .hero { padding-bottom: clamp(5rem, 18vw, 8rem); }
  .hero-info { gap: .5rem 1.25rem; font-size: .8125rem; }
  .hero-info li:nth-child(n + 3) { display: none; }

  .why { gap: var(--gap); }
  .why-media { grid-column: 1 / 13; grid-row: 1; margin-left: 18px; }
  .why .section-title { grid-column: 1 / 13; grid-row: 2; }
  .why-copy { grid-column: 1 / 13; grid-row: 3; }
  .why-actions { grid-column: 1 / 13; grid-row: 4; margin-top: .5rem; }

  .services-intro { grid-column: 1 / 13; position: static; }
  .service { grid-column: 1 / 13; grid-template-columns: minmax(0, 1fr); gap: 1.25rem; }
  .service-media { grid-row: 1; }
  .service-media video { min-height: 0; aspect-ratio: 4 / 3; }

  .plan { grid-column: 1 / 13; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .review { grid-template-columns: minmax(0, 1fr); }
  .review img { aspect-ratio: 3 / 2; }

  .book-title, .book-form, .book-contact, .book-lede, .book-actions { grid-column: 1 / 13; }
  .book-form { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { max-width: none; }
  .btn { width: 100%; }
  .field-wide .btn { width: auto; flex: 1 1 12rem; }
  .team-grid { gap: 1px; }
  .review-nav { justify-content: center; }
}

/* larger touch targets, no hover artefacts on touch devices */
@media (pointer: coarse) {
  .service-media video { transform: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-title .line > span { transform: none; }
}
