/* =========================================================================
   The Car Doctor — Clinical / Hybrid Specialist
   ========================================================================= */

:root {
  --ivory:        #f4f1ea;
  --ivory-warm:   #ece8dd;
  --ivory-deep:   #ddd7c6;
  --paper:        #faf8f2;
  --paper-pure:   #ffffff;

  --ink:          #0e1614;
  --ink-soft:     #2a3431;
  --ink-mute:     #5a6562;
  --ink-line:     #11201c;

  --bottle:       #0f4d3a;          /* bottle green — primary */
  --bottle-deep:  #093024;
  --bottle-soft:  #cfe1d8;

  --volt:         #1a6cff;          /* electric blue — hybrid accent */
  --volt-deep:    #0a48b8;
  --volt-soft:    #d4e2ff;

  --signal:       #ff5b2e;          /* emergency / red cross hint, used sparingly */

  --rule:         1px solid var(--ink-line);
  --hair:         1px solid var(--ivory-deep);

  --font-display: 'Archivo', 'Helvetica Neue', sans-serif;
  --font-body:    'Archivo', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-serif:   'Newsreader', Georgia, serif;

  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --pad-y: clamp(3.5rem, 8vw, 7rem);

  --max-w: 1280px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--volt); color: var(--paper-pure); }

/* =========================================================================
   NAV
   ========================================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem var(--pad-x);
  background: rgba(244,241,234,0.92);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: var(--rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: var(--bottle);
  color: var(--paper);
  border-radius: 4px;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--paper);
}
.brand-mark::before { width: 14px; height: 2px; top: 16px; left: 10px; }
.brand-mark::after  { width: 2px; height: 14px; top: 10px; left: 16px; }
.brand-mark span { display: none; }

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.2rem;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bottle);
  font-weight: 600;
}

.nav-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.cert-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  background: var(--paper-pure);
  border: 1px solid var(--ivory-deep);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.cert-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--volt);
  border-radius: 50%;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem 0.35rem 0.55rem;
  background: var(--paper-pure);
  border: 1px solid var(--ivory-deep);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--bottle);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(15,77,58,0.55); }
  60%  { box-shadow: 0 0 0 8px rgba(15,77,58,0); }
  100% { box-shadow: 0 0 0 0 rgba(15,77,58,0);  }
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.85rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: background 160ms ease, transform 160ms ease;
}
.nav-call:hover { background: var(--bottle); transform: translateY(-1px); }
.nav-call-icon {
  width: 6px; height: 6px;
  background: var(--volt);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(26,108,255,0.25);
}

/* =========================================================================
   HERO
   ========================================================================= */

.hero {
  position: relative;
  min-height: clamp(640px, 92vh, 920px);
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x) clamp(3rem, 5vw, 4.5rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: var(--rule);
  background: var(--ink);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("img/photo-05.jpg") center 35%/cover no-repeat;
  filter: contrast(1.05) saturate(0.85) brightness(0.78);
  z-index: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg,
      rgba(9,48,36,0.92) 0%,
      rgba(14,22,20,0.78) 35%,
      rgba(14,22,20,0.42) 70%,
      rgba(14,22,20,0.30) 100%
    ),
    linear-gradient(0deg, rgba(14,22,20,0.55) 0%, rgba(14,22,20,0) 60%);
  z-index: 1;
}

/* Hero grid overlay — clinical chart paper feel */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(to right,  rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  color: var(--paper);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--volt-soft);
  margin: 0 0 1.6rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(212,226,255,0.3);
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--volt);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(26,108,255,0.35);
}

.hero-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0 0 1.6rem;
  max-width: 18ch;
}
.hero-h .lit {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--volt-soft);
}
.hero-h .pulse-word {
  position: relative;
  display: inline-block;
  color: var(--paper);
}
.hero-h .pulse-word::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 6px;
  background: var(--volt);
  opacity: 0.85;
  transform: skewX(-12deg);
}

.hero-sub {
  max-width: 38rem;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(250,248,242,0.82);
  margin: 0 0 2.4rem;
  line-height: 1.55;
}
.hero-sub strong { color: var(--paper); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Vitals strip — bottom of hero */
.hero-vitals {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(250,248,242,0.18);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,242,0.55);
}
.hero-vitals span { white-space: nowrap; }
.hero-vitals .v-dot { color: var(--volt); }

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.25rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--volt);
  color: var(--paper-pure);
  box-shadow: 0 1px 0 0 var(--volt-deep), 0 14px 28px -16px rgba(26,108,255,0.55);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 0 var(--volt-deep), 0 18px 32px -14px rgba(26,108,255,0.7); }
.btn-ghost {
  color: var(--paper);
  border: 1px solid rgba(250,248,242,0.45);
  background: transparent;
}
.btn-ghost:hover { background: rgba(250,248,242,0.08); border-color: rgba(250,248,242,0.8); }

.btn-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 600;
}
.btn-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}
.btn-arrow {
  font-family: var(--font-mono);
  margin-left: 0.2rem;
}
.btn-xl { padding: 1.25rem 1.7rem; font-size: 1.05rem; }
.btn-xl .btn-num { font-size: 1.35rem; }

/* =========================================================================
   STATS BAND
   ========================================================================= */

.band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border-bottom: var(--rule);
}
.band-cell {
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: var(--hair);
  position: relative;
}
.band-cell:last-child { border-right: 0; }
.band-cell::before {
  content: attr(data-id);
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--ink-mute);
  opacity: 0.55;
}
.band-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.08em;
}
.band-num .star { color: var(--volt); font-size: 0.55em; font-weight: 600; }
.band-num .plus { color: var(--bottle); font-size: 0.55em; font-weight: 600; }
.band-num .small { font-size: 0.4em; font-weight: 500; color: var(--ink-mute); letter-spacing: 0; }
.band-cap {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}

/* =========================================================================
   COMMON
   ========================================================================= */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bottle);
  margin: 0 0 1rem;
  font-weight: 600;
}
.kicker::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--bottle);
}

.section-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  text-transform: uppercase;
}
.section-h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--bottle);
}

/* =========================================================================
   THE BIG MOMENT — "THE DOCTOR" with EKG line
   ========================================================================= */

.diagnosis {
  position: relative;
  background: var(--paper);
  padding: clamp(4rem, 9vw, 8rem) var(--pad-x) clamp(3rem, 6vw, 5rem);
  border-bottom: var(--rule);
  overflow: hidden;
}
.diagnosis-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
.dx-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-bottom: 1.5rem;
  border-bottom: var(--hair);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.dx-meta strong { color: var(--ink); font-weight: 600; }
.dx-meta .dx-volt { color: var(--volt); }

.dx-h {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 13vw, 11rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  margin: 0;
  text-transform: uppercase;
  color: var(--ink);
}
.dx-h .dx-the {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.32em;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--bottle);
  margin-bottom: 0.3em;
  margin-left: 0.35em;
}
.dx-h .dx-doctor {
  display: block;
  position: relative;
}
.dx-h .dx-for {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.28em;
  letter-spacing: -0.015em;
  text-transform: none;
  color: var(--ink-soft);
  margin-top: 0.2em;
  margin-left: 0.4em;
}
.dx-h .dx-hybrids {
  display: block;
  color: var(--bottle);
  position: relative;
}
.dx-h .dx-hybrids::after {
  content: "+";
  position: absolute;
  top: -0.05em;
  right: -0.1em;
  font-family: var(--font-mono);
  font-size: 0.18em;
  color: var(--volt);
  font-weight: 700;
  letter-spacing: 0;
}

/* EKG line that runs across DOCTOR */
.ekg {
  position: absolute;
  left: -2%;
  right: -2%;
  top: 50%;
  height: 60px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.ekg svg { width: 100%; height: 100%; display: block; }

.dx-foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: var(--hair);
}
.dx-foot p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 36rem;
}
.dx-foot .dx-stamp {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  align-self: end;
}
.dx-foot .dx-stamp strong { color: var(--bottle); }

/* =========================================================================
   SERVICES
   ========================================================================= */

.services {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.services-head { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: end; }
.services-head .head-copy { max-width: 36rem; }
.services-head .head-aside {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.5;
  text-align: right;
  border-left: 1px solid var(--ivory-deep);
  padding-left: 1.5rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-left: var(--hair);
}
.svc {
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border-right: var(--hair);
  border-bottom: var(--hair);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: background 200ms ease;
}
.svc:hover { background: var(--paper-pure); }
.svc.svc-feature {
  background: var(--bottle);
  color: var(--paper);
  grid-column: span 2;
}
.svc.svc-feature h3 { color: var(--paper); }
.svc.svc-feature p { color: rgba(250,248,242,0.85); }
.svc.svc-feature .svc-num { color: var(--volt-soft); }
.svc.svc-feature .svc-tag { background: var(--volt); color: var(--paper-pure); border-color: var(--volt); }

.svc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.svc-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--bottle);
  font-weight: 600;
}
.svc-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bottle-deep);
  background: var(--bottle-soft);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}
.svc-tag.tag-volt {
  background: var(--volt-soft);
  color: var(--volt-deep);
}
.svc h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
}
.svc p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.55;
}
.svc p strong { color: var(--ink); font-weight: 600; }

/* =========================================================================
   TEAM / PORTRAIT
   ========================================================================= */

.team {
  background: var(--ink);
  color: var(--paper);
  padding: var(--pad-y) var(--pad-x);
  border-top: var(--rule);
  position: relative;
  overflow: hidden;
}
.team-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.team-photo { margin: 0; position: relative; }
.team-photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
  border-radius: 4px;
}
.team-photo .photo-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.4rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 600;
}
.team-photo .photo-tag span { color: var(--volt); }
.team-photo .photo-caption {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,248,242,0.55);
}

.team-copy .kicker { color: var(--volt-soft); }
.team-copy .kicker::before { background: var(--volt-soft); }
.team-copy .section-h { color: var(--paper); }
.team-copy .section-h em { color: var(--volt-soft); font-family: var(--font-serif); }

.team-lede {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: rgba(250,248,242,0.85);
  margin: 1.4rem 0 0;
  max-width: 32rem;
  line-height: 1.5;
}

.creds {
  list-style: none;
  margin: 2rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(250,248,242,0.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
}
.creds li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.creds .cred-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,242,0.5);
  font-weight: 600;
}
.creds .cred-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--paper);
}
.creds .cred-value .v-dot {
  color: var(--volt);
  margin-right: 0.3rem;
}

/* =========================================================================
   REVIEWS
   ========================================================================= */

.reviews {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.reviews-head { max-width: 44rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-left: var(--hair);
}
.review {
  background: var(--paper);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-right: var(--hair);
  border-bottom: var(--hair);
  grid-column: span 2;
}
.review.review-feature {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--bottle);
  color: var(--paper);
}
.review.review-feature .stars { color: var(--volt-soft); }
.review.review-feature p { color: rgba(250,248,242,0.92); font-size: 1.1rem; }
.review.review-feature footer { color: rgba(250,248,242,0.55); }
.review.review-feature footer strong { color: var(--paper); }

.review-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bottle);
  font-weight: 600;
}
.review-feature .review-tag { color: var(--volt-soft); }
.review-tag::before {
  content: "";
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.stars {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--volt);
}
.review p {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
}
.review footer {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: auto;
  padding-top: 0.6rem;
  font-weight: 600;
}
.review footer strong { color: var(--ink); font-weight: 700; }

/* =========================================================================
   VISIT
   ========================================================================= */

.visit {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
}
.visit-head { max-width: 38rem; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: auto auto;
  border-top: var(--rule);
  border-left: var(--hair);
}
.visit-block {
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border-right: var(--hair);
  border-bottom: var(--hair);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.visit-hours { grid-column: span 2; background: var(--ivory-warm); }
.visit-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
  font-weight: 600;
}
.visit-value {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}
.visit-value.mono {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.visit-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--volt);
  margin-top: auto;
  padding-top: 0.6rem;
  font-weight: 700;
  border-top: 1px solid var(--ivory-deep);
}
.visit-cta:hover { color: var(--volt-deep); }

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem 1.5rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.2rem 0;
  border-bottom: 1px dotted var(--ivory-deep);
}
.hours li span:first-child { letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.72rem; color: var(--ink-mute); font-weight: 600; }
.hours li span:last-child { color: var(--bottle); font-weight: 600; }
.hours li.closed span:last-child { color: var(--ink-mute); font-weight: 500; }

.visit-map {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  border-right: var(--hair);
  border-bottom: var(--hair);
  background: var(--ivory-warm);
  position: relative;
  min-height: 400px;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; filter: saturate(0.85) contrast(1.05); }

/* =========================================================================
   CTA FOOT
   ========================================================================= */

.cta-foot {
  background: var(--bottle);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  text-align: center;
  border-top: var(--rule);
  position: relative;
  overflow: hidden;
}
.cta-foot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.cta-foot > * { position: relative; }
.cta-kick {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--volt-soft);
  margin: 0 0 1.2rem;
  font-weight: 600;
}
.cta-kick::before { content: ""; width: 7px; height: 7px; background: var(--volt); border-radius: 50%; }
.cta-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 auto 2.2rem;
  max-width: 28ch;
  text-transform: uppercase;
}
.cta-h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--volt-soft);
  text-transform: none;
}
.cta-fine {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,248,242,0.6);
  margin: 1.6rem 0 0;
}

/* =========================================================================
   FOOTER
   ========================================================================= */

.foot {
  background: var(--ivory-warm);
  border-top: var(--rule);
  padding: clamp(2.5rem, 4vw, 3.5rem) var(--pad-x) clamp(1.5rem, 3vw, 2.5rem);
}
.foot-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: var(--hair);
}
.foot-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  margin: 0 0 0.4rem;
}
.foot-legal {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 0.8rem;
  font-weight: 600;
}
.foot-line {
  font-family: var(--font-mono);
  font-size: 0.84rem;
  color: var(--ink-soft);
  margin: 0.2rem 0;
}
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 0.7rem;
  font-weight: 700;
}
.foot-col p, .foot-col a {
  font-size: 0.92rem;
  margin: 0.25rem 0;
  display: block;
  color: var(--ink-soft);
}
.foot-fine {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1080px) {
  .reviews-grid { grid-template-columns: repeat(4, 1fr); }
  .review { grid-column: span 2; }
  .review.review-feature { grid-column: span 4; grid-row: auto; }
}

@media (max-width: 960px) {
  .band { grid-template-columns: repeat(2, 1fr); }
  .band-cell:nth-child(2) { border-right: 0; }
  .band-cell:nth-child(1), .band-cell:nth-child(2) { border-bottom: var(--hair); }

  .services-head { grid-template-columns: 1fr; }
  .services-head .head-aside { text-align: left; border-left: 0; padding-left: 0; border-top: 1px solid var(--ivory-deep); padding-top: 1.5rem; }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .svc.svc-feature { grid-column: span 2; }

  .team-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review { grid-column: span 1; }
  .review.review-feature { grid-column: span 2; grid-row: auto; }

  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit-map { grid-column: 1 / 3; grid-row: auto; min-height: 320px; }
  .visit-hours { grid-column: 1 / 3; }

  .dx-foot { grid-template-columns: 1fr; }
  .dx-foot .dx-stamp { text-align: left; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }

  .nav { gap: 0.5rem; padding: 0.65rem var(--pad-x); }
  .brand-word { display: none; }
  .cert-pill { display: none; }
  .nav-call { padding: 0.45rem 0.7rem; font-size: 0.8rem; }

  .hero { min-height: 84vh; }
  .hero-h { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-vitals { font-size: 0.6rem; gap: 0.4rem; flex-wrap: wrap; padding: 0.7rem 0; }
  .hero-vitals span:nth-child(n+4) { display: none; }
  .eyebrow { font-size: 0.62rem; }

  .band { grid-template-columns: 1fr 1fr; }
  .band-cell { padding: 1.4rem 1rem; }
  .band-num { font-size: 2.3rem; }

  .dx-h { font-size: clamp(2.6rem, 16vw, 6rem); }

  .services-list { grid-template-columns: 1fr; }
  .svc { border-right: 0; }
  .svc.svc-feature { grid-column: span 1; }

  .creds { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review { grid-column: span 1; border-right: 0; }
  .review.review-feature { grid-column: span 1; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-block { border-right: 0; }
  .visit-hours { grid-column: 1; }
  .visit-map { grid-column: 1; min-height: 280px; }
  .hours { grid-template-columns: 1fr; gap: 0.2rem; }

  .foot-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .foot-fine { flex-direction: column; align-items: flex-start; }
}

@media print {
  .nav, .cta-foot, .hero-photo, .hero-veil, .hero-grid, .visit-map { display: none; }
  body { background: white; color: black; }
}
