:root {
  --ivory: #F7F3EC;
  --paper: #FBF8F2;
  --ink: #1A1613;
  --ink-soft: #48413B;          /* was #5A524A — bumped for crisper overlines, 9.06:1 */
  --burgundy: #6B1E2B;
  --burgundy-dark: #4F1620;
  --gold: #B38A3E;              /* decorative non-text only (dots, hairlines) */
  --gold-text: #8C6A2B;         /* AA-pass on ivory for any text-bearing gold */
  --line: rgba(26, 22, 19, 0.14);
  --line-soft: rgba(26, 22, 19, 0.08);

  --serif: "EB Garamond", "Iowan Old Style", Georgia, serif;
  --serif-display: "Cormorant Garamond", "EB Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --max: 1240px;
  --max-narrow: 860px;
  --pad: clamp(1.25rem, 4vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "liga", "kern";
  font-variant-numeric: oldstyle-nums proportional-nums;
  position: relative;
}

/* Anywhere numerals must read with precision (phone, address, hours, prices,
   the "40" numeral, CTAs) — switch to lining tabular figures. */
.btn,
.sticky-call,
.header-call,
.legacy-ribbon__digits,
.visit address,
.fineprint,
time,
.hero__caption,
[data-numeric] {
  font-variant-numeric: lining-nums tabular-nums;
}

/* ---------- film-grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.09  0 0 0 0 0.08  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
@media (prefers-reduced-motion: reduce) { .grain { opacity: 0.14; } }

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

a { color: var(--burgundy); text-decoration: none; transition: color 160ms ease; }
a:hover { color: var(--burgundy-dark); }

p { margin: 0 0 1em; }

h1, h2, h3 {
  font-family: var(--serif-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 6rem);
  line-height: 0.96;
  font-weight: 500;
  letter-spacing: -0.022em;
}
h2 {
  font-size: clamp(2.15rem, 5.4vw, 4rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.018em;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -0.01em;
}

em { font-style: italic; color: var(--burgundy); font-weight: 500; }

h1 em, h2 em { color: var(--burgundy); }

.overline {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}

hr.rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 18%, var(--line) 82%, transparent 100%);
  max-width: min(var(--max), calc(100% - 2*var(--pad)));
  margin: 0 auto;
  position: relative;
}
hr.rule::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--ivory);
}

/* ---------- scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------- chapter numeral ---------- */
.chapter-numeral {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4.5rem, 10vw, 8rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-text);
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  user-select: none;
  pointer-events: none;
  opacity: 0.9;
}
.chapter-numeral--center { text-align: center; }

/* ---------- monogram ---------- */

.monogram {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
  text-decoration: none;
}
.monogram:hover { color: var(--ink); }

.monogram__mark {
  position: relative;
  font-family: var(--serif);
  font-size: 2.3rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  color: var(--burgundy);
  padding-right: 0.65rem;
  border-right: 1px solid var(--line);
  display: inline-block;
}
.monogram__a { display: inline-block; transform: translateY(2px); }
.monogram__plus {
  position: absolute;
  top: -2px;
  right: 0;
  font-size: 0.95rem;
  color: var(--gold-text);
  font-style: normal;
  font-weight: 400;
}

.monogram__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.monogram__name {
  font-family: var(--serif);
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 500;
}
.monogram__sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.25rem;
}

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem var(--pad);
  background: rgba(247, 243, 236, 0.90);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms ease, background 220ms ease, padding 220ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  padding-top: 0.7rem; padding-bottom: 0.7rem;
}

.site-nav { display: none; gap: 2.25rem; justify-self: center; }
.site-nav a {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-nav a:hover { color: var(--burgundy); }

.header-call {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  color: var(--ink);
  text-decoration: none;
  padding-left: 1.2rem;
  border-left: 1px solid var(--line);
  line-height: 1.1;
}
.header-call__label {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.header-call__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--burgundy);
  margin-top: 0.15rem;
}
.header-call:hover .header-call__num { color: var(--burgundy-dark); }

@media (min-width: 860px) {
  .site-nav { display: flex; }
  .header-call { display: inline-flex; }
}

/* ---------- hero (cinematic slideshow) ---------- */

.hero {
  position: relative;
  margin: 0;
  padding: 0;
  max-width: none;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}

.hero__slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 88vh;
  min-height: 520px;
  background: var(--ink);
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2000ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  will-change: opacity, transform;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  animation: heroZoom 13000ms ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 70% 35%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 80%),
    linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,0) 42%, rgba(0,0,0,0.72) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0) 58%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero__slides { min-height: 640px; }
}

.hero__plate {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(4.5rem, 10vw, 6rem);
  z-index: 3;
  max-width: 720px;
  color: var(--ivory);
}
.hero__plate .overline {
  color: rgba(247, 243, 236, 0.82);
  margin-bottom: 1.25rem;
}
.hero__plate h1 {
  color: var(--ivory);
  font-size: clamp(2.4rem, 6.8vw, 5.25rem);
  line-height: 0.98;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero__plate h1 em {
  color: #E94A50;
  font-style: italic;
}
.hero__deck {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.5;
  color: rgba(247, 243, 236, 0.88);
  max-width: 48ch;
  margin: 1.5rem 0 2rem;
  font-weight: 400;
  text-shadow: 0 1px 18px rgba(0,0,0,0.4);
}
.hero__plate .linklike {
  color: var(--ivory);
  border-bottom-color: rgba(247,243,236,0.6);
}
.hero__plate .linklike:hover { color: #E94A50; border-bottom-color: #E94A50; }

.hero__plate .btn--primary {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}
.hero__plate .btn--primary:hover {
  background: #E94A50;
  color: var(--ivory);
  border-color: #E94A50;
}

/* ---------- hero chrome (caption + dots) ---------- */

.hero__chrome {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: clamp(1.25rem, 2.5vw, 2rem);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  pointer-events: none;
}
.hero__caption {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.82);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  flex: 0 1 auto;
  min-height: 1em;
}
.hero__dots {
  display: flex;
  gap: 0.5rem;
  pointer-events: auto;
}
.hero-dot {
  appearance: none;
  border: 0;
  background: rgba(247, 243, 236, 0.35);
  width: 26px;
  height: 2px;
  padding: 10px 0;
  background-clip: content-box;
  cursor: pointer;
  transition: background 200ms ease;
}
.hero-dot:hover { background-color: rgba(247, 243, 236, 0.6); background-clip: content-box; }
.hero-dot.is-active { background-color: var(--ivory); background-clip: content-box; }
.hero-dot:focus-visible { outline: 1px solid var(--ivory); outline-offset: 3px; }

/* next arrow */
.hero-next {
  position: absolute;
  right: clamp(1rem, 3vw, 2.25rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(247, 243, 236, 0.55);
  background: rgba(26, 22, 19, 0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
  appearance: none;
  padding: 0;
}
.hero-next:hover {
  background: rgba(26, 22, 19, 0.55);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-50%) translateX(3px);
}
.hero-next:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}
.hero-next__arrow { display: inline-flex; }
@media (max-width: 599px) {
  .hero-next { width: 52px; height: 52px; right: 0.75rem; }
  .hero-next svg { width: 18px; height: 18px; }
}

/* ---------- buttons ---------- */

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }

.btn {
  display: inline-block;
  padding: 1rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
  min-height: 48px;
  border-radius: 0;
}
.btn:hover { text-decoration: none; }

.btn--primary {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}
.btn--primary:hover { background: var(--burgundy-dark); color: var(--ivory); border-color: var(--burgundy-dark); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--ivory); }

.linklike {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--burgundy);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.linklike:hover { color: var(--burgundy-dark); }

/* ---------- sections ---------- */

main section {
  padding-block: 7rem;
  padding-inline: max(var(--pad), calc((100% - var(--max)) / 2));
  max-width: none;
  margin: 0;
}
@media (min-width: 900px) {
  main section { padding-block: 9.5rem; }
}

.section-head { max-width: 60ch; margin-bottom: 3.5rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lede {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-top: 0.25rem;
  line-height: 1.55;
}

/* ---------- services (ordinal list) ---------- */

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.service {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.5rem;
  padding: 2.25rem 0;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}
.service:last-child { border-bottom: 1px solid var(--line-soft); }
.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--gold-text);
  line-height: 1;
  padding-top: 0.35rem;
  letter-spacing: 0.02em;
}
.service__body h3 { margin-bottom: 0.35em; }
.service__body h3 small {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold-text);
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-left: 0.3em;
}
.service__body p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.05rem;
  max-width: 55ch;
}
.service__tag {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.service--feature { background: transparent; }
.service--feature h3 { color: var(--ink); }
.service--feature .service__num { color: var(--burgundy); font-style: italic; font-size: 2.2rem; }

@media (min-width: 720px) {
  .service {
    grid-template-columns: 4.5rem 1fr;
    gap: 2.5rem;
    padding: 2.75rem 0;
  }
  .service__num { font-size: 2.2rem; }
  .service--feature .service__num { font-size: 2.8rem; }
  .service__body p { font-size: 1.1rem; }
}

/* ---------- legacy ribbon (40 years) ---------- */

.legacy-ribbon {
  padding-block: clamp(3rem, 7vw, 5.5rem);
  padding-inline: max(var(--pad), calc((100% - var(--max-narrow)) / 2)) !important;
  max-width: none !important;
  text-align: center;
  border-top: 1px solid rgba(26, 22, 19, 0.12);
  border-bottom: 1px solid rgba(26, 22, 19, 0.12);
  position: relative;
}
.legacy-ribbon .overline {
  margin-bottom: 1.25rem;
  color: var(--burgundy);
}
.legacy-ribbon__numeral {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  line-height: 0.9;
  margin-bottom: 1.5rem;
}
.legacy-ribbon__digits {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(7rem, 22vw, 16rem);
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-text);
  text-shadow: 0 0 1px rgba(179, 138, 62, 0.18);
}
.legacy-ribbon__word {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: var(--burgundy);
  letter-spacing: 0.01em;
}
.legacy-ribbon__line {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  line-height: 1.55;
  color: var(--ink);
  max-width: 38ch;
  margin: 0 auto;
  font-weight: 400;
}
.legacy-ribbon__line em {
  font-style: italic;
  color: var(--burgundy);
}

@media (max-width: 599px) {
  .legacy-ribbon {
    padding-block: 2.5rem;
  }
  .legacy-ribbon__numeral { gap: 0.4rem; margin-bottom: 1.1rem; }
  .legacy-ribbon__line { font-size: 1rem; line-height: 1.5; }
}

/* ---------- craft ---------- */

.craft {
  padding-inline: max(var(--pad), calc((100% - var(--max-narrow)) / 2)) !important;
  max-width: none !important;
  text-align: left;
}
.craft__head-wrap { margin-bottom: 2.75rem; }
.craft__head {
  font-weight: 400;
  margin-bottom: 0;
}
.craft__head span { display: inline-block; padding-left: 2.5rem; }

/* ---------- pull quote ---------- */
.pullquote {
  margin: 3.5rem 0 3.5rem;
  padding: 2.5rem 0 2.75rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.pullquote::before,
.pullquote::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.pullquote::before { top: 0; }
.pullquote::after { top: 100%; }
.pullquote p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.25;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.012em;
  max-width: 24ch;
  margin: 0 auto 1.1rem;
}
.pullquote p em { color: var(--burgundy); }
.pullquote footer {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.craft__body {
  max-width: 58ch;
  padding-left: 0;
  border-left: 0;
  margin-top: 1rem;
}
.craft__body p {
  font-family: var(--serif);
  font-size: 1.24rem;
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
}
.craft__body p:first-child::first-letter {
  font-family: var(--serif);
  font-size: 4.2rem;
  line-height: 0.9;
  float: left;
  padding: 0.15rem 0.6rem 0 0;
  color: var(--burgundy);
  font-style: italic;
  font-weight: 500;
}

/* ---------- gallery ---------- */

.gallery-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 820px) {
  .gallery-strip { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.plate { margin: 0; }
.plate img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--paper);
}
.plate figcaption {
  margin-top: 0.85rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.plate figcaption span {
  display: inline-block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-right: 0.6rem;
}

/* ---------- gallery feature plate ---------- */

.gallery-feature {
  margin: 0 0 4rem;
}
.gallery-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: var(--ink);
}
.gallery-feature figcaption {
  margin-top: 0.95rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.4;
  text-align: center;
}
.gallery-feature figcaption span {
  display: inline-block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-right: 0.6rem;
}

/* ---------- heritage plate (storefront) ---------- */

.heritage-plate {
  margin: 0 auto 4rem;
  max-width: var(--max-narrow);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
.heritage-plate img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--paper);
  filter: contrast(1.04) saturate(1.02);
}
.heritage-plate figcaption {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.heritage-plate figcaption span {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 0.85rem;
}
.heritage-plate figcaption p {
  margin: 0;
  font-style: italic;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.5;
}
.heritage-plate figcaption em {
  color: var(--burgundy);
  font-style: italic;
  font-weight: 500;
}
@media (min-width: 720px) {
  .heritage-plate {
    grid-template-columns: 0.85fr 1fr;
    gap: 3rem;
  }
  .heritage-plate img { aspect-ratio: 3 / 4; }
}

/* ---------- before / after slider ---------- */

.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 820px) {
  .ba-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.ba { margin: 0; }
.ba__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
}
.ba__after,
.ba__before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba__before {
  clip-path: inset(0 88% 0 0);
  -webkit-clip-path: inset(0 88% 0 0);
  transition: clip-path 40ms linear, -webkit-clip-path 40ms linear;
}
.ba__before-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ba__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  opacity: 0;
  cursor: ew-resize;
  appearance: none;
  -webkit-appearance: none;
  z-index: 3;
}
.ba__range::-webkit-slider-thumb { appearance: none; width: 40px; height: 100%; cursor: ew-resize; }
.ba__range::-moz-range-thumb { width: 40px; height: 100%; border: 0; cursor: ew-resize; background: transparent; }

.ba__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 12%;
  width: 1px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  transition: left 40ms linear;
}
.ba__handle-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, rgba(247,243,236,0) 0%, rgba(247,243,236,0.95) 12%, rgba(247,243,236,0.95) 88%, rgba(247,243,236,0) 100%);
  box-shadow: 0 0 22px rgba(0,0,0,0.5);
}
.ba__handle-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border: 1.5px solid var(--gold);
  background: rgba(26, 22, 19, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 50%;
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(247, 243, 236, 0.12);
  animation: baPulse 2200ms ease-in-out infinite;
}
@keyframes baPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(0,0,0,0.45), 0 0 0 0 rgba(179, 138, 62, 0.55), inset 0 0 0 1px rgba(247, 243, 236, 0.12); }
  50%      { box-shadow: 0 8px 30px rgba(0,0,0,0.45), 0 0 0 10px rgba(179, 138, 62, 0), inset 0 0 0 1px rgba(247, 243, 236, 0.12); }
}
.ba__handle-knob::before,
.ba__handle-knob::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  transform: translateY(-50%);
}
.ba__handle-knob::before {
  left: 14px;
  border-right: 9px solid var(--gold);
}
.ba__handle-knob::after {
  right: 14px;
  border-left: 9px solid var(--gold);
}

/* hint while idle */
.ba__hint {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.35rem 0.85rem;
  background: rgba(26, 22, 19, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 1;
  transition: opacity 400ms ease;
}
.ba.is-touched .ba__hint { opacity: 0; }
.ba.is-touched .ba__handle-knob { animation: none; }

.ba__tag {
  position: absolute;
  top: 0.9rem;
  z-index: 2;
  padding: 0.3rem 0.65rem;
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(26, 22, 19, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}
.ba__tag--before { left: 0.9rem; }
.ba__tag--after  { right: 0.9rem; color: #F4C6A8; }

.ba figcaption {
  margin-top: 0.85rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.ba figcaption span {
  display: inline-block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-right: 0.6rem;
}

/* ---------- bench banner (cinematic) ---------- */

.bench-banner {
  position: relative;
  margin: 0;
  width: 100%;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
  display: block;
}
.bench-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: 30% center;
  filter: contrast(1.04) saturate(1.05);
}
.bench-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.18) 48%, rgba(0,0,0,0) 78%),
    linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.5) 100%);
}
.bench-banner__plate {
  position: absolute;
  left: var(--pad);
  bottom: clamp(2rem, 5vw, 4rem);
  z-index: 2;
  max-width: 36ch;
  color: var(--ivory);
}
.bench-banner__plate .overline {
  color: var(--gold);
  margin-bottom: 1rem;
}
.bench-banner__quote {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  color: var(--ivory);
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 22px rgba(0,0,0,0.55);
}
.bench-banner__quote em {
  color: #E94A50;
  font-style: italic;
}
@media (max-width: 599px) {
  .bench-banner img { aspect-ratio: 4 / 5; object-position: center 45%; }
}

/* ---------- workshop / tools ---------- */

.workshop {
  background: var(--paper);
  border-block: 1px solid var(--line-soft);
}
.workshop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0 auto;
  max-width: var(--max);
}
@media (min-width: 820px) {
  .workshop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
  }
}
.workshop-plate { margin: 0; }
.workshop-plate img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--ink);
  filter: contrast(1.02) saturate(1.04);
}
.workshop-plate--wide { grid-column: 1 / -1; }
.workshop-plate--wide img {
  aspect-ratio: 21 / 9;
  object-position: center 40%;
}
.workshop-plate figcaption {
  margin-top: 0.95rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.workshop-plate figcaption span {
  display: inline-block;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-right: 0.6rem;
}

/* ---------- storefront banner ---------- */

.storefront-banner {
  position: relative;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
}
.storefront-banner img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}
.storefront-banner figcaption {
  position: absolute;
  left: var(--pad);
  bottom: 1.25rem;
  color: rgba(247, 243, 236, 0.92);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow: 0 1px 10px rgba(0,0,0,0.55);
}
.storefront-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

/* ---------- visit ---------- */

.visit {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
.visit address {
  font-style: italic;
  font-family: var(--serif);
  font-size: 1.22rem;
  color: var(--ink);
  margin: 1.25rem 0 2rem;
  line-height: 1.5;
}
.hours {
  margin: 0 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hours div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.35rem 0;
}
.hours dt {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hours dd {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0;
}

.visit__map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}
.visit__map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.85) contrast(0.95); }

@media (min-width: 900px) {
  .visit { grid-template-columns: 1fr 1.05fr; gap: 4rem; align-items: center; }
}

/* ---------- faq ---------- */

.faq {
  background: var(--paper);
  border-block: 1px solid var(--line-soft);
}
.faq-list {
  max-width: 56rem;
  margin: 3rem auto 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.6rem 2.5rem 1.6rem 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
  transition: color 160ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: normal;
  color: var(--gold-text);
  line-height: 1;
  transition: transform 240ms ease, color 160ms ease;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
  color: var(--burgundy);
}
.faq-item summary:hover { color: var(--burgundy); }
.faq-item summary:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq-item p {
  margin: 0 0 1.6rem;
  padding-right: 2.5rem;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

@media (min-width: 700px) {
  .faq-item summary { font-size: 1.32rem; padding: 1.9rem 3rem 1.9rem 0; }
  .faq-item p { font-size: 1.12rem; padding-right: 3rem; }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 5rem var(--pad) 3.5rem;
  margin-top: 2rem;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 0.6rem;
  text-align: center;
  justify-items: center;
}
.site-footer a { color: var(--gold); border-bottom: 1px solid transparent; }
.site-footer a:hover { color: var(--ivory); border-bottom-color: var(--ivory); }

.monogram--foot {
  margin-bottom: 1.5rem;
  color: var(--ivory);
}
.monogram--foot .monogram__a { color: var(--ivory); }
.monogram--foot .monogram__plus { color: var(--gold); }
.monogram--foot .monogram__mark { border-right-color: rgba(247,243,236,0.2); }
.monogram--foot .monogram__name { color: var(--ivory); }
.monogram--foot .monogram__sub { color: rgba(247,243,236,0.55); }

.site-footer p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(247,243,236,0.75);
  margin: 0.15rem 0;
}
.fineprint {
  margin-top: 1.75rem !important;
  font-family: var(--sans) !important;
  font-style: normal !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  color: rgba(247,243,236,0.5) !important;
}

/* ---------- sticky mobile call ---------- */

.sticky-call {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--burgundy);
  color: var(--ivory);
  text-align: center;
  border-radius: 0;
  box-shadow: 0 14px 40px rgba(0,0,0,0.22);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.sticky-call > span:first-child {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.85);
}
.sticky-call__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
}
.sticky-call:hover { background: var(--burgundy-dark); color: var(--ivory); }
@media (min-width: 768px) { .sticky-call { display: none; } }
@media (max-width: 767.98px) { body { padding-bottom: 5rem; } }

/* ---------- a11y ---------- */

:focus-visible {
  outline: 1px solid var(--burgundy);
  outline-offset: 4px;
}

::selection { background: var(--burgundy); color: var(--ivory); }

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

/* ---------- mobile responsiveness pass ---------- */

@media (max-width: 599px) {
  body { font-size: 17px; }

  /* hero — tighter spacing, hide secondary chrome that crowds the small canvas */
  .hero__slides { min-height: 540px; max-height: 78vh; }
  .hero__plate {
    bottom: 5.5rem;
    left: 1.25rem;
    right: 1.25rem;
    max-width: none;
  }
  .hero__plate h1 { font-size: clamp(2.25rem, 11vw, 3.4rem); line-height: 1.0; }
  .hero__deck { font-size: 1rem; margin: 1rem 0 1.5rem; }
  .hero__plate .cta-row { gap: 0.75rem 1.25rem; }
  .hero__plate .btn { padding: 0.85rem 1.4rem; font-size: 0.7rem; }
  .hero__plate .linklike { font-size: 0.95rem; }
  .hero__chrome { left: 1.25rem; right: 1.25rem; bottom: 0.85rem; }
  .hero__caption { font-size: 0.55rem; letter-spacing: 0.22em; }

  /* header — cleaner stack, hide nav, keep monogram + tap-to-call */
  .site-header { gap: 0.75rem; padding: 0.85rem 1.25rem; }
  .monogram__mark { font-size: 1.85rem; padding-right: 0.55rem; }
  .monogram__name { font-size: 1.05rem; }
  .monogram__sub { font-size: 0.55rem; letter-spacing: 0.18em; }

  /* sections — reduce vertical breathing on mobile */
  main section { padding-block: 4.5rem; }
  .section-head { margin-bottom: 2rem; }
  .chapter-numeral { font-size: clamp(3.5rem, 16vw, 5rem); margin-bottom: 0.85rem; }
  .overline { font-size: 0.6rem; letter-spacing: 0.22em; margin-bottom: 1.25rem; }
  h2 { font-size: clamp(1.95rem, 8vw, 2.6rem); }
  h3 { font-size: 1.15rem; }
  .section-lede { font-size: 1.02rem; }

  /* services — tighten ordinals */
  .service { grid-template-columns: 2.4rem 1fr; gap: 1rem; padding: 1.75rem 0; }
  .service__num { font-size: 1.55rem; padding-top: 0.25rem; }
  .service--feature .service__num { font-size: 1.95rem; }
  .service__body p { font-size: 0.98rem; }

  /* craft — drop cap softened, paragraph tighter */
  .craft__head span { padding-left: 1.25rem; }
  .craft__body p { font-size: 1.08rem; line-height: 1.55; }
  .craft__body p:first-child::first-letter { font-size: 3.2rem; padding: 0.1rem 0.45rem 0 0; }
  .pullquote { margin: 2.25rem 0; padding: 1.75rem 0; }
  .pullquote p { font-size: clamp(1.25rem, 6vw, 1.75rem); }

  /* bench banner — better text contrast over dark machine */
  .bench-banner::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(0,0,0,0.78) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 60%);
  }
  .bench-banner__plate {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.5rem;
    max-width: none;
  }
  .bench-banner__plate .overline { font-size: 0.55rem; margin-bottom: 0.75rem; }
  .bench-banner__quote { font-size: clamp(1.4rem, 6.5vw, 1.95rem); line-height: 1.2; }

  /* gallery feature plate — more cinematic on mobile */
  .gallery-feature { margin-bottom: 2.5rem; }
  .gallery-feature img { aspect-ratio: 4 / 5; }
  .gallery-feature figcaption { font-size: 0.92rem; }

  /* heritage plate stays single-column — already handled by min-width: 720px */
  .heritage-plate figcaption p { font-size: 1.05rem; }

  /* before/after grid stays single column on mobile */
  .ba-grid { gap: 1.75rem; }
  .ba__handle-knob { width: 48px; height: 48px; }
  .ba__hint { font-size: 0.55rem; padding: 0.3rem 0.7rem; }
  .ba figcaption { font-size: 0.9rem; }

  /* workshop — single column, generous breathing */
  .workshop-grid { gap: 1.75rem; }
  .workshop-plate img { aspect-ratio: 4 / 5; }
  .workshop-plate figcaption { font-size: 0.92rem; margin-top: 0.65rem; }

  /* visit — address + map stack, no awkward gap */
  .visit { gap: 1.5rem; }
  .visit address { font-size: 1.1rem; margin: 0.85rem 0 1.5rem; }
  .hours { padding: 1rem 0; margin-bottom: 1.5rem; }
  .hours dd { font-size: 1.08rem; }
  .visit__map { aspect-ratio: 4 / 3; }

  /* footer */
  .site-footer { padding: 3.5rem 1.25rem 5.5rem; }
  .site-footer p { font-size: 0.9rem; }

  /* sticky-call — tighter, stays elegant */
  .sticky-call {
    left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
    padding: 0.75rem 1.1rem;
  }
  .sticky-call > span:first-child { font-size: 0.6rem; letter-spacing: 0.22em; }
  .sticky-call__num { font-size: 1rem; }

  /* hide grain overlay on mobile to keep text legible */
  .grain { opacity: 0.14; }
}

/* very small phones (iPhone SE 320px) */
@media (max-width: 360px) {
  .hero__plate h1 { font-size: 2rem; }
  .hero__deck { font-size: 0.95rem; }
  .hero__plate .btn { font-size: 0.65rem; padding: 0.75rem 1.2rem; }
  .hero__plate .linklike { font-size: 0.88rem; }
  .monogram__name { font-size: 0.98rem; }
  .monogram__sub { display: none; }
}

/* ---------- pdf / print mode ---------- */
.pdf-mode .site-header { position: static; background: var(--ivory); border-bottom: 1px solid var(--line); }
.pdf-mode .grain { display: none; }
.pdf-mode [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
.pdf-mode .hero-slide { opacity: 0 !important; animation: none !important; transition: none !important; }
.pdf-mode .hero-slide.is-active { opacity: 1 !important; transform: none !important; }
.pdf-mode .hero__slides { min-height: 620px; }
.pdf-mode .hero-next,
.pdf-mode .hero__dots,
.pdf-mode .hero__caption,
.pdf-mode .sticky-call,
.pdf-mode .ba__handle,
.pdf-mode .ba__range,
.pdf-mode .ba__hint { display: none !important; }
.pdf-mode .ba__before { clip-path: inset(0 50% 0 0) !important; -webkit-clip-path: inset(0 50% 0 0) !important; }
.pdf-mode .ba__frame::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(247,243,236,0.85);
  z-index: 2;
}
.pdf-mode .visit__map {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdf-mode .visit__map iframe { display: none; }
.pdf-mode .visit__map::before {
  content: "Springfield Mall · 6660 Springfield Mall, Springfield VA 22150";
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  padding: 2rem;
  text-align: center;
}
.pdf-mode main section { padding: 5rem var(--pad); }
.pdf-mode .hero__slides { max-height: 640px; }
