/* V.A.V. Classics — editorial second pass
   Southampton institution · automotive journal · craft */

:root {
  --bg: #f3eee4;
  --bg-warm: #ebe3d5;
  --bg-paper: #f8f4ec;
  --bg-ink: #161412;
  --bg-ink-soft: #221f1b;

  --ink: #161412;
  --ink-soft: #3a3530;
  --muted: #6e675e;
  --faint: #958c81;

  --line: #d4cbbd;
  --line-soft: rgba(22, 20, 18, 0.1);

  --accent: #6e1a1f;
  --accent-hover: #531418;
  --metal: #7d7871;

  --font-display: "Spectral", "Times New Roman", Georgia, serif;
  --font-body: "Karla", "Segoe UI", sans-serif;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6.5rem;

  --container: 72rem;
  --gutter: clamp(1.25rem, 3.5vw, 2.25rem);
  --measure: 34rem;

  --radius: 0;
  --transition: 160ms ease;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--transition), opacity var(--transition);
}

a:hover {
  color: var(--accent);
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 1000;
  background: var(--bg-paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 228, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header.is-compact .header-inner {
  padding-block: 0.75rem;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1rem var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  transition: padding var(--transition);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  z-index: 1;
}

.brand:hover {
  color: var(--ink);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.nav-desktop {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
  color: var(--ink);
}

.nav-desktop a[aria-current="page"] {
  box-shadow: inset 0 -1px 0 var(--ink);
  padding-bottom: 0.1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  z-index: 1;
}

.header-cta-stack {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  text-align: right;
}

.header-phone {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.header-phone:hover {
  color: var(--ink);
}

.header-estimate {
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.2;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.05rem;
}

.header-estimate:hover {
  color: var(--accent);
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle[aria-expanded="true"] {
  background: var(--bg-ink);
  color: var(--bg);
  border-color: var(--bg-ink);
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-paper);
  padding: 0.5rem var(--gutter) 1.35rem;
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.nav-mobile a {
  display: block;
  padding: 0.9rem 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.nav-mobile .btn {
  width: 100%;
}

.nav-mobile-phone {
  margin: 0.85rem 0 0;
  text-align: center;
}

.nav-mobile-phone a {
  border: 0;
  padding: 0;
  font-weight: 500;
  color: var(--ink-soft);
}

@media (min-width: 720px) {
  .header-cta-stack {
    display: flex;
  }
}

@media (min-width: 960px) {
  .header-inner {
    grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  }

  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* —— Buttons & links —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #f7f2ea;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #f7f2ea;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--bg);
}

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

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

.text-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.05rem;
}

.text-link:hover {
  color: var(--accent);
}

.phone-link {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* —— Layout primitives —— */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.25rem, 7vw, 5.25rem);
}

.section-tight {
  padding-block: clamp(2.5rem, 5vw, 3.75rem);
}

.section-airy {
  padding-block: clamp(5rem, 12vw, 9rem);
}

.band-warm {
  background: var(--bg-warm);
}

.band-paper {
  background: var(--bg-paper);
}

.band-ink {
  background: var(--bg-ink);
  color: #e8e1d5;
}

.band-ink .muted,
.band-ink .lede {
  color: #b4aa9c;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

.band-ink .eyebrow {
  color: #c3b7a7;
}

.eyebrow span {
  display: block;
}

.lede {
  margin: 0;
  max-width: var(--measure);
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* —— Photography frames —— */
.photo {
  position: relative;
  overflow: hidden;
  background: #2a2621;
  color: #f3eee4;
}

.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Soft archival treatment for older gallery shots */
.photo-archive img {
  filter: saturate(0.45) contrast(1.08) brightness(0.88);
  transform: scale(1.04);
}

.photo-archive::before,
.photo-archive-mono::before,
.photo-archive-rich::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.photo-archive::before {
  background:
    linear-gradient(180deg, rgba(22, 20, 18, 0.18) 0%, transparent 35%, rgba(22, 20, 18, 0.42) 100%),
    linear-gradient(120deg, rgba(243, 238, 228, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at center, transparent 40%, rgba(22, 20, 18, 0.28) 100%);
  mix-blend-mode: multiply;
}

.photo-archive::after,
.photo-archive-mono::after,
.photo-archive-rich::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.photo-archive::after {
  background: rgba(110, 26, 31, 0.06);
  mix-blend-mode: soft-light;
}

.photo-archive-mono img {
  filter: saturate(0.12) contrast(1.12) brightness(0.9) grayscale(0.35);
  transform: scale(1.05);
}

.photo-archive-mono::before {
  background:
    linear-gradient(180deg, rgba(22, 20, 18, 0.2) 0%, transparent 40%, rgba(22, 20, 18, 0.5) 100%),
    radial-gradient(ellipse at center, transparent 45%, rgba(22, 20, 18, 0.3) 100%);
}

.photo-archive-mono::after {
  background: rgba(243, 238, 228, 0.08);
  mix-blend-mode: soft-light;
}

.photo-archive-rich img {
  filter: saturate(0.7) contrast(1.06) brightness(0.92);
  transform: scale(1.03);
}

.photo-archive-rich::before {
  background: linear-gradient(180deg, transparent 45%, rgba(22, 20, 18, 0.4) 100%);
}

.photo-archive-rich::after {
  background: rgba(110, 26, 31, 0.04);
  mix-blend-mode: soft-light;
}

/* Hero photo is stronger — lighter treatment only */
.photo-hero img {
  filter: saturate(0.92) contrast(1.05) brightness(0.96);
  object-position: 72% center;
  transform: scale(1.02);
  transition: transform 1.4s ease-out;
}

.photo-hero.is-active img,
.photo img.is-zoomed {
  transform: scale(1.06);
}

.photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.1rem 1.25rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  background: linear-gradient(180deg, transparent, rgba(10, 9, 8, 0.72));
}

.photo-caption-inline {
  margin: 1.75rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(243, 238, 228, 0.72);
}

.photo-crop-lower img {
  object-position: center 72%;
}

.photo-crop-center img {
  object-position: center center;
}

.photo-crop-right img {
  object-position: 65% center;
}

.photo-tall {
  aspect-ratio: 3 / 4;
  min-height: 0 !important;
}

.photo-wide {
  aspect-ratio: 16 / 10;
  min-height: 0 !important;
}

.photo-portrait {
  aspect-ratio: 4 / 5;
  min-height: 0 !important;
}

@media (max-width: 899px) {
  .photo-tall,
  .photo-wide,
  .photo-portrait {
    aspect-ratio: 4 / 3;
  }
}

/* —— Hero —— */
.hero-bleed {
  position: relative;
  min-height: min(92vh, 52rem);
  display: grid;
  border-bottom: 0;
  padding: 0;
  overflow: hidden;
}

.hero-bleed .hero-photo {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 14, 12, 0.78) 0%, rgba(16, 14, 12, 0.45) 42%, rgba(16, 14, 12, 0.12) 68%, transparent 100%),
    linear-gradient(180deg, rgba(16, 14, 12, 0.2) 0%, transparent 30%, rgba(16, 14, 12, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  min-height: min(92vh, 52rem);
  padding: clamp(6rem, 14vw, 9rem) 0 clamp(3rem, 7vw, 4.5rem);
  color: #f3eee4;
}

.hero-copy {
  max-width: 28rem;
}

.hero-bleed h1 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.8vw, 5.2rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  max-width: 10ch;
  color: #f7f2ea;
}

.hero-bleed .lede {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(243, 238, 228, 0.82);
  max-width: 26rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.hero-bleed .text-link {
  color: #f3eee4;
  border-bottom-color: rgba(243, 238, 228, 0.55);
}

.hero-bleed .text-link:hover {
  color: #fff;
}

@media (max-width: 480px) {
  .hero-actions .btn {
    width: 100%;
  }
}

.header-cta-label-short {
  display: inline;
}

.header-cta-label-full {
  display: none;
}

@media (min-width: 480px) {
  .header-cta-label-short {
    display: none;
  }

  .header-cta-label-full {
    display: inline;
  }
}

/* —— Pull quote —— */
.pull-quote-section {
  padding-block: clamp(4.5rem, 11vw, 8rem);
  border-block: 1px solid var(--line);
  background: var(--bg);
}

.pull-quote {
  margin: 0;
  max-width: 18ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* —— 1984 statement —— */
.year-section {
  position: relative;
  overflow: hidden;
}

.year-block {
  position: relative;
  z-index: 1;
  min-height: clamp(16rem, 36vw, 24rem);
  display: flex;
  align-items: center;
}

.year-mark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-18%, -52%);
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(14rem, 48vw, 34rem);
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: -0.07em;
  color: var(--ink);
  opacity: 0.032;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.year-meta {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.year-copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-left: auto;
  padding: 0.5rem 0;
}

.year-copy h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.year-copy p {
  margin: 0 0 0.9rem;
  max-width: 32rem;
  color: var(--ink-soft);
}

.year-copy p:last-child {
  margin-bottom: 0;
}

@media (max-width: 699px) {
  .year-copy {
    margin-left: 0;
  }

  .year-mark {
    transform: translate(-28%, -52%);
    opacity: 0.028;
  }
}

.year-block.story-grid {
  display: grid;
  align-items: start;
  min-height: clamp(20rem, 42vw, 28rem);
}

.year-block .prose,
.year-block .about-media {
  position: relative;
  z-index: 1;
}

.prose .year-meta {
  color: var(--muted);
  font-size: 0.72rem;
  max-width: none;
}

/* —— Service rows —— */
.services-head {
  max-width: 38rem;
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.services-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 2.75rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

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

.service-row {
  display: grid;
  gap: 0.85rem 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  align-items: start;
}

.service-row:hover .service-row-title {
  color: var(--accent);
}

@media (min-width: 800px) {
  .service-row {
    grid-template-columns: 3.5rem minmax(0, 1.1fr) minmax(0, 1fr) auto;
    gap: 1.25rem 1.75rem;
    align-items: baseline;
    padding: 1.75rem 0;
  }
}

.service-row-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.service-row-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.service-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.service-row-go {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

/* —— Specialty section —— */
.specialty {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 960px) {
  .specialty {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4.5vw, 3.75rem);
    align-items: center;
  }
}

.specialty-copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.specialty-copy p {
  margin: 0 0 1rem;
  max-width: 32rem;
  color: #b8aea0;
}

.specialty-copy p:last-of-type {
  margin-bottom: 1.5rem;
}

.specialty-photo {
  min-height: 0;
}

@media (min-width: 960px) {
  .specialty-photo {
    min-height: 0;
  }
}

/* —— Reputation / human —— */
.reputation {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .reputation {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4.5vw, 3.5rem);
    align-items: end;
  }
}

.reputation h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.reputation p {
  margin: 0;
  max-width: 30rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.reputation-photo {
  min-height: 0;
}

@media (min-width: 900px) {
  .reputation-photo {
    min-height: 0;
  }
}

/* —— Final CTA —— */
.final-cta {
  display: grid;
  gap: clamp(1.75rem, 4vw, 3rem);
}

@media (min-width: 900px) {
  .final-cta {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: end;
  }
}

.final-cta h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 10ch;
}

.final-cta .lede {
  margin-bottom: 1.5rem;
  color: #b8aea0;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.final-cta-photo {
  min-height: 0;
}

@media (min-width: 900px) {
  .final-cta-photo {
    min-height: 0;
  }
}

.band-ink .text-link {
  color: #f3eee4;
}

.band-ink .text-link:hover {
  color: #fff;
}

/* —— Page hero —— */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 4.5vw, 3rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 12ch;
}

.page-hero .lede {
  font-size: 1.08rem;
}

/* —— Services page —— */
.service-chapter {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  border-bottom: 1px solid var(--line);
}

.service-chapter:last-of-type {
  border-bottom: 0;
}

.service-chapter-grid {
  display: grid;
  gap: var(--space-5);
}

@media (min-width: 900px) {
  .service-chapter-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }
}

.service-chapter h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.service-chapter > .service-chapter-grid > div > p,
.chapter-intro {
  margin: 0 0 0;
  color: var(--muted);
  max-width: 30rem;
}

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 1;
  column-gap: 2.5rem;
}

@media (min-width: 640px) {
  .offer-list {
    columns: 2;
  }
}

.offer-list li {
  break-inside: avoid;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.chapter-photo {
  min-height: 0;
}

@media (min-width: 900px) {
  .chapter-photo {
    min-height: 0;
  }
}

/* —— About —— */
.story-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 900px) {
  .story-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 4.5rem);
    align-items: start;
  }
}

.prose p {
  margin: 0 0 1.2rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 36rem;
}

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

.glance {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (min-width: 700px) {
  .glance {
    grid-template-columns: 1fr 1fr;
  }
}

.glance li {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 700px) {
  .glance li:nth-child(odd) {
    padding-right: 1.5rem;
    border-right: 1px solid var(--line);
  }

  .glance li:nth-child(even) {
    padding-left: 1.5rem;
  }
}

.glance .label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.glance strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
}

/* —— Contact —— */
.contact-grid {
  display: grid;
  gap: var(--space-7);
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }
}

.contact-block h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
}

.contact-details {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.contact-details li {
  margin: 0 0 1.15rem;
}

.contact-details .label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}

.contact-details a {
  text-decoration: none;
  font-weight: 500;
}

.hours-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.98rem;
}

.hours-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.map-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.form-panel {
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  padding: 1.75rem 0 0;
}

@media (min-width: 900px) {
  .form-panel {
    border: 0;
    border-top: 1px solid var(--line);
    padding: 0;
    padding-top: 0;
  }
}

.form-panel h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
}

.form-note {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
}

.field textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
}

.form-status a {
  color: var(--accent);
}

/* —— FAQ —— */
.faq-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.faq-list {
  margin-top: var(--space-5);
  border-top: 1px solid var(--line);
}

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

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

.faq-item button span[aria-hidden="true"] {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1;
}

.faq-panel {
  display: none;
  padding: 0 0 1.2rem;
  color: var(--muted);
  max-width: 42rem;
}

.faq-panel p {
  margin: 0 0 0.85rem;
}

.faq-panel p:last-child {
  margin-bottom: 0;
}

.faq-panel a {
  color: var(--accent);
  word-break: break-word;
}

.faq-item.is-open .faq-panel {
  display: block;
}

/* —— Footer —— */
.site-footer {
  background: var(--bg-ink);
  color: #cfc5b7;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.footer-colophon {
  max-width: 36rem;
}

.footer-brand {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: #f3eee4;
  font-weight: 500;
}

.site-footer a {
  color: #f3eee4;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-address,
.footer-contact,
.footer-hours {
  margin: 0 0 0.55rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-inline-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  margin: 1.75rem 0 0;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(243, 238, 228, 0.12);
}

.footer-inline-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: #a89f93;
}

.footer-inline-nav a:hover {
  color: #f3eee4;
  text-decoration: none;
}

.footer-meta {
  margin: 1.5rem 0 0;
  font-size: 0.82rem;
  color: #9a9084;
}

/* Legacy footer grid kept for any leftover markup */
.footer-grid {
  display: grid;
  gap: var(--space-6);
}

.footer-label {
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: #9a9084;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

/* —— Motion —— */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .photo-hero img,
  .photo img.is-zoomed {
    transform: none !important;
    transition: none !important;
  }
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.5rem;
}

.mt-6 {
  margin-top: 2.25rem;
}
