/* components.css — reusable UI components */

/* ─── Brand Ampersand ─────────────────────────────────────── */

.brand-amp {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-weight: 400;
  color: var(--oxblood);
  /* Pin the optical-size cut so the ampersand renders the same clean
     upright glyph as the nav logo at every size, instead of swapping
     to Fraunces' display-size swash alternate. */
  font-variation-settings: "opsz" 18;
}

.hero .brand-amp,
.site-footer .brand-amp,
.site-nav .brand-amp,
.section.on-dark .brand-amp,
.dark-surface .brand-amp {
  color: var(--warm);
}

/* ─── Year Mark ───────────────────────────────────────────── */

.year-mark {
  font-family: 'Fraunces', serif;
  display: inline-flex;
  align-items: center;
  gap: 0.32em;
  line-height: 1;
}

.year-mark .num {
  font-weight: 400;
  letter-spacing: -0.02em;
}

.year-mark .connector {
  font-style: italic;
  font-weight: 300;
  font-size: 0.5em;
  letter-spacing: 0.06em;
  color: var(--oxblood);
  transform: translateY(-0.06em);
}

.year-mark.on-dark .connector {
  color: var(--warm);
}

/* ─── Kicker ──────────────────────────────────────────────── */

.kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-dim);
}

.hero .kicker,
.dark-surface .kicker {
  color: var(--text-on-dark-dim);
}

/* ─── Button ──────────────────────────────────────────────── */

.btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn:hover {
  background: var(--oxblood);
  color: var(--cream);
  border-color: var(--oxblood);
}

.btn.on-dark {
  color: var(--cream);
}

.btn.on-dark:hover {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink-dark);
}

/* Arrow span inside any .btn — nudges right on hover. */
.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn.solid {
  background: var(--oxblood);
  color: var(--cream);
  border-color: var(--oxblood);
}

.btn.on-dark.solid {
  background: var(--oxblood);
  color: var(--cream);
  border-color: var(--oxblood);
}

.btn.on-dark.solid:hover {
  background: var(--cream);
  color: var(--ink-dark);
  border-color: var(--cream);
}

/* ─── Site Nav ────────────────────────────────────────────── */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  background: var(--ink-dark);
  border-bottom: 1px solid var(--rule-dark);
}

.site-nav .nav-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  text-decoration: none;
  flex-shrink: 0;
}

.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.site-nav .nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-nav .nav-links a:hover {
  color: var(--text-on-dark);
}

/* Active page indicator — subtle copper underline */
.site-nav .nav-links a[aria-current="page"] {
  color: var(--text-on-dark);
  position: relative;
}
.site-nav .nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1.5px;
  background: var(--warm);
}
.site-nav .nav-links .nav-cta a[aria-current="page"]::after {
  display: none;
}
.site-nav .nav-links .nav-cta a[aria-current="page"] {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink-dark);
}
.site-nav .nav-cta-mobile[aria-current="page"] {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink-dark);
}
.site-nav .nav-drawer a[aria-current="page"] {
  color: var(--warm);
}

.site-nav .nav-links .nav-cta a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid rgba(247, 243, 236, 0.40);
  color: var(--text-on-dark);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-nav .nav-links .nav-cta a:hover {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink-dark);
}

/* Persistent mobile CTA (hidden on desktop, always visible on mobile) */
.site-nav .nav-cta-mobile {
  display: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(247, 243, 236, 0.40);
  color: var(--text-on-dark);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-nav .nav-cta-mobile:hover {
  background: var(--warm);
  border-color: var(--warm);
  color: var(--ink-dark);
}

@media (max-width: 760px) {
  .site-nav .nav-cta-mobile {
    display: inline-block;
  }
}

/* Hamburger button */
.site-nav .nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.site-nav .nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-on-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile drawer */
.site-nav .nav-drawer {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--ink-dark);
  border-bottom: 1px solid var(--rule-dark);
  padding: 24px 24px 32px;
  flex-direction: column;
  gap: 0;
}

.site-nav .nav-drawer.is-open {
  display: flex;
}

.site-nav .nav-drawer li {
  border-bottom: 1px solid var(--rule-dark);
}

.site-nav .nav-drawer a {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-on-dark-soft);
  text-decoration: none;
  display: block;
  padding: 16px 0;
  transition: color 0.15s ease;
}

.site-nav .nav-drawer a:hover {
  color: var(--text-on-dark);
}

.site-nav .nav-drawer .nav-cta a {
  color: var(--warm);
  letter-spacing: 0.1em;
}

/* Hamburger open state */
.site-nav.nav-open .nav-hamburger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-nav.nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
.site-nav.nav-open .nav-hamburger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 760px) {
  .site-nav {
    padding: 0 20px;
    gap: 12px;
  }
  .site-nav .nav-links {
    display: none;
  }
  .site-nav .nav-hamburger {
    display: flex;
  }
}

/* Push body down so fixed nav doesn't overlap content on interior pages */
body {
  padding-top: 64px;
}

/* Home page — nav lives inside the hero, no top padding needed */
body.page-home {
  padding-top: 0;
}

/* ─── Site Footer ─────────────────────────────────────────── */

.site-footer {
  background: var(--ink-dark);
  color: var(--text-on-dark-soft);
  padding: 72px 40px 0;
  margin-top: auto;
}

.site-footer .footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule-dark);
}

/* Col 1 — Brand */
.site-footer .footer-brand .footer-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  display: block;
  margin-bottom: 10px;
}

.site-footer .footer-brand .footer-year-mark {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--text-on-dark-soft);
}

.site-footer .footer-brand .footer-byline {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-on-dark-dim);
}

/* Col 2 — Links */
.site-footer .footer-links h4,
.site-footer .footer-lineage h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin-bottom: 20px;
}

.site-footer .footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.site-footer .footer-links ul a,
.site-footer .footer-links .footer-email {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-on-dark-soft);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer .footer-links ul a:hover,
.site-footer .footer-links .footer-email:hover {
  color: var(--text-on-dark);
}

.site-footer .footer-links .footer-email {
  display: block;
  border-top: 1px solid var(--rule-dark);
  padding-top: 16px;
  margin-top: 4px;
}

/* Col 3 — Lineage (italic Fraunces, single line per spec) */
.site-footer .footer-lineage p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-on-dark-soft);
  line-height: 1.6;
  max-width: none;
}

.site-footer .footer-lineage a {
  color: var(--text-on-dark-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.site-footer .footer-lineage a:hover {
  color: var(--text-on-dark);
}

/* Bottom strip — two columns left/right */
.site-footer .footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.site-footer .footer-bottom p {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  max-width: none;
  margin: 0;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 56px 20px 0;
  }
  .site-footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ─── Section Block ───────────────────────────────────────── */

.section {
  padding: 80px 24px;
}

.section.block {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.section.block .kicker {
  display: block;
  margin-bottom: 16px;
}

.section.block h2 {
  margin-bottom: 20px;
}

.section.block .lede {
  margin-bottom: 24px;
}

@media (max-width: 760px) {
  .section {
    padding: 56px 20px;
  }
  .section.block {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ─── Hero ────────────────────────────────────────────────── */

.hero {
  position: relative;
  background: var(--ink-dark);
  color: var(--text-on-dark);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero .constellation {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 78% 18%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 32% 76%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 88% 64%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 52% 8%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 22% 92%, #fff 1px, transparent 1.5px);
}

.hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(19, 20, 38, 0.48) 0%,
    rgba(19, 20, 38, 0.62) 60%,
    rgba(19, 20, 38, 0.80) 100%
  );
}

.hero .hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 0 0 0;
  max-width: none;
  width: 100%;
  margin: 0;
}

/* Nav inside hero — override fixed/opaque default for home page */
.hero .site-nav {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  background: transparent;
  border-bottom: 1px solid rgba(247, 243, 236, 0.12);
  padding: 0 40px;
  max-width: none;
  width: 100%;
}

@media (max-width: 760px) {
  .hero .site-nav {
    padding: 0 20px;
  }
}

/* Mobile drawer inside hero — full width from top of drawer */
.hero .nav-drawer {
  top: 64px;
}

/* Hero content block — anchored lower-left of hero */
.hero .hero-content {
  width: 100%;
  padding: 40px 40px 72px 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero .hero-content .hero-wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(22px, 2.8vw, 36px);
  line-height: 1;
  letter-spacing: -0.005em;
  color: var(--text-on-dark);
  margin: 0 0 20px;
}

.hero .hero-content h1 {
  color: var(--text-on-dark);
  max-width: 16ch;
  margin-bottom: 28px;
}

.hero .hero-content .hero-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--text-on-dark-soft);
  max-width: 38ch;
  margin: clamp(20px, 3vh, 32px) 0 clamp(28px, 4vh, 48px) 0;
}

@media (max-width: 760px) {
  .hero .hero-content {
    padding: 24px 24px 52px 24px;
  }
}

@media (max-width: 560px) {
  .hero .hero-content .hero-tagline br {
    display: none;
  }
}

/* ─── Hero era rotation mark (bold "66 / 99" decal, bottom-right of hero) */

/* Hero era rotation mark — bold "66 / 99" decal in the lower-right corner.
   Solid cream "66" on top, outline "66" rotated 180° (reads as "99") below.
   Pure design element — no interaction, no motion. */
.hero-era-mark {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(120px, 12vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.04em;
}

.hero-era-mark .glyphs {
  display: block;
}

.hero-era-mark .glyphs.solid {
  color: var(--text-on-dark);
}

/* Outline layer for the lower year ('99). Fallback uses a semi-opaque
   warm fill so the glyph stays visible in browsers that don't support
   text-stroke; the @supports block upgrades to a true stroke-only
   outline where available. */
.hero-era-mark .glyphs.outline {
  color: rgba(197, 123, 60, 0.55);
}

@supports (-webkit-text-stroke: 1px currentColor) {
  .hero-era-mark .glyphs.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--warm);
  }
}

@media (max-width: 760px) {
  .hero-era-mark {
    right: 20px;
    bottom: 20px;
    font-size: 72px;
  }
  .hero-era-mark .glyphs.outline {
    -webkit-text-stroke-width: 1.5px;
  }
}

/* ─── About Hero (image variant) ──────────────────────────── */

.hero.hero-about {
  min-height: 76svh;
}

.hero.hero-about .hero-inner {
  justify-content: flex-end;
  padding: 40px 40px 80px 96px;
  max-width: 1080px;
}

.hero.hero-about .kicker {
  color: var(--text-on-dark-dim);
  margin-bottom: 16px;
}

.hero.hero-about h1 {
  color: var(--text-on-dark);
  max-width: 18ch;
  margin-bottom: 0;
}

.hero.hero-about h1 em {
  font-style: italic;
  color: var(--warm);
  font-weight: 300;
}

@media (max-width: 760px) {
  .hero.hero-about {
    min-height: 64svh;
  }
  .hero.hero-about .hero-inner {
    padding: 24px 20px 40px;
  }
}

/* ─── Process Hero (image variant) ────────────────────────────
   Same image-over-veil recipe as .hero.hero-about, but accommodates
   a longer two-sentence H1 plus a lede paragraph and dual anchor
   CTAs. Slightly taller min-height to give the stacked content room
   without crowding the image bottom. */

.hero.hero-process {
  min-height: 86svh;
}

/* Stronger veil for the process hero — the Barracuda photo has a bright
   silver hood/body that washes out the kicker against the default veil.
   Darken the lower 60% more aggressively so all text sits cleanly. */
.hero.hero-process .veil {
  background: linear-gradient(
    to bottom,
    rgba(19, 20, 38, 0.42) 0%,
    rgba(19, 20, 38, 0.78) 55%,
    rgba(19, 20, 38, 0.92) 100%
  );
}

.hero.hero-process .hero-inner {
  justify-content: flex-end;
  padding: 40px 40px 80px 96px;
  max-width: 1100px;
}

.hero.hero-process .kicker {
  color: var(--text-on-dark);
  margin-bottom: 16px;
}

.hero.hero-process h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  max-width: 22ch;
  margin: 0 0 28px;
}

.hero.hero-process h1 em {
  font-style: italic;
  color: var(--warm);
  font-weight: 300;
}

@media (max-width: 760px) {
  .hero.hero-process {
    min-height: 72svh;
  }
  .hero.hero-process .hero-inner {
    padding: 24px 20px 40px;
  }
}

/* ─── Story (long-form readable typography) ───────────────── */

.section.story {
  padding-top: 88px;
  padding-bottom: 32px;
}

.story-body {
  max-width: 720px;
  margin: 0 auto;
}

.story-body p {
  max-width: 66ch;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 24px;
}

.story-body p:last-child {
  margin-bottom: 0;
}

.story-body .story-close {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}

.story-body .story-close em {
  font-style: italic;
}

.story-body .story-close strong {
  font-style: italic;
  font-weight: 500;
  color: var(--oxblood);
}

@media (max-width: 760px) {
  .section.story {
    padding-top: 56px;
    padding-bottom: 24px;
  }
  .story-body p {
    font-size: 16px;
  }
  .story-body .story-close {
    font-size: 19px;
    padding-top: 24px;
    margin-top: 28px;
  }
}

/* ─── Past Cars Timeline (typographic) ────────────────────── */

.section.past-cars {
  padding-top: 24px;
  padding-bottom: 56px;
}

.section.past-cars h2 {
  margin-bottom: 12px;
  max-width: 22ch;
}

.section.past-cars h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--oxblood);
}

.section.past-cars .lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0 0 48px;
  max-width: 56ch;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: grid;
  gap: 28px;
}

/* Vertical spine — sits between the year column and body column */
.timeline::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 110px;
  width: 1px;
  background: var(--rule);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 110px 96px 1fr;
  align-items: start;
  column-gap: 28px;
  padding-left: 0;
}

/* Dot on the spine */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 105px;
  top: 14px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--cream, #f7f3ec);
  border: 1.5px solid var(--oxblood);
  z-index: 1;
}

.timeline-year {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: right;
  padding-right: 4px;
  align-self: start;
  padding-top: 2px;
}

/* Small accent thumbnail — sits between the spine and body */
.timeline-thumb {
  width: 96px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-dark, #1a1a1a);
  margin-top: 2px;
  filter: saturate(0.85);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.timeline-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.timeline-body {
  min-width: 0;
  padding-top: 2px;
}

.timeline-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 6px;
}

.timeline-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
  max-width: 56ch;
}

.timeline-coda {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--text-soft);
  margin: 36px 0 0;
  padding-left: 270px;
}

/* Tablet — drop the thumbnail column, keep year + body */
@media (max-width: 820px) {
  .timeline-item {
    grid-template-columns: 110px 1fr;
    column-gap: 36px;
  }
  .timeline-thumb {
    display: none;
  }
  .timeline-coda {
    padding-left: 146px;
  }
}

@media (max-width: 600px) {
  .section.past-cars {
    padding-top: 16px;
    padding-bottom: 40px;
  }
  .section.past-cars .lede {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .timeline {
    gap: 24px;
  }
  .timeline::before {
    left: 7px;
    top: 8px;
    bottom: 8px;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 4px;
    padding-left: 32px;
  }
  .timeline-item::before {
    left: 2px;
    top: 6px;
    width: 9px;
    height: 9px;
  }
  .timeline-year {
    font-size: 22px;
    text-align: left;
    padding-right: 0;
    color: var(--oxblood);
    margin-bottom: 2px;
  }
  .timeline-title {
    font-size: 18px;
  }
  .timeline-note {
    font-size: 14.5px;
  }
  .timeline-coda {
    padding-left: 32px;
    font-size: 16px;
    margin-top: 28px;
  }
}

/* ─── Currently Driving (4-card 2x2 grid) ─────────────────── */

.section.currently-driving {
  padding-top: 56px;
  padding-bottom: 96px;
}

.section.currently-driving h2 {
  margin-bottom: 40px;
  max-width: 24ch;
}

.car-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 36px;
}

.car-card {
  display: flex;
  flex-direction: column;
}

.car-card-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-dark);
  margin-bottom: 16px;
}

.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.car-card:hover .car-card-image img {
  transform: scale(1.03);
}

.car-card .for-sale {
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--warm);
  margin: 0 0 4px;
}

.car-card .car-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 6px;
}

.car-card .car-caption {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
  font-style: italic;
}

@media (max-width: 600px) {
  .section.currently-driving {
    padding-bottom: 64px;
  }
  .car-cards {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .section.currently-driving h2 {
    margin-bottom: 28px;
  }
}

/* ─── Section · on-dark modifier ──────────────────────────── */

.section.on-dark {
  position: relative;
  background: var(--ink-dark);
  color: var(--text-on-dark);
  overflow: hidden;
}

.section.on-dark .constellation {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 22%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 78% 18%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 32% 76%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 88% 64%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 52% 8%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 22% 92%, #fff 1px, transparent 1.5px);
}

/* ─── Final CTA (composes .section.on-dark) ───────────────── */

.section.final-cta {
  padding: 96px 40px;
}

/* ─── What We Do Card Grid ────────────────────────────────── */

.what-we-do h2 {
  margin-bottom: 18px;
}

.what-we-do .lede {
  margin-bottom: 40px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  border-top: 2px solid var(--oxblood);
  padding-top: 24px;
}

.service-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card .card-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--oxblood);
  margin-bottom: 14px;
  transition: color 0.15s ease;
}

.service-card a:hover .card-num {
  color: var(--warm);
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--text);
  margin-bottom: 14px;
  transition: color 0.15s ease;
}

.service-card a:hover h3 {
  color: var(--oxblood);
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: none;
}

/* Prominent CTA anchoring the section — gives anyone who scans the
   four cards one obvious next move. */
.what-we-do-cta {
  margin-top: 56px;
  text-align: center;
}

/* ─── Final CTA Section (standalone dark surface) ─────────── */

.final-cta {
  position: relative;
  background: var(--ink-dark);
  overflow: hidden;
}

.final-cta .constellation {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 30%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 72% 14%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 44% 80%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 91% 55%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 28% 60%, #fff 1px, transparent 1.5px),
    radial-gradient(circle at 60% 92%, #fff 1px, transparent 1.5px);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  padding: 80px 40px;
}

.final-cta-line {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--text-on-dark);
  margin: 0;
  max-width: 20ch;
}

.final-cta-line em {
  font-style: italic;
  color: var(--warm);
}

.final-cta-lead {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.2;
  color: var(--text-on-dark);
  max-width: 32ch;
  margin: 0 auto 40px;
}

@media (max-width: 760px) {
  .section.final-cta {
    padding: 64px 20px;
  }
  .final-cta-inner {
    gap: 24px;
    padding: 64px 20px;
  }
}

/* Descriptive hero lede — non-italic Fraunces 300, sits under H1 on
   dark hero surfaces. Used on the process page hero. */
.hero-lede {
  font-family: 'Fraunces', serif;
  font-style: normal;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--text-on-dark-soft);
  max-width: 58ch;
  margin: 0 0 36px;
}

/* Anchor-nav row inside the process hero — two side-by-side buttons
   that smooth-scroll to #buying / #selling. Stacks at narrow widths. */
.hero-anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 560px) {
  .hero-anchor-nav {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-anchor-nav .btn {
    text-align: center;
  }
}

/* ─── Process Arc · .timeline-v (vertical timeline) ───────── */

.section.process-arc {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section.process-arc .kicker {
  display: block;
  margin-bottom: 16px;
}

.section.process-arc h2 {
  margin-bottom: 56px;
  max-width: 22ch;
}

.section.process-arc h2 em {
  font-style: italic;
  color: var(--oxblood);
  font-weight: 300;
}

.timeline-v {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0;
  max-width: 760px;
}

.timeline-v::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--rule);
  z-index: 0;
}

.timeline-v .timeline-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding-bottom: 56px;
}

.timeline-v .timeline-step:last-child {
  padding-bottom: 0;
}

.timeline-v .step-circle {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--oxblood);
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.timeline-v .step-body-wrap {
  flex: 1;
  min-width: 0;
  padding-top: 4px;
}

.timeline-v .step-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 6px;
}

.timeline-v .step-marker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.3;
  color: var(--text-soft);
  margin: 0 0 12px;
}

.timeline-v .step-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 56ch;
  margin: 0;
}

/* On-dark variant (for future use) */
.section.on-dark .timeline-v::before {
  background: var(--rule-dark);
}

.section.on-dark .timeline-v .step-circle {
  background: var(--warm);
  color: var(--ink-dark);
}

.section.on-dark .timeline-v .step-name {
  color: var(--text-on-dark);
}

.section.on-dark .timeline-v .step-marker {
  color: var(--text-on-dark-soft);
}

.section.on-dark .timeline-v .step-body {
  color: var(--text-on-dark-soft);
}

@media (max-width: 760px) {
  .section.process-arc {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section.process-arc h2 {
    margin-bottom: 40px;
  }
  .timeline-v::before {
    left: 15px;
  }
  .timeline-v .timeline-step {
    gap: 20px;
    padding-bottom: 44px;
  }
  .timeline-v .step-circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  .timeline-v .step-name {
    font-size: 21px;
  }
}

/* ─── Process Pricing ─────────────────────────────────────── */

.section.process-pricing {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--cream);
}

.section.process-pricing .kicker {
  display: block;
  margin-bottom: 16px;
}

.section.process-pricing h2 {
  margin-bottom: 40px;
  max-width: 18ch;
}

.section.process-pricing h2 em {
  font-style: italic;
  color: var(--oxblood);
  font-weight: 300;
}

.pricing-body {
  max-width: 56ch;
}

.pricing-body p {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 20px;
}

.pricing-body p:last-child {
  margin-bottom: 0;
}

.pricing-body .pricing-teaser {
  margin-top: 36px;
  font-family: 'Fraunces', serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--oxblood);
}

.pricing-body .pricing-teaser em {
  font-style: italic;
  font-weight: 300;
}

@media (max-width: 760px) {
  .section.process-pricing {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .pricing-body p {
    font-size: 16px;
  }
  .pricing-body .pricing-teaser {
    margin-top: 28px;
  }
}

/* ─── FAQ accordion (Process page) ────────────────────────── */

.section.process-faq {
  padding-top: 96px;
  padding-bottom: 96px;
  background: var(--cream);
}

.section.process-faq .kicker {
  display: block;
  margin-bottom: 16px;
}

.section.process-faq h2 {
  margin-bottom: 40px;
  max-width: 18ch;
}

.section.process-faq h2 em {
  font-style: italic;
  color: var(--oxblood);
  font-weight: 300;
}

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 56ch;
  border-top: 1px solid var(--rule);
}

.faq-item {
  border-bottom: 1px solid var(--rule);
}

.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
  color: var(--text);
  transition: color 0.2s ease;
}

.faq-q:hover,
.faq-q:focus-visible {
  color: var(--oxblood);
}

.faq-q:focus-visible {
  outline: 2px solid var(--oxblood);
  outline-offset: 4px;
}

.faq-q-text {
  flex: 1;
}

.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  margin-top: -0.75px;
  background: currentColor;
  transition: transform 0.3s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-q[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-q[aria-expanded="true"] + .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-a-inner p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 22px;
  padding-right: 38px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-a,
  .faq-icon::before,
  .faq-icon::after,
  .faq-q {
    transition: none;
  }
}

@media (max-width: 760px) {
  .section.process-faq {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .faq-q {
    font-size: 18px;
    padding: 18px 0;
  }
  .faq-a-inner p {
    font-size: 15px;
    padding-right: 0;
  }
}

/* ─── Gallery Card (scouting feed) ────────────────────────── */

.gallery-card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--rule);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.gallery-card {
  color: inherit;
  text-decoration: none;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -16px rgba(28, 29, 52, 0.18);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ink-dark);
}

.gallery-card .car-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 21px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
  margin: 20px 22px 6px;
}

.gallery-card .spotted {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-dim);
  margin: 0 22px 10px;
}

.gallery-card .note {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0 22px 24px;
}

/* ─── Gallery Hero (typographic, no image) ────────────────── */

.gallery-hero {
  padding: 120px 24px 96px;
}

.gallery-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.gallery-hero .kicker {
  display: block;
  color: var(--text-on-dark-dim);
  margin-bottom: 24px;
}

.gallery-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin: 0 0 32px;
  max-width: 22ch;
}

.gallery-hero h1 em {
  font-style: italic;
  color: var(--warm);
  font-weight: 300;
}

.gallery-hero-lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: var(--text-on-dark-soft);
  max-width: 42ch;
  margin: 0;
}

@media (max-width: 760px) {
  .gallery-hero {
    padding: 80px 20px 64px;
  }
  .gallery-hero-inner {
    padding: 0;
  }
}

/* ─── Gallery Grid ─────────────────────────────────────────── */

.gallery-section {
  padding-top: 80px;
  padding-bottom: 96px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

@media (max-width: 960px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-section {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}

/* ─── Tim Signature Block ─────────────────────────────────── */

.tim-signature {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}

.tim-signature-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tim-signature .tim-portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--ink-dark);
}


.tim-signature .copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}

.tim-signature .copy .kicker {
  display: block;
  margin-bottom: 16px;
}

.tim-signature .signature-body {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.5;
  color: var(--text);
  max-width: 52ch;
  margin: 0 0 32px;
}

.tim-signature .signature-body em {
  font-style: italic;
}

@media (max-width: 760px) {
  .tim-signature {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: stretch;
  }
  .tim-signature-images {
    flex-direction: column;
    gap: 16px;
  }
  .tim-signature .tim-portrait {
    aspect-ratio: 4 / 3;
  }
  .tim-signature .copy {
    padding-top: 0;
  }
  .tim-signature .signature-body {
    font-size: 19px;
    margin-bottom: 24px;
  }
}

/* ─── Quote Card ──────────────────────────────────────────── */

.quote-card {
  background: var(--oxblood-tint);
  padding: 32px 28px;
  font-style: normal;
}

.quote-card blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 21px;
  line-height: 1.45;
  color: var(--text);
  max-width: 30ch;
  margin: 0 0 24px;
  quotes: none;
}

.quote-card blockquote::before,
.quote-card blockquote::after {
  content: none;
}

.quote-card blockquote em {
  font-style: italic;
  font-weight: 400;
  color: var(--oxblood);
}

.quote-card cite {
  font-style: normal;
  display: block;
}

.quote-card cite .name,
.quote-card cite .city {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.quote-card cite .car {
  display: block;
  margin-top: 6px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-soft);
  text-transform: none;
  letter-spacing: 0;
}

/* On-dark variant (future use) */
.section.on-dark .quote-card {
  background: rgba(247, 243, 236, 0.06);
}

.section.on-dark .quote-card blockquote {
  color: var(--text-on-dark);
}

.section.on-dark .quote-card blockquote em {
  color: var(--warm);
}

.section.on-dark .quote-card cite .name,
.section.on-dark .quote-card cite .city {
  color: var(--text-on-dark);
}

.section.on-dark .quote-card cite .car {
  color: var(--text-on-dark-soft);
}

/* ─── Components Review Page (dev only) ───────────────────── */

.components-review .component-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .components-review .component-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .components-review .component-grid-3 {
    grid-template-columns: 1fr;
  }
}

.components-review .component-section + .component-section {
  border-top: 1px solid var(--rule);
}

/* ─── Gallery Hero (typographic, no image) ────────────────── */

.gallery-hero {
  padding: 120px 24px 96px;
}

.gallery-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.gallery-hero .kicker {
  display: block;
  color: var(--text-on-dark-dim);
  margin-bottom: 24px;
}

.gallery-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin: 0 0 32px;
  max-width: 22ch;
}

.gallery-hero h1 em {
  font-style: italic;
  color: var(--warm);
  font-weight: 300;
}

.gallery-hero-lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--text-on-dark-soft);
  max-width: 46ch;
  margin: 0;
}

@media (max-width: 760px) {
  .gallery-hero {
    padding: 80px 20px 64px;
  }
  .gallery-hero-inner {
    padding: 0;
  }
}

/* ─── Gallery Grid (wrapper for .gallery-card) ────────────── */

.section.gallery-feed {
  padding-top: 80px;
  padding-bottom: 96px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 559px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Final CTA · small variant (post-grid, single-line) ──── */

.section.final-cta.small {
  padding-top: 56px;
  padding-bottom: 56px;
}

.final-cta.small .final-cta-inner {
  padding: 32px 24px;
  gap: 20px;
}

.final-cta.small .final-cta-line {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.35;
  margin: 0;
}

@media (max-width: 760px) {
  .section.final-cta.small {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .final-cta.small .final-cta-inner {
    padding: 24px 16px;
  }
}

/* ─── Contact Hero (typographic, no image) ────────────────── */

.contact-hero {
  padding: 120px 24px 96px;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}

.contact-hero .kicker {
  display: block;
  color: var(--text-on-dark-dim);
  margin-bottom: 24px;
}

.contact-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin: 0 0 32px;
  max-width: 22ch;
}

.contact-hero h1 em {
  font-style: italic;
  color: var(--warm);
  font-weight: 300;
}

.contact-hero-lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--text-on-dark-soft);
  max-width: 42ch;
  margin: 0;
}

@media (max-width: 760px) {
  .contact-hero {
    padding: 80px 20px 64px;
  }
  .contact-hero-inner {
    padding: 0;
  }
}

/* ─── What Happens Next (3 numbered steps, horizontal) ────── */

.section.what-next {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section.what-next .kicker {
  display: block;
  margin-bottom: 48px;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1080px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.next-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.next-step .num {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--oxblood);
  letter-spacing: -0.02em;
}

.next-step .body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  margin: 0;
  max-width: 26ch;
}

@media (max-width: 760px) {
  .section.what-next {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .section.what-next h2 {
    margin-bottom: 40px;
  }
  .next-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .next-step .num {
    font-size: 40px;
  }
}

/* ─── Contact Form Section (intake form) ──────────────────── */

.section.contact-form-section {
  padding-top: 0;
  padding-bottom: 96px;
}

.contact-form {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

/* Honeypot — hidden from humans + assistive tech, visible to dumb bots. */
.cf-honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  margin-bottom: 28px;
}

.form-field label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 10px;
}

.form-hint {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: -2px 0 10px;
  max-width: none;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 12px 14px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--oxblood);
  box-shadow: 0 0 0 3px var(--oxblood-tint);
  background: #fffaf0;
}

/* Error state — only applied after the JS validator flags a field on
   submit. We avoid :invalid here because empty required inputs match
   :invalid on first paint and would render every field in red before
   the user even types. */
.contact-form .form-field.has-error input,
.contact-form .form-field.has-error select,
.contact-form .form-field.has-error textarea {
  border-color: var(--oxblood);
  background: rgba(110, 40, 40, 0.04);
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--text-soft);
  border-bottom: 1.5px solid var(--text-soft);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.contact-form select {
  padding-right: 40px;
  cursor: pointer;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 8px;
}

.form-actions .btn {
  cursor: pointer;
}

.form-meta {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
  max-width: none;
}

.form-status {
  margin-top: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  min-height: 1.5em;
}

.form-status.is-success {
  color: var(--text);
}

.form-status.is-error {
  color: var(--oxblood);
}

.email-fallback {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
  text-align: center;
  margin: 32px auto 0;
  max-width: 600px;
}

.email-fallback a {
  color: var(--oxblood);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

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

@media (max-width: 760px) {
  .section.contact-form-section {
    padding-bottom: 64px;
  }
  .form-field {
    margin-bottom: 22px;
  }
  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form select,
  .contact-form textarea {
    font-size: 16px; /* prevent iOS zoom */
    padding: 11px 13px;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .form-actions .btn {
    text-align: center;
  }
  .form-meta {
    text-align: center;
  }
}

/* ─── Home Page · Tim Signature Section spacing ──────────── */

.section.block.home-tim-signature {
  padding-top: 96px;
  padding-bottom: 96px;
}

/* ─── Home Page · Quotes Section ─────────────────────────── */

.section.block.home-quotes h2 {
  margin-bottom: 48px;
  max-width: 24ch;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .quote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 559px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Home Page · Gallery Teaser Section ─────────────────── */

.section.block.home-gallery-teaser h2 {
  margin-bottom: 48px;
  max-width: 24ch;
}

.section.block.home-gallery-teaser h2 em {
  font-style: italic;
  color: var(--oxblood);
  font-weight: 300;
}

.gallery-teaser-foot {
  max-width: 1180px;
  margin: 32px auto 0;
  display: flex;
  justify-content: flex-end;
}

.gallery-teaser-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oxblood);
  text-decoration: none;
  border-bottom: 1px solid var(--oxblood);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.gallery-teaser-link:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

@media (max-width: 559px) {
  .gallery-teaser-foot {
    justify-content: flex-start;
    margin-top: 24px;
  }
}

/* ─── 404 Hero (typographic, dark) ─────────────────────────── */

.notfound-hero {
  padding: 140px 24px 120px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.notfound-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.notfound-hero .kicker {
  display: block;
  color: var(--text-on-dark-dim);
  margin-bottom: 24px;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  letter-spacing: 0.06em;
}

.notfound-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin: 0 0 32px;
  max-width: 22ch;
}

.notfound-hero h1 em {
  font-style: italic;
  color: var(--warm);
  font-weight: 300;
}

.notfound-hero-lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--text-on-dark-soft);
  margin: 0 0 40px;
  max-width: 36ch;
}

.notfound-hero-lede a {
  color: var(--warm);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.15s ease;
}

.notfound-hero-lede a:hover {
  color: var(--text-on-dark);
}

.notfound-back {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .notfound-hero {
    padding: 80px 20px 64px;
    min-height: 60vh;
  }
  .notfound-hero-inner {
    padding: 0;
  }
}

/* ─── Thanks Hero (post-form-submit confirmation) ──────────── */

.thanks-hero {
  padding: 140px 24px 120px;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thanks-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.thanks-hero .kicker {
  display: block;
  color: var(--text-on-dark-dim);
  margin-bottom: 24px;
  font-family: 'Fraunces', serif;
  font-size: 28px;
  letter-spacing: 0.06em;
}

.thanks-hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin: 0 0 32px;
  max-width: 22ch;
}

.thanks-hero h1 em {
  font-style: italic;
  color: var(--warm);
  font-weight: 300;
}

.thanks-hero-lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--text-on-dark-soft);
  margin: 0 0 40px;
  max-width: 38ch;
}

.thanks-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}

.thanks-secondary-link {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--text-on-dark-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.thanks-secondary-link:hover {
  color: var(--warm);
  border-color: var(--warm);
}

@media (max-width: 760px) {
  .thanks-hero {
    padding: 80px 20px 64px;
    min-height: 60vh;
  }
  .thanks-hero-inner {
    padding: 0;
  }
  .thanks-actions {
    gap: 20px;
  }
}

/* ─── Thanks · "While you wait" curated link grid ─────────── */

.section.block.while-you-wait h2 {
  margin-bottom: 48px;
  max-width: 26ch;
}

.section.block.while-you-wait h2 em {
  font-style: italic;
  color: var(--oxblood);
  font-weight: 300;
}

.while-you-wait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.while-you-wait-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.while-you-wait-card:hover {
  transform: translateY(-2px);
}

.while-you-wait-thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
  margin-bottom: 16px;
}

.while-you-wait-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.2s ease;
}

.while-you-wait-card:hover .while-you-wait-thumb img {
  transform: scale(1.03);
  filter: brightness(1.03);
}

.while-you-wait-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 6px;
  transition: color 0.15s ease;
}

.while-you-wait-card:hover h3 {
  color: var(--oxblood);
}

.while-you-wait-card p {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-soft, var(--text));
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 760px) {
  .section.block.while-you-wait h2 {
    margin-bottom: 32px;
  }
  .while-you-wait-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ─── Mood-board Fidelity Pass · materials, grain, accents ── */

/* ─── Selling Arc · 3-column horizontal grid ─────────────────
   Visual contrast against the buying section's tall vertical timeline.
   With only three steps the horizontal layout reads as a shorter arc
   at a glance, and the big copper outline numerals echo the hero's
   '66 '99 era mark so the section has its own brand signature. */

.sell-arc-intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0 0 40px;
}

.sell-arc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .sell-arc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.sell-step {
  border-top: 2px solid var(--oxblood);
  padding-top: 24px;
}

.sell-step .sell-num {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--warm);
  margin-bottom: 18px;
}

@supports not (-webkit-text-stroke: 1px currentColor) {
  .sell-step .sell-num {
    color: rgba(197, 123, 60, 0.7);
  }
}

.sell-step .step-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 6px;
}

.sell-step .step-marker {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.3;
  color: var(--text-soft);
  margin: 0 0 14px;
}

.sell-step .step-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0;
}

/* Aged-paper surface — recipe from mood-board.html .swatch.aged-paper.
   Used on a single body section per page to inject worn-warm texture. */
.surface-aged-paper {
  background-color: #ede4d0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(110, 80, 50, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(110, 80, 50, 0.06) 0%, transparent 40%);
}

/* Film grain on dark surfaces — tiny tiled PNG (img/texture/grain.png,
   ~5 KB) for sharp, cross-browser-identical rendering. Sits below inner
   content (z-index: 2) and above .constellation. */
.hero::after,
.section.on-dark::after,
.dark-surface::after,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("/img/texture/grain.png");
  background-repeat: repeat;
}

@media (prefers-reduced-motion: reduce) {
  /* grain is static, but lower it further for sensitivity */
  .hero::after,
  .section.on-dark::after,
  .dark-surface::after,
  .final-cta::after {
    opacity: 0.05;
  }
}

/* Fallback for browsers without mix-blend-mode: overlay support —
   the noise tile reads as muddy gray without blending, so soften it. */
@supports not (mix-blend-mode: overlay) {
  .hero::after,
  .section.on-dark::after,
  .dark-surface::after,
  .final-cta::after {
    opacity: 0.04;
  }
}

/* Romance/handling micro-typography on dark CTAs */
.final-cta-quiet {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--text-on-dark-dim);
  margin: 0;
  max-width: 36ch;
}

.final-cta-kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-on-dark-dim);
  margin: 0;
}

/* Coda after "What happens next" steps on contact page */
.next-coda {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--oxblood-tint);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-soft);
  text-align: center;
}

.next-coda em {
  color: var(--oxblood);
  font-style: italic;
}

/* Section-2 (home problem) kicker — display as block above the H2 */
.home-problem .kicker {
  display: block;
  margin-bottom: 16px;
}

/* Section-2 (home problem) — two-column layout: copy left, photo cluster right.
   The two photos overlap diagonally for a casual, scrapbook feel. */
.home-problem {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  gap: 64px;
  align-items: center;
}

.home-problem-copy {
  min-width: 0;
}

.home-problem-photos {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
}

.home-problem-photo {
  position: absolute;
  display: block;
  background: var(--ink-dark);
  object-fit: cover;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.06),
    0 14px 28px -14px rgba(19, 20, 38, 0.35),
    0 2px 6px rgba(19, 20, 38, 0.12);
}

.home-problem-photo-back {
  top: 0;
  left: 0;
  width: 64%;
  aspect-ratio: 1 / 1;
  transform: rotate(-4deg);
  transform-origin: center;
  z-index: 1;
}

.home-problem-photo-front {
  bottom: 0;
  right: 0;
  width: 60%;
  aspect-ratio: 4 / 5;
  transform: rotate(5deg);
  transform-origin: center;
  z-index: 2;
}

@media (max-width: 900px) {
  .home-problem {
    grid-template-columns: minmax(0, 1fr) minmax(0, 280px);
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .home-problem {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-problem-photos {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 4 / 5;
  }
}

/* ─── Oxblood-tinted hairlines (leather edges) ────────────── */

/* Gallery cards — leather-edge border, deepens to oxblood on hover */
.gallery-card {
  border-color: var(--oxblood-tint);
}
.gallery-card:hover {
  border-color: var(--oxblood);
}

/* "Currently driving" cards on About — leather hairline above the photo */
.car-card .car-card-image {
  border-top: 2px solid var(--oxblood-tint);
}

/* "What happens next" steps on Contact — leather hairline above the number */
.next-step {
  border-top: 1.5px solid var(--oxblood-tint);
  padding-top: 18px;
}

/* ─── Illustrations grid (About · From the sketchbook) ────── */

.section.illustrations {
  padding-top: 56px;
  padding-bottom: 88px;
}

.section.illustrations h2 {
  margin-bottom: 12px;
  max-width: 24ch;
}

.section.illustrations h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--oxblood);
}

.section.illustrations .lede {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0 0 40px;
  max-width: 56ch;
}

.illustration-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.illustration-card figure {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.illustration-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--oxblood-tint);
  margin-bottom: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: border-color 0.25s ease, transform 0.4s ease;
}

.illustration-card:hover .illustration-frame {
  border-color: var(--oxblood);
}

.illustration-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 14px;
  transition: transform 0.4s ease;
}

.illustration-card:hover .illustration-frame img {
  transform: scale(1.02);
}

.illustration-card figcaption {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}

/* Tablet — 2 columns */
@media (max-width: 900px) {
  .illustration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 24px;
  }
}

/* Mobile — 1 column, tighter padding */
@media (max-width: 560px) {
  .section.illustrations {
    padding-top: 40px;
    padding-bottom: 64px;
  }
  .section.illustrations .lede {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .illustration-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .illustration-card figcaption {
    font-size: 16px;
  }
}

/* ─── Mobile/Tablet polish · aged-paper sections + CTA micro-copy ──
   Task #27 walk-through. The aged-paper radials, the small italic
   `.final-cta-quiet` / `.final-cta-kicker` lines, and the contact
   `.next-coda` were tuned for desktop in task #24. These rules tighten
   spacing and soften the radials at smaller widths so each beat still
   reads intentional on phones. */

/* Tablet (≈ 768px) — what-next kicker tightens, next-coda settles
   closer to the steps so the section reads as one beat, not two. */
@media (max-width: 760px) {
  .section.what-next .kicker {
    margin-bottom: 32px;
  }
  .next-coda {
    margin-top: 40px;
    padding-top: 20px;
    font-size: 16px;
    max-width: 34ch;
  }
}

/* Mobile (≤ 480px) — soften the aged-paper radials so warmth doesn't
   pool at narrow widths; tighten CTA micro-copy wraps and coda spacing. */
@media (max-width: 480px) {
  .surface-aged-paper {
    background-image:
      radial-gradient(circle at 18% 22%, rgba(110, 80, 50, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 78% 78%, rgba(110, 80, 50, 0.04) 0%, transparent 50%);
  }
  .final-cta-quiet {
    max-width: 28ch;
  }
  .final-cta-kicker {
    letter-spacing: 0.22em;
  }
  .next-coda {
    margin-top: 32px;
    font-size: 15.5px;
  }
}
