/* Jason Henry Hunt: Kwakwaka'wakw master carver.
   DARK GALLERY: deep warm charcoal canvas, museum-grade restraint. The
   colour-saturated carved panels are the only saturated objects on the page;
   everything else is bone-on-ink with hairline rules, no boxes or shadows.
   System font stacks only (head is config-injected; no external font links).
   Mobile-first; zero horizontal overflow at 360px.

   Markup contracts page authors rely on:
   - .hero: <section class="hero"><img …>(or .hero-bg)<div class="hero-inner">…</div></section>
   - .before-after: two <figure><img><figcaption>Before|After</figcaption></figure>;
     the SECOND figure gets the cedar AFTER tag automatically.
   - .lineage-band: flat list of items, each holding .lineage-name + .lineage-detail;
     the cedar arrow separator is generated between items. */

:root {
  --ink: #131210;
  --ink-2: #1c1a17;
  --line: #2a2722;
  --bone: #ece5d8;
  --bone-dim: #b3aa99;
  --cedar: #c98a4b;
  --teal: #2e8f9e;
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1100px;
  --wrap-wide: 1280px;
  --pad-x: clamp(20px, 5vw, 40px);
}

/* Merto root globals.css paints brass selection/focus/tap on every route.
   Custom sites load after it and need explicit overrides. The whole site is
   one dark surface, so a single set is enough. */
::selection {
  background: var(--bone);
  color: var(--ink);
}
:focus-visible {
  outline: 2px solid var(--cedar);
  outline-offset: 3px;
}
@media (pointer: coarse) {
  html,
  :where(a, button, summary, [role="button"], label[for], input, select, textarea) {
    -webkit-tap-highlight-color: rgba(201, 138, 75, 0.18);
  }
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--bone-dim);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img,
video,
iframe {
  max-width: 100%;
  height: auto;
}
img {
  display: block;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.55em;
  overflow-wrap: break-word;
}
h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
}
h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
}
p {
  margin: 0 0 1em;
  max-width: 64ch;
}
a {
  color: var(--bone);
  text-decoration: underline;
  text-decoration-color: rgba(179, 170, 153, 0.45);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
a:hover {
  text-decoration-color: var(--cedar);
}
hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: clamp(2rem, 5vw, 3.5rem) 0;
}
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cedar);
  margin: 0 0 1rem;
}
.lede {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 58ch;
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(19, 18, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, border-color 0.3s ease;
}
/* Over the hero the bar starts as pure glass; it solidifies on scroll.
   Gated on :has so browsers without it just keep the solid bar. */
@media (min-width: 861px) {
  html:not(.scrolled) body:has(main > .hero:first-child) .site-header {
    background: rgba(19, 18, 16, 0.25);
    border-bottom-color: transparent;
  }
}
.header-inner {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.brand {
  font-family: var(--serif);
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  text-decoration: none;
  white-space: nowrap;
}
.brand:hover {
  color: #fff;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.4vw, 1.9rem);
}
.nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--bone-dim);
  text-decoration: none;
  padding: 0.5rem 0.1rem;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav a:hover {
  color: var(--bone);
}
.nav a.active {
  color: var(--bone);
}
.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cedar);
  transform: translateX(-50%);
}
.nav-contact {
  display: none;
}
.nav .nav-home {
  display: none;
}
.brand .brand-mark {
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.brand:hover .brand-mark {
  transform: rotate(14deg);
}
.brand span {
  background-image: linear-gradient(var(--cedar), var(--cedar));
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: 0 100%;
  transition: background-size 0.3s ease;
  padding-bottom: 2px;
}
.brand:hover span {
  background-size: 100% 1px;
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 0;
  min-height: 44px;
  min-width: 44px;
  padding: 10px 4px;
  cursor: pointer;
  font: 600 0.8rem var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
}
.nav-toggle-bars {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.nav-toggle-bars::before {
  top: -7px;
}
.nav-toggle-bars::after {
  top: 7px;
}
html.nav-locked {
  overflow: hidden;
}
@media (max-width: 860px) {
  /* backdrop-filter on the header would become the containing block for the
     fixed full-screen menu (trapping it inside the bar) - drop it on mobile. */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(19, 18, 16, 0.97);
  }
  .nav-toggle {
    display: flex;
  }
  .nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(19, 18, 16, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 5.5rem var(--pad-x) 3rem;
    display: none;
  }
  .nav.open {
    display: flex;
  }
  .nav a {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: var(--bone);
    padding: 0.7rem 1.5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease calc(var(--i, 0) * 55ms), transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) calc(var(--i, 0) * 55ms);
  }
  .nav.open a {
    opacity: 1;
    transform: none;
  }
  .nav .nav-home {
    display: block;
  }
  .nav a:hover,
  .nav a:focus-visible {
    color: var(--cedar);
  }
  .nav a:active {
    transform: scale(0.97);
  }
  .nav a.active {
    color: var(--cedar);
  }
  .nav a.active::after {
    display: none;
  }
  .nav-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    margin-top: 2.2rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--line);
    opacity: 0;
    transition: opacity 0.4s ease 0.4s;
  }
  .nav.open .nav-contact {
    opacity: 1;
  }
  .nav-contact a {
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: var(--bone-dim);
    opacity: 1;
    transform: none;
    transition: color 0.2s ease;
    padding: 0.4rem;
  }
  /* Hamburger morphs to X while open */
  .nav-toggle[aria-expanded="true"] {
    position: relative;
    z-index: 56;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars {
    background: transparent;
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
    top: 0;
    transform: rotate(-45deg);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  background: var(--ink-2);
  overflow: hidden;
}
.hero > img,
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 18, 16, 0.42) 0%, rgba(19, 18, 16, 0.08) 40%, rgba(19, 18, 16, 0.88) 92%),
    linear-gradient(90deg, rgba(19, 18, 16, 0.62) 0%, rgba(19, 18, 16, 0) 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding: clamp(5rem, 14vw, 9rem) var(--pad-x) clamp(2.5rem, 6vw, 4.5rem);
}
.hero h1 {
  max-width: 17ch;
  color: #fff;
}
.hero h1 .hero-sub {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 1.1rem;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.6;
  color: rgba(236, 229, 216, 0.82);
  max-width: 52ch;
  margin: 0 0 1.6rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
/* Hero eyebrows: glass chip so the label reads on any photo */
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: rgba(19, 18, 16, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 138, 75, 0.4);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  color: #d79a5d;
  margin-bottom: 1.2rem;
}
/* Portrait-led heroes: keep the subject's head in frame */
.hero > img.hero-focus-top {
  object-position: 50% 14%;
}
/* Interior pages: shorter banner */
.hero--page {
  min-height: 52vh;
}
.hero--page > img {
  animation: none;
  transform: scale(1.06);
}
.hero--page::before {
  /* Bottom fold only — hides the pale mortar band without re-cropping the photo */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(22%, 7.5rem);
  background: linear-gradient(to top, var(--ink) 0%, rgba(19, 18, 16, 0.94) 42%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero--page + .work-intro,
.hero--page + .policy-strip {
  background: var(--ink);
  border-top-color: var(--ink);
}

/* ---------- Work page intro (provenance + policies) ---------- */
.work-intro {
  border-bottom: 1px solid var(--line);
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad-x);
}
.work-intro-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 2.75rem);
}
.work-intro-h2 {
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  margin-bottom: 0.7rem;
}
.work-intro-lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.2vw, 1.42rem);
  line-height: 1.55;
  color: var(--bone);
  margin: 0;
  max-width: 50ch;
}
.work-policies {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3.5vw, 2.5rem);
  padding-top: clamp(1.5rem, 4vw, 2rem);
  border-top: 1px solid var(--line);
}
.work-policy h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cedar);
  margin: 0 0 0.6rem;
}
.work-policy p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--bone-dim);
}
@media (max-width: 720px) {
  .work-policies {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.work-intro--compact {
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--pad-x);
}
.work-intro--compact .work-policies {
  padding-top: 0;
  border-top: none;
}

/* ---------- Buttons ---------- */
.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  min-height: 48px;
  padding: 0.8rem 1.7rem;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.btn {
  background: var(--cedar);
  color: var(--ink);
  border: 1px solid var(--cedar);
}
.btn:hover {
  background: #d79a5d;
  border-color: #d79a5d;
  color: var(--ink);
  transform: translateY(-1px);
}
.btn:active {
  transform: translateY(1px);
}
.btn:focus-visible {
  outline: 2px solid var(--cedar);
  outline-offset: 3px;
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--bone-dim);
}
.btn-ghost:hover {
  border-color: var(--bone);
  color: #fff;
  background: rgba(236, 229, 216, 0.07);
  transform: translateY(-1px);
}
.btn-ghost:active {
  transform: translateY(1px);
}
.btn-ghost:focus-visible {
  outline: 2px solid var(--cedar);
  outline-offset: 3px;
}

/* ---------- Sections ---------- */
.section,
.section-wide {
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) var(--pad-x);
}
.section {
  max-width: var(--wrap);
}
.section-wide {
  max-width: var(--wrap-wide);
}
/* Full-bleed warm lift behind a section: wrap a .section inside this. */
.section-tint {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-tint--cool {
  background: #16191b;
  border-top-color: rgba(46, 143, 158, 0.18);
  border-bottom-color: rgba(46, 143, 158, 0.18);
}
blockquote {
  margin: 2rem 0;
  padding: 0.4rem 0 0.4rem 1.4rem;
  border-left: 2px solid var(--teal);
}
blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.5;
  color: var(--bone);
  margin: 0 0 0.5rem;
}
blockquote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
}
.install-band {
  margin: 0;
}
.install-band img {
  display: block;
  width: 100%;
  border-radius: 4px;
}
.install-band figcaption {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--bone-dim);
  padding-top: 0.8rem;
}
.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.section-head p {
  margin-bottom: 0;
}

/* ---------- Round panels (his signature circular format) ---------- */
.round-frame {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  transition: box-shadow 0.25s ease;
  box-shadow: 0 0 0 1px var(--line);
}
a:hover .round-frame,
.work-card:hover .round-frame,
.round-frame:hover {
  box-shadow: 0 0 0 1px var(--line), 0 0 0 5px rgba(201, 138, 75, 0.35);
}

/* ---------- Work grid ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
}
@media (max-width: 980px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .work-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}
.work-card {
  margin: 0;
  text-align: center;
}
.work-card a:not(.btn):not(.btn-ghost) {
  text-decoration: none;
  color: inherit;
}
.work-card img {
  width: 100%;
  margin-bottom: 1.1rem;
}
.work-card img:not(.round-frame) {
  aspect-ratio: 1;
  object-fit: cover;
}
.work-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.25rem;
}
.work-card figcaption,
.work-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
.price {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--bone);
}
.price-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.35rem 0 0.75rem;
}
.work-meta .price-row {
  align-items: center;
  margin: 0.2rem 0 0.4rem;
  width: 100%;
}
.product-info .price-row {
  margin: 0 0 1rem;
}
.product-info .price-row .stock-pill {
  text-align: left;
}
.price-row .stock-pill {
  white-space: normal;
  line-height: 1.35;
  text-align: center;
}

/* ---------- Stock pills ---------- */
.stock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--bone-dim);
  white-space: nowrap;
}
.stock-pill.in-stock {
  color: #6fc4d1;
  border-color: rgba(46, 143, 158, 0.55);
  background: rgba(46, 143, 158, 0.12);
}
.stock-pill.made-to-order {
  color: var(--cedar);
  border-color: rgba(201, 138, 75, 0.5);
  background: rgba(201, 138, 75, 0.1);
}
.stock-pill.inquire {
  color: var(--bone-dim);
  border-color: var(--bone-dim);
  background: transparent;
}

/* ---------- Lineage band (five generations) ---------- */
.lineage-band {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.2rem clamp(0.9rem, 2.5vw, 1.6rem);
  list-style: none;
  margin: 0;
  padding: clamp(1.6rem, 4vw, 2.4rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lineage-band > * {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.9rem, 2.5vw, 1.6rem);
}
.lineage-band > * + *::before {
  content: "\2192";
  color: var(--cedar);
  font-size: 1.1rem;
  line-height: 1.5;
}
.lineage-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.3;
  color: var(--bone);
}
.lineage-detail {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
}

/* ---------- Restoration case studies ---------- */
.case-study {
  padding: clamp(2rem, 5vw, 3rem) 0;
  border-top: 1px solid var(--line);
}
.case-study:last-child {
  border-bottom: 1px solid var(--line);
}
.case-study h3 {
  margin-bottom: 0.4rem;
}
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  margin: 1.5rem 0 2.2rem;
}
@media (max-width: 640px) {
  .before-after {
    grid-template-columns: 1fr;
  }
}
.before-after figure {
  position: relative;
  margin: 0;
}
.before-after img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.before-after figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(19, 18, 16, 0.78);
  border: 1px solid var(--line);
  padding: 0.3rem 0.7rem;
}
.before-after figure:last-child figcaption {
  color: #dff2f5;
  background: var(--teal);
  border-color: var(--teal);
}

/* ---------- Press ---------- */
.press-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.press-item {
  padding: clamp(1.4rem, 3.5vw, 2.1rem) 0;
  border-top: 1px solid var(--line);
}
.press-item:last-child {
  border-bottom: 1px solid var(--line);
}
.press-source {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cedar);
}
.press-date {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--bone-dim);
  margin-left: 0.8rem;
}
.press-item blockquote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.55;
  color: var(--bone);
  margin: 0.7rem 0 0.6rem;
  max-width: 58ch;
}
.press-item a {
  font-size: 0.88rem;
  font-weight: 500;
}

/* ---------- Video embed (thumbnail → lightbox player) ---------- */
.video-embed {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  margin: 0;
  background: var(--ink-2);
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
button.video-embed {
  font: inherit;
  color: inherit;
  text-align: inherit;
}
.video-embed:hover,
.video-embed:focus-visible {
  border-color: var(--cedar);
  box-shadow: 0 0 0 1px rgba(201, 138, 75, 0.35);
}
.video-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.video-embed:hover img,
.video-embed:focus-visible img {
  transform: scale(1.03);
}
.video-embed-year {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(19, 18, 16, 0.72);
  border: 1px solid var(--line);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  pointer-events: none;
}
.video-embed-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 2.75rem 0.9rem 0.85rem;
  text-align: left;
  background: linear-gradient(to top, rgba(19, 18, 16, 0.94) 0%, rgba(19, 18, 16, 0.72) 48%, transparent 100%);
  pointer-events: none;
}
.video-embed-eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-bottom: 0.3rem;
}
.video-embed-title {
  display: block;
  font-family: var(--serif);
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.25;
  color: var(--bone);
  text-wrap: balance;
}
.video-embed-meta {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--bone-dim);
}
.video-play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  background: rgba(19, 18, 16, 0.12);
  transition: background 0.2s ease;
  pointer-events: none;
}
.video-play::before {
  content: "";
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(201, 138, 75, 0.94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}
.video-play::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 4px;
}
.video-play-label {
  position: absolute;
  margin-top: 4.6rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}
.video-embed:hover .video-play,
.video-embed:focus-visible .video-play {
  background: rgba(19, 18, 16, 0.28);
}
.video-embed:hover .video-play::before,
.video-embed:focus-visible .video-play::before {
  transform: scale(1.06);
}
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: rgba(19, 18, 16, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4vmin;
}
.video-lightbox.open {
  display: flex;
}
.video-lightbox-inner {
  position: relative;
  width: min(1100px, 92vw);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 0 0 1px var(--line);
}
.video-lightbox-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-lightbox-cap {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--bone-dim);
  max-width: 70ch;
  text-align: center;
  margin: 0;
}
.video-lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--bone);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.video-lightbox-close:hover {
  border-color: var(--cedar);
  color: var(--cedar);
}

/* ---------- FAQ ---------- */
.faq-block {
  max-width: 760px;
}
.faq-block details {
  border-top: 1px solid var(--line);
}
.faq-block details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-block summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0.2rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--bone);
}
.faq-block summary::-webkit-details-marker {
  display: none;
}
.faq-block summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--cedar);
  flex: none;
  transition: transform 0.2s ease;
}
.faq-block details[open] summary::after {
  transform: rotate(45deg);
}
.faq-block details > div {
  padding: 0 0.2rem 1.2rem;
  font-size: 0.95rem;
}
.faq-block details > div p:last-child {
  margin-bottom: 0;
}

/* ---------- Policy strip (shipping / returns fine print) ---------- */
.policy-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(1.2rem, 3vw, 1.8rem) var(--pad-x);
}
.policy-strip > div {
  max-width: 52ch;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--bone-dim);
}
.policy-strip p {
  margin: 0;
}
.policy-strip strong {
  color: var(--bone);
  font-weight: 600;
}

/* ---------- Price table (the print's price list) ---------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 640px;
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.price-table th {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.price-table td:last-child,
.price-table th:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.price-table td {
  color: var(--bone);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad-x) 1.6rem;
}
.footer-top {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding-bottom: clamp(2.2rem, 5vw, 3.5rem);
}
.footer-mark {
  width: 44px;
  height: 44px;
  margin-bottom: 1.2rem;
}
.footer-statement {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--bone);
  max-width: 18ch;
  margin: 0;
}
.footer-grid {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--line);
}
.footer-name {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--bone);
  margin-bottom: 0.5rem;
}
.footer-loc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--bone-dim);
  margin: 0;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-h {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-bottom: 0.9rem;
}
.footer-col a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 2px 0;
  font-family: var(--sans);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--bone-dim);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--bone);
}
.footer-bottom {
  max-width: var(--wrap-wide);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--bone-dim);
}
@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-id {
    grid-column: 1 / -1;
  }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
}


/* ---------- Product page (gallery-plaque layout) ---------- */
.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.product-figure {
  margin: 0;
}
.product-figure img {
  display: block;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.product-info > .eyebrow {
  margin-bottom: 1.2rem;
}
.product-info h1 {
  margin-top: 0;
}
.product-info .price {
  font-size: 1.25rem;
  color: var(--cedar);
}
@media (max-width: 860px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-figure img {
    max-width: 420px;
  }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--cedar);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 6px 0;
}
.skip-link:focus-visible {
  left: 0;
}

/* ---------- Contact form (mailto compose, no backend) ---------- */
.form {
  max-width: 640px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-field {
  margin-bottom: 1.1rem;
}
.form-field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 0.45rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--bone);
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease;
}
.form-field textarea {
  resize: vertical;
}
.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23c98a4b' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.7rem;
  cursor: pointer;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--bone-dim);
}
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 2px solid var(--cedar);
  outline-offset: 1px;
  border-color: var(--cedar);
}
.form-field ::placeholder {
  color: rgba(179, 170, 153, 0.55);
}
.form-sent {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(46, 143, 158, 0.45);
  background: rgba(46, 143, 158, 0.1);
  color: var(--bone);
  font-size: 0.95rem;
}

/* ---------- Brand mark ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.brand-mark {
  width: 34px;
  height: 34px;
  flex: none;
}

/* ---------- Motion: hero drift + scroll reveal ---------- */
.hero {
  overflow: hidden;
}
.hero img {
  animation: hero-drift 16s ease-out forwards;
}
@keyframes hero-drift {
  from {
    transform: scale(1.07);
  }
  to {
    /* Never settle at 1:0 — short page heroes would expose a bright edge sliver */
    transform: scale(1.04);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.7s ease var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1) var(--reveal-delay, 0ms);
}
.reveal.revealed {
  opacity: 1;
  transform: none;
}
.section-head h2 {
  position: relative;
  padding-bottom: 0.85rem;
}
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: var(--cedar);
  transition: width 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.25s;
}
.revealed .section-head h2::after {
  width: 56px;
}
.work-card .round-frame {
  transition: box-shadow 0.25s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.work-card:hover .round-frame {
  transform: rotate(-1.4deg) scale(1.02);
}
.work-card a .round-frame {
  transition: box-shadow 0.25s ease, transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}



/* ---------- CTA row (the one way buttons sit in a band) ---------- */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

/* ---------- Framed photo (every rectangular content image) ---------- */
.photo {
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--line);
}

/* ---------- Work feature rows (Owl / Feast editorial bands) ---------- */
.feature-band {
  margin-bottom: clamp(2.8rem, 7vw, 5rem);
}
@media (max-width: 820px) {
  /* On small screens the feature pieces render exactly like every other
     piece card: image first, then a centered caption column. The editorial
     split treatment is desktop-only. */
  .feature-band > div:has(.round-frame) {
    order: -1;
  }
  .feature-band > div:not(:has(.round-frame)) {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.45rem;
  }
  .feature-band > div:not(:has(.round-frame)) p {
    margin: 0;
    font-size: 0.95rem;
    max-width: 46ch;
  }
  .feature-band h3 {
    margin: 0;
  }
  .feature-band .price-row {
    align-items: center;
    margin-top: 0.35rem;
  }
  .feature-band .cta-row {
    justify-content: center;
    margin-top: 0.35rem;
  }
}

/* ---------- Editorial split band (text | large media + inset) ---------- */
.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-media {
  position: relative;
}
.split-media > img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--line);
}
.split-inset {
  position: absolute;
  left: clamp(-2.2rem, -3vw, -1rem);
  bottom: clamp(-2.2rem, -3vw, -1rem);
  width: 40%;
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--line), 0 18px 50px rgba(0, 0, 0, 0.45);
}
.split-inset figcaption {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(19, 18, 16, 0.78);
  border: 1px solid var(--line);
  padding: 0.25rem 0.6rem;
}
@media (max-width: 820px) {
  .split-band {
    grid-template-columns: 1fr;
  }
  .split-media {
    margin-left: 1.2rem;
  }
  .split-inset {
    left: -1.2rem;
    bottom: -1.2rem;
  }
}

/* ---------- Numbered steps (ghost cedar numerals, echoes the pin) ---------- */
.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.6rem, 4vw, 2.6rem);
}
.step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}
.step-num {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 138, 75, 0.45);
  user-select: none;
  min-width: 2ch;
}
.step-item h3 {
  margin-bottom: 0.35rem;
}
.step-item p {
  margin: 0;
}

/* ---------- Museum plaque card (text-only case studies) ---------- */
.plaque {
  border: 1px solid var(--line);
  border-left: 2px solid var(--cedar);
  background: var(--ink);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.plaque h3 {
  margin-bottom: 0.5rem;
}
.plaque p {
  margin: 0;
}

/* ---------- Pull quote (statement band) ---------- */
.pull-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--bone);
  max-width: 26ch;
  margin: 0 0 1rem;
}
.pull-quote + cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

/* ---------- Lineage pin (the ONE scroll moment, home) ---------- */
/* Static fallback: without .pin-on the section renders exactly as the band. */
.lineage-pin.pin-on {
  position: relative;
}
.lineage-pin.pin-on .lineage-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* The stage is a flex row, so the inner section would otherwise shrink-to-fit
   its widest text line instead of filling the wrap width. */
.lineage-pin.pin-on .lineage-stage-inner {
  width: 100%;
}
.lineage-pin .lineage-feature,
.lineage-pin .lineage-dots {
  display: none;
}
.lineage-pin.pin-on .lineage-feature {
  display: block;
  position: relative;
  min-height: clamp(18rem, 44vh, 26rem);
  /* Keep progress dots in their own row — long detail copy must not sit on top of them. */
  padding-bottom: 3.5rem;
}
.lineage-pin.pin-on .lf {
  position: absolute;
  top: 0;
  right: 2.1rem; /* clears the vertical progress rail */
  left: 0;
  bottom: 3.5rem;
  opacity: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 2rem;
  will-change: transform, opacity;
}
.lf-num {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--serif);
  font-size: clamp(7rem, 18vw, 15rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 138, 75, 0.32);
  user-select: none;
}
.lf-text {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lf-era {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cedar);
  margin-bottom: 1.1rem;
}
.lf-name {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
  margin-bottom: 1.1rem;
}
.lf-detail {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--bone-dim);
  max-width: 52ch;
  line-height: 1.65;
}
/* Vertical progress rail on the right edge: the journey is scroll-driven, so the
   affordance must read top-to-bottom (a horizontal dot row implied sideways swipe). */
.lineage-pin.pin-on .lineage-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.lineage-pin.pin-on .lineage-dots::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 26px;
  left: 50%;
  width: 1px;
  margin-left: -0.5px;
  background: rgba(236, 229, 216, 0.16);
}
.ld {
  position: relative;
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.ld::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid var(--bone-dim);
  background: var(--ink);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.ld:hover::before {
  border-color: var(--bone);
}
.ld.on::before {
  background: var(--cedar);
  border-color: var(--cedar);
  transform: scale(1.3);
}
.ld-hint {
  position: relative;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  line-height: 1;
  color: var(--bone-dim);
  animation: ld-nudge 2.2s ease-in-out infinite;
}
@keyframes ld-nudge {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(4px); opacity: 1; }
}
/* Visually hidden, NOT display:none: the animated .lineage-feature is
   aria-hidden, so the static band stays the accessible source of truth. */
.lineage-pin.pin-on .lineage-band,
.lineage-pin.pin-on .lineage-uncles {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.lineage-uncles {
  margin-top: 1.4rem;
}
/* Desktop pin: long names (03/04) were wrapping to 3 lines and detail sat on the dots. */
@media (min-width: 861px) {
  .lineage-pin.pin-on .lineage-stage-inner .section-head {
    margin-bottom: 0.25rem;
  }
  .lineage-pin.pin-on .lineage-stage-inner .section-head h2 {
    margin-bottom: 0.3em;
  }
  .lineage-pin.pin-on .lineage-feature {
    min-height: clamp(20rem, 48vh, 28rem);
    padding-bottom: 4.75rem;
  }
  .lineage-pin.pin-on .lf {
    bottom: 4.75rem;
    padding-top: 0.35rem;
  }
  .lineage-pin.pin-on .lf-num {
    font-size: clamp(5.5rem, 10vw, 10rem);
    align-self: center;
  }
  .lineage-pin.pin-on .lf-text {
    min-height: 0;
    max-width: min(54ch, calc(100% - 9rem));
    padding-right: 1rem;
  }
  .lineage-pin.pin-on .lf-name {
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
    line-height: 1.08;
    margin-bottom: 0.85rem;
  }
  .lineage-pin.pin-on .lf-detail {
    font-size: 1.02rem;
    line-height: 1.55;
    max-width: 48ch;
    margin: 0;
  }
}

/* ---------- Hero parallax bleed ---------- */
.hero > img.parallax-on {
  inset: -10% 0;
  height: 120%;
  will-change: transform;
  animation: none;
}


/* ---------- Step photo (capped inside a step item) ---------- */
.step-photo {
  max-width: 480px;
  width: 100%;
  margin-top: 1.1rem;
}

/* ---------- Press video grid: aligned title band, embeds flush below ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
}
@media (max-width: 980px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}
.video-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
}



/* ---------- Typeset wordmark band (press: no logo images, no licensing) ---------- */
.wordmark-band {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.2rem 2.6rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.wordmark-band span {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: 0.02em;
  color: rgba(236, 229, 216, 0.55);
  white-space: nowrap;
}

/* ---------- Milestone rail (compact dated timeline) ---------- */
.milestone-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
}
.milestone-rail li {
  position: relative;
  padding: 0 0 1.6rem 1.6rem;
}
.milestone-rail li::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cedar);
}
.milestone-rail .year {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--cedar);
  display: block;
  margin-bottom: 0.2rem;
}
.milestone-rail p {
  margin: 0;
  max-width: 60ch;
}

/* ---------- Chapter marker (about) ---------- */
.chapter-mark {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.chapter-mark .step-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
}
.chapter-mark .lf-era {
  margin-bottom: 0;
}

/* ---------- Studio grid (curated social, links out) ---------- */
.studio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 2vw, 1.4rem);
}
.studio-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--line);
  transition: box-shadow 0.25s ease, transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.studio-grid a {
  position: relative;
  display: block;
}
.studio-grid a::after {
  content: "Instagram \2197";
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: rgba(19, 18, 16, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.studio-grid a:hover::after {
  opacity: 1;
  border-color: var(--cedar);
}
.studio-grid a:hover img {
  box-shadow: 0 0 0 1px var(--cedar);
  transform: scale(1.015);
}
@media (max-width: 640px) {
  .studio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Payment trust note ---------- */
.pay-note {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  margin-top: 0.8rem;
}

/* ---------- Tombstone label (uniform piece captioning) ---------- */
.tombstone {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--bone-dim);
  line-height: 1.6;
}
.tombstone strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--bone);
}


/* ---------- Voice chip (Jason beside his own words) ---------- */
.voice {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.2rem;
}
.voice img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line);
  flex: none;
}
.voice span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.voice span b {
  display: block;
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--bone);
}

/* ---------- Badge divider (brand ritual between bands) ---------- */
.badge-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.badge-divider::before,
.badge-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.badge-divider img {
  width: 30px;
  height: 30px;
  opacity: 0.85;
}

/* ---------- Lightbox (dark gallery) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: rgba(19, 18, 16, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 4vmin;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 100%;
  max-height: 84vh;
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--line);
}
.lightbox-cap {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--bone-dim);
  max-width: 70ch;
  text-align: center;
  margin: 0;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--bone);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover {
  border-color: var(--cedar);
  color: var(--cedar);
}
.lb-target {
  cursor: zoom-in;
}
.lb-target:hover {
  box-shadow: 0 0 0 1px var(--cedar);
}

/* ---------- Editorial size rhythm in wide galleries ---------- */
.work-grid .span-2 {
  grid-column: span 2;
}
@media (max-width: 640px) {
  .work-grid .span-2 {
    grid-column: auto;
  }
}


/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(28px, 4vw, 44px);
  z-index: 70;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(28, 26, 23, 0.92);
  color: var(--bone);
  font-size: 1.15rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s ease, color 0.2s ease;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.to-top:hover {
  border-color: var(--cedar);
  color: var(--cedar);
}

/* ---------- Mobile type rhythm (hero chips, quotes, labels) ---------- */
@media (max-width: 640px) {
  .hero-inner {
    padding-top: clamp(3.5rem, 11vw, 5.5rem);
    padding-bottom: 2rem;
  }
  .hero h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.45rem);
    max-width: 14ch;
  }
  .hero--page {
    min-height: 42vh;
  }
  .hero--page h1 {
    font-size: clamp(1.7rem, 7vw, 2.15rem);
  }
  .hero-sub {
    font-size: 0.94rem;
    line-height: 1.55;
    margin-bottom: 1.25rem;
  }
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
  }
  /* Chip hugs wrapped text — not a full-width bar */
  .hero .eyebrow {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
    padding: 0.35rem 0.72rem;
    border-radius: 1.1rem;
    text-wrap: balance;
    vertical-align: top;
  }
  .pull-quote {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    line-height: 1.35;
    max-width: none;
  }
  .pull-quote + cite {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
  .wordmark-band {
    gap: 0.7rem 1.1rem;
    padding: 1rem 0;
  }
  .wordmark-band span {
    font-size: 0.85rem;
    white-space: normal;
  }
  .lf-era {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }
  .lf-name {
    font-size: clamp(1.85rem, 7.5vw, 2.35rem);
  }
  .lf-detail {
    font-size: 0.94rem;
  }
  .chapter-mark .step-num {
    font-size: 1.9rem;
  }
  .step-num {
    font-size: 2.1rem;
  }
  .voice span {
    font-size: 0.66rem;
    letter-spacing: 0.1em;
  }
  .voice span b {
    font-size: 0.92rem;
  }
  .video-embed-eyebrow {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }
  .video-embed-title {
    font-size: 0.92rem;
  }
  .video-embed-meta {
    font-size: 0.72rem;
  }
  .tombstone strong {
    font-size: 0.98rem;
  }
}


/* ---------- Press clusters: cards hug content, no tall stretching ---------- */
.press-cluster {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: clamp(1rem, 2.5vw, 1.75rem);
  align-items: start;
}

/* ---------- Press tiles: typeset monogram per publication, real photo only
   when the object truly belongs to the story ---------- */
.plaque.has-thumb {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}
.plaque-mark {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: var(--serif);
  font-size: 2.1rem;
  color: var(--cedar);
  user-select: none;
}
.plaque-mark--sm {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}
.plaque-thumb {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 0 0 1px var(--line);
}
.plaque.has-thumb > div :first-child {
  margin-top: 0;
}
@media (max-width: 480px) {
  .plaque.has-thumb {
    grid-template-columns: 64px minmax(0, 1fr);
  }
  .plaque-mark,
  .plaque-thumb {
    width: 64px;
    height: 64px;
  }
  .plaque-mark {
    font-size: 1.6rem;
  }
  .plaque-mark--sm {
    font-size: 0.85rem;
  }
}

/* ---------- Inline photo figure ---------- */
.photo-figure {
  margin: clamp(1.4rem, 3vw, 2rem) 0;
  max-width: 560px;
}

/* ---------- Page-title eyebrow chip on hero-less pages (press, contact) ---------- */
.eyebrow-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: rgba(19, 18, 16, 0.58);
  border: 1px solid rgba(201, 138, 75, 0.4);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  color: #d79a5d;
  margin-bottom: 1.2rem;
}

/* ---------- Motion restraint ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
