/* ==========================================================================
   Pitt's Automotive — Design System
   Premium-trades aesthetic: cool charcoal pit + polished navy + brushed brass +
   bone cream. The "Robb Report for cars" feel — confident, engineered, honest.
   Built around the ASE Blue Seal + Community Votes Gold trophies as twin
   credibility pillars.
   ========================================================================== */

:root {
  /* Palette — cool graphite + navy + brass */
  --bg-deep: #0c1018;            /* deepest graphite */
  --bg-near: #141925;            /* warm charcoal with cool undertone */
  --surface: #1c2230;            /* elevated card surface */
  --surface-2: #232a3a;
  --surface-3: #2a3346;

  --navy: #2e5582;               /* polished navy — Pitt's polo blue */
  --navy-bright: #4178b0;
  --navy-deep: #1c3d5c;

  --ase-blue: #1f4d8c;            /* ASE Blue Seal direct reference */

  --brass: #b48a45;               /* brushed brass / tool handle warmth */
  --brass-bright: #d6a85f;
  --brass-deep: #835e26;

  --cream: #ede9df;               /* bone primary text */
  --cream-bright: #f8f5ee;
  --cream-muted: #a6a39a;
  --cream-dim: #6e6c64;
  --cream-quiet: #4a4944;

  --border: rgba(237, 233, 223, 0.10);
  --border-strong: rgba(237, 233, 223, 0.22);
  --border-brass: rgba(180, 138, 69, 0.36);
  --border-navy: rgba(65, 120, 176, 0.32);

  /* Typography */
  --f-display: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-serif:   "Cormorant Garamond", Georgia, serif;   /* used for italic emphasis */
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    "JetBrains Mono", "Courier New", monospace;

  /* Sizing */
  --container: 1240px;
  --container-prose: 720px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;

  --shadow-1: 0 1px 0 rgba(255,255,255,0.04), 0 8px 24px rgba(0,0,0,0.35);
  --shadow-2: 0 1px 0 rgba(255,255,255,0.06), 0 24px 56px rgba(0,0,0,0.5);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

a { color: var(--brass-bright); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--cream-bright); }

::selection { background: var(--navy); color: var(--cream-bright); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--brass); color: var(--bg-deep);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-weight: 700;
  transition: top .2s; z-index: 100;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.prose {
  width: min(100% - var(--gutter)*2, var(--container-prose));
  margin-inline: auto;
}

/* =======================  HEADER  ======================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 16px 0;
  transition: padding .35s var(--ease), background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
}
.site-header.scrolled {
  padding: 10px 0;
  background: rgba(12, 16, 24, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.hdr-inner {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
}

.brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.brand:hover { color: var(--cream); }
.brand-mark {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--border-brass);
  border-radius: 50%;
  color: var(--brass-bright);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  color: var(--cream-bright);
}
.brand-sub {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 5px;
}

.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: clamp(10px, 1.8vw, 26px);
  justify-content: center;
}
.primary-nav a {
  color: var(--cream-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--brass-bright);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover { color: var(--cream-bright); }
.primary-nav a:hover::after { transform: scaleX(1); }

.hdr-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px;
  border-radius: 4px;
  font-family: var(--f-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--brass);
  color: var(--bg-deep);
  border-color: var(--brass);
}
.btn-primary:hover {
  background: var(--brass-bright);
  border-color: var(--brass-bright);
  color: var(--bg-deep);
  box-shadow: 0 10px 28px -6px rgba(214, 168, 95, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--cream-bright);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--brass);
  background: rgba(180, 138, 69, 0.08);
  color: var(--cream-bright);
}
.btn-navy {
  background: var(--navy);
  color: var(--cream-bright);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-bright);
  border-color: var(--navy-bright);
  box-shadow: 0 10px 28px -6px rgba(65, 120, 176, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  appearance: none; background: transparent;
  border: 1px solid var(--border-strong);
  width: 44px; height: 44px; border-radius: 4px;
  cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var(--cream); border-radius: 1px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: rgba(12, 16, 24, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter);
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 14px 0;
  text-decoration: none;
  color: var(--cream);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a.m-call { color: var(--brass-bright); }

/* =======================  HERO  ======================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 38%;
  transform: scale(1.04);
  filter: saturate(0.88) contrast(1.08) brightness(0.55);
  animation: heroDrift 28s var(--ease) infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.03) translateX(-0.6%); }
  to   { transform: scale(1.09) translateX(0.8%); }
}
.hero-vignette {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 70% at 50% 35%, rgba(0,0,0,0) 0%, rgba(12,16,24,0.5) 60%, rgba(12,16,24,0.95) 100%),
    linear-gradient(180deg, rgba(12,16,24,0.7) 0%, rgba(12,16,24,0.35) 30%, rgba(12,16,24,0.75) 75%, rgba(12,16,24,1) 100%);
}

.hero-inner {
  width: min(100% - var(--gutter)*2, 1100px);
  margin-inline: auto;
  text-align: center;
  padding: 130px 0 80px;
}

.hero-eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 28px;
  display: inline-flex; align-items: center; gap: 14px;
}
.hero-eyebrow span.mark {
  display: inline-block; width: 32px; height: 1px; background: var(--brass-bright);
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 12vw, 188px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0;
  color: var(--cream-bright);
  text-transform: uppercase;
  text-shadow: 0 6px 40px rgba(0,0,0,0.7);
  overflow-wrap: break-word;
}
.hero-title .apostrophe { color: var(--brass-bright); font-family: var(--f-serif); font-style: italic; font-weight: 500; }
.hero-title .line-2 {
  display: block;
  font-family: var(--f-body);
  font-size: 0.22em;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: var(--cream-muted);
  margin-top: 22px;
  text-shadow: none;
}

.hero-tag {
  max-width: 760px;
  margin: 36px auto 12px;
  font-size: clamp(20px, 2.1vw, 26px);
  line-height: 1.4;
  color: var(--cream-bright);
  font-family: var(--f-serif);
  font-weight: 500;
}
.hero-tag em { font-style: italic; color: var(--brass-bright); }

.hero-sub {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--cream-muted);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 40px;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.hero-meta {
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: clamp(22px, 4vw, 56px);
  justify-content: center;
  padding: 24px clamp(28px, 4vw, 64px);
  background: rgba(12, 16, 24, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-top: 1px solid var(--border-brass);
  border-radius: 2px;
  width: fit-content;
}
.meta-item { text-align: center; }
.meta-num {
  display: block;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--brass-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.meta-lbl {
  display: block;
  font-family: var(--f-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 10px;
}

.scroll-cue {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  width: 28px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  display: grid; place-items: start center;
  padding-top: 8px;
  text-decoration: none;
}
.scroll-cue span {
  width: 2px; height: 8px; background: var(--brass);
  border-radius: 1px; display: block;
  animation: cueFall 1.8s var(--ease) infinite;
}
@keyframes cueFall {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =======================  TROPHIES BAND  ======================= */
.band-trophies {
  padding: clamp(60px, 7vw, 96px) 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-near) 100%);
  border-top: 1px solid var(--border-brass);
  border-bottom: 1px solid var(--border-brass);
}
.trophies-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.trophies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  max-width: 980px;
  margin: 0 auto;
}
.trophy-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 2px solid var(--brass);
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.trophy-card.navy { border-top-color: var(--navy-bright); }
.trophy-card .t-eyebrow {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brass-bright);
}
.trophy-card.navy .t-eyebrow { color: var(--navy-bright); }
.trophy-card h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream-bright);
  margin: 0;
}
.trophy-card h3 em { font-family: var(--f-serif); font-style: italic; color: var(--brass-bright); font-weight: 500; }
.trophy-card.navy h3 em { color: var(--navy-bright); }
.trophy-card p {
  font-size: 15px;
  color: var(--cream-muted);
  line-height: 1.6;
  margin: 0;
}
.trophy-card .t-stat {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--cream-bright);
}

/* =======================  GENERIC SECTION  ======================= */
.band { padding: clamp(90px, 10vw, 140px) 0; position: relative; }
.band-near { background: var(--bg-near); }
.band-surface { background: var(--surface); }

.band-head { max-width: 800px; margin: 0 auto clamp(48px, 6vw, 80px); text-align: center; }
.band-head .lede {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--cream-muted);
  line-height: 1.65;
  margin: 22px 0 0;
  font-family: var(--f-serif);
  font-weight: 500;
}
.band-head .lede em { font-style: italic; color: var(--brass-bright); }

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 20px;
  display: inline-flex; align-items: center; gap: 14px;
}
.eyebrow.with-mark::before {
  content: ""; display: inline-block;
  width: 28px; height: 1px;
  background: var(--brass-bright);
}
.eyebrow.navy { color: var(--navy-bright); }
.eyebrow.navy.with-mark::before { background: var(--navy-bright); }

.display {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--cream-bright);
  margin: 0 0 14px;
}
.display em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-bright);
  letter-spacing: -0.005em;
}
.display-xl {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--cream-bright);
  margin: 0 0 14px;
  text-transform: uppercase;
}
.display-xl em {
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-bright);
  text-transform: none;
}

.lede { color: var(--cream-muted); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Figures */
.fig {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
  aspect-ratio: 3/4;
  background: var(--surface);
}
.fig.fig-wide { aspect-ratio: 16/10; }
.fig.fig-square { aspect-ratio: 1/1; }
.fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.fig:hover img { transform: scale(1.03); }
.fig figcaption {
  position: absolute; left: 14px; bottom: 12px;
  font-family: var(--f-body);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-bright);
  background: rgba(12,16,24,0.7);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
}

/* =======================  PROMISES (4 pillars)  ======================= */
.band-promises {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(46,85,130,0.08) 0%, transparent 70%),
    var(--bg-deep);
}
.promises-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.promise {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: border-left-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.promise:hover {
  border-left-color: var(--brass-bright);
  background: var(--surface-2);
  transform: translateY(-2px);
}
.promise .p-num {
  display: inline-block;
  font-family: var(--f-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  color: var(--brass);
  margin-bottom: 14px;
}
.promise h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--cream-bright);
  margin: 0 0 12px;
}
.promise h3 em { font-family: var(--f-serif); font-style: italic; font-weight: 500; color: var(--brass-bright); letter-spacing: 0; }
.promise p {
  color: var(--cream-muted);
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0;
}

/* =======================  FOUNDERS  ======================= */
.band-founders { background: var(--bg-near); }
.founders-copy p {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 18px;
}
.founders-copy p:first-of-type { font-size: 18.5px; color: var(--cream-bright); }
.founders-copy strong { color: var(--cream-bright); font-weight: 600; }
.founders-quote {
  margin: 32px 0 0;
  padding: 22px 26px;
  border-left: 2px solid var(--brass);
  background: var(--surface);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--cream-bright);
}
.founders-quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

/* =======================  SPECIALTY (cinematic split)  ======================= */
.band-specialty {
  position: relative;
  isolation: isolate;
  padding: clamp(110px, 12vw, 180px) 0;
  overflow: hidden;
}
.specialty-bg { position: absolute; inset: 0; z-index: -2; }
.specialty-bg img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05) brightness(0.55); }
.specialty-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(12,16,24,0.95) 0%, rgba(12,16,24,0.5) 55%, rgba(12,16,24,0.15) 100%),
    radial-gradient(70% 60% at 25% 50%, rgba(46,85,130,0.20) 0%, transparent 70%);
}
.specialty-card {
  max-width: 640px;
  background: rgba(20, 26, 38, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--border-navy);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 60px);
}
.specialty-card p {
  color: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  margin: 16px 0 0;
}
.specialty-card p:first-of-type { font-family: var(--f-serif); font-size: 23px; line-height: 1.45; color: var(--cream-bright); font-weight: 500; }
.specialty-marks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.specialty-marks span {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-bright);
  background: rgba(46, 85, 130, 0.18);
  border: 1px solid var(--border-navy);
  padding: 6px 14px;
  border-radius: 999px;
}

/* =======================  SERVICES  ======================= */
.band-services {
  background:
    radial-gradient(50% 40% at 90% 50%, rgba(180,138,69,0.06) 0%, transparent 60%),
    var(--bg-deep);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 26px;
  transition: border-color .35s var(--ease), transform .25s var(--ease);
}
.service:hover {
  border-color: var(--border-brass);
  transform: translateY(-2px);
}
.service h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--cream-bright);
  margin: 0 0 8px;
}
.service h4 em { font-family: var(--f-serif); font-style: italic; font-weight: 500; color: var(--brass-bright); letter-spacing: 0; }
.service p {
  color: var(--cream-muted);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}

.amenities-strip {
  margin-top: clamp(48px, 6vw, 72px);
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-muted);
  font-weight: 600;
  max-width: 980px;
  margin-inline: auto;
}
.amenities-strip strong { color: var(--brass-bright); font-weight: 700; }
.amenities-strip span.sep { color: var(--cream-quiet); }

/* =======================  TEAM  ======================= */
.band-team { background: var(--bg-near); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(20px, 3vw, 36px);
  max-width: 1100px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-card .t-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 18px;
}
.team-card .t-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card .t-img.placeholder {
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}
.team-card .t-img.placeholder span {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 56px;
  color: var(--brass);
  letter-spacing: -0.04em;
}
.team-card h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--cream-bright);
  margin: 0 0 4px;
}
.team-card .t-role {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}

/* =======================  WARRANTY  ======================= */
.band-warranty {
  background: var(--bg-deep);
}
.warranty-card {
  max-width: 920px;
  margin: 0 auto;
  background:
    linear-gradient(135deg, rgba(46,85,130,0.12) 0%, rgba(180,138,69,0.06) 100%),
    var(--surface);
  border: 1px solid var(--border-brass);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 64px);
  text-align: center;
}
.warranty-card .display-xl { margin-bottom: 16px; }
.warranty-card .lede { font-size: clamp(17px, 1.5vw, 19px); color: var(--cream); max-width: 640px; margin: 0 auto 36px; }
.warranty-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.warranty-row {
  background: rgba(12,16,24,0.4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 22px 24px;
  text-align: left;
}
.warranty-row .w-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--brass-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.warranty-row .w-lbl {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin: 8px 0 6px;
}
.warranty-row p { margin: 0; color: var(--cream); font-size: 14.5px; line-height: 1.55; }
.warranty-fineprint {
  font-size: 13px;
  color: var(--cream-dim);
  font-style: italic;
  margin: 0;
}

/* =======================  REVIEWS BAR  ======================= */
.band-reviews {
  background: var(--surface);
  padding: clamp(64px, 7vw, 100px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews-row {
  display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 60px);
  justify-content: center;
  align-items: center;
}
.review-stat { text-align: center; }
.review-stat .rs-num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--brass-bright);
  line-height: 1;
  letter-spacing: -0.02em;
}
.review-stat .rs-lbl {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-top: 10px;
}
.review-themes {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--cream-bright);
  max-width: 540px;
  text-align: center;
  line-height: 1.5;
}
.review-themes::before, .review-themes::after { content: '"'; color: var(--brass); font-size: 1.2em; }

/* =======================  VISIT  ======================= */
.band-visit { background: var(--bg-near); }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.visit-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brass);
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 44px);
}
.visit-info h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.015em;
  color: var(--cream-bright);
  margin: 0 0 6px;
}
.visit-info h3 em { font-family: var(--f-serif); font-style: italic; font-weight: 500; color: var(--brass-bright); letter-spacing: 0; }
.visit-info .v-addr {
  color: var(--cream);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.visit-info .v-phone {
  display: block;
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream-bright);
  margin-bottom: 6px;
  text-decoration: none;
}
.visit-info .v-phone:hover { color: var(--brass-bright); }
.visit-info .v-meta {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 24px;
}

.hours-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.hours-table th, .hours-table td {
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  text-align: left;
  font-size: 15px;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: 0; }
.hours-table th { color: var(--cream-muted); font-weight: 500; }
.hours-table td { color: var(--cream); text-align: right; font-feature-settings: "tnum"; }
.hours-table .closed { color: var(--cream-dim); font-style: italic; }
.hours-status {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--brass-bright);
  font-style: italic;
  font-family: var(--f-serif);
}

.visit-map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  filter: grayscale(50%) contrast(0.95) saturate(0.85);
  transition: filter .35s var(--ease);
}
.visit-map:hover { filter: none; }
.visit-map iframe { width: 100%; height: 100%; border: 0; }

/* =======================  CLOSER (final pitch)  ======================= */
.band-closer {
  background: var(--bg-deep);
  padding: clamp(80px, 9vw, 130px) 0;
  text-align: center;
}
.closer-display {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--cream-bright);
  max-width: 880px;
  margin: 0 auto 24px;
}
.closer-display em { font-family: var(--f-serif); font-style: italic; font-weight: 500; color: var(--brass-bright); letter-spacing: -0.005em; }
.closer-sub {
  color: var(--cream-muted);
  font-size: clamp(17px, 1.6vw, 20px);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* =======================  REVEAL  ======================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =======================  FOOTER  ======================= */
.site-footer {
  background: #060a12;
  border-top: 2px solid var(--brass);
  padding: 80px 0 24px;
}
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}
.ft-brand .brand-mark { width: 56px; height: 56px; font-size: 26px; }
.ft-brand h4 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 16px 0 12px;
  color: var(--cream-bright);
}
.ft-brand p {
  color: var(--cream-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0;
}
.ft-col h5 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 18px;
}
.ft-col p, .ft-col a {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.015em;
  color: var(--cream-muted);
  text-decoration: none;
  line-height: 1.5;
  margin: 0 0 8px;
  display: block;
}
.ft-col a:hover { color: var(--brass-bright); }
.ft-col p.small {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--cream-dim);
  margin-top: 6px;
}

.ft-base {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.ft-base p {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--cream-quiet);
  margin: 0;
}
.ft-credit a { color: var(--brass); }

/* =======================  RESPONSIVE  ======================= */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hdr-cta .btn { display: none; }
  .hdr-inner { grid-template-columns: auto 1fr auto; }
  .hero-meta { grid-template-columns: repeat(2, auto); gap: 22px 40px; }
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .trophies-grid { grid-template-columns: 1fr; }
  .warranty-rows { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .reviews-row { flex-direction: column; }
  .brand-name { font-size: 18px; }
  .brand-sub { font-size: 9px; }
  .scroll-cue { display: none; }
  .ft-base { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { padding: 12px 20px; font-size: 12px; }
  .hero-meta { padding: 18px 24px; }
  .meta-num { font-size: 28px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
