/* ============================================================
   Fixman — Variant 1: Glassworks
   Editorial restraint. Apple product page meets architectural firm.
   ============================================================ */

:root {
  /* Brand */
  --red: #E51919;
  --red-deep: #B30000;
  --blue: #097BAA;
  --blue-deep: #003388;
  --ink: #0A0C0F;
  --ink-2: #1A1D24;
  --steel: #69727D;
  --smoke: #F5F7FA;
  --paper: #FFFFFF;
  --line: #DDDDDD;
  --line-soft: #EDEDED;

  /* Type */
  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Type scale */
  --fs-display: clamp(3.25rem, 9.5vw, 8.5rem);
  --fs-h1: clamp(2.25rem, 5.5vw, 4.75rem);
  --fs-h2: clamp(1.85rem, 4vw, 3.25rem);
  --fs-h3: clamp(1.15rem, 1.5vw, 1.6rem);
  --fs-body: clamp(1rem, 1.05vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-tiny: 0.75rem;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px; --s-11: 192px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-base: 600ms;
  --t-slow: 800ms;

  /* Layout */
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }

/* Skip link */
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; z-index: 10000;
  font-size: var(--fs-small);
}
.skip:focus { left: 12px; top: 12px; }

/* Container */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out);
  min-width: 44px;
  min-height: 44px;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--red); color: var(--paper); }
.btn--primary:hover { background: var(--red-deep); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--block { width: 100%; }

@media (max-width: 540px) {
  .btn { height: 48px; padding: 0 22px; font-size: 0.875rem; }
}

/* ===================== 1. Utility bar ===================== */
.utility {
  background: var(--ink);
  color: var(--paper);
  font-size: var(--fs-tiny);
  letter-spacing: 0.04em;
  border-bottom: 1px solid #1a1d24;
}
.utility__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: var(--s-5);
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}
.utility__left {
  display: flex; align-items: center; gap: var(--s-3);
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
}
.utility__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}
.utility__badge img { width: 14px; height: 14px; }
.utility__sep { opacity: 0.4; }
.utility__phones {
  display: flex; gap: var(--s-5); flex-wrap: wrap;
}
.utility__phones a {
  display: inline-flex; align-items: baseline; gap: 6px;
  color: var(--paper);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.utility__phones a span { opacity: 0.7; }

@media (max-width: 768px) {
  .utility__left .utility__hours { display: none; }
  .utility__phones { gap: var(--s-3); }
  .utility__phones a { font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .utility__sep { display: none; }
  .utility__phones a span { display: none; }
  .utility__phones a::after { content: ""; }
}

/* ===================== 2. Sticky header ===================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header__row {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px;
  gap: var(--s-6);
}
.brand { display: flex; align-items: center; }
.brand img { height: 40px; width: auto; }
.nav {
  display: flex; align-items: center; gap: var(--s-6);
  font-size: 0.9375rem;
}
.nav a {
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 200ms var(--ease-out);
}
.nav a:hover { color: var(--red); }
.nav__cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  padding: 10px 20px !important;
  border-radius: 999px;
  margin-left: var(--s-3);
}
.nav__cta:hover { background: var(--red) !important; color: var(--paper) !important; }

.burger {
  display: none;
  background: transparent; border: 0;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform 250ms var(--ease-out), opacity 200ms var(--ease-out);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile {
  display: none;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  padding: var(--s-5) var(--gutter) var(--s-6);
  flex-direction: column;
  gap: var(--s-4);
}
.mobile a {
  font-size: 1.25rem;
  font-family: var(--serif);
  font-weight: 400;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile a:last-child { border-bottom: 0; }
.mobile__cta {
  margin-top: var(--s-3);
  background: var(--ink); color: var(--paper) !important;
  border-radius: 999px; text-align: center;
  padding: 14px 20px !important;
  border-bottom: 0 !important;
}
.mobile[aria-expanded="true"],
.mobile[data-open="true"] {
  display: flex;
}

@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}

/* ===================== 3. Hero ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink);
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  /* Subtle parallax via scale; replaced if reduced motion */
  transform: scale(1.04);
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,15,0.55) 0%, rgba(10,12,15,0.25) 30%, rgba(10,12,15,0.85) 100%),
    linear-gradient(90deg, rgba(10,12,15,0.55) 0%, rgba(10,12,15,0.0) 60%);
}
.hero__content {
  position: relative; z-index: 2;
  padding-top: var(--s-9);
  padding-bottom: var(--s-10);
  max-width: 1100px;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  margin-bottom: var(--s-6);
}
.hero__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-display);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin: 0 0 var(--s-6);
  font-variation-settings: "opsz" 144;
}
.hero__headline em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
}
.hero__sub {
  max-width: 540px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-bottom: var(--s-7);
  font-weight: 300;
}
.hero__ctas {
  display: flex; gap: var(--s-3); flex-wrap: wrap;
}
.hero__ctas .btn--ghost { color: var(--paper); border-color: rgba(255,255,255,0.6); }
.hero__ctas .btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

.hero__scroll {
  position: absolute; left: 50%;
  bottom: var(--s-6);
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-tiny);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: color 200ms var(--ease-out);
}
.hero__scroll:hover { color: var(--paper); }

@media (max-width: 768px) {
  .hero { min-height: 80vh; }
  .hero__content { padding-top: var(--s-8); padding-bottom: var(--s-9); }
  .hero__scroll { display: none; }
}

/* ===================== 4. Trust strip ===================== */
.trust {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--s-5);
  padding: var(--s-7) var(--gutter);
  align-items: center;
}
.trust__item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 4px;
  position: relative;
}
.trust__item + .trust__item::before {
  content: "";
  position: absolute;
  left: calc(var(--s-5) / -2 - 0.5px);
  top: 12%; bottom: 12%;
  width: 1px;
  background: var(--line-soft);
}
.trust__num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.trust__star { color: var(--red); font-size: 0.85em; margin-left: 2px; }
.trust__lbl {
  font-size: var(--fs-tiny);
  color: var(--steel);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .trust__row { grid-template-columns: repeat(2, 1fr); padding: var(--s-6) var(--gutter); }
  .trust__item + .trust__item::before { display: none; }
}

/* ===================== Section heads ===================== */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto var(--s-9);
}
.section-head--left { text-align: left; margin: 0; max-width: 100%; }
.section-head__eyebrow {
  font-family: var(--sans);
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: var(--s-5);
}
.section-head__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  margin-bottom: var(--s-5);
}
.section-head__lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--steel);
  max-width: 580px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-head { margin-bottom: var(--s-7); }
}

/* ===================== 5. Service matrix ===================== */
.services {
  background: var(--smoke);
  padding: var(--s-11) 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.card {
  position: relative;
  background: var(--paper);
  padding: var(--s-7) var(--s-6) var(--s-6);
  display: flex; flex-direction: column;
  min-height: 360px;
  overflow: hidden;
  transition: background 300ms var(--ease-out);
}
.card__num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
  font-variation-settings: "opsz" 144;
}
.card__title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s-3);
  font-variation-settings: "opsz" 30;
}
.card__copy {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel);
  flex: 1;
}
.card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 500ms var(--ease-out), transform 1200ms var(--ease-out);
  pointer-events: none;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,12,15,0.35) 0%, rgba(10,12,15,0.85) 100%);
}
.card > *:not(.card__media) { position: relative; z-index: 1; transition: color 300ms var(--ease-out); }
.card:hover .card__media { opacity: 1; transform: scale(1); }
.card:hover { background: var(--ink); }
.card:hover .card__title { color: var(--paper); }
.card:hover .card__copy { color: rgba(255,255,255,0.78); }
.card:hover .card__num { color: #6ec3e6; }
.card--featured { background: var(--paper); }
.card__tag {
  position: absolute; top: var(--s-5); right: var(--s-5);
  background: var(--red); color: var(--paper);
  font-size: var(--fs-tiny);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
}

@media (max-width: 1024px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .grid { grid-template-columns: 1fr; } .card { min-height: 320px; } }

/* ===================== 6. Feature (chip) ===================== */
.feature {
  background: var(--paper);
  padding: var(--s-11) 0;
}
.feature__row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
.feature__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--smoke);
}
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature__media::after {
  content: "";
  position: absolute; left: -1px; top: var(--s-7);
  width: 80px; height: 1px;
  background: var(--red);
}
.feature__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--s-5) 0 var(--s-5);
  font-variation-settings: "opsz" 144;
}
.feature__lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: var(--s-5);
}
.feature__list {
  margin: 0 0 var(--s-7);
  padding: 0;
  border-top: 1px solid var(--line-soft);
}
.feature__list li {
  border-bottom: 1px solid var(--line-soft);
  padding: var(--s-4) 0;
  font-size: 0.9375rem;
  color: var(--ink-2);
  padding-left: var(--s-5);
  position: relative;
}
.feature__list li::before {
  content: "—";
  position: absolute;
  left: 0; top: var(--s-4);
  color: var(--red);
}
@media (max-width: 1024px) {
  .feature__row { grid-template-columns: 1fr; gap: var(--s-7); }
  .feature__media { aspect-ratio: 16/10; }
}

/* ===================== 7. Process (timeline) ===================== */
.process {
  background: var(--smoke);
  padding: var(--s-11) 0;
}
.timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 56px; top: 0; bottom: 0;
  width: 1px;
  background: var(--line);
}
.timeline__step {
  position: relative;
  padding: var(--s-7) 0 var(--s-7) 140px;
  border-bottom: 1px solid var(--line-soft);
}
.timeline__step:last-child { border-bottom: 0; }
.timeline__num {
  position: absolute;
  left: 0; top: var(--s-7);
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--blue);
  width: 56px;
  text-align: left;
  line-height: 1;
  font-variation-settings: "opsz" 144;
  background: var(--smoke);
  padding-right: 8px;
}
.timeline__step::after {
  content: "";
  position: absolute;
  left: 52px; top: calc(var(--s-7) + 12px);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--ink);
  z-index: 1;
}
.timeline__title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s-3);
  font-variation-settings: "opsz" 60;
}
.timeline__copy {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--steel);
  max-width: 520px;
}
@media (max-width: 768px) {
  .timeline::before { left: 32px; }
  .timeline__step { padding-left: 80px; }
  .timeline__num { width: 32px; font-size: 1.5rem; }
  .timeline__step::after { left: 28px; }
}

/* ===================== 8. ADAS ===================== */
.adas {
  background: var(--paper);
  padding: var(--s-11) 0;
}
.adas__row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-9);
  align-items: center;
}
.adas__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--s-5) 0 var(--s-5);
  font-variation-settings: "opsz" 144;
}
.adas__lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: var(--s-5);
}
.adas p + p { color: var(--steel); }
.adas__media {
  position: relative;
  aspect-ratio: 5/6;
  background: var(--smoke);
  overflow: hidden;
}
.adas__media img { width: 100%; height: 100%; object-fit: cover; }
.adas__media figcaption {
  margin-top: var(--s-4);
  font-size: var(--fs-small);
  color: var(--steel);
  font-style: italic;
}
@media (max-width: 1024px) {
  .adas__row { grid-template-columns: 1fr; gap: var(--s-7); }
  .adas__media { aspect-ratio: 16/10; }
}

/* ===================== 9. Locations ===================== */
.locations {
  background: var(--smoke);
  padding: var(--s-11) 0;
}
.cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.city {
  background: var(--paper);
  padding: var(--s-7) var(--s-6);
  display: flex; flex-direction: column;
  min-height: 280px;
  position: relative;
}
.city::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 0; height: 1px;
  background: var(--ink);
  transition: width 500ms var(--ease-out);
}
.city:hover::before { width: 100%; }
.city__tag {
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: var(--s-5);
}
.city__name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: var(--s-5);
  font-variation-settings: "opsz" 144;
}
.city__addr {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--steel);
  margin-bottom: var(--s-6);
  flex: 1;
}
.city__phone {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  transition: color 200ms var(--ease-out);
}
.city__phone:hover { color: var(--red); }
@media (max-width: 900px) { .cities { grid-template-columns: 1fr; } }

/* ===================== 10. Reviews ===================== */
.reviews {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-11) 0;
}
.reviews .section-head__eyebrow { color: rgba(255,255,255,0.6); }
.reviews .section-head__title { color: var(--paper); }
.reviews__star { color: var(--red); }
.reviews__count {
  display: block;
  font-family: var(--sans);
  font-size: 0.45em;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  margin-top: 8px;
  text-transform: uppercase;
}
.quotes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-8) var(--s-9);
  margin-top: var(--s-7);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--s-8);
}
.quote {
  margin: 0;
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  left: -0.4em; top: -0.6em;
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 300;
  color: rgba(255,255,255,0.1);
  line-height: 1;
}
.quote blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--paper);
  margin: 0 0 var(--s-4);
  font-variation-settings: "opsz" 60;
}
.quote figcaption {
  font-size: var(--fs-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 768px) {
  .quotes { grid-template-columns: 1fr; gap: var(--s-6); padding-top: var(--s-6); }
}

/* ===================== 11. About ===================== */
.about {
  background: var(--paper);
  padding: var(--s-11) 0;
}
.about__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-9);
  align-items: start;
}
.about__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--s-5) 0 var(--s-5);
  font-variation-settings: "opsz" 144;
}
.about__lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: var(--s-5);
}
.about p + p { color: var(--steel); }
.about__facts {
  margin: 0;
  border-top: 1px solid var(--line-soft);
}
.about__facts > div {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.about__facts dt {
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.about__facts dd {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--ink);
  margin: 0;
}
@media (max-width: 1024px) {
  .about__row { grid-template-columns: 1fr; gap: var(--s-7); }
}

/* ===================== 12. FAQ ===================== */
.faq {
  background: var(--smoke);
  padding: var(--s-11) 0;
}
.faq__row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--s-9);
  align-items: start;
}
.faq__list {
  border-top: 1px solid var(--line);
}
.faq__list details {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) 0;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  padding-right: var(--s-7);
  font-variation-settings: "opsz" 30;
  transition: color 200ms var(--ease-out);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 14px; height: 14px;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 100% 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 1px 100% no-repeat;
  transform: translateY(-50%);
  transition: transform 300ms var(--ease-out);
}
.faq__list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.4;
}
.faq__list summary:hover { color: var(--red); }
.faq__list p {
  padding: 0 0 var(--s-5);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--steel);
  max-width: 640px;
}
@media (max-width: 1024px) {
  .faq__row { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* ===================== 13. Contact ===================== */
.contact {
  background: var(--paper);
  padding: var(--s-11) 0;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-9);
  align-items: start;
}
.contact__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: var(--fs-h1);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: var(--s-5) 0 var(--s-5);
  font-variation-settings: "opsz" 144;
  scroll-margin-top: 120px;
}
.contact__lede {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--steel);
  margin-bottom: var(--s-6);
}
.contact__list {
  border-top: 1px solid var(--line-soft);
}
.contact__list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
  font-size: 0.9375rem;
}
.contact__list li span {
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.contact__list li a {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color 200ms var(--ease-out);
}
.contact__list li a:hover { color: var(--red); }

/* Form */
.form {
  background: var(--smoke);
  padding: var(--s-7);
  border: 1px solid var(--line-soft);
  display: flex; flex-direction: column;
  gap: var(--s-4);
}
.form__title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-3);
  font-variation-settings: "opsz" 60;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.form label {
  display: flex; flex-direction: column;
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  gap: 6px;
}
.form input,
.form textarea {
  font-family: var(--sans);
  font-size: 16px; /* iOS zoom guard */
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  transition: border-color 200ms var(--ease-out);
  width: 100%;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form textarea { resize: vertical; min-height: 110px; }
.form__status {
  font-size: 0.9375rem;
  color: var(--blue);
  min-height: 1.2em;
  margin: 0;
}
.form__status.is-ok { color: var(--blue); }
.form__status.is-error { color: var(--red); }

@media (max-width: 1024px) {
  .contact__row { grid-template-columns: 1fr; gap: var(--s-7); }
}
@media (max-width: 540px) {
  .form__row { grid-template-columns: 1fr; }
  .form { padding: var(--s-5); }
}

/* ===================== 14. Footer ===================== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s-10) 0 var(--s-6);
  border-top: 1px solid #1a1d24;
}
.footer__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-8);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand p {
  margin-top: var(--s-4);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  line-height: 1.55;
}
.footer__brand img {
  filter: brightness(0) invert(1);
  height: 40px; width: auto;
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: var(--fs-tiny);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-4);
  font-weight: 500;
}
.footer__col a {
  display: block;
  padding: 6px 0;
  color: var(--paper);
  font-size: 0.9375rem;
  transition: color 200ms var(--ease-out);
}
.footer__col a:hover { color: var(--red); }
.footer__hours {
  margin-top: var(--s-3);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.footer__base {
  padding-top: var(--s-5);
  text-align: center;
  font-size: var(--fs-tiny);
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .footer__row { grid-template-columns: 1fr 1fr; gap: var(--s-7); }
}
@media (max-width: 540px) {
  .footer__row { grid-template-columns: 1fr; }
}

/* ===================== Mobile sticky CTA ===================== */
.stickycta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 60;
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -8px 30px rgba(10,12,15,0.06);
}
.stickycta .btn { flex: 1; height: 48px; }
@media (max-width: 768px) {
  .stickycta { display: flex; }
  body { padding-bottom: 80px; }
}

/* ===================== Reveal initial state ===================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
}

/* ===================== Reduced motion ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__media img { transform: none; }
}

/* ===================== Selection ===================== */
::selection { background: var(--ink); color: var(--paper); }

/* ===================== Focus visible ===================== */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}
.nav a:focus-visible,
.utility__phones a:focus-visible {
  outline-offset: 4px;
}

/* ===================== Print ===================== */
@media print {
  .utility, .header, .stickycta, .hero__scroll, .hero__ctas { display: none; }
  .hero { min-height: auto; }
  body { color: #000; background: #fff; }
}
