/* =========================================================================
   Greenwood Auto Centre — Sign-painter / corner-shop
   ========================================================================= */

:root {
  --cream:        #f4ecd8;
  --cream-deep:   #ebe1c6;
  --cream-warm:   #f7f0dc;
  --paper:        #fbf6e7;

  --navy:         #1b2645;
  --navy-deep:    #121a30;
  --navy-soft:    #2a365a;
  --ink-mute:     #6c6a5e;
  --ink-line:     #1b2645;

  --mustard:      #e3a72f;
  --mustard-deep: #b67d12;
  --mustard-soft: #f3d896;

  --brick:        #b03826;
  --brick-deep:   #8a2917;

  --green:        #3d7a4e;

  /* Display: chunky old-shop slab. Body: warm serif. Caps: industrial sans. */
  --font-display: 'Alfa Slab One', 'Rockwell', Georgia, serif;
  --font-script:  'Yeseva One', 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', 'Source Serif Pro', Georgia, serif;
  --font-caps:    'Oswald', 'Arial Narrow', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --rule: 1.5px solid var(--navy);
  --rule-thin: 1px solid var(--navy);

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

  --max-w: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Subtle paper grain via SVG noise */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.15  0 0 0 0 0.27  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--mustard); color: var(--navy); }

/* =========================================================================
   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: var(--cream);
  border-bottom: var(--rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  border: 2px solid var(--navy);
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--mustard);
  pointer-events: none;
}
.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-word-1 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.brand-word-2 {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard-deep);
  margin-top: 4px;
}

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

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0.4rem 0.75rem 0.4rem 0.6rem;
  border: 1.5px solid var(--navy);
  border-radius: 999px;
  background: var(--cream-warm);
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(61,122,78,0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(61,122,78,0.55); }
  60%  { box-shadow: 0 0 0 8px rgba(61,122,78,0);  }
  100% { box-shadow: 0 0 0 0 rgba(61,122,78,0);    }
}
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: var(--mustard);
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.005em;
  line-height: 1;
  transition: background 160ms ease, transform 160ms ease;
  box-shadow: 3px 3px 0 0 var(--navy);
}
.nav-call:hover { background: var(--mustard-soft); transform: translate(-1px,-1px); box-shadow: 4px 4px 0 0 var(--navy); }
.nav-call:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 0 var(--navy); }

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

.hero {
  position: relative;
  min-height: clamp(580px, 88vh, 860px);
  padding: clamp(2rem, 5vw, 4rem) var(--pad-x) clamp(2.5rem, 5vw, 4.5rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: var(--rule);
}
.hero-photo {
  position: absolute;
  inset: 0;
  background: url("img/photo-01.jpg") center 38%/cover no-repeat;
  filter: contrast(1.05) saturate(0.92);
  z-index: 0;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg,
      rgba(27,38,69,0.78) 0%,
      rgba(27,38,69,0.55) 45%,
      rgba(27,38,69,0.30) 75%,
      rgba(27,38,69,0.55) 100%),
    radial-gradient(110% 80% at 20% 100%, rgba(18,26,48,0.6) 0%, rgba(18,26,48,0) 60%);
  z-index: 1;
}
.hero-frame {
  position: absolute;
  inset: clamp(0.75rem, 1.5vw, 1.2rem);
  border: 1.5px solid rgba(244,236,216,0.35);
  z-index: 2;
  pointer-events: none;
}
.hero-frame::before, .hero-frame::after {
  content: "";
  position: absolute;
  background: var(--mustard);
}
.hero-frame::before {
  top: -1px; left: -1px; width: 28px; height: 28px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.hero-frame::after {
  bottom: -1px; right: -1px; width: 28px; height: 28px;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mustard-soft);
  margin: 0 0 1.4rem;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--mustard);
}

.hero-h {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--cream);
  text-shadow: 0 2px 0 rgba(0,0,0,0.15);
}
.hero-h .underline {
  display: inline-block;
  position: relative;
  color: var(--mustard);
}
.hero-h .underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0.05em;
  height: 0.08em;
  background: var(--brick);
  z-index: -1;
}
.hero-h em {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--mustard-soft);
}

.hero-sub {
  max-width: 36rem;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  font-style: italic;
  color: rgba(244,236,216,0.92);
  margin: 0 0 2rem;
  line-height: 1.5;
}
.hero-sub strong { color: var(--cream); font-style: normal; font-weight: 600; }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.3rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, box-shadow 140ms ease;
  border: 2px solid var(--navy);
  line-height: 1;
}
.btn-primary {
  background: var(--mustard);
  color: var(--navy);
  box-shadow: 4px 4px 0 0 var(--navy);
}
.btn-primary:hover { background: var(--mustard-soft); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 0 var(--navy); }
.btn-primary:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 0 var(--navy); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
  box-shadow: 4px 4px 0 0 var(--mustard);
}
.btn-ghost:hover { background: rgba(244,236,216,0.08); transform: translate(-1px,-1px); box-shadow: 5px 5px 0 0 var(--mustard); }
.btn-ghost:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 0 var(--mustard); }

.btn-arrow {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 1.1rem;
}

.btn-xl {
  padding: 1.25rem 1.7rem;
  font-size: 1.25rem;
  box-shadow: 6px 6px 0 0 var(--navy);
}
.btn-xl:hover { box-shadow: 7px 7px 0 0 var(--navy); }
.btn-xl:active { box-shadow: 3px 3px 0 0 var(--navy); }

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

.band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  color: var(--cream);
  border-bottom: var(--rule);
}
.band-cell {
  padding: clamp(2rem, 4vw, 2.8rem) clamp(1rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-right: 1.5px solid rgba(244,236,216,0.18);
  position: relative;
}
.band-cell:last-child { border-right: 0; }
.band-cell::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 6px;
  height: 6px;
  background: var(--mustard);
  border-radius: 50%;
}
.band-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--cream);
  display: inline-flex;
  align-items: baseline;
  gap: 0.05em;
}
.band-star { color: var(--mustard); font-size: 0.6em; margin-left: 0.05em; }
.band-tail { color: var(--mustard-soft); font-size: 0.45em; font-style: italic; font-family: var(--font-script); margin-left: 0.15em; }
.band-cap {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mustard-soft);
  margin-top: 0.3rem;
}

/* =========================================================================
   THE BIG TYPOGRAPHIC MOMENT — "Marquee"
   ========================================================================= */

.marquee {
  background: var(--cream);
  padding: clamp(3rem, 6vw, 5.5rem) var(--pad-x);
  border-bottom: var(--rule);
  position: relative;
  overflow: hidden;
}
.marquee-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}

.marquee-tag {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brick);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
}
.marquee-tag::before {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--brick);
}

.marquee-h {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 9.5rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.marquee-h .l1 {
  display: block;
}
.marquee-h .l2 {
  display: block;
  color: var(--mustard);
  -webkit-text-stroke: 2px var(--navy);
  text-stroke: 2px var(--navy);
}
.marquee-h .l3 {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  font-size: 0.72em;
  color: var(--brick);
  margin-top: 0.05em;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.marquee-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1.5px solid var(--navy);
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
}
.marquee-rule span { display: inline-flex; align-items: center; gap: 0.6rem; }
.marquee-rule .dot { width: 6px; height: 6px; background: var(--mustard); border-radius: 50%; }

/* =========================================================================
   SECTIONS — common
   ========================================================================= */

.kicker {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.kicker::before {
  content: "";
  width: 24px;
  height: 1.5px;
  background: var(--brick);
}

.section-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--navy);
  text-transform: uppercase;
}
.section-h em {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--brick);
  letter-spacing: -0.005em;
}
.section-lede {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  color: var(--navy-soft);
  margin: 1.1rem 0 0;
  max-width: 36rem;
}

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

.services {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}
.services-head { max-width: 42rem; }

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: var(--rule);
  border-left: var(--rule);
  background: var(--cream-warm);
}

.svc {
  padding: clamp(1.5rem, 2.4vw, 2.2rem);
  border-right: var(--rule);
  border-bottom: var(--rule);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  background: var(--cream-warm);
  transition: background 200ms ease;
}
.svc:hover { background: var(--paper); }
.svc h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0 0 0.3rem;
  color: var(--navy);
  text-transform: uppercase;
}
.svc p {
  margin: 0;
  color: var(--navy-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}
.svc p strong { color: var(--navy); font-weight: 700; }
.svc p em { font-style: italic; color: var(--brick); }
.svc::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--mustard);
  transition: width 280ms ease;
}
.svc:hover::after { width: 100%; }

/* =========================================================================
   TEAM / PEOPLE
   ========================================================================= */

.team {
  background: var(--navy);
  color: var(--cream);
  padding: var(--pad-y) var(--pad-x);
  border-top: var(--rule);
}
.team-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.team .kicker { color: var(--mustard); }
.team .kicker::before { background: var(--mustard); }
.team .section-h { color: var(--cream); }
.team .section-h em { color: var(--mustard-soft); }

.team-photo {
  margin: 0;
  position: relative;
  border: 4px solid var(--cream);
  box-shadow: 10px 10px 0 0 var(--mustard);
}
.team-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(0.95);
}
.team-photo figcaption {
  position: absolute;
  bottom: -2.2rem;
  left: 0;
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244,236,216,0.6);
}

.pull {
  margin: 1.8rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(244,236,216,0.2);
  position: relative;
}
.pull::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 4rem;
  height: 2px;
  background: var(--mustard);
}
.pull p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1.15rem, 1.7vw, 1.35rem);
  line-height: 1.45;
  margin: 0 0 1rem;
  color: var(--cream);
}
.pull cite {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mustard-soft);
  font-style: normal;
}

.team-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.team-list li {
  font-family: var(--font-display);
  font-size: 0.98rem;
  background: rgba(244,236,216,0.08);
  border: 1px solid rgba(244,236,216,0.25);
  padding: 0.45rem 0.8rem;
  color: var(--cream);
  letter-spacing: 0.005em;
}
.team-list li::before {
  content: "★ ";
  color: var(--mustard);
  font-size: 0.85em;
}

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

.reviews {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}
.reviews-head { max-width: 44rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.review {
  background: var(--cream-warm);
  border: 2px solid var(--navy);
  padding: clamp(1.5rem, 2.4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  box-shadow: 5px 5px 0 0 var(--navy);
}
.review:nth-child(1) { grid-column: span 3; }
.review:nth-child(2) { grid-column: span 3; background: var(--mustard); }
.review:nth-child(3) { grid-column: span 2; }
.review:nth-child(4) { grid-column: span 2; }
.review:nth-child(5) { grid-column: span 2; background: var(--navy); color: var(--cream); }
.review:nth-child(5) p { color: var(--cream); }
.review:nth-child(5) .stars { color: var(--mustard); }
.review:nth-child(5) footer { color: var(--mustard-soft); }
.review:nth-child(5) footer strong { color: var(--cream); }

.stars {
  font-family: var(--font-display);
  color: var(--mustard);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  -webkit-text-stroke: 1px var(--navy);
}
.review:nth-child(2) .stars { -webkit-text-stroke: 1px var(--navy); color: var(--brick); }

.review p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--navy);
  margin: 0;
}
.review p::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 0;
  vertical-align: -0.55rem;
  color: var(--brick);
  margin-right: 0.2rem;
}
.review:nth-child(2) p::before { color: var(--navy); }
.review:nth-child(5) p::before { color: var(--mustard); }

.review footer {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: auto;
  padding-top: 0.5rem;
}
.review footer strong { color: var(--navy); font-weight: 600; }

/* =========================================================================
   STREET / location accent strip
   ========================================================================= */

.street {
  position: relative;
  border-top: var(--rule);
  border-bottom: var(--rule);
  background: var(--mustard);
  overflow: hidden;
}
.street-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
  min-height: 360px;
}
.street-copy {
  padding: clamp(2.5rem, 5vw, 4rem) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  border-right: 2px solid var(--navy);
}
.street-h {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0;
  text-transform: uppercase;
}
.street-h em {
  font-family: var(--font-script);
  font-style: italic;
  text-transform: none;
  color: var(--brick);
  font-weight: 400;
}
.street-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin: 0;
  max-width: 28rem;
}
.street-photo {
  background: url("img/photo-03.jpg") center/cover no-repeat;
  filter: contrast(1.05) saturate(0.9);
  position: relative;
}
.street-photo::after {
  content: "Sammon Ave · Toronto";
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--navy);
  padding: 0.4rem 0.7rem;
}

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

.visit {
  padding: var(--pad-y) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: clamp(2.5rem, 5vw, 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(--rule);
}
.visit-block {
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  border-right: var(--rule);
  border-bottom: var(--rule);
  background: var(--cream-warm);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.visit-hours {
  grid-column: span 2;
  background: var(--paper);
}
.visit-label {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brick);
  margin: 0;
}
.visit-value {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.2;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.visit-value.mono {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}
.visit-cta {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--cream-deep);
  font-weight: 600;
}
.visit-cta:hover { color: var(--brick-deep); }

.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1.5rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy-soft);
  padding: 0.15rem 0;
  border-bottom: 1px dotted var(--cream-deep);
}
.hours li.closed span:last-child { color: var(--brick); }
.hours li span:last-child { color: var(--green); font-weight: 600; }

.visit-map {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  border-right: var(--rule);
  border-bottom: var(--rule);
  background: var(--cream-deep);
  position: relative;
  min-height: 380px;
}
.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
  filter: sepia(0.15) saturate(0.9);
}

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

.cta-foot {
  background: var(--navy);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) var(--pad-x);
  text-align: center;
  border-top: var(--rule);
  position: relative;
  overflow: hidden;
}
.cta-foot::before, .cta-foot::after {
  content: "";
  position: absolute;
  width: 60vmin;
  height: 60vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227,167,47,0.2) 0%, rgba(227,167,47,0) 60%);
}
.cta-foot::before { top: -20vmin; left: -20vmin; }
.cta-foot::after  { bottom: -20vmin; right: -20vmin; }

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto;
}
.cta-tag {
  font-family: var(--font-caps);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mustard);
  margin: 0 0 1.4rem;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  color: var(--cream);
  text-transform: uppercase;
}
.cta-h em {
  font-family: var(--font-script);
  font-style: italic;
  text-transform: none;
  color: var(--mustard);
  font-weight: 400;
}
.cta-fine {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(244,236,216,0.65);
  margin: 1.6rem 0 0;
}

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

.foot {
  background: var(--cream-warm);
  border-top: var(--rule);
  padding: clamp(2rem, 4vw, 3rem) var(--pad-x);
}
.foot-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: end;
}
.foot-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 0.6rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.foot-brand em {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
  color: var(--brick);
}
.foot-line {
  font-family: var(--font-mono);
  font-size: 0.86rem;
  color: var(--navy-soft);
  margin: 0.2rem 0;
}
.foot-fine {
  font-family: var(--font-caps);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: right;
  margin: 0;
  line-height: 1.6;
}

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

@media (max-width: 960px) {
  .band { grid-template-columns: repeat(2, 1fr); }
  .band-cell:nth-child(1), .band-cell:nth-child(2) { border-bottom: 1.5px solid rgba(244,236,216,0.18); }
  .band-cell:nth-child(2) { border-right: 0; }

  .services-list { grid-template-columns: repeat(2, 1fr); }

  .team-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .team-photo figcaption { position: static; display: block; margin-top: 0.6rem; }

  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review:nth-child(n) { grid-column: span 1; }

  .street-inner { grid-template-columns: 1fr; }
  .street-copy { border-right: 0; border-bottom: 2px solid var(--navy); }
  .street-photo { min-height: 280px; }

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

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

  .nav { gap: 0.5rem; padding: 0.6rem var(--pad-x); }
  .brand-mark { width: 38px; height: 38px; font-size: 1.15rem; }
  .brand-word { display: none; }
  .nav-call { padding: 0.45rem 0.7rem; font-size: 0.92rem; box-shadow: 2px 2px 0 0 var(--navy); }
  .status-text { display: none; }
  .status { padding: 0.35rem 0.6rem 0.35rem 0.5rem; }

  .hero { min-height: 78vh; }
  .hero-h { font-size: 2.7rem; line-height: 0.94; }

  .marquee-h { font-size: clamp(2.4rem, 14vw, 4.2rem); }
  .marquee-rule { flex-wrap: wrap; gap: 0.5rem; font-size: 0.66rem; letter-spacing: 0.16em; }

  .band { grid-template-columns: 1fr 1fr; }
  .band-cell { padding: 1.4rem 1rem; }
  .band-cell:nth-child(3) { border-bottom: 1.5px solid rgba(244,236,216,0.18); }
  .band-num { font-size: 2.4rem; }

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

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

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

  .foot-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .foot-fine { text-align: left; }

  .btn { padding: 0.85rem 1.05rem; font-size: 0.95rem; }
  .btn-xl { padding: 1.1rem 1.4rem; font-size: 1.05rem; }
}

/* =========================================================================
   PRINT
   ========================================================================= */

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