/* Spotless Auto Care, design system
   Type: Archivo (display, heavy and slightly expanded), IBM Plex Sans (body), IBM Plex Mono (labels).
   Grid: 12 columns, 1320px container, 24px gutters. Corners are square on purpose. */

:root {
  --ink: #111315;
  --char: #181b1e;
  --steel: #2a2f34;
  --metal: #8b9197;
  --muted: #565c62;
  --paper: #ffffff;
  --bone: #f3f2ef;
  --stone: #e6e4df;
  --line: rgba(17, 19, 21, .14);
  --line-strong: rgba(17, 19, 21, .28);
  --on-dark: #f3f2ef;
  --on-dark-muted: #a3a8ad;
  --line-dark: rgba(243, 242, 239, .16);
  /* Accent: the sky blue of the classic car in the Spotless logo, deepened for contrast. */
  --accent: #245a7e;
  --accent-hover: #1c4764;
  --accent-soft: #9cc4de;
  --ok: #2f6b3f;
  --err: #a2332a;

  --f-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --f-body: "IBM Plex Sans", "Segoe UI", Roboto, Arial, sans-serif;
  --f-mono: "IBM Plex Mono", ui-monospace, Menlo, Consolas, monospace;

  --fs-display: clamp(3rem, 6.5vw, 6.6rem);
  --fs-h1: clamp(2.2rem, 6.4vw, 5.6rem);
  --fs-h2: clamp(2.05rem, 4.3vw, 3.7rem);
  --fs-h3: clamp(1.4rem, 2.1vw, 1.85rem);
  --fs-h4: 1.2rem;
  --fs-lede: clamp(1.13rem, 1.35vw, 1.3rem);
  --fs-body: 1.0625rem;
  --fs-small: .9375rem;

  --container: 1320px;
  --pad: clamp(20px, 4vw, 48px);
  --gutter: 24px;
  --section: clamp(72px, 9vw, 136px);
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}
@media (max-width: 900px) { :root { --header-h: 64px; --gutter: 16px; } }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font: 400 var(--fs-body)/1.62 var(--f-body);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
[hidden] { display: none !important; }
h1, h2, h3, h4, p, ul, ol, dl, figure, blockquote { margin: 0; }
ul, ol { padding: 0; }
:where([id]) { scroll-margin-top: calc(var(--header-h) + 24px); }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.dark :focus-visible { outline-color: var(--accent-soft); }

.skip { position: absolute; left: 12px; top: -80px; z-index: 200; background: var(--ink); color: #fff; padding: 12px 18px; font-weight: 600; text-decoration: none; }
.skip:focus { top: 12px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- type ---------- */
.display, .h1, .h2, .h3, .h4 {
  font-family: var(--f-display); font-weight: 850; font-stretch: 112%;
  text-transform: uppercase; letter-spacing: -.012em; line-height: .93;
  font-variation-settings: "wdth" 112;
}
.display { font-size: var(--fs-display); line-height: .88; letter-spacing: -.02em; }
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); line-height: 1; font-weight: 800; }
.h4 { font-size: var(--fs-h4); line-height: 1.1; font-weight: 800; letter-spacing: .01em; }
.accent { color: var(--accent); }
.dark .accent { color: var(--accent-soft); }
.lede { font-size: var(--fs-lede); line-height: 1.55; color: var(--muted); max-width: 40ch; }
.dark .lede { color: var(--on-dark-muted); }
.prose p + p { margin-top: 1em; }
.prose { max-width: 62ch; }
.muted { color: var(--muted); }
.small { font-size: var(--fs-small); }
.mono { font-family: var(--f-mono); font-weight: 500; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 .75rem/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; background: var(--accent); flex: none; }
.dark .eyebrow { color: var(--on-dark-muted); }
.dark .eyebrow::before { background: var(--accent-soft); }

/* ---------- layout ---------- */
.container { width: 100%; max-width: calc(var(--container) + var(--pad) * 2); margin: 0 auto; padding: 0 var(--pad); }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
.grid > *, .hero__grid > *, .sec-head > *, .svc-index > *, .mobile-band > *, .ba-block > *, .consult > *, .area > *, .close__in > *,
.phero__grid > *, .svc-block > *, .two-col > *, .work-split > *, .case > *, .faq-layout > *, .form-layout > *, .contact-grid > *,
.ftr__grid > *, .quote > * { min-width: 0; }
.section { padding: var(--section) 0; }
.section--tight { padding: calc(var(--section) * .6) 0; }
.bg-bone { background: var(--bone); }
.bg-stone { background: var(--stone); }
.dark { background: var(--char); color: var(--on-dark); }
.dark.bg-ink { background: var(--ink); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.dark .rule { border-color: var(--line-dark); }

.sec-head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: end; margin-bottom: clamp(40px, 5vw, 72px); }
.sec-head__title { grid-column: 1 / span 7; display: grid; gap: 22px; }
.sec-head__aside { grid-column: 9 / span 4; display: grid; gap: 20px; justify-items: start; }
.sec-head__aside .lede { max-width: none; }
@media (max-width: 900px) {
  .sec-head__title, .sec-head__aside { grid-column: 1 / -1; }
  .sec-head { gap: 20px; }
}

/* ---------- buttons ---------- */
.btn {
  --h: 56px;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: var(--h); padding: 0 26px; border: 2px solid transparent; border-radius: 0;
  font: 750 .9375rem/1.1 var(--f-display); font-stretch: 110%; font-variation-settings: "wdth" 110;
  letter-spacing: .06em; text-transform: uppercase; text-decoration: none; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  white-space: nowrap;
}
.btn .arr { display: inline-block; width: 18px; height: 2px; background: currentColor; position: relative; transition: width .25s var(--ease); flex: none; }
.btn .arr::after { content: ""; position: absolute; right: 0; top: -4px; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); transform-origin: 100% 0; top: -1px; }
.btn:hover .arr { width: 26px; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--steel); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.dark .btn--ghost { border-color: var(--on-dark); color: var(--on-dark); }
.dark .btn--ghost:hover { background: var(--on-dark); color: var(--ink); }
.btn--light { background: var(--on-dark); color: var(--ink); }
.btn--light:hover { background: #fff; }
.btn--sm { --h: 44px; padding: 0 18px; font-size: .8125rem; }
.btn--block { width: 100%; white-space: normal; text-align: center; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 560px) {
  .btn { white-space: normal; text-align: center; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { white-space: normal; text-align: center; }
}

.link {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  font: 750 .875rem/1.2 var(--f-display); font-stretch: 110%; letter-spacing: .07em; text-transform: uppercase;
  padding-bottom: 5px; border-bottom: 2px solid currentColor;
}
.link:hover { color: var(--accent); }
.dark .link:hover { color: var(--accent-soft); }
.tlink { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.tlink:hover { text-decoration-thickness: 2px; }
.dark .tlink { color: var(--accent-soft); }

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.hdr__in { height: var(--header-h); display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; flex-direction: column; justify-content: center; text-decoration: none; line-height: 1; flex: none; }
.brand__name { font: 900 1.375rem/.9 var(--f-display); font-stretch: 118%; font-variation-settings: "wdth" 118; text-transform: uppercase; letter-spacing: -.01em; }
.brand__sub { margin-top: 5px; font: 500 .625rem/1 var(--f-mono); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.brand__sub b { color: var(--accent); font-weight: 500; }
.nav { margin-left: auto; }
.nav ul { list-style: none; display: flex; gap: 30px; }
.nav a {
  position: relative; display: block; padding: 8px 0; text-decoration: none;
  font: 700 .875rem/1 var(--f-display); font-stretch: 108%; letter-spacing: .06em; text-transform: uppercase;
}
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.hdr__cta { flex: none; }
.menu-btn { display: none; margin-left: auto; width: 48px; height: 48px; border: 0; background: transparent; cursor: pointer; padding: 12px; }
.menu-btn span { display: block; height: 2px; background: var(--ink); }
.menu-btn span + span { margin-top: 6px; }
.menu-btn span:nth-child(2) { width: 70%; margin-left: auto; }
@media (max-width: 1080px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .hdr__in { gap: 12px; }
  .hdr__cta { margin-left: auto; }
  .menu-btn { margin-left: 0; }
}
@media (max-width: 420px) { .hdr__cta { display: none; } .menu-btn { margin-left: auto; } .brand__name { font-size: 1.2rem; } }

/* mobile menu */
.sheet { position: fixed; inset: 0; z-index: 150; background: var(--ink); color: var(--on-dark); display: flex; flex-direction: column; overflow-y: auto; }
.sheet__top { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line-dark); flex: none; }
.sheet .brand__sub { color: var(--on-dark-muted); }
.sheet__close { width: 48px; height: 48px; border: 0; background: transparent; color: var(--on-dark); cursor: pointer; position: relative; }
.sheet__close::before, .sheet__close::after { content: ""; position: absolute; left: 12px; right: 12px; top: 23px; height: 2px; background: currentColor; transform: rotate(45deg); }
.sheet__close::after { transform: rotate(-45deg); }
.sheet nav ul { list-style: none; }
.sheet nav li { border-bottom: 1px solid var(--line-dark); }
.sheet nav a { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; text-decoration: none; font: 850 clamp(1.9rem, 8vw, 2.6rem)/1 var(--f-display); font-stretch: 112%; text-transform: uppercase; }
.sheet nav a[aria-current="page"] { color: var(--accent-soft); }
.sheet nav a .mono { font-size: .75rem; color: var(--on-dark-muted); letter-spacing: .1em; }
.sheet__foot { margin-top: auto; padding: 28px 0 32px; display: grid; gap: 12px; }
.sheet__contact { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 8px; font-size: .95rem; color: var(--on-dark-muted); }
.sheet__contact a { text-decoration: none; color: var(--on-dark); }
body.menu-open { overflow: hidden; }

/* mobile action bar */
.mbar { display: none; }
@media (max-width: 900px) {
  body { padding-bottom: 64px; }
  .mbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: grid; grid-template-columns: 1fr 1fr 1.6fr; height: 64px; background: var(--ink); border-top: 1px solid var(--line-dark); }
  .mbar a { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--on-dark); text-decoration: none; font: 750 .8125rem/1 var(--f-display); letter-spacing: .08em; text-transform: uppercase; border-right: 1px solid var(--line-dark); }
  .mbar a:last-child { background: var(--accent); color: #fff; border-right: 0; }
  .mbar svg { width: 18px; height: 18px; }
}

/* ---------- media ---------- */
.media { position: relative; overflow: hidden; background: var(--stone); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--45 { aspect-ratio: 4 / 5; }
.media--34 { aspect-ratio: 3 / 4; }
.media--11 { aspect-ratio: 1 / 1; }
.media--916 { aspect-ratio: 9 / 16; }
.media--32 { aspect-ratio: 3 / 2; }
.media--169 { aspect-ratio: 16 / 9; }
.media.img-missing img { visibility: hidden; }
.media.img-missing::after { content: attr(data-fallback); position: absolute; inset: 0; display: grid; place-items: center; padding: 20px; text-align: center; font: 800 1rem/1.1 var(--f-display); text-transform: uppercase; color: var(--muted); }
.tag {
  position: absolute; z-index: 1; left: 0; top: 0; padding: 8px 12px;
  background: var(--ink); color: #fff; font: 500 .6875rem/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase;
}
.tag--after { background: var(--accent); }
.zoom img { transition: transform .8s var(--ease); }
.zoom:hover img, a:hover .zoom img, a:focus-visible .zoom img { transform: scale(1.03); }
figcaption { margin-top: 10px; font-size: .8125rem; color: var(--muted); }
.dark figcaption { color: var(--on-dark-muted); }

/* ---------- home hero ---------- */
.hero { background: var(--bone); border-bottom: 1px solid var(--line); overflow: hidden; }
/* Desktop: hero + services strip fill exactly one screen; type scales with both width and height. */
.hero__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); min-height: clamp(500px, calc(100svh - var(--header-h) - 106px), 860px); }
.hero__copy { grid-column: 1 / span 6; display: flex; flex-direction: column; justify-content: center; gap: clamp(14px, 2.6vh, 26px); padding: clamp(24px, 5vh, 72px) 0; }
.hero .display { font-size: clamp(2.6rem, min(6.1vw, 10.5vh), 5.6rem); }
.hero .display .ln { display: block; white-space: nowrap; }
.hero__copy .lede { font-size: clamp(1rem, min(1.3vw, 2.2vh), 1.25rem); }
.hero__sub { font: 800 clamp(1.15rem, min(2vw, 3.4vh), 1.9rem)/1 var(--f-display); font-stretch: 112%; text-transform: uppercase; letter-spacing: .01em; color: var(--accent); display: flex; align-items: center; gap: 16px; }
.hero__sub::before { content: ""; width: 44px; height: 4px; background: currentColor; flex: none; }
.hero__copy .lede { max-width: 46ch; color: #3e4449; }
.hero__media { grid-column: 7 / -1; position: relative; margin-right: calc(var(--pad) * -1); min-height: 420px; }
.hero__media .media { position: absolute; inset: 0; }
@media (min-width: 1416px) { .hero__media { margin-right: calc((100vw - var(--container)) / -2); } }
.hero__caption { position: absolute; z-index: 1; left: 0; bottom: 0; background: var(--ink); color: var(--on-dark); padding: 12px 16px; font: 500 .6875rem/1.3 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; }
.hero__services { background: var(--ink); color: var(--on-dark); }
.hero__services ul { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); }
.hero__services li + li { border-left: 1px solid var(--line-dark); }
.hero__services a { display: flex; align-items: center; gap: 18px; height: 104px; padding: 0 28px; text-decoration: none; transition: background-color .2s var(--ease); }
.hero__services li:first-child a { padding-left: 0; }
.hero__services a:hover { background: var(--steel); }
.hero__services .mono { font-size: .75rem; color: var(--accent-soft); letter-spacing: .1em; }
.hero__services .h4 { font-size: clamp(1.05rem, 1.6vw, 1.45rem); }
.hero__services .arr-sm { margin-left: auto; width: 14px; height: 14px; border-top: 2px solid var(--on-dark-muted); border-right: 2px solid var(--on-dark-muted); transform: rotate(45deg); flex: none; transition: transform .25s var(--ease); }
.hero__services a:hover .arr-sm { transform: translateX(4px) rotate(45deg); border-color: var(--on-dark); }
@media (max-width: 900px) {
  .hero__grid { min-height: 0; }
  .hero__copy { grid-column: 1 / -1; padding: 40px 0 36px; gap: 22px; }
  .hero .display { font-size: clamp(2.5rem, 12.4vw, 4.4rem); }
  .hero__copy .lede { font-size: var(--fs-lede); }
  .hero__media { grid-column: 1 / -1; margin: 0 calc(var(--pad) * -1); min-height: 0; aspect-ratio: 4 / 3; }
  .hero__services ul { grid-template-columns: 1fr; }
  .hero__services li + li { border-left: 0; border-top: 1px solid var(--line-dark); }
  .hero__services a, .hero__services li:first-child a { height: 68px; padding: 0; }
}

/* ---------- service index (home) ---------- */
.svc-index { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
.svc-index__list { grid-column: 1 / span 7; list-style: none; border-top: 2px solid var(--ink); }
.svc-index__stage { grid-column: 9 / span 4; position: relative; }
.svc-index__stage-in { position: sticky; top: calc(var(--header-h) + 32px); }
.svc-index__stage .media { aspect-ratio: 4 / 5; }
.svc-index__stage img { position: absolute; inset: 0; opacity: 0; transition: opacity .45s var(--ease); }
.svc-index__stage img.is-on { opacity: 1; }
.svc-row { border-bottom: 1px solid var(--line); }
.svc-row a { display: grid; grid-template-columns: 64px 1fr auto; gap: 8px 20px; align-items: center; padding: 30px 0; text-decoration: none; }
.svc-row .mono { font-size: .8125rem; color: var(--muted); align-self: start; padding-top: 8px; }
.svc-row .h2 { font-size: clamp(1.9rem, 4vw, 3.4rem); transition: color .2s var(--ease); }
.svc-row p { grid-column: 2; color: var(--muted); max-width: 48ch; }
.svc-row .go { grid-row: 1; grid-column: 3; width: 52px; height: 52px; border: 2px solid var(--ink); display: grid; place-items: center; transition: background-color .2s var(--ease), color .2s var(--ease); }
.svc-row .go i { width: 12px; height: 12px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateX(-2px) rotate(45deg); }
.svc-row a:hover .h2, .svc-row a:focus-visible .h2 { color: var(--accent); }
.svc-row a:hover .go { background: var(--ink); color: #fff; }
.svc-row__thumb { display: none; }
.svc-index__more { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: baseline; }
@media (max-width: 900px) {
  .svc-index__list { grid-column: 1 / -1; }
  .svc-index__stage { display: none; }
  .svc-row a { grid-template-columns: minmax(0, 1fr) 84px; padding: 22px 0; }
  .svc-row .h2 { font-size: clamp(1.35rem, 6.4vw, 2.4rem); }
  .svc-row .mono { grid-column: 1; padding: 0; }
  .svc-row .h2 { grid-column: 1; }
  .svc-row p { grid-column: 1; font-size: .98rem; }
  .svc-row .go { display: none; }
  .svc-row__thumb { display: block; grid-column: 2; grid-row: 1 / span 3; align-self: start; width: 100%; aspect-ratio: 3 / 4; }
}

/* ---------- process steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--gutter); counter-reset: s; }
.steps li { border-top: 2px solid var(--on-dark); padding-top: 22px; display: grid; gap: 14px; align-content: start; }
.steps .num { font: 500 .8125rem/1 var(--f-mono); letter-spacing: .1em; color: var(--accent-soft); }
.steps p { color: var(--on-dark-muted); font-size: .98rem; }
.steps a { color: var(--on-dark); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; row-gap: 36px; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.mobile-band { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: stretch; margin-bottom: clamp(56px, 7vw, 96px); }
.mobile-band__media { grid-column: 1 / span 5; }
.mobile-band__media .media { height: 100%; min-height: 420px; }
.mobile-band__copy { grid-column: 7 / span 6; display: flex; flex-direction: column; justify-content: center; gap: 26px; }
@media (max-width: 900px) {
  .mobile-band { row-gap: 32px; }
  .mobile-band__media, .mobile-band__copy { grid-column: 1 / -1; }
  .mobile-band__media .media { min-height: 0; aspect-ratio: 4 / 3; }
}

/* ---------- facts strip ---------- */
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts > div { padding: 26px 24px 26px 0; display: grid; gap: 8px; align-content: start; }
.facts > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.facts dt { font: 500 .6875rem/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.facts dd { margin: 0; font: 800 1.15rem/1.15 var(--f-display); font-stretch: 108%; text-transform: uppercase; }
.dark .facts, .dark .facts > div + div { border-color: var(--line-dark); }
.dark .facts dt { color: var(--on-dark-muted); }
@media (max-width: 900px) {
  .facts { grid-template-columns: 1fr 1fr; }
  .facts > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .facts > div:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 460px) {
  .facts { grid-template-columns: 1fr; }
  .facts > div, .facts > div + div { padding: 18px 0; border-left: 0; }
  .facts > div + div { border-top: 1px solid var(--line); }
}

/* ---------- projects ---------- */
.proj-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 48px var(--gutter); list-style: none; }
.proj { display: grid; gap: 16px; align-content: start; }
.proj > a { text-decoration: none; display: grid; gap: 16px; }
.proj__meta { display: flex; justify-content: space-between; gap: 12px; font: 500 .75rem/1.3 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.proj .h3 { transition: color .2s var(--ease); }
.proj > a:hover .h3 { color: var(--accent); }
.proj p { color: var(--muted); font-size: .98rem; }
.proj-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proj-grid.proj-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 560px) { .proj-grid.proj-grid--2 { grid-template-columns: 1fr; } }
@media (max-width: 1000px) { .proj-grid, .proj-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .proj-grid, .proj-grid--4 { grid-template-columns: 1fr; gap: 40px; } .proj-grid--4 { grid-template-columns: 1fr 1fr; gap: 28px 16px; } .proj-grid--4 .h3 { font-size: 1.15rem; } .proj-grid--4 p { display: none; } }

/* ---------- before / after ---------- */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.ba-block { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: center; }
.ba-block__copy { grid-column: 1 / span 4; display: grid; gap: 22px; }
.ba-block__pair { grid-column: 6 / span 7; }
@media (max-width: 900px) { .ba-block__copy, .ba-block__pair { grid-column: 1 / -1; } }

/* ---------- consultation band ---------- */
.consult { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: center; }
.consult__copy { grid-column: 1 / span 6; display: grid; gap: 26px; justify-items: start; }
.consult__media { grid-column: 8 / span 5; }
.consult__list { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line-strong); width: 100%; }
.consult__list li { padding: 14px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 40px 1fr; font-weight: 500; }
.consult__list .mono { color: var(--accent); font-size: .8125rem; padding-top: 3px; }
@media (max-width: 900px) { .consult__copy, .consult__media { grid-column: 1 / -1; } .consult__media { order: -1; } }

/* ---------- area strip ---------- */
.area { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: end; }
.area__title { grid-column: 1 / span 5; display: grid; gap: 18px; }
.area__title .h2 { font-size: clamp(2rem, 3.5vw, 3.1rem); }
.area__list { grid-column: 6 / -1; list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid var(--ink); }
.area__list li { padding: 22px 0 0; display: grid; gap: 10px; }
.area__list li + li { padding-left: var(--gutter); border-left: 1px solid var(--line); }
.area__list .mono { font-size: .75rem; color: var(--muted); letter-spacing: .1em; }
.area__list .h3 { font-size: clamp(1.4rem, 2.6vw, 2.3rem); }
@media (max-width: 900px) {
  .area__title, .area__list { grid-column: 1 / -1; }
  .area__list { grid-template-columns: 1fr; }
  .area__list li + li { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 18px; }
  .area__list li { padding-bottom: 18px; }
}

/* ---------- instagram strip ---------- */
.ig { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 6px; list-style: none; }
.ig a { display: block; }
@media (max-width: 900px) { .ig { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- quotes ---------- */
.quote { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
.quote blockquote { grid-column: 2 / span 10; }
.quote p { font: 800 clamp(1.7rem, 3.6vw, 3.1rem)/1.06 var(--f-display); font-stretch: 108%; text-transform: uppercase; letter-spacing: -.005em; }
.quote footer { margin-top: 26px; font: 500 .75rem/1.4 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-muted); }
.quote footer a { color: inherit; }
@media (max-width: 900px) { .quote blockquote { grid-column: 1 / -1; } }

.reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gutter); list-style: none; }
.review { border-top: 2px solid var(--ink); padding-top: 22px; display: grid; gap: 18px; }
.review p { font-size: 1.1rem; }
.review footer { font: 500 .75rem/1.4 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* ---------- closing CTA ---------- */
.close { padding: clamp(80px, 10vw, 150px) 0; }
.close__in { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: end; }
.close__title { grid-column: 1 / span 8; }
.close__act { grid-column: 9 / -1; display: grid; gap: 12px; }
.close__phone { margin-top: 10px; font-size: .95rem; color: var(--on-dark-muted); }
.close__phone a { color: var(--on-dark); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line-dark); }
@media (max-width: 900px) { .close__title, .close__act { grid-column: 1 / -1; } .close__act { margin-top: 12px; } }

/* ---------- footer ---------- */
.ftr { background: var(--ink); color: var(--on-dark); padding: 72px 0 36px; border-top: 1px solid var(--line-dark); }
.ftr__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
.ftr__brand { grid-column: 1 / span 4; display: grid; gap: 20px; align-content: start; }
.ftr__brand .brand__sub { color: var(--on-dark-muted); }
.ftr__brand p { color: var(--on-dark-muted); font-size: .95rem; max-width: 34ch; }
.ftr__col { grid-column: span 2; }
.ftr__col--wide { grid-column: span 4; }
.ftr h2 { font: 500 .6875rem/1 var(--f-mono); letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-muted); margin-bottom: 18px; }
.ftr ul { list-style: none; display: grid; gap: 10px; }
.ftr a { text-decoration: none; }
.ftr a:hover { color: var(--accent-soft); }
.ftr__base { margin-top: 64px; padding-top: 24px; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: .8125rem; color: var(--on-dark-muted); }
.ftr__base a { color: var(--on-dark-muted); }
@media (max-width: 900px) {
  .ftr__brand { grid-column: 1 / -1; margin-bottom: 16px; }
  .ftr__col { grid-column: span 6; }
  .ftr__col--wide { grid-column: 1 / -1; }
}

/* ---------- inner page hero ---------- */
.phero { background: var(--bone); border-bottom: 1px solid var(--line); padding: clamp(44px, 6vw, 88px) 0 clamp(44px, 5vw, 72px); }
.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: clamp(28px, 4vw, 48px); font: 500 .75rem/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--line-strong); }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.phero__grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: end; }
.phero__title { grid-column: 1 / span 8; display: grid; gap: 24px; }
.phero__aside { grid-column: 9 / span 4; display: grid; gap: 22px; justify-items: start; }
.phero__aside .lede { max-width: none; }
.phero--split .phero__grid { align-items: stretch; }
.phero--split .phero__title { grid-column: 1 / span 6; align-content: center; padding: 8px 0; }
.phero--split .phero__media { grid-column: 8 / span 5; }
.phero--split .phero__media .media { height: 100%; min-height: 420px; }
@media (max-width: 900px) {
  .phero__title, .phero__aside, .phero--split .phero__title, .phero--split .phero__media { grid-column: 1 / -1; }
  .phero--split .phero__media .media { min-height: 0; aspect-ratio: 4 / 3; }
}

/* ---------- services page ---------- */
.svc-block { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); padding: clamp(56px, 7vw, 104px) 0; border-top: 1px solid var(--line); }
.svc-block:first-child { border-top: 0; padding-top: 0; }
.svc-block__media { grid-column: 1 / span 5; }
.svc-block__body { grid-column: 7 / span 6; display: grid; gap: 26px; align-content: start; }
.svc-block--flip .svc-block__media { grid-column: 8 / span 5; order: 2; }
.svc-block--flip .svc-block__body { grid-column: 1 / span 6; }
.svc-block__num { font: 500 .8125rem/1 var(--f-mono); letter-spacing: .1em; color: var(--accent); }
.svc-block h3.label, .label { font: 500 .6875rem/1 var(--f-mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 900px) {
  .svc-block__media, .svc-block__body, .svc-block--flip .svc-block__media, .svc-block--flip .svc-block__body { grid-column: 1 / -1; order: 0; }
}
.ticks { list-style: none; display: grid; border-top: 1px solid var(--line); }
.ticks li { position: relative; padding: 13px 0 13px 30px; border-bottom: 1px solid var(--line); }
.ticks li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 10px; height: 10px; background: var(--accent); }
.dark .ticks, .dark .ticks li { border-color: var(--line-dark); }
.dark .ticks li::before { background: var(--accent-soft); }
.ticks--2 { grid-template-columns: 1fr 1fr; column-gap: var(--gutter); }
@media (max-width: 560px) { .ticks--2 { grid-template-columns: 1fr; } }

.pkg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gutter); list-style: none; }
.pkg { display: grid; gap: 18px; align-content: start; }
.pkg__name { font: 850 clamp(1.4rem, 2.2vw, 1.9rem)/1 var(--f-display); font-stretch: 110%; text-transform: uppercase; }
.pkg p { color: var(--on-dark-muted); }
.pkg__foot { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; }
@media (max-width: 900px) { .pkg-grid { grid-template-columns: 1fr; gap: 48px; } }

.spec-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--gutter); list-style: none; }
.spec { display: grid; gap: 14px; }
.spec .h4 { font-size: 1.05rem; }
.spec-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .spec-grid, .spec-grid--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .spec-grid { grid-template-columns: 1fr; } }

.note { border-left: 4px solid var(--accent); padding: 4px 0 4px 20px; color: var(--muted); max-width: 64ch; }
.dark .note { color: var(--on-dark-muted); border-color: var(--accent-soft); }

/* ---------- service detail ---------- */
.two-col { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
.two-col__a { grid-column: 1 / span 5; display: grid; gap: 24px; align-content: start; }
.two-col__b { grid-column: 7 / span 6; display: grid; gap: 24px; align-content: start; }
@media (max-width: 900px) { .two-col__a, .two-col__b { grid-column: 1 / -1; } }
.sticky-top { position: sticky; top: calc(var(--header-h) + 32px); }
@media (max-width: 900px) { .sticky-top { position: static; } }

.work-split { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
.work-split__half { grid-column: span 6; display: grid; gap: 28px; align-content: start; }
.work-split__imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.work-split__half + .work-split__half { border-left: 1px solid var(--line); padding-left: var(--gutter); }
@media (max-width: 900px) {
  .work-split__half { grid-column: 1 / -1; }
  .work-split__half + .work-split__half { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 48px; margin-top: 24px; }
}

.flow { list-style: none; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--gutter); }
.flow li { display: grid; gap: 16px; align-content: start; }
.flow__head { display: flex; align-items: baseline; gap: 12px; border-top: 2px solid var(--ink); padding-top: 18px; }
.dark .flow__head { border-color: var(--on-dark); }
.flow__head .mono { font-size: .8125rem; color: var(--accent); }
.dark .flow__head .mono { color: var(--accent-soft); }
.flow p { font-size: .96rem; color: var(--muted); }
.dark .flow p { color: var(--on-dark-muted); }
.flow .media { order: -1; }
.flow--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1080px) { .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 48px; } .flow--4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .flow, .flow--4 { grid-template-columns: 1fr; row-gap: 40px; }
  .flow li { grid-template-columns: 120px 1fr; column-gap: 18px; row-gap: 10px; }
  .flow .media { grid-row: 1 / span 2; order: 0; }
  .flow__head, .flow p { grid-column: 2; }
}

.conditions { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 var(--gutter); border-top: 1px solid var(--line); }
.conditions li { padding: 22px 0; border-bottom: 1px solid var(--line); display: grid; gap: 8px; }
.conditions p { color: var(--muted); font-size: .98rem; }
@media (max-width: 700px) { .conditions { grid-template-columns: 1fr; } }

.cfg { list-style: none; display: grid; border-top: 2px solid var(--ink); }
.cfg li { display: grid; grid-template-columns: 200px 1fr; gap: var(--gutter); padding: 16px 0; border-bottom: 1px solid var(--line); }
.cfg dt, .cfg .k { font: 500 .75rem/1.5 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
@media (max-width: 560px) { .cfg li { grid-template-columns: 1fr; gap: 6px; } }

/* ---------- our work ---------- */
.filters { position: sticky; top: var(--header-h); z-index: 20; background: rgba(255, 255, 255, .97); border-bottom: 1px solid var(--line); }
.filters__in { display: flex; align-items: center; gap: 8px; min-height: 72px; overflow-x: auto; scrollbar-width: none; }
.filters__in::-webkit-scrollbar { display: none; }
.chip {
  flex: none; min-height: 44px; padding: 0 18px; border: 1.5px solid var(--line-strong); background: transparent; cursor: pointer;
  font: 700 .8125rem/1 var(--f-display); letter-spacing: .07em; text-transform: uppercase;
}
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.filters__count { margin-left: auto; padding-left: 16px; flex: none; font: 500 .75rem/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.work-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; list-style: none; }
.work-grid button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; text-align: left; }
.work-grid .media { aspect-ratio: 4 / 5; }
.work-grid__cap { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: 36px 14px 12px; color: #fff; background: linear-gradient(to top, rgba(17, 19, 21, .72), rgba(17, 19, 21, 0)); font-size: .8125rem; line-height: 1.35; opacity: 0; transition: opacity .25s var(--ease); }
.work-grid button:hover .work-grid__cap, .work-grid button:focus-visible .work-grid__cap { opacity: 1; }
@media (max-width: 1000px) { .work-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 640px) { .work-grid { grid-template-columns: 1fr 1fr; } }
.empty { padding: 48px 0; color: var(--muted); }

.case { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); padding: clamp(48px, 6vw, 88px) 0; border-top: 1px solid var(--line); }
.case__head { grid-column: 1 / span 4; display: grid; gap: 18px; align-content: start; }
.case__strip { grid-column: 5 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; list-style: none; }
.case__strip .media { aspect-ratio: 3 / 4; }
.case__strip button { padding: 0; border: 0; background: none; display: block; width: 100%; cursor: zoom-in; }
@media (max-width: 900px) {
  .case__head, .case__strip { grid-column: 1 / -1; }
  .case__strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* lightbox */
.lb { width: 100vw; height: 100vh; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(12, 13, 15, .96); color: var(--on-dark); }
.lb::backdrop { background: rgba(12, 13, 15, .9); }
.lb[open] { display: grid; grid-template-rows: auto 1fr auto; }
.lb__bar { display: flex; justify-content: space-between; align-items: center; padding: 12px var(--pad); gap: 16px; }
.lb__count { font: 500 .75rem/1 var(--f-mono); letter-spacing: .1em; color: var(--on-dark-muted); }
.lb__stage { position: relative; display: grid; place-items: center; min-height: 0; padding: 0 72px; }
.lb__stage img { max-height: calc(100vh - 150px); max-width: 100%; width: auto; object-fit: contain; }
.lb__cap { padding: 14px var(--pad) 22px; text-align: center; font-size: .9rem; color: var(--on-dark-muted); }
.lb__cap a { color: var(--on-dark); }
.lb button { background: transparent; border: 1.5px solid var(--line-dark); color: var(--on-dark); width: 48px; height: 48px; cursor: pointer; display: grid; place-items: center; }
.lb button:hover { border-color: var(--on-dark); }
.lb__prev, .lb__next { position: absolute; top: 50%; transform: translateY(-50%); }
.lb__prev { left: 12px; }
.lb__next { right: 12px; }
.lb__prev i, .lb__next i { width: 12px; height: 12px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; }
.lb__prev i { transform: translateX(2px) rotate(-135deg); }
.lb__next i { transform: translateX(-2px) rotate(45deg); }
@media (max-width: 640px) { .lb__stage { padding: 0 8px; } .lb__prev, .lb__next { top: auto; bottom: -58px; transform: none; } .lb__prev { left: var(--pad); } .lb__next { right: var(--pad); } }

/* ---------- FAQ ---------- */
.faq-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
.faq-nav { grid-column: 1 / span 3; }
.faq-nav ul { list-style: none; display: grid; gap: 4px; }
.faq-nav a { display: block; padding: 10px 0; text-decoration: none; font: 700 .875rem/1 var(--f-display); letter-spacing: .06em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.faq-nav a:hover { color: var(--accent); }
.faq-body { grid-column: 5 / -1; display: grid; gap: 64px; }
.faq-group { display: grid; gap: 20px; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: center; padding: 24px 0; font: 750 clamp(1.08rem, 1.5vw, 1.3rem)/1.25 var(--f-display); font-stretch: 104%; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary .pm { position: relative; width: 20px; height: 20px; flex: none; }
.qa summary .pm::before, .qa summary .pm::after { content: ""; position: absolute; left: 0; right: 0; top: 9px; height: 2px; background: currentColor; transition: transform .25s var(--ease); }
.qa summary .pm::after { transform: rotate(90deg); }
.qa[open] summary .pm::after { transform: rotate(0); }
.qa summary:hover { color: var(--accent); }
.qa__a { padding: 0 48px 26px 0; color: var(--muted); max-width: 70ch; }
@media (max-width: 900px) { .faq-nav { display: none; } .faq-body { grid-column: 1 / -1; } .qa__a { padding-right: 0; } }

/* ---------- forms ---------- */
.form-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); align-items: start; }
.form-layout__main { grid-column: 1 / span 7; min-width: 0; }
.form-layout__aside { grid-column: 9 / span 4; position: sticky; top: calc(var(--header-h) + 32px); display: grid; gap: 24px; }
@media (max-width: 1000px) { .form-layout__main, .form-layout__aside { grid-column: 1 / -1; } .form-layout__aside { position: static; } }
form { display: grid; gap: 40px; }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; display: grid; gap: 22px; }
legend { padding: 0; margin-bottom: 22px; font: 850 clamp(1.4rem, 2.2vw, 1.8rem)/1 var(--f-display); font-stretch: 110%; text-transform: uppercase; display: flex; gap: 14px; align-items: baseline; }
legend .mono { font-size: .8125rem; color: var(--accent); font-weight: 500; }
.fields { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px var(--gutter); }
.field { grid-column: span 6; display: grid; gap: 8px; align-content: start; min-width: 0; }
.field--3 { grid-column: span 3; }
.field--2 { grid-column: span 2; }
@media (max-width: 640px) { .field--3, .field--2 { grid-column: span 6; } }
.field label, .field .lbl { font-weight: 600; font-size: .95rem; }
.field .opt { font-weight: 400; color: var(--muted); }
.field .hint { font-size: .85rem; color: var(--muted); }
.input, select.input, textarea.input {
  width: 100%; min-height: 54px; padding: 13px 16px; border: 1.5px solid var(--line-strong); border-radius: 0; background: #fff;
  font-size: 1rem; line-height: 1.4; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
  -webkit-appearance: none; appearance: none;
}
select.input { background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-right: 44px; }
textarea.input { min-height: 128px; resize: vertical; }
.input:hover { border-color: var(--ink); }
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(36, 90, 126, .22); }
.input[aria-invalid="true"] { border-color: var(--err); }
.err { color: var(--err); font-size: .875rem; font-weight: 500; }
.choices { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.choices--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 640px) { .choices, .choices--3 { grid-template-columns: 1fr; } }
.choice { position: relative; display: block; }
.choice input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.choice span { display: grid; gap: 4px; min-height: 64px; padding: 16px 18px 16px 50px; border: 1.5px solid var(--line-strong); background: #fff; position: relative; transition: border-color .15s var(--ease), background-color .15s var(--ease); }
.choice span::before { content: ""; position: absolute; left: 18px; top: 19px; width: 18px; height: 18px; border: 1.5px solid var(--line-strong); background: #fff; }
.choice input[type="radio"] + span::before { border-radius: 50%; }
.choice b { font: 750 1rem/1.2 var(--f-display); font-stretch: 104%; }
.choice small { color: var(--muted); font-size: .85rem; line-height: 1.4; }
.choice input:hover + span { border-color: var(--ink); }
.choice input:checked + span { border-color: var(--accent); background: #f4f8fb; }
.choice input:checked + span::before { border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px #fff; }
.choice input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }
.choices[aria-invalid="true"] .choice span { border-color: var(--err); }
.file { border: 1.5px dashed var(--line-strong); padding: 20px; display: grid; gap: 8px; background: #fff; }
.file { min-width: 0; }
.file input { font-size: .95rem; width: 100%; min-width: 0; }
.file__list { font-size: .85rem; color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-actions .small { flex-basis: 100%; }
.status { padding: 20px 22px; border-left: 4px solid var(--err); background: #fbf1ef; display: grid; gap: 14px; }
.status p { font-weight: 500; }
.success { padding: clamp(28px, 4vw, 48px); background: var(--bone); border-top: 4px solid var(--accent); display: grid; gap: 22px; justify-items: start; }
.success:focus { outline: none; }

.panel { border: 1.5px solid var(--line-strong); padding: 26px; display: grid; gap: 18px; background: #fff; }
.panel--dark { background: var(--ink); color: var(--on-dark); border-color: var(--ink); }
.panel h2, .panel h3 { font: 850 1.25rem/1 var(--f-display); font-stretch: 110%; text-transform: uppercase; }
.panel dl { display: grid; gap: 0; border-top: 1px solid var(--line); }
.panel dl > div { display: grid; grid-template-columns: 110px 1fr; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.panel dt { font: 500 .6875rem/1.6 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.panel dd { margin: 0; overflow-wrap: anywhere; }
.panel dd.empty-v { color: var(--muted); }
.panel p { font-size: .95rem; color: var(--muted); }
.panel--dark p { color: var(--on-dark-muted); }
.panel--dark .tlink { color: var(--accent-soft); }

/* stepper */
.stepper { list-style: none; display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 4px; margin-bottom: 40px; counter-reset: st; }
.stepper li { border-top: 4px solid var(--stone); padding-top: 10px; font: 500 .6875rem/1.2 var(--f-mono); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.stepper li.is-done { border-color: var(--ink); color: var(--ink); }
.stepper li.is-current { border-color: var(--accent); color: var(--accent); }
@media (max-width: 760px) { .stepper li span { display: none; } .stepper li { font-size: .75rem; } }
.step-nav { display: flex; gap: 12px; justify-content: space-between; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 28px; }
.step-nav .btn--ghost { order: -1; }
.review-list { display: grid; border-top: 2px solid var(--ink); }
.review-list > div { display: grid; grid-template-columns: 180px 1fr auto; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: start; }
.review-list dt { font: 500 .75rem/1.6 var(--f-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.review-list dd { margin: 0; overflow-wrap: anywhere; }
.review-list button { border: 0; background: none; padding: 0; color: var(--accent); text-decoration: underline; cursor: pointer; font-size: .9rem; }
@media (max-width: 560px) { .review-list > div { grid-template-columns: 1fr auto; } .review-list dt { grid-column: 1 / -1; } }

/* contact */
.contact-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: var(--gutter); }
.contact-actions { grid-column: 1 / span 7; list-style: none; border-top: 2px solid var(--ink); }
.contact-actions li { border-bottom: 1px solid var(--line); }
.contact-actions a { display: grid; grid-template-columns: 180px 1fr auto; gap: 20px; align-items: center; padding: 26px 0; text-decoration: none; }
.contact-actions .k { font: 500 .75rem/1.4 var(--f-mono); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-actions .v { font: 850 clamp(1.3rem, 2.4vw, 2rem)/1.05 var(--f-display); font-stretch: 108%; text-transform: uppercase; overflow-wrap: anywhere; }
.contact-actions .v.lower { text-transform: none; font-stretch: 100%; }
.contact-actions .go { width: 44px; height: 44px; border: 2px solid var(--ink); display: grid; place-items: center; transition: background-color .2s var(--ease), color .2s var(--ease); }
.contact-actions .go i { width: 10px; height: 10px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: translateX(-2px) rotate(45deg); }
.contact-actions a:hover .v { color: var(--accent); }
.contact-actions a:hover .go { background: var(--ink); color: #fff; }
.contact-side { grid-column: 9 / span 4; display: grid; gap: 24px; align-content: start; }
@media (max-width: 900px) {
  .contact-actions, .contact-side { grid-column: 1 / -1; }
  .contact-actions a { grid-template-columns: 1fr auto; gap: 6px 16px; padding: 20px 0; }
  .contact-actions .k { grid-column: 1; }
  .contact-actions .v { grid-column: 1; }
  .contact-actions .go { grid-column: 2; grid-row: 1 / span 2; }
}

/* legal placeholder */
.placeholder-note { background: #fff7e0; border-left: 4px solid #b58a00; padding: 18px 22px; max-width: 70ch; }

/* 404 */
.nf { min-height: 60vh; display: grid; align-content: center; gap: 28px; padding: var(--section) 0; }

/* ---------- motion ---------- */
.rv { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.no-js .rv { opacity: 1; transform: none; }
.hero__media .media img { animation: heroIn 1.4s var(--ease) both; }
@keyframes heroIn { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
}

/* ---------- print ---------- */
@media print { .hdr, .mbar, .ftr, .filters, .sheet { display: none !important; } body { padding: 0; } }
