/* Independent Auto Werks: 55-year independent bay */
:root {
  --bg: #0C1412;
  --text: #EAF0EA;
  --muted: #9AA89A;
  --line: #2A3830;
  --cta: #E24A12;
  --cta-hover: #C43D0E;
  --paper: #EAF0EA;
  --ink: #0C1412;
  --head: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Karla", Helvetica, Arial, sans-serif;
  --bar: 5px;
  --max: 1040px;
  --radius: 2px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

:focus { outline: none; }

:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}

.btn:focus-visible { outline-color: var(--text); }

.ticket :focus-visible { outline-color: var(--cta); }

h1, h2, h3 {
  font-family: var(--head);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.skip {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 200;
  background: var(--cta);
  color: var(--text);
  padding: 10px 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
}
.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

/* One burnt-orange bar */
.site-bar {
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-bar::before {
  content: "";
  display: block;
  height: var(--bar);
  background: var(--cta);
}

.site-header {
  background: rgba(12, 20, 18, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header-row {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
  padding: 10px 0;
}

.brand {
  text-decoration: none;
  color: var(--text);
  min-width: 0;
  display: grid;
  gap: 0;
}

.brand-kicker {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.brand-name {
  font-family: var(--head);
  font-size: 1.15rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: var(--text);
  text-decoration: none;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  padding: 0.7rem 0.9rem;
  border: 0;
  border-radius: var(--radius);
  white-space: nowrap;
}

.btn:hover { background: var(--cta-hover); }

.btn-lg {
  font-size: 1.05rem;
  padding: 0.95rem 1.2rem;
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 0 0 12px;
  font-size: 0.92rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover { color: var(--text); }

.nav a[aria-current="page"] {
  color: var(--text);
  box-shadow: inset 0 -2px 0 var(--cta);
}

/* Hero */
.hero {
  position: relative;
  padding: 2.75rem 0 3.1rem;
  overflow: hidden;
}

.hero-year {
  position: absolute;
  right: -4vw;
  top: 0.4rem;
  font-family: var(--head);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(6rem, 28vw, 14rem);
  line-height: 0.8;
  color: var(--text);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.75rem;
}

.ticket .kicker { color: #4a5c50; }

.kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.15rem, 9.2vw, 4.4rem);
  font-weight: 600;
  max-width: 16ch;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.lede {
  max-width: 34rem;
  color: var(--muted);
}

.lede strong { color: var(--text); font-weight: 600; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.hero-note {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Paper ticket */
.ticket {
  background: var(--paper);
  color: var(--ink);
  padding: 1.2rem 1.2rem 1.3rem;
  border-radius: var(--radius);
  display: grid;
  gap: 0.85rem;
}

.ticket-edge {
  background:
    linear-gradient(90deg, var(--paper) 0 10px, transparent 10px) 0 0 / 16px 8px repeat-x,
    var(--paper);
  padding-top: 14px;
}

.ticket h2,
.ticket h3 {
  color: var(--ink);
  font-size: 1.35rem;
}

.ticket p,
.ticket li,
.ticket dd { color: #24332b; }

.ticket .muted,
.ticket .ticket-src { color: #4a5c50; }

.ticket a { color: var(--ink); }

.ticket .btn { color: var(--text); }

.ticket dl {
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.ticket dt {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #4a5c50;
}

.ticket dd {
  margin: 0.15rem 0 0;
  font-family: var(--head);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ticket-phone {
  font-family: var(--head);
  font-size: clamp(1.6rem, 6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
}

/* Sections */
section { padding: 3rem 0; }

.sec-head {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.6rem;
  max-width: 38rem;
}

.sec-head h2 {
  font-size: clamp(1.85rem, 5.4vw, 2.85rem);
}

.sec-head p { color: var(--muted); }

.split {
  border-top: 1px solid var(--line);
}

/* Makes as type, not cards */
.make {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}

.make:first-of-type { border-top: 1px solid var(--line); }

.make-num {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cta);
  font-weight: 600;
}

.make h3 {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
}

.make p { color: var(--muted); max-width: 36rem; }

/* Proof */
.proof { background: #0a110f; }

.stats {
  display: grid;
  gap: 1.1rem;
}

.stat {
  padding-bottom: 1.05rem;
  border-bottom: 1px solid #c5d0c5;
}

.stat:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stat-num {
  font-family: var(--head);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.stat p { margin-top: 0.4rem; }

.fine {
  font-size: 0.88rem;
  color: #4a5c50;
}

/* FAQ */
.faq-list { display: grid; gap: 0; }

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:first-child { border-top: 1px solid var(--line); }

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.6rem 1.05rem 0;
  font-family: var(--head);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  position: relative;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  color: var(--cta);
  font-family: var(--body);
  font-weight: 700;
}

.faq-list details[open] summary::after { content: "-"; }

.faq-list .answer {
  padding: 0 0 1.15rem;
  color: var(--muted);
  max-width: 38rem;
}

/* Band / close */
.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-inner {
  display: grid;
  gap: 1.1rem;
}

.page-hero {
  padding: 2.4rem 0 2.2rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2rem, 8vw, 3.6rem);
  max-width: 16ch;
}

.page-hero p {
  margin-top: 0.8rem;
  color: var(--muted);
  max-width: 36rem;
}

.stack { display: grid; gap: 1rem; }

.stack p { color: var(--muted); max-width: 40rem; }

.stack strong { color: var(--text); font-weight: 600; }

.hours-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.hours-note strong { color: var(--text); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.2rem 0 2.6rem;
}

.foot-grid {
  display: grid;
  gap: 1.4rem;
}

.foot-name {
  font-family: var(--head);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 600;
}

.site-footer p,
.site-footer a { color: var(--muted); }

.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--text); }

.foot-phone {
  color: var(--text) !important;
  font-family: var(--head);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

@media (min-width: 760px) {
  .wrap,
  .header-row,
  .nav { width: min(var(--max), calc(100% - 48px)); }

  .header-row { min-height: 70px; }

  .brand-name { font-size: 1.35rem; }

  .nav { gap: 22px; padding-bottom: 14px; }

  .hero { padding: 3.6rem 0 4rem; }

  .hero-grid.with-ticket {
    grid-template-columns: 1.25fr 0.85fr;
    gap: 3rem;
    align-items: end;
  }

  .stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.6rem;
  }

  .stat {
    padding: 0 1.1rem 0 0;
    border-bottom: 0;
    border-right: 1px solid #c5d0c5;
  }

  .stat:last-child {
    padding-right: 0;
    border-right: 0;
  }

  .band-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .foot-grid {
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 2rem;
    align-items: start;
  }

  .page-hero { padding: 3.2rem 0 2.6rem; }

  .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: start;
  }
}

@media (min-width: 980px) {
  .make {
    grid-template-columns: 5.5rem 1fr 1.4fr;
    align-items: baseline;
    gap: 1rem;
    padding: 1.55rem 0;
  }

  .make p { margin: 0; }
}

.more-link {
  margin-top: 1.3rem;
}
.more-link a { color: var(--text); }

.band-inner .lede { margin-top: 0.5rem; }
