/* =========================================================================
   MARKHAM MUFFLER — BRUTALIST
   Concrete + ink + a single red. No ornament. Big rules. Loud type.
   ========================================================================= */

:root {
  --concrete:    #d6d2cb;   /* raw concrete grey */
  --concrete-2:  #c5c0b6;
  --concrete-3:  #b5afa3;
  --paper:       #ebe7df;   /* warm off-white */
  --ink:         #0c0c0c;   /* near-black */
  --ink-2:       #1a1a1a;
  --steel:       #5a5852;
  --red:         #e8331a;   /* the only colour that matters */
  --red-deep:    #b9230f;

  --font-display: 'Archivo Black', 'Helvetica Neue', Arial, sans-serif;
  --font-body:    'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'Space Mono', ui-monospace, 'Courier New', monospace;

  --rule: 2px solid var(--ink);
  --rule-thick: 4px solid var(--ink);
  --rule-mega: 8px solid var(--ink);

  --pad-x: clamp(1rem, 4vw, 3rem);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--concrete);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

/* a faint paper grain on the body, made from gradients (no images) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(12,12,12,0.018) 0px,
      rgba(12,12,12,0.018) 1px,
      transparent 1px,
      transparent 3px
    );
  mix-blend-mode: multiply;
}

/* =========================================================================
   NAV — unusually tall, three-row brutal grid
   ========================================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: var(--rule-thick);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  grid-template-rows: auto auto;
  align-items: stretch;
}

.nav-mark {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 1.2rem;
  border-right: var(--rule);
  background: var(--ink);
  color: var(--paper);
}
.nav-mark-glyph {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 0.85;
  letter-spacing: -0.04em;
  display: inline-block;
  background: var(--red);
  color: var(--ink);
  padding: 0.2rem 0.45rem 0.3rem;
}
.nav-mark-word {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-mark-word b { display: block; font-size: 0.65rem; font-weight: 400; font-family: var(--font-mono); letter-spacing: 0.18em; opacity: 0.65; margin-top: 0.25rem; }

.nav-strap {
  grid-column: 2 / 5;
  grid-row: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.35rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  border-bottom: var(--rule);
}
.nav-strap span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav-strap span:nth-child(2) { color: var(--red); }

.nav-info {
  grid-row: 2;
  grid-column: 2;
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-status {
  grid-row: 2;
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-left: var(--rule);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-status-dot {
  width: 10px;
  height: 10px;
  background: var(--red);
  display: inline-block;
}

.nav-call {
  grid-row: 2;
  grid-column: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem;
  border-left: var(--rule);
  background: var(--red);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  transition: background 120ms ease;
}
.nav-call:hover { background: var(--ink); color: var(--red); }
.nav-call-pre {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  font-weight: 400;
}

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

.hero {
  position: relative;
  border-bottom: var(--rule-mega);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background: url("img/photo-01.jpg") center/cover no-repeat;
  filter: grayscale(0.85) contrast(1.15) brightness(0.55);
  z-index: 0;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,12,0.55) 0%, rgba(12,12,12,0.85) 100%),
    repeating-linear-gradient(0deg, rgba(0,0,0,0) 0 6px, rgba(255,255,255,0.04) 6px 7px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  padding: clamp(2rem, 6vw, 5rem) var(--pad-x) clamp(2.5rem, 6vw, 5rem);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 2px;
  background: var(--red);
}
.hero-eyebrow b { color: var(--red); font-weight: 400; }

/* THE ONE BIG MOVE: a giant headline where MUFFLER is the dominant block,
   set in oversized display type with a red bar slashing it. */

.hero-h {
  font-family: var(--font-display);
  font-weight: 400;   /* Archivo Black is already heavy */
  font-size: clamp(3.4rem, 14vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  margin: 0;
  color: var(--paper);
}
.hero-h-1 { display: block; }
.hero-h-2 {
  display: block;
  position: relative;
  color: var(--paper);
  white-space: nowrap;
}
.hero-h-2 em {
  font-style: normal;
  background: var(--red);
  color: var(--ink);
  padding: 0 0.18em 0.05em;
  display: inline-block;
  /* sit it slightly off the baseline for that brutalist mis-set feel */
  transform: translateY(0.04em);
}
.hero-h-3 {
  display: block;
  font-size: 0.42em;
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--concrete);
  margin-top: 0.35em;
  line-height: 1.2;
  max-width: 30ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: clamp(1rem, 3vw, 2rem);
  border: var(--rule-thick);
  border-color: var(--paper);
  width: max-content;
  max-width: 100%;
}
.hero-cta {
  padding: 1.1rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1;
  transition: background 140ms ease, color 140ms ease;
}
.hero-cta + .hero-cta { border-left: 4px solid var(--paper); }
.hero-cta-pre {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  opacity: 0.7;
}
.hero-cta-call { background: var(--red); color: var(--ink); }
.hero-cta-call:hover { background: var(--paper); color: var(--ink); }
.hero-cta-dir { background: transparent; color: var(--paper); }
.hero-cta-dir:hover { background: var(--paper); color: var(--ink); }

.hero-foot {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(235,231,223,0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--concrete);
}
.hero-foot b { color: var(--red); font-weight: 400; }

/* =========================================================================
   STATS BAND — deliberately misaligned
   ========================================================================= */

.band {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1.1fr 0.7fr;
  background: var(--paper);
  border-bottom: var(--rule-thick);
}
.band-cell {
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1rem, 2.5vw, 2rem);
  border-right: var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(8rem, 14vw, 11rem);
  position: relative;
}
.band-cell:last-child { border-right: 0; }

/* deliberate vertical mis-alignment */
.band-cell:nth-child(1) { padding-top: 1rem; }
.band-cell:nth-child(2) { padding-top: 3.2rem; background: var(--concrete); }
.band-cell:nth-child(3) { padding-top: 1.6rem; }
.band-cell:nth-child(4) { padding-top: 3.8rem; background: var(--ink); color: var(--paper); }

.band-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin: 0;
}
.band-num sup {
  font-size: 0.36em;
  vertical-align: 0.6em;
  color: var(--red);
  font-family: var(--font-mono);
  letter-spacing: 0;
  margin-left: 0.1em;
}
.band-cap {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0.6rem 0 0;
  color: var(--steel);
}
.band-cell:nth-child(4) .band-cap { color: var(--concrete-2); }

/* =========================================================================
   SECTION COMMONS
   ========================================================================= */

.section {
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad-x);
  border-bottom: var(--rule-thick);
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.7rem;
  background: var(--red);
  margin: 0 0 1.6rem;
}

.section-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4.4rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
  max-width: 22ch;
}
.section-h em {
  font-style: normal;
  color: var(--red);
}

.section-lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  max-width: 50ch;
  color: var(--ink-2);
  margin: 0;
}

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

.services-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  border-top: var(--rule);
  border-left: var(--rule);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.svc {
  position: relative;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  border-right: var(--rule);
  border-bottom: var(--rule);
  background: var(--paper);
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 140ms ease, color 140ms ease;
}
.svc:hover { background: var(--ink); color: var(--paper); }
.svc:hover .svc-num { color: var(--red); }
.svc:hover .svc-h::after { background: var(--red); }

.svc-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--red);
}
.svc-h {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  position: relative;
}
.svc-h::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 4px;
  background: var(--ink);
  margin-top: 0.6rem;
  transition: background 140ms ease;
}
.svc p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* feature cell — full width emphasis */
.svc-feature {
  grid-column: span 2;
  background: var(--ink);
  color: var(--paper);
}
.svc-feature .svc-h { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.svc-feature .svc-h::after { background: var(--red); width: 3rem; height: 5px; }
.svc-feature:hover { background: var(--red); color: var(--ink); }
.svc-feature:hover .svc-num { color: var(--ink); }
.svc-feature:hover .svc-h::after { background: var(--ink); }

/* =========================================================================
   TEAM — single character, big quote
   ========================================================================= */

.team {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 7vw, 5.5rem) var(--pad-x);
  border-bottom: var(--rule-thick);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.team .section-tag { background: var(--red); color: var(--ink); }
.team .section-h em { color: var(--red); }

.team-photo {
  margin: 0;
  position: relative;
  background: var(--ink-2);
  border: 4px solid var(--paper);
  align-self: stretch;
  overflow: hidden;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.6) contrast(1.1);
  aspect-ratio: 4 / 5;
}
.team-photo figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 0.65rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-top: 4px solid var(--red);
}

.team-copy { display: flex; flex-direction: column; justify-content: center; }
.team-copy .section-h { color: var(--paper); }
.team-meta {
  margin-top: 1.4rem;
  border-top: 2px solid rgba(235,231,223,0.2);
  padding-top: 1.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.4rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}
.team-meta dt { color: var(--red); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; }
.team-meta dd { margin: 0; color: var(--paper); }

/* =========================================================================
   REVIEWS — chunky bordered quote blocks
   ========================================================================= */

.reviews {
  background: var(--concrete);
}
.reviews-grid {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.review {
  background: var(--paper);
  border: var(--rule-thick);
  padding: clamp(1.4rem, 2.5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.review + .review { border-top: 0; }

.review:nth-child(1) { grid-column: 1 / 4; }
.review:nth-child(2) { grid-column: 4 / 7; border-left: 0; }
.review:nth-child(3) { grid-column: 1 / 5; border-top: 0; background: var(--ink); color: var(--paper); }
.review:nth-child(4) { grid-column: 5 / 7; border-top: 0; border-left: 0; }

.review-stars {
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  color: var(--red);
  font-size: 1.1rem;
}
.review-stars b { color: inherit; opacity: 0.25; font-weight: 400; }

.review p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.55;
}
.review:nth-child(3) p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-transform: none;
}
.review:nth-child(3) .review-stars { color: var(--red); }

.review-cite {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.review:nth-child(3) .review-cite { color: var(--concrete-2); border-top-color: var(--paper); }
.review-cite b { color: var(--ink); font-weight: 400; }
.review:nth-child(3) .review-cite b { color: var(--paper); }

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

.visit {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-bottom: var(--rule-thick);
}
.visit-text {
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad-x);
  border-right: var(--rule-thick);
  display: flex;
  flex-direction: column;
}
.visit-text .section-tag { background: var(--ink); color: var(--paper); }

.visit-data {
  margin-top: 2rem;
  display: grid;
  gap: 0;
  border-top: var(--rule);
  border-left: var(--rule);
}
.visit-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  border-right: var(--rule);
  border-bottom: var(--rule);
}
.visit-key {
  padding: 0.85rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  display: flex;
  align-items: center;
}
.visit-val {
  padding: 0.85rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  letter-spacing: 0;
  color: var(--ink);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.8rem;
}
.visit-val a { color: var(--red); border-bottom: 2px solid var(--red); }

.hours {
  margin: 1.6rem 0 0;
  list-style: none;
  padding: 0;
  border-top: var(--rule);
  border-left: var(--rule);
}
.hours li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  border-right: var(--rule);
  border-bottom: var(--rule);
  font-family: var(--font-mono);
  font-size: 0.86rem;
}
.hours-day {
  padding: 0.55rem 1rem;
  background: var(--concrete);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}
.hours-time { padding: 0.55rem 1rem; }
.hours li.is-closed .hours-time { color: var(--red); }

.visit-map {
  position: relative;
  min-height: 420px;
  background: var(--concrete);
}
.visit-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}
.visit-map-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 0.8rem;
  border-left: 4px solid var(--red);
  z-index: 2;
}

/* =========================================================================
   FOOT CTA — the one final shout
   ========================================================================= */

.cta {
  background: var(--red);
  color: var(--ink);
  padding: clamp(3rem, 8vw, 6rem) var(--pad-x);
  border-bottom: var(--rule-thick);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  max-width: 18ch;
}
.cta-h em {
  font-style: normal;
  background: var(--ink);
  color: var(--red);
  padding: 0.08em 0.2em 0.16em;
  margin: -0.08em -0.04em -0.16em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  margin-top: 1.5rem;
}
.cta-call {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 1.6rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  border: 4px solid var(--ink);
  transition: background 140ms ease, color 140ms ease;
}
.cta-call:hover { background: var(--paper); color: var(--ink); }
.cta-call-pre {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 400;
  opacity: 0.65;
}
.cta-fine {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0;
  max-width: 36ch;
  color: var(--ink);
}

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

.foot {
  background: var(--ink);
  color: var(--concrete);
  padding: clamp(2rem, 5vw, 3.5rem) var(--pad-x);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: end;
}
.foot-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0 0 0.6rem;
}
.foot-brand b { color: var(--red); font-weight: 400; }
.foot p { margin: 0.2rem 0; }
.foot-fine {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(235,231,223,0.15);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--steel);
}

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

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-feature { grid-column: span 2; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review { grid-column: auto !important; border-top: 0; }
  .review:nth-child(odd) { border-right: 0; }
  .review:first-child { border-top: var(--rule-thick); }
  .review:nth-child(2) { border-top: var(--rule-thick); border-left: 0; }
}

@media (max-width: 860px) {
  .nav {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
  }
  .nav-mark { grid-row: 1; grid-column: 1 / 3; border-right: 0; border-bottom: var(--rule); }
  .nav-strap { grid-row: 2; grid-column: 1 / 3; }
  .nav-info { display: none; }
  .nav-status { grid-row: 3; grid-column: 1; border-left: 0; }
  .nav-call { grid-row: 3; grid-column: 2; }

  .band { grid-template-columns: 1fr 1fr; }
  .band-cell:nth-child(1), .band-cell:nth-child(2) { border-bottom: var(--rule); }
  .band-cell:nth-child(2), .band-cell:nth-child(4) { border-right: 0; }
  .band-cell:nth-child(1) { padding-top: 1.4rem; }
  .band-cell:nth-child(2) { padding-top: 2.4rem; }
  .band-cell:nth-child(3) { padding-top: 1.4rem; }
  .band-cell:nth-child(4) { padding-top: 2.4rem; }

  .team { grid-template-columns: 1fr; }
  .team-photo img { aspect-ratio: 4 / 3; }

  .visit { grid-template-columns: 1fr; }
  .visit-text { border-right: 0; border-bottom: var(--rule-thick); }
  .visit-map { min-height: 320px; }

  .hero-h { font-size: clamp(3rem, 14vw, 6rem); }
  .hero-h-2 em { display: inline-block; }

  .foot-grid { grid-template-columns: 1fr; gap: 1.2rem; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav-mark-glyph { font-size: 1.5rem; }
  .nav-mark-word { font-size: 0.85rem; }
  .nav-call { font-size: 0.92rem; padding: 0.55rem 0.9rem; }

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

  .reviews-grid { grid-template-columns: 1fr; }
  .review:nth-child(2) { border-left: var(--rule-thick); }

  .hero-strap { font-size: 0.62rem; }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.18em; }
  .hero-eyebrow::before { width: 1.4rem; }
  .hero-ctas { width: 100%; }
  .hero-cta { flex: 1 1 100%; }
  .hero-cta + .hero-cta { border-left: 0; border-top: 4px solid var(--paper); }

  .visit-row { grid-template-columns: 6.5rem 1fr; }
  .hours li { grid-template-columns: 6.5rem 1fr; }

  .cta-call { font-size: 1.15rem; padding: 0.95rem 1.2rem; }

  .section { padding: 2.4rem var(--pad-x); }
}
