/* Peak Auto Care LLC: design system
   Palette drawn from the logo: black, steel, ice blue. Structure first, decoration last. */

:root {
  --ink: #0a0d12;
  --ink-2: #11161e;
  --navy: #0d1a2b;
  --navy-2: #13253c;
  --blue: #1d6fd6;
  --blue-dk: #155bb3;
  --ice: #6fb3f2;
  --white: #ffffff;
  --paper: #f2f4f7;
  --paper-2: #e8ecf1;
  --line: #d9dfe6;
  --line-dk: rgba(255, 255, 255, 0.14);
  --text: #141a24;
  --muted: #566172;
  --steel: #8d98a8;
  --on-dark: #eef2f7;
  --on-dark-muted: #a3aebd;
  --ok: #1b7f4b;
  --err: #c0362c;

  --f-display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --f-body: "Public Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1240px;
  --gutter: clamp(16px, 4vw, 32px);
  --gap: clamp(16px, 2.2vw, 28px);
  --section: clamp(72px, 9vw, 128px);
  --header: 72px;
  --r: 3px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font: 400 17px/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); font-stretch: 108%; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
section[id], [id].anchor { scroll-margin-top: calc(var(--header) + 8px); }

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--blue); color: #fff; padding: 12px 16px; font-weight: 700; text-decoration: none;
}
.skip:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--ice); outline-offset: 2px; }
.sr { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: calc(var(--wrap) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.g12 { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gap); }
.section { padding-block: var(--section); }
.section--paper { background: var(--paper); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.dark { background: var(--ink); color: var(--on-dark); }
.dark--navy { background: var(--navy); }

/* ---------- Type ---------- */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font: 700 12px/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 20px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; flex: none; }
.dark .eyebrow { color: var(--ice); }
.h1 {
  font-weight: 850; font-size: clamp(2.1rem, 1rem + 3.4vw, 3.75rem); line-height: 1;
  text-transform: uppercase; letter-spacing: -0.015em; font-stretch: 104%; overflow-wrap: break-word;
}
.h2 {
  font-weight: 850; font-size: clamp(2rem, 1.3rem + 2.8vw, 3.5rem); line-height: 1;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.h3 { font-weight: 800; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); line-height: 1.1; }
.h4 { font-weight: 800; font-size: 1.125rem; line-height: 1.25; font-stretch: 104%; }
.lede { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); line-height: 1.6; color: var(--muted); }
.dark .lede { color: var(--on-dark-muted); }
.accent { color: var(--blue); }
.dark .accent { color: var(--ice); }
.small { font-size: 14px; color: var(--muted); }
.dark .small { color: var(--on-dark-muted); }
.num { font-family: var(--f-display); font-weight: 800; font-variant-numeric: tabular-nums; }

/* Section head: title block left, lede right, bottom aligned */
.sh { row-gap: 20px; align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.sh__title { grid-column: 1 / span 7; }
.sh__lede { grid-column: 8 / span 5; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border: 2px solid transparent; border-radius: var(--r);
  font: 700 14px/1.2 var(--f-body); letter-spacing: .08em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background-color .2s, border-color .2s, color .2s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { background: var(--blue-dk); }
.btn--ghost { border-color: var(--text); color: var(--text); background: transparent; }
.btn--ghost:hover { background: var(--text); color: #fff; }
.dark .btn--ghost, .btn--ghost-light { border-color: rgba(255,255,255,.4); color: #fff; background: transparent; }
.dark .btn--ghost:hover, .btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--white { background: #fff; color: var(--ink); }
.btn--white:hover { background: var(--paper-2); }
.btn--sm { min-height: 42px; padding: 0 16px; font-size: 13px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.tlink {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none;
  border-bottom: 2px solid currentColor; padding-bottom: 2px;
}
.tlink:hover { color: var(--blue); }
.dark .tlink:hover { color: var(--ice); }
.tlink svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.hdr {
  position: sticky; top: 0; z-index: 100; height: var(--header);
  background: var(--ink); color: var(--on-dark); border-bottom: 1px solid var(--line-dk);
}
.hdr__in { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand__logo { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,.16); }
.brand__name { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name b { font: 850 17px/1.05 var(--f-display); font-stretch: 112%; text-transform: uppercase; letter-spacing: .01em; }
.brand__name span { font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--on-dark-muted); margin-top: 3px; }
.nav { margin-left: auto; }
.nav ul { display: flex; gap: 4px; }
.nav a {
  display: block; padding: 10px 12px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--on-dark-muted); transition: color .2s;
}
.nav a:hover, .nav a[aria-current="true"] { color: #fff; }
.hdr__cta { display: flex; align-items: center; gap: 16px; }
.hdr__phone { display: flex; align-items: center; gap: 8px; font-weight: 700; text-decoration: none; font-size: 15px; white-space: nowrap; }
.hdr__phone svg { width: 18px; height: 18px; color: var(--ice); }
.menu-btn, .hdr__call {
  display: none; width: 48px; height: 48px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line-dk); border-radius: var(--r); color: #fff; cursor: pointer;
}
.menu-btn svg, .hdr__call svg { width: 22px; height: 22px; }

.mnav {
  position: fixed; inset: var(--header) 0 0 0; z-index: 99; background: var(--ink); color: #fff;
  padding: 24px var(--gutter) 32px; overflow-y: auto; display: flex; flex-direction: column;
  transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.mnav.is-open { opacity: 1; transform: none; visibility: visible; }
.mnav ul { border-top: 1px solid var(--line-dk); }
.mnav li { border-bottom: 1px solid var(--line-dk); }
.mnav li a {
  display: flex; justify-content: space-between; align-items: center; padding: 18px 0;
  font: 800 24px/1 var(--f-display); font-stretch: 110%; text-transform: uppercase; text-decoration: none;
}
.mnav li a svg { width: 20px; height: 20px; color: var(--ice); }
.mnav__actions { display: grid; gap: 12px; margin-top: 28px; }
.mnav__meta { margin-top: 24px; color: var(--on-dark-muted); font-size: 14px; }
body.menu-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(40px, 6vw, 72px) clamp(48px, 6vw, 80px); }
.hero__grid { align-items: stretch; row-gap: 40px; }
.hero__copy { grid-column: 1 / span 6; display: flex; flex-direction: column; padding-top: clamp(0px, 2vw, 24px); }
.hero__biz { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ice); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero__biz::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero .h1 { max-width: 13ch; }
.hero .lede { margin-top: 24px; max-width: 52ch; }
.hero .btn-row { margin-top: 32px; }
.hero__call { margin-top: 20px; display: flex; align-items: center; gap: 10px; color: var(--on-dark-muted); font-size: 15px; }
.hero__call a { color: #fff; font-weight: 700; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); }
.hero__call a:hover { border-color: #fff; }
.hero__svcs { margin-top: auto; padding-top: 40px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line-dk); }
.hero__svcs li { padding: 18px 16px 0 0; }
.hero__svcs li + li { padding-left: 16px; border-left: 1px solid var(--line-dk); }
.hero__svcs .num { display: block; color: var(--ice); font-size: 13px; margin-bottom: 6px; }
.hero__svcs a { display: inline-block; padding-block: 6px; font: 800 17px/1.2 var(--f-display); font-stretch: 106%; text-decoration: none; }
.hero__svcs a:hover { color: var(--ice); }
.hero__media { grid-column: 7 / span 6; display: flex; flex-direction: column; }
.hero__img { position: relative; flex: 1; min-height: 360px; max-height: 700px; overflow: hidden; background: var(--ink-2); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; animation: heroIn 1.1s var(--ease) both; }
@keyframes heroIn { from { opacity: 0; transform: scale(1.04); } to { opacity: 1; transform: none; } }

/* Desktop: the hero fills exactly one screen below the header. The text column sets the
   height and the photo fills beside it, so the service strip always sits inside the frame. */
@media (min-width: 1021px) {
  .hero { min-height: calc(100vh - var(--header)); min-height: calc(100svh - var(--header)); display: flex; align-items: center; padding-block: clamp(24px, 5vh, 64px); }
  .hero > .wrap { width: 100%; }
  .hero__copy { padding-top: 0; }
  .hero .h1 { font-size: clamp(2.25rem, min(1rem + 3.4vw, 6.6vh), 3.75rem); }
  .hero .lede { margin-top: clamp(14px, 2.4vh, 24px); }
  .hero .btn-row { margin-top: clamp(18px, 3.2vh, 32px); }
  .hero__call { margin-top: clamp(12px, 2vh, 20px); }
  .hero__svcs { padding-top: 0; margin-top: clamp(24px, 4.4vh, 48px); }
  .hero__img { flex: 1 1 0; min-height: 0; max-height: none; }
  .hero__img img { position: absolute; inset: 0; }
}
.hero__cap { display: flex; justify-content: space-between; gap: 16px; align-items: center; padding-top: 14px; font-size: 14px; color: var(--on-dark-muted); }
.hero__cap b { color: #fff; font-weight: 700; }

/* ---------- Facts band ---------- */
.facts { border-bottom: 1px solid var(--line); background: var(--white); }
.facts__row { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.facts__item { padding: 28px 24px 28px 0; }
.facts__item + .facts__item { padding-left: 24px; border-left: 1px solid var(--line); }
.facts__k { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.facts__v { margin-top: 6px; font: 800 18px/1.3 var(--f-display); font-stretch: 104%; }
.facts__v a { text-decoration: none; }
.facts__v a:hover { color: var(--blue); }

/* ---------- Services ---------- */
.svc { padding-block: clamp(40px, 5vw, 56px); border-top: 1px solid var(--line); align-items: start; row-gap: 28px; }
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc__media { grid-column: 1 / span 5; }
.svc__media .frame { aspect-ratio: 1 / 1; }
.svc__body { grid-column: 7 / span 6; }
.svc__head { display: flex; gap: 20px; align-items: baseline; }
.svc__n { color: var(--blue); font-size: 15px; }
.svc__kicker { margin-top: 6px; font-weight: 600; color: var(--blue); }
.svc__desc { margin-top: 18px; color: var(--muted); }
.svc__cols { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.svc__cols h4 { font: 700 12px/1 var(--f-body); letter-spacing: .14em; text-transform: uppercase; color: var(--text); margin-bottom: 14px; }
.svc__cols p { font-size: 15px; color: var(--muted); }
.svc__cols p + h4 { margin-top: 20px; }
.checks li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.5; }
.checks li + li { margin-top: 8px; }
.checks li::before { content: ""; position: absolute; left: 0; top: .5em; width: 8px; height: 8px; background: var(--blue); }
.dark .checks li::before { background: var(--ice); }
.svc .btn-row { margin-top: 32px; }

/* Image frames */
.frame { position: relative; overflow: hidden; background: var(--paper-2); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.dark .frame { background: var(--ink-2); }

/* ---------- Before / after ---------- */
.ba { row-gap: var(--gap); }
.ba__fig { grid-column: span 6; margin: 0; }
.ba__fig .frame { aspect-ratio: 4 / 3; }
.ba__tag {
  position: absolute; left: 0; top: 0; z-index: 1; padding: 10px 16px;
  font: 850 14px/1 var(--f-display); font-stretch: 112%; letter-spacing: .12em; text-transform: uppercase;
  background: #fff; color: var(--ink);
}
.ba__tag--after { background: var(--blue); color: #fff; }
.ba__fig figcaption { margin-top: 14px; font-size: 15px; color: var(--on-dark-muted); }
.ba__src { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line-dk); }
.steps4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--gap); margin-top: clamp(56px, 7vw, 88px); }
.steps4 h3 { grid-column: 1 / -1; }
.step-fig { margin: 0; }
.step-fig .frame { aspect-ratio: 1 / 1; }
.step-fig figcaption { display: flex; gap: 12px; align-items: baseline; margin-top: 14px; padding-top: 14px; border-top: 2px solid var(--ice); }
.step-fig .num { color: var(--ice); font-size: 14px; }
.step-fig b { font: 800 17px/1.2 var(--f-display); font-stretch: 104%; }

/* ---------- Work ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.chip {
  min-height: 42px; padding: 0 16px; border: 1px solid var(--line); background: #fff; border-radius: var(--r);
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; cursor: pointer; color: var(--muted);
}
.chip:hover { border-color: var(--text); color: var(--text); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.feat { row-gap: var(--gap); margin-bottom: var(--gap); }
.feat__main { grid-column: 1 / span 7; }
.feat__main .frame { aspect-ratio: 1 / 1; height: 100%; }
.feat__side { grid-column: 8 / span 5; display: flex; flex-direction: column; background: var(--ink); color: var(--on-dark); }
.feat__info { padding: clamp(24px, 3vw, 36px); flex: 1; display: flex; flex-direction: column; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tag { padding: 6px 10px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--line); color: var(--muted); border-radius: var(--r); }
.dark .tag, .feat__side .tag { border-color: var(--line-dk); color: var(--on-dark-muted); }
.feat__info .checks { margin-top: 24px; }
.feat__meta { margin-top: 20px; font-size: 14px; color: var(--on-dark-muted); }
.feat__meta a { color: #fff; }
.feat__info .btn-row { margin-top: auto; padding-top: 28px; }
.feat__thumbs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.feat__thumbs .frame { aspect-ratio: 1 / 1; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--gap); }
.card { position: relative; display: flex; flex-direction: column; }
.card .frame { aspect-ratio: 4 / 5; }
.card .frame img { transition: transform .6s var(--ease); }
.card:hover .frame img { transform: scale(1.03); }
.card__body { padding-top: 16px; display: flex; justify-content: space-between; align-items: start; gap: 16px; }
.card__svc { margin-top: 4px; font-size: 14px; color: var(--muted); }
.card__count { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); white-space: nowrap; padding-top: 4px; }
.card__open { position: absolute; inset: 0; z-index: 1; background: transparent; border: 0; cursor: pointer; }
.card__open:focus-visible { outline-offset: 4px; }
.is-filtered-out { display: none !important; }
.work__empty { padding: 32px 0; color: var(--muted); }

.igband { margin-top: clamp(48px, 6vw, 72px); padding: clamp(24px, 3vw, 36px); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; background: var(--paper); border-left: 4px solid var(--blue); }
.igband p { max-width: 60ch; color: var(--muted); }
.igband .h4 { margin-bottom: 4px; }

/* Lightbox */
.lb { width: 100%; height: 100%; max-width: none; max-height: none; margin: 0; padding: 0; border: 0; background: rgba(6,8,11,.97); color: #fff; }
.lb::backdrop { background: rgba(6,8,11,.9); }
.lb__in { height: 100%; display: grid; grid-template-rows: auto 1fr auto; }
.lb__top, .lb__bot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px var(--gutter); }
.lb__title { font: 800 18px/1.2 var(--f-display); font-stretch: 106%; }
.lb__stage { position: relative; display: flex; align-items: center; justify-content: center; min-height: 0; padding: 0 var(--gutter); }
.lb__stage img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.lb__btn { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-dk); background: rgba(10,13,18,.7); color: #fff; border-radius: var(--r); cursor: pointer; }
.lb__btn:hover { background: #fff; color: var(--ink); }
.lb__btn svg { width: 22px; height: 22px; }
.lb__nav { display: flex; gap: 8px; }
.lb__count { font-size: 14px; color: var(--on-dark-muted); font-variant-numeric: tabular-nums; }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--gap); counter-reset: step; }
.process li { padding-top: 24px; border-top: 2px solid var(--text); }
.process .num { display: block; font-size: clamp(2.5rem, 2rem + 1.5vw, 3.5rem); line-height: 1; color: var(--blue); }
.process .h4 { margin-top: 18px; }
.process p { margin-top: 10px; font-size: 15px; color: var(--muted); }
.process-note { margin-top: 36px; font-size: 14px; color: var(--muted); }

/* ---------- Why ---------- */
.why { align-items: stretch; row-gap: 40px; }
.why__media { grid-column: 1 / span 5; }
.why__media .frame { height: 100%; min-height: 420px; }
.why__body { grid-column: 7 / span 6; display: flex; flex-direction: column; }
.why__grid { margin-top: 40px; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); }
.why__grid li { padding: 24px 24px 24px 0; border-bottom: 1px solid var(--line); }
.why__grid li:nth-child(even) { padding-left: 24px; padding-right: 0; border-left: 1px solid var(--line); }
.why__grid .num { color: var(--blue); font-size: 14px; }
.why__grid .h4 { margin-top: 8px; }
.why__grid p { margin-top: 8px; font-size: 15px; color: var(--muted); }

/* ---------- About ---------- */
.about { align-items: center; row-gap: 40px; }
.about__body { grid-column: 1 / span 6; }
.about__body p + p { margin-top: 16px; }
.about__body .lede { margin-top: 24px; }
.about__body .btn-row { margin-top: 32px; }
.about__media { grid-column: 8 / span 5; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.about__media .frame { aspect-ratio: 1 / 1; }
.about__media .frame:first-child { grid-column: 1 / -1; aspect-ratio: 4 / 3; }

/* ---------- Forms ---------- */
.formwrap { background: #fff; color: var(--text); padding: clamp(20px, 3.5vw, 40px); border-radius: var(--r); }
.section--paper .formwrap { border: 1px solid var(--line); }
.fgroup + .fgroup { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.fgroup legend { display: flex; align-items: center; gap: 12px; padding: 0; margin-bottom: 18px; font: 800 18px/1.2 var(--f-display); font-stretch: 106%; }
.fgroup legend .num { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; background: var(--ink); color: #fff; font-size: 13px; border-radius: var(--r); }
.fgrid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px 16px; }
.fgrid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.span-all { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; min-width: 0; }
.field label, .field .label { font-size: 14px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.opt { font-weight: 400; color: var(--muted); }
.req { color: var(--blue); }
.input, .select, .textarea {
  width: 100%; min-height: 52px; padding: 12px 14px; font-size: 16px; background: #fff; color: var(--text);
  border: 1px solid #c3ccd7; border-radius: var(--r); transition: border-color .15s, box-shadow .15s;
}
.textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.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 d='M1 1l5 5 5-5' fill='none' stroke='%23141a24' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.input:hover, .select:hover, .textarea:hover { border-color: #8d98a8; }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,111,214,.2); }
[aria-invalid="true"] { border-color: var(--err) !important; }
.ferr { margin-top: 6px; font-size: 13px; font-weight: 600; color: var(--err); }
.hint { margin-top: 6px; font-size: 13px; color: var(--muted); }

.tiles { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.tile { position: relative; display: block; cursor: pointer; }
.tile input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.tile span {
  display: flex; flex-direction: column; gap: 2px; height: 100%; padding: 14px 16px 14px 44px; border: 1px solid #c3ccd7; border-radius: var(--r);
  font-weight: 700; font-size: 15px; transition: border-color .15s, background-color .15s; position: relative;
}
.tile span small { font-weight: 400; font-size: 13px; color: var(--muted); }
.tile span::before { content: ""; position: absolute; left: 16px; top: 17px; width: 16px; height: 16px; border: 2px solid #8d98a8; border-radius: 50%; background: #fff; }
.tile input[type="checkbox"] + span::before { border-radius: 2px; }
.tile:hover span { border-color: #8d98a8; }
.tile input:checked + span { border-color: var(--blue); background: #eef5fd; }
.tile input:checked + span::before { border-color: var(--blue); background: var(--blue); box-shadow: inset 0 0 0 3px #fff; }
.tile input[type="checkbox"]:checked + span::before { box-shadow: none; background: var(--blue) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' fill='none' stroke='white' stroke-width='2'/%3E%3C/svg%3E") center no-repeat; }
.tile input:focus-visible + span { outline: 3px solid var(--ice); outline-offset: 2px; }
.tiles[aria-invalid="true"] .tile span { border-color: var(--err); }
.inline-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.inline-opts .tile span { padding-block: 12px; }

.file { position: relative; display: flex; align-items: center; gap: 14px; padding: 16px; border: 1px dashed #9aa6b5; border-radius: var(--r); background: var(--paper); }
.file input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; }
.file svg { width: 26px; height: 26px; color: var(--blue); flex: none; }
.file b { display: block; font-size: 15px; }
.file small { color: var(--muted); font-size: 13px; }
.file:focus-within { outline: 3px solid var(--ice); outline-offset: 2px; }
.file-list { margin-top: 8px; font-size: 13px; color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.fsubmit { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.fsubmit .small { max-width: 44ch; }
.fstatus { margin-top: 16px; font-weight: 600; color: var(--err); }

.result { padding: clamp(24px, 3vw, 36px); border: 1px solid var(--line); border-top: 4px solid var(--blue); background: #fff; color: var(--text); border-radius: var(--r); }
.result:focus { outline: none; }
.result .h3 { margin-bottom: 12px; }
.result p { color: var(--muted); }
.result p + p { margin-top: 10px; }
.result .btn-row { margin-top: 24px; }
.result pre { margin: 20px 0 0; padding: 16px; max-height: 220px; overflow: auto; background: var(--paper); border: 1px solid var(--line); font: 13px/1.5 ui-monospace, Consolas, monospace; white-space: pre-wrap; word-break: break-word; }

/* Quote section */
.quote { row-gap: 40px; align-items: start; }
.quote__aside { grid-column: 1 / span 4; position: sticky; top: calc(var(--header) + 24px); }
.quote__main { grid-column: 5 / span 8; }
.aside-list { margin-top: 32px; border-top: 1px solid var(--line); }
.aside-list li { display: grid; grid-template-columns: 36px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.aside-list .num { color: var(--blue); }
.aside-alt { margin-top: 28px; font-size: 15px; }
.aside-alt p + p { margin-top: 10px; }
.aside-alt a { font-weight: 700; }

/* Consult */
.consult { row-gap: 40px; align-items: start; }
.consult__copy { grid-column: 1 / span 5; }
.consult__copy .lede { margin-top: 24px; }
.consult__copy .checks { margin-top: 32px; }
.consult__form { grid-column: 6 / span 7; }

/* ---------- FAQ ---------- */
.faq { row-gap: 32px; }
.faq__head { grid-column: 1 / span 4; }
.faq__head .lede { margin-top: 20px; }
.faq__head .btn-row { margin-top: 28px; }
.faq__list { grid-column: 6 / span 7; border-top: 1px solid var(--line); }
.faq__list details { border-bottom: 1px solid var(--line); }
.faq__list summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 24px; align-items: center;
  padding: 22px 0; font: 800 18px/1.3 var(--f-display); font-stretch: 104%;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after { content: ""; flex: none; width: 14px; height: 14px; background: linear-gradient(var(--blue), var(--blue)) center/14px 2px no-repeat, linear-gradient(var(--blue), var(--blue)) center/2px 14px no-repeat; transition: transform .2s; }
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list summary:hover { color: var(--blue); }
.faq__a { padding: 0 40px 24px 0; color: var(--muted); }
.faq__a p + p { margin-top: 10px; }

/* ---------- Contact ---------- */
.contact { row-gap: 48px; }
.contact__main { grid-column: 1 / span 6; }
.contact__phone { display: inline-block; margin-top: 28px; font: 850 clamp(2rem, 1.4rem + 2.6vw, 3.4rem)/1 var(--f-display); font-stretch: 110%; text-decoration: none; letter-spacing: -0.01em; }
.contact__phone:hover { color: var(--ice); }
.contact__main .btn-row { margin-top: 28px; }
.contact__dl { margin: 40px 0 0; border-top: 1px solid var(--line-dk); }
.contact__dl div { display: grid; grid-template-columns: 160px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-dk); }
.contact__dl dt { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-muted); padding-top: 3px; }
.contact__dl dd { margin: 0; font-weight: 600; }
.contact__dl a { text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.3); }
.contact__dl a:hover { border-color: #fff; }
.contact__ig { grid-column: 8 / span 5; }
.igpanel { border: 1px solid var(--line-dk); padding: clamp(20px, 3vw, 32px); }
.igpanel__head { display: flex; align-items: center; gap: 14px; }
.igpanel__head img { width: 56px; height: 56px; border-radius: 50%; box-shadow: 0 0 0 1px rgba(255,255,255,.16); }
.igpanel__head b { display: block; font-size: 17px; }
.igpanel__head span { font-size: 14px; color: var(--on-dark-muted); }
.igpanel__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 2px; margin-top: 20px; }
.igpanel__grid .frame { aspect-ratio: 1 / 1; }
.igpanel__bio { margin-top: 20px; font-size: 15px; color: var(--on-dark-muted); }
.igpanel .btn { margin-top: 20px; }

/* ---------- Footer ---------- */
.ftr { background: #06080b; color: var(--on-dark-muted); padding-block: 64px 32px; font-size: 15px; }
.ftr__top { row-gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-dk); }
.ftr__brand { grid-column: 1 / span 4; }
.ftr__brand .brand { margin-bottom: 20px; }
.ftr__brand .brand__name b { color: #fff; }
.ftr__brand p { max-width: 36ch; }
.ftr__col { grid-column: span 2; }
.ftr__col--wide { grid-column: span 4; }
.ftr h2 { font: 700 12px/1 var(--f-body); letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.ftr li + li { margin-top: 10px; }
.ftr a { text-decoration: none; }
.ftr a:hover { color: #fff; }
.ftr__col--wide .btn { margin-top: 20px; }
.ftr__bot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: 13px; }

/* ---------- Mobile action bar ---------- */
.mbar { display: none; }

/* ---------- Reveal ---------- */
.rv { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero__img img { animation: none; }
  .card .frame img { transition: none; }
}

/* ---------- Booking page ---------- */
.pagehead { padding-block: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 56px); }
.pagehead .lede { margin-top: 20px; max-width: 60ch; }
.book { row-gap: 32px; align-items: start; }
.book__main { grid-column: 1 / span 8; }
.book__aside { grid-column: 9 / span 4; position: sticky; top: calc(var(--header) + 24px); }
.stepper { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 4px; margin-bottom: 28px; }
.stepper li { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--steel); padding-top: 10px; border-top: 3px solid var(--line); }
.stepper li.is-done { color: var(--text); border-color: var(--text); }
.stepper li.is-current { color: var(--blue); border-color: var(--blue); }
.stepper .num { display: block; font-size: 13px; }
.bstep > legend { font: 850 clamp(1.5rem, 1.2rem + 1vw, 2rem)/1.1 var(--f-display); font-stretch: 108%; text-transform: uppercase; margin-bottom: 8px; padding: 0; }
.bstep > .hint { margin: 0 0 24px; font-size: 15px; }
.bnav { display: flex; justify-content: space-between; gap: 12px; margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.summary { background: var(--ink); color: var(--on-dark); }
.summary .frame { aspect-ratio: 16 / 10; }
.summary__in { padding: 24px; }
.summary dl { margin: 16px 0 0; }
.summary dl div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line-dk); font-size: 14px; }
.summary dt { color: var(--on-dark-muted); }
.summary dd { margin: 0; font-weight: 600; word-break: break-word; }
.summary__note { margin-top: 16px; font-size: 13px; color: var(--on-dark-muted); }
.summary__call { margin-top: 16px; display: grid; gap: 8px; }
.review { border-top: 1px solid var(--line); }
.review div { display: grid; grid-template-columns: 180px 1fr auto; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; align-items: start; }
.review dt { color: var(--muted); }
.review dd { margin: 0; font-weight: 600; word-break: break-word; }
.review button { background: none; border: 0; padding: 0; color: var(--blue); font-weight: 700; font-size: 14px; cursor: pointer; text-decoration: underline; }
.confirm { margin-top: 24px; display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.confirm input { width: 20px; height: 20px; margin-top: 3px; accent-color: var(--blue); flex: none; }

.legal { max-width: 760px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.legal p + p { margin-top: 12px; }
.notice { padding: 16px 20px; border-left: 4px solid var(--blue); background: var(--paper); font-weight: 600; margin-bottom: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 1140px) {
  .nav, .hdr__phone { display: none; }
  .menu-btn, .hdr__call { display: inline-flex; }
  .hdr__cta { margin-left: auto; gap: 8px; }
}
@media (max-width: 1020px) {
  .hero__copy, .hero__media { grid-column: 1 / -1; }
  .hero .h1 { max-width: 14ch; }
  .hero__img { aspect-ratio: 4 / 3; flex: none; max-height: none; min-height: 0; }
  .hero__svcs { padding-top: 32px; margin-top: 40px; }
  .sh__title, .sh__lede { grid-column: 1 / -1; }
  .facts__row { grid-template-columns: 1fr 1fr; }
  .facts__item, .facts__item + .facts__item { padding: 20px 16px 20px 0; border-left: 0; }
  .facts__item:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
  .facts__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .svc__media { grid-column: 1 / span 5; }
  .svc__body { grid-column: 6 / span 7; }
  .svc__cols { grid-template-columns: 1fr; }
  .feat__main, .feat__side { grid-column: 1 / -1; }
  .feat__main .frame { aspect-ratio: 4 / 3; }
  .cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0,1fr)); row-gap: 40px; }
  .steps4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .why__media, .why__body, .about__body, .about__media { grid-column: 1 / -1; }
  .why__media .frame { min-height: 0; aspect-ratio: 16 / 10; }
  .quote__aside, .quote__main, .consult__copy, .consult__form, .faq__head, .faq__list, .contact__main, .contact__ig { grid-column: 1 / -1; }
  .quote__aside { position: static; }
  .book__main, .book__aside { grid-column: 1 / -1; }
  .book__aside { position: static; }
  .ftr__brand { grid-column: 1 / -1; }
  .ftr__col { grid-column: span 4; }
  .ftr__col--wide { grid-column: span 4; }
}
@media (max-width: 760px) {
  body { font-size: 16px; padding-bottom: 68px; }
  .brand__name span { display: none; }
  .brand__name b { font-size: 15px; }
  .brand__logo { width: 42px; height: 42px; }
  .hero .btn-row .btn { flex: 1 1 100%; }
  .hero__svcs { grid-template-columns: 1fr; }
  .hero__svcs li, .hero__svcs li + li { padding: 14px 0; border-left: 0; border-bottom: 1px solid var(--line-dk); display: flex; gap: 14px; align-items: baseline; }
  .hero__svcs .num { margin: 0; }
  .hero__cap { flex-direction: column; align-items: flex-start; gap: 6px; }
  .facts__v { font-size: 16px; }
  .svc__media, .svc__body { grid-column: 1 / -1; }
  .svc__media .frame { aspect-ratio: 4 / 3; }
  .svc .btn-row .btn { flex: 1 1 100%; }
  .ba__fig { grid-column: 1 / -1; }
  .cards { grid-template-columns: 1fr; }
  .card .frame { aspect-ratio: 4 / 3; }
  .feat__thumbs .frame { aspect-ratio: 4 / 3; }
  .process { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .why__grid li, .why__grid li:nth-child(even) { padding: 20px 0; border-left: 0; }
  .fgrid, .fgrid--3, .tiles { grid-template-columns: minmax(0, 1fr); }
  .fsubmit .btn { width: 100%; white-space: normal; }
  .contact__dl div { grid-template-columns: 1fr; gap: 4px; }
  .ftr__col, .ftr__col--wide { grid-column: 1 / -1; }
  .stepper { grid-template-columns: repeat(6, minmax(0,1fr)); }
  .stepper .lbl { display: none; }
  .review div { grid-template-columns: 1fr auto; }
  .review dt { grid-column: 1 / -1; }
  .bnav .btn { flex: 1; }
  .lb__top, .lb__bot { padding-block: 10px; }
  .mbar {
    display: grid; grid-template-columns: 1fr 1fr 1.4fr; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    background: var(--ink); border-top: 1px solid var(--line-dk); padding-bottom: env(safe-area-inset-bottom);
  }
  .mbar a {
    display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 60px;
    font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-decoration: none; color: #fff;
  }
  .mbar a + a { border-left: 1px solid var(--line-dk); }
  .mbar a svg { width: 18px; height: 18px; color: var(--ice); }
  .mbar a.mbar__primary { background: var(--blue); border-left: 0; }
  .mbar a.mbar__primary svg { color: #fff; }
}
@media (max-width: 400px) {
  .brand__name { display: none; }
  .hdr__cta .btn { padding: 0 12px; letter-spacing: .04em; }
  .h1 { font-size: 2.35rem; }
  .facts__row { grid-template-columns: 1fr; }
  .facts__item, .facts__item + .facts__item, .facts__item:nth-child(even) { padding: 16px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .facts__item:last-child { border-bottom: 0; }
}
@media print {
  .hdr, .mbar, .mnav, .ftr { display: none; }
}
