/* ============================================================
   LEAH PHILLIPS INTERIORS
   Design system: warm alabaster, soft charcoal, brass.
   Type: Marcellus (display) · Lato (text) · Cormorant (accents)
   ============================================================ */

:root {
  --paper:      #FAF7F1;
  --paper-2:    #F2EDE3;
  --paper-3:    #ECE5D8;
  --ink:        #26231E;
  --ink-soft:   #57534A;
  --ink-faint:  #8A857A;
  --line:       #E1DACB;
  --line-dark:  #CFC6B4;
  --brass:      #A18355;
  --brass-deep: #866B41;
  --brass-lite: #C6A876;   /* meets AA on forest/forest-2 for small labels */
  --forest:     #272B22;
  --forest-2:   #31362B;
  --cream-on-dark: #EFEAE0;
  --serif: "Marcellus", "Times New Roman", serif;
  --sans:  "Lato", "Helvetica Neue", Arial, sans-serif;
  --accent-serif: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --measure: 66ch;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;             /* 17px — comfortable for every age */
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p a, li a { text-decoration: underline; text-decoration-color: var(--brass); text-underline-offset: 4px; transition: color .3s; }
p a:hover, li a:hover { color: var(--brass-deep); }
ul[role="list"] { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
::selection { background: var(--brass); color: #fff; }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .75rem 1.25rem;
}
.skip-link:focus { left: 0; }

/* ---------- Type scale ---------- */
h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: .012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.lead {
  font-size: clamp(1.125rem, 1.6vw, 1.3rem);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: var(--measure);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-family: var(--sans);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--brass-deep);
}
.eyebrow::before {
  content: ""; width: 2.4rem; height: 1px; background: var(--brass);
}
.eyebrow--center::after {
  content: ""; width: 2.4rem; height: 1px; background: var(--brass);
}
.accent-line {
  font-family: var(--accent-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
  color: var(--brass-deep);
  line-height: 1.5;
}

/* ---------- Layout primitives ---------- */
.wrap { width: min(1240px, 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--wide { width: min(1420px, 100% - var(--gutter) * 2); margin-inline: auto; }
.wrap--text { width: min(820px, 100% - var(--gutter) * 2); margin-inline: auto; }
.section { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5.5rem); }
.section--paper2 { background: var(--paper-2); }
.section--dark { background: var(--forest); color: var(--cream-on-dark); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream-on-dark); }
.section--dark .lead, .footer .lead { color: #C9C3B4; }
.section--dark .eyebrow { color: var(--brass-lite); }

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lead { margin-inline: auto; }

/* engraved double keyline, a recurring brand detail */
.keyline { position: relative; }
.keyline::after {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(255,255,255,.35);
  pointer-events: none;
}

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

/* botanical divider */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1.1rem; margin-block: clamp(2.5rem, 5vw, 4rem);
  color: var(--brass);
}
.divider::before, .divider::after {
  content: ""; height: 1px; width: min(160px, 26vw); background: var(--line-dark);
}
.divider svg { flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  position: relative;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  transition: color .45s var(--ease), background-color .45s var(--ease), border-color .45s var(--ease);
  overflow: hidden;
  z-index: 1;
}
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.btn:hover { color: var(--paper); }
.btn:hover::after { transform: scaleX(1); transform-origin: left; }
.btn--brass { border-color: var(--brass-deep); color: var(--brass-deep); }
.btn--brass::after { background: var(--brass-deep); }
.btn--light { border-color: var(--cream-on-dark); color: var(--cream-on-dark); }
.btn--light::after { background: var(--cream-on-dark); }
.btn--light:hover { color: var(--forest); }

.text-link {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--brass);
  transition: color .3s, border-color .3s, gap .35s var(--ease);
}
.text-link:hover { color: var(--brass-deep); gap: 1.2rem; }
.text-link .arr { transition: transform .35s var(--ease); }
.text-link:hover .arr { transform: translateX(4px); }

/* ---------- Announce bar ---------- */
.announce {
  background: var(--forest);
  color: #CEC9BA;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  text-align: center;
  padding: .62rem var(--gutter);
}
.announce a { color: var(--cream-on-dark); }
.announce .sep { color: var(--brass); margin-inline: .9rem; }
@media (max-width: 640px) { .announce .hide-s { display: none; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 241, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .4s, transform .5s var(--ease);
}
.site-header.is-hidden { transform: translateY(-110%); }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(38, 35, 30, .07); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
  transition: padding .4s var(--ease);
}
.is-scrolled .header-inner { padding-block: .7rem; }
.brand img { width: clamp(190px, 22vw, 280px); height: auto; }

.site-nav ul { display: flex; gap: clamp(1.2rem, 2.4vw, 2.6rem); list-style: none; }
.site-nav a {
  position: relative;
  font-size: .76rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft);
  padding-block: .5rem;
  transition: color .3s;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: right;
  transition: transform .45s var(--ease);
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after {
  transform: scaleX(1); transform-origin: left;
}

.nav-toggle { display: none; }

@media (max-width: 960px) {
  /* backdrop-filter would create a containing block and trap the
     fixed-position menu overlay inside the header — disable it here */
  .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--paper);
  }
  .site-nav {
    position: fixed; inset: 0; z-index: 90;
    background: var(--paper);
    display: grid; place-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity .5s var(--ease), visibility .5s;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; }
  .site-nav ul { flex-direction: column; text-align: center; gap: 1.4rem; }
  .site-nav a {
    font-family: var(--serif);
    font-size: clamp(1.7rem, 6vw, 2.4rem);
    font-weight: 400; letter-spacing: .06em; text-transform: none;
    color: var(--ink);
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s;
  }
  .site-nav.is-open a { opacity: 1; transform: none; }
  .site-nav.is-open li:nth-child(1) a { transition-delay: .08s; }
  .site-nav.is-open li:nth-child(2) a { transition-delay: .14s; }
  .site-nav.is-open li:nth-child(3) a { transition-delay: .2s; }
  .site-nav.is-open li:nth-child(4) a { transition-delay: .26s; }
  .site-nav.is-open li:nth-child(5) a { transition-delay: .32s; }
  .site-nav.is-open li:nth-child(6) a { transition-delay: .38s; }
  .site-nav.is-open li:nth-child(7) a { transition-delay: .44s; }

  .nav-toggle {
    display: grid; gap: 6px; z-index: 95;
    padding: .6rem .2rem;
  }
  .nav-toggle span {
    width: 30px; height: 1.5px; background: var(--ink);
    transition: transform .45s var(--ease), opacity .3s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 940px);
  display: flex; align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}
.hero--short { min-height: min(64vh, 640px); }
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 9s var(--ease) forwards;
}
@keyframes kenburns { from { transform: scale(1.09); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(178deg, rgba(24,22,18,.30) 0%, rgba(24,22,18,.22) 40%, rgba(24,22,18,.78) 100%);
}
.hero-content { text-shadow: 0 1px 26px rgba(12, 10, 8, .35); }
.hero-content {
  width: min(1240px, 100% - var(--gutter) * 2);
  margin-inline: auto;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero h1 { color: #fff; max-width: 15ch; text-wrap: balance; }
.hero .eyebrow { color: #E8DFC9; }
.hero .eyebrow::before { background: #E8DFC9; }
.hero-sub { max-width: 52ch; margin-top: 1.4rem; font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: #EDE8DD; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 2.4rem; }
.hero .btn { border-color: #fff; color: #fff; }
.hero .btn::after { background: #fff; }
.hero .btn:hover { color: var(--ink); }

/* staged hero entrance (classic photo hero and editorial split hero) */
.hero [data-hero], .hero-ed [data-hero] { opacity: 0; transform: translateY(28px); animation: heroup 1.1s var(--ease) forwards; }
.hero [data-hero="1"], .hero-ed [data-hero="1"] { animation-delay: .25s; }
.hero [data-hero="2"], .hero-ed [data-hero="2"] { animation-delay: .42s; }
.hero [data-hero="3"], .hero-ed [data-hero="3"] { animation-delay: .6s; }
.hero [data-hero="4"], .hero-ed [data-hero="4"] { animation-delay: .78s; }
@keyframes heroup { to { opacity: 1; transform: none; } }

.scroll-cue {
  position: absolute; right: clamp(1.2rem, 4vw, 3rem); bottom: 2.4rem;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .64rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: #E8E2D4;
  writing-mode: vertical-rl;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 54px;
  background: linear-gradient(#E8E2D4, transparent);
  animation: cue 2.2s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: scaleY(.4); transform-origin: top; opacity:.5;} 50% { transform: scaleY(1); opacity:1;} }
@media (max-width: 720px) { .scroll-cue { display: none; } }

/* ---------- Page hero (interior pages) ---------- */
.page-head { padding-block: clamp(4rem, 8vw, 6.5rem) clamp(2.5rem, 5vw, 4rem); }
.page-head h1 { max-width: 18ch; text-wrap: balance; }
.page-head .lead { margin-top: 1.6rem; }
.breadcrumbs {
  display: flex; flex-wrap: wrap; gap: .65rem; align-items: center;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2.2rem;
}
.breadcrumbs a { color: var(--ink-faint); transition: color .3s; }
.breadcrumbs a:hover { color: var(--brass-deep); }
.breadcrumbs .sep { color: var(--brass); }

/* ---------- Reveal-on-scroll (gated on .js so content never hides without JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js [data-stagger] > * { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js [data-stagger].is-in > * { opacity: 1; transform: none; }
[data-stagger].is-in > *:nth-child(2) { transition-delay: .1s; }
[data-stagger].is-in > *:nth-child(3) { transition-delay: .2s; }
[data-stagger].is-in > *:nth-child(4) { transition-delay: .3s; }
[data-stagger].is-in > *:nth-child(5) { transition-delay: .4s; }
[data-stagger].is-in > *:nth-child(6) { transition-delay: .5s; }

.frame { position: relative; overflow: hidden; background: var(--paper-3); }
.frame img { transition: transform 1.2s var(--ease); }
.js .frame::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: var(--paper-3);
  transform: scaleY(1); transform-origin: bottom;
  transition: transform 1.15s var(--ease);
}
.js .section--dark .frame::before, .js .footer .frame::before { background: var(--forest-2); }
.js .frame.is-in::before { transform: scaleY(0); }
.js .frame img { transform: scale(1.08); }
.js .frame.is-in img { transform: scale(1); }

/* ---------- Editorial grids ---------- */
.grid-2 { display: grid; gap: clamp(1.5rem, 3.5vw, 3.5rem); grid-template-columns: repeat(2, 1fr); align-items: center; }
.grid-3 { display: grid; gap: clamp(1.2rem, 2.4vw, 2rem); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* project / work cards */
.work-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.6rem, 3vw, 3rem) clamp(1.2rem, 2.6vw, 2.6rem);
}
.work-card { position: relative; }
.work-card:nth-child(4n+1) { grid-column: span 7; }
.work-card:nth-child(4n+2) { grid-column: span 5; padding-top: clamp(2rem, 6vw, 5rem); }
.work-card:nth-child(4n+3) { grid-column: span 5; }
.work-card:nth-child(4n+4) { grid-column: span 7; margin-top: clamp(-1rem, -2vw, -2rem); }
@media (max-width: 820px) {
  .work-card, .work-card:nth-child(n) { grid-column: 1 / -1; padding-top: 0; margin-top: 0; }
}
.work-card a { display: block; }
.work-card .frame { aspect-ratio: 4 / 3.1; background: var(--paper-3); }
.work-card:nth-child(4n+2) .frame, .work-card:nth-child(4n+3) .frame { aspect-ratio: 4 / 4.4; }
.work-card .frame img { width: 100%; height: 100%; object-fit: cover; }
.work-card a:hover .frame img { transform: scale(1.045); }
.work-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: 1.15rem; }
.work-meta h3, .work-meta h2 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); transition: color .3s; }
.work-card a:hover h3, .work-card a:hover h2 { color: var(--brass-deep); }
.work-tag {
  flex: none;
  font-size: .66rem; font-weight: 700;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--ink-faint);
}
.work-index {
  position: absolute; top: .4rem; left: 0;
  font-family: var(--accent-serif); font-style: italic;
  font-size: .95rem; color: var(--brass);
}

/* two-up rhythm gallery (services recent transformation) */
.gallery-flow { display: grid; gap: clamp(1.4rem, 2.6vw, 2.4rem); grid-template-columns: repeat(2, 1fr); }
.gallery-flow .g-full { grid-column: 1 / -1; }
.gallery-flow .frame { cursor: zoom-in; background: var(--paper-3); }
.gallery-flow .g-full .frame { aspect-ratio: 16 / 10.2; }
.gallery-flow .g-half .frame { aspect-ratio: 4 / 4.7; }
.gallery-flow .frame img { width: 100%; height: 100%; object-fit: cover; }
.gallery-flow .frame:hover img { transform: scale(1.035); }
@media (max-width: 720px) {
  .gallery-flow { grid-template-columns: 1fr; }
  .gallery-flow .g-half .frame { aspect-ratio: auto; }
  .gallery-flow .g-full .frame { aspect-ratio: auto; }
}

/* ---------- Process (services) ---------- */
.process { display: grid; gap: 0; }
.process-step {
  display: grid; grid-template-columns: minmax(90px, 150px) 1fr;
  gap: clamp(1.4rem, 4vw, 3.5rem);
  padding-block: clamp(2.2rem, 4.5vw, 3.4rem);
  border-top: 1px solid var(--line);
  align-items: start;
}
.process-step:last-child { border-bottom: 1px solid var(--line); }
.process-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brass-deep);
  position: relative;
  padding-top: 1.5rem;
}
.process-num::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 2.6rem; height: 1px; background: var(--brass);
}
.section--dark .process-num { color: var(--brass-lite); }
.process-step h3 { margin-bottom: .8rem; }
.process-step p { max-width: var(--measure); color: var(--ink-soft); }
@media (max-width: 640px) { .process-step { grid-template-columns: 1fr; gap: .8rem; } }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.5rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  list-style: none;
  transition: color .3s;
}
.faq summary:hover { color: var(--brass-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--accent-serif);
  font-size: 1.6rem;
  color: var(--brass);
  transition: transform .4s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-a { padding-bottom: 1.7rem; max-width: var(--measure); color: var(--ink-soft); }

/* ---------- Quote / rating band ---------- */
.quote-band { text-align: center; }
.quote-band .stars { display: flex; justify-content: center; gap: .45rem; color: var(--brass); margin-bottom: 1.6rem; }
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.4;
  max-width: 26ch; margin-inline: auto;
  text-wrap: balance;
}
.quote-band figcaption {
  margin-top: 1.6rem;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- Service areas marquee ---------- */
.areas-band { overflow: hidden; border-block: 1px solid var(--line); padding-block: 1.35rem; background: var(--paper); }
.areas-track { display: flex; width: max-content; animation: marquee 46s linear infinite; }
.areas-track > span { margin-right: 3.4rem; }
.areas-track > i { margin-right: 3.4rem; }
.areas-band:hover .areas-track { animation-play-state: paused; }
.areas-track span {
  font-family: var(--serif);
  font-size: 1.02rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft); white-space: nowrap;
}
.areas-track i { font-style: normal; color: var(--brass); }
.areas-band:focus-within .areas-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Press ---------- */
.press-grid { display: grid; gap: clamp(1.4rem, 2.6vw, 2.4rem); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .press-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .press-grid { grid-template-columns: 1fr; } }
.press-item .frame { background: #fff; border: 1px solid var(--line); padding: clamp(.8rem, 1.6vw, 1.4rem); cursor: zoom-in; }
.press-item .frame::before { inset: 0; }
.press-item img { width: 100%; height: auto; }

/* ---------- Instagram ---------- */
.ig-grid { display: grid; gap: clamp(.9rem, 1.6vw, 1.4rem); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-item { position: relative; overflow: hidden; aspect-ratio: 1; }
.ig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ig-item:hover img { transform: scale(1.06); }
.ig-item figcaption {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 1.1rem;
  font-size: .8rem; line-height: 1.55; color: #fff;
  background: linear-gradient(to top, rgba(24,22,18,.72), rgba(24,22,18,0) 55%);
  opacity: 0; transition: opacity .5s;
}
.ig-item:hover figcaption { opacity: 1; }
@media (hover: none) { .ig-item figcaption { display: none; } }

/* ---------- CTA band ---------- */
.cta-band { position: relative; }
.cta-band h2 { max-width: 19ch; margin-inline: auto; text-wrap: balance; }
.cta-band .lead { margin: 1.6rem auto 2.6rem; }

/* ---------- Prev / next project nav ---------- */
.proj-nav { display: grid; grid-template-columns: 1fr auto 1fr; border-top: 1px solid var(--line); }
.proj-nav > a, .proj-nav .proj-nav-mid {
  padding: clamp(1.8rem, 4vw, 3rem) clamp(1rem, 3vw, 2.5rem);
  display: flex; flex-direction: column; gap: .5rem;
}
.proj-nav > a { transition: background-color .4s; }
.proj-nav > a:hover { background: var(--paper-2); }
.proj-nav .lbl {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase; color: var(--ink-faint);
}
.proj-nav .ttl { font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.45rem); }
.proj-nav a:hover .ttl { color: var(--brass-deep); }
.proj-nav .next { text-align: right; align-items: flex-end; }
.proj-nav-mid { align-items: center; justify-content: center; border-inline: 1px solid var(--line); }
@media (max-width: 700px) { .proj-nav { grid-template-columns: 1fr; } .proj-nav-mid { border-inline: none; border-block: 1px solid var(--line); } .proj-nav .next { align-items: flex-start; text-align: left; } }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 1.5rem 1.4rem; grid-template-columns: 1fr 1fr; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .55rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font: inherit; color: var(--ink);
  background: transparent;
  border: none; border-bottom: 1px solid var(--line-dark);
  padding: .65rem 2px;
  border-radius: 0;
  transition: border-color .3s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--brass-deep);
}
.field ::placeholder { color: var(--ink-faint); }

/* ---------- Contact info ---------- */
.info-list { display: grid; gap: 1.7rem; }
.info-list .lbl {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: .35rem;
}
.info-list .val { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; }
.info-list .val a { transition: color .3s; }
.info-list .val a:hover { color: var(--brass-deep); }

/* ---------- Footer ---------- */
.footer { background: var(--forest); color: #B9B4A5; font-size: .95rem; }
.footer-cta { border-bottom: 1px solid rgba(239, 234, 224, .12); }
.footer h2 { color: var(--cream-on-dark); }
.footer-main {
  display: grid; gap: clamp(2.5rem, 5vw, 4rem);
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
@media (max-width: 980px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }
.footer-brand img { width: 84px; margin-bottom: 1.4rem; }
.footer-brand p { max-width: 34ch; line-height: 1.75; }
.footer h3 {
  font-family: var(--sans);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--brass-lite);
  margin-bottom: 1.3rem;
}
.footer ul { list-style: none; display: grid; gap: .7rem; }
.footer a { transition: color .3s; }
.footer a:hover { color: var(--cream-on-dark); }
.footer address { font-style: normal; line-height: 1.9; }
.footer-areas {
  padding-block: 1.6rem;
  border-top: 1px solid rgba(239, 234, 224, .12);
  font-size: .84rem; line-height: 2; letter-spacing: .04em;
}
.footer-areas strong { color: var(--cream-on-dark); font-weight: 700; }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(239, 234, 224, .12);
  font-size: .78rem; letter-spacing: .06em;
}
.footer-base .social { display: flex; gap: 1.6rem; }
.footer-base .social a {
  font-size: .72rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(24, 22, 18, .96);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .45s, visibility .45s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(92vw, 1500px); max-height: 84vh;
  width: auto; height: auto;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,.5);
  transition: opacity .45s ease;
}
.lightbox .lb-count {
  font-size: .95rem; letter-spacing: .18em; color: var(--brass);
}
.lightbox .lb-caption {
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
}
.lightbox .lb-caption {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  color: #CFC9BB; font-size: .82rem; letter-spacing: .08em; text-align: center;
  max-width: 80vw;
}
.lightbox .lb-count {
  position: absolute; top: 1.5rem; left: 2rem;
  color: #A29C8D; font-family: var(--accent-serif); font-style: italic; font-size: 1.05rem;
}
.lightbox button {
  position: absolute;
  color: #E8E2D4;
  display: grid; place-items: center;
  width: 56px; height: 56px;
  transition: color .3s, transform .3s var(--ease);
}
.lightbox button:hover { color: var(--brass); }
.lb-close { top: 1rem; right: 1.4rem; font-size: 1.9rem; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 2.2rem; }
.lb-prev { left: .8rem; }
.lb-next { right: .8rem; }
.lb-prev:hover { transform: translateY(-50%) translateX(-4px); }
.lb-next:hover { transform: translateY(-50%) translateX(4px); }

/* Content never depends on JS to be visible: no body-level fade.
   Entrances are handled per-element and degrade gracefully. */

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 1.6rem; bottom: 1.6rem; z-index: 80;
  width: 52px; height: 52px;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--ink-soft);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .4s, visibility .4s, transform .4s var(--ease), color .3s, border-color .3s;
}
.to-top.is-show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--brass-deep); border-color: var(--brass); }

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; }
.measure { max-width: var(--measure); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
@media (max-width: 640px) {
  .hide-m { display: none; }
  .eyebrow { font-size: .64rem; letter-spacing: .24em; gap: .7rem; }
  .eyebrow::before, .eyebrow--center::after { width: 1.6rem; }
}

/* ============================================================
   PREMIUM LAYER 2.0 — editorial architecture, folio galleries,
   plate captions, slideshow hero, press shelf, proof band
   ============================================================ */

/* ---------- Editorial split hero (home) ---------- */
.hero-ed { position: relative; overflow: clip; border-bottom: 1px solid var(--line); }
.hero-ed-grid {
  display: grid; grid-template-columns: 6.4fr 5.6fr;
  column-gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center; position: relative;
}
.hero-ed-copy { grid-column: 1; grid-row: 1; padding-block: clamp(3rem, 7vw, 6rem); position: relative; z-index: 3; }
.hero-ed-copy h1 { font-size: clamp(2.9rem, 5.8vw, 5.2rem); line-height: 1.06; max-width: 12ch; text-wrap: balance; }
.hero-ed-copy .hero-sub { color: var(--ink-soft); max-width: 44ch; margin-top: 1.5rem; font-size: clamp(1.08rem, 1.5vw, 1.22rem); line-height: 1.75; }
.hero-ed-copy .hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2.2rem; margin-top: 2.6rem; }
.btn--fill { background: var(--brass-deep); border-color: var(--brass-deep); color: #FDFBF7; }
.btn--fill::after { background: var(--ink); }
.btn--fill:hover { color: #FDFBF7; border-color: var(--ink); }
.hero-ed-media {
  position: relative; grid-column: 2; grid-row: 1; align-self: stretch;
  height: min(92vh, 920px);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.hero-slides, .hero-slides figure { position: absolute; inset: 0; }
.hero-slides figure { opacity: 0; transition: opacity 1.7s ease; }
.hero-slides figure.is-active { opacity: 1; }
.hero-slides img { width: 100%; height: 100%; object-fit: cover; }
.js .hero-slides figure.is-active:nth-child(odd) img { animation: kenburns 8.5s var(--ease) forwards; }
.js .hero-slides figure.is-active:nth-child(even) img { animation: kenburns 8.5s var(--ease) reverse forwards; }
.hero-ed-inset {
  position: absolute; z-index: 6;
  left: clamp(1.2rem, 2.4vw, 2.2rem);
  bottom: clamp(1.2rem, 2.4vw, 2.2rem);
  width: min(230px, 17vw);
  margin: 0;
  border: 7px solid var(--paper);
  box-shadow: 0 26px 60px rgba(24, 22, 18, .35);
}
.hero-ed-rail {
  position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%); z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.hero-ticks { display: flex; flex-direction: column; gap: .55rem; }
.hero-ticks i { width: 2px; height: 30px; background: rgba(250, 247, 241, .38); transition: background .5s; }
.hero-ticks i.is-active { background: var(--brass); }
.hero-slide-caption {
  position: absolute; right: 0; bottom: 0; z-index: 5;
  background: rgba(24, 22, 18, .8);
  color: #F3EFE6;
  font-size: .74rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  padding: .75rem 1.4rem;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
@media (max-width: 900px) {
  .hero-ed-grid { grid-template-columns: 1fr; }
  .hero-ed-copy { grid-row: 1; padding-block: clamp(2.5rem, 8vw, 4rem) 2rem; }
  .hero-ed-media { grid-column: 1; grid-row: 2; height: 62vh; margin-inline: calc(50% - 50vw); }
  .hero-ed-inset, .hero-ed-rail { display: none; }
}

/* ---------- Film strip marquee (home recent work) ---------- */
.film-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--paper); }
.film-track { display: flex; width: max-content; padding-block: clamp(1.2rem, 2vw, 1.8rem); }
.js .film-track { animation: marquee 95s linear infinite; }
.film-strip:hover .film-track { animation-play-state: paused; }
/* per-item margin (not flex gap) so translateX(-50%) lands seamlessly */
.film-track .frame { height: clamp(280px, 40vh, 460px); aspect-ratio: 2 / 3; flex: none; margin-right: clamp(.9rem, 1.3vw, 1.4rem); }
.film-track .frame[data-lightbox] { cursor: zoom-in; }
.film-track .frame img { width: 100%; height: 100%; object-fit: cover; }
.film-track .frame:hover img { transform: scale(1.04); }
.film-strip:focus-within .film-track { animation-play-state: paused; }

/* ---------- Work cards: refined index marker + hover swap + city ---------- */
.work-index {
  display: inline-flex; align-items: center; gap: .7rem;
  margin-bottom: .9rem;
  font-family: var(--serif); font-style: normal;
  font-size: 1.02rem; letter-spacing: .12em; color: var(--brass-deep);
}
.work-index::before {
  content: "No."; font-family: var(--sans); font-size: .6rem; font-weight: 700;
  letter-spacing: .18em; color: var(--ink-faint);
}
.work-index::after { content: ""; width: 1.8rem; height: 1px; background: var(--brass); }
.work-card { padding-top: 0; }
.work-card .frame { position: relative; }
.work-card .swap-b {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .8s ease;
}
@media (hover: hover) {
  .work-card a:hover .swap-b, .work-card a:focus-visible .swap-b { opacity: 1; }
}
.work-meta { flex-wrap: wrap; row-gap: .2rem; }
.work-meta .loc {
  font-family: var(--accent-serif); font-style: italic;
  font-size: 1.02rem; color: var(--brass-deep);
  flex-basis: 100%;
}

/* ---------- Work index: editorial project rows ---------- */
.proj-rows { display: grid; gap: clamp(4rem, 8vw, 7rem); }
.proj-row {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.4rem, 2.6vw, 2.4rem);
  align-items: start;
}
.proj-row .pr-main { grid-column: 1 / span 7; }
.proj-row .pr-main .frame { aspect-ratio: 4 / 4.6; }
.proj-row .pr-main .frame img { width: 100%; height: 100%; object-fit: cover; }
.proj-row .pr-side {
  grid-column: 8 / -1; display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 2vw, 1.8rem); align-self: end;
}
.proj-row .pr-side .frame { aspect-ratio: 3 / 4; }
.proj-row .pr-side .frame img { width: 100%; height: 100%; object-fit: cover; }
.proj-row .pr-side .frame:nth-child(2) { margin-top: clamp(1.6rem, 3.4vw, 3rem); }
.proj-row .pr-meta { grid-column: 8 / -1; padding-top: clamp(.6rem, 1.4vw, 1.2rem); }
.proj-row--flip .pr-main { grid-column: 6 / -1; order: 2; }
.proj-row--flip .pr-side { grid-column: 1 / span 5; order: 1; }
.proj-row--flip .pr-meta { grid-column: 1 / span 5; order: 3; }
.pr-num {
  display: inline-flex; align-items: center; gap: .8rem;
  margin-bottom: 1rem;
  font-family: var(--serif); font-size: 1.2rem; letter-spacing: .1em;
  color: var(--brass-deep);
}
.pr-num::before {
  content: "No."; font-family: var(--sans); font-size: .64rem; font-weight: 700;
  letter-spacing: .18em; color: var(--ink-faint);
}
.pr-num::after { content: ""; width: 2.2rem; height: 1px; background: var(--brass); }
.pr-meta .loc { font-family: var(--accent-serif); font-style: italic; font-size: 1.05rem; color: var(--brass-deep); }
.pr-meta h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: .3rem; transition: color .3s; }
.pr-meta h2 a:hover { color: var(--brass-deep); }
.pr-meta .pr-facts {
  display: flex; flex-wrap: wrap; gap: .4rem 1.6rem; margin-top: .7rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft);
}
.pr-meta .pr-count { font-family: var(--accent-serif); font-style: italic; font-size: 1rem; letter-spacing: .04em; text-transform: none; color: var(--ink-soft); font-weight: 500; }
.pr-meta .text-link { margin-top: 1.4rem; }
@media (max-width: 860px) {
  .proj-row .pr-main, .proj-row--flip .pr-main { grid-column: 1 / -1; order: 1; }
  .proj-row .pr-side, .proj-row--flip .pr-side { grid-column: 1 / -1; order: 2; }
  .proj-row .pr-meta, .proj-row--flip .pr-meta { grid-column: 1 / -1; order: 3; }
  .proj-row .pr-side .frame:nth-child(2) { margin-top: 0; }
}

/* ---------- Studio ledger (project spec sheet) ---------- */
.ledger {
  position: relative; margin-top: 2.6rem;
  border: 1px solid var(--line-dark);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  display: grid; grid-template-columns: repeat(5, auto); justify-content: start;
  gap: 1.5rem clamp(1.5rem, 3vw, 3rem);
}
.ledger::after {
  content: ""; position: absolute; inset: 7px;
  border: 1px solid rgba(161, 131, 85, .35); pointer-events: none;
}
.ledger > div { padding-inline: clamp(1rem, 2vw, 1.6rem); border-left: 1px solid var(--line); }
.ledger > div:first-child { border-left: none; padding-left: 0; }
.ledger .lbl {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: .45rem;
}
.ledger .val { font-family: var(--serif); font-size: 1.12rem; }
@media (max-width: 860px) {
  .ledger { grid-template-columns: 1fr 1fr; }
  .ledger > div:nth-child(odd) { border-left: none; padding-left: 0; }
}

/* ---------- Project split opening ---------- */
.proj-open { overflow: clip; }
.proj-open-grid {
  display: grid; grid-template-columns: 6fr 6fr;
  gap: clamp(2rem, 4.5vw, 4.5rem); align-items: center;
}
.proj-open-media {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 2vw, 1.8rem);
  margin-right: calc(50% - 50vw);
  align-items: start;
  padding-block: clamp(2rem, 4vw, 3.5rem);
}
.proj-open-media figure:nth-child(2) { margin-top: clamp(2.4rem, 5vw, 4.5rem); }
@media (max-width: 900px) {
  .proj-open-grid { grid-template-columns: 1fr; }
  .proj-open-media { margin-right: 0; padding-top: 0; }
}

/* ---------- Folio galleries (project pages) ---------- */
.folio-chapter {
  display: grid; grid-template-columns: minmax(90px, 150px) 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}
.folio-side { position: sticky; top: 130px; align-self: start; padding-top: 1.5rem; }
.folio-side::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 2.6rem; height: 1px; background: var(--brass);
}
.folio-num {
  display: block; font-family: var(--serif);
  font-size: 1.4rem; line-height: 1;
  color: var(--brass-deep);
}
.folio-room {
  display: block; margin-top: .55rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-soft);
}
.folio-imgs {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.6rem, 3vw, 2.6rem); align-items: start;
}
.folio-imgs .frame { aspect-ratio: auto; cursor: zoom-in; }
.folio-imgs .frame:hover img { transform: scale(1.025); }
.f-full { grid-column: 1 / -1; }
.f-a { grid-column: span 7; }
.f-b { grid-column: span 5; margin-top: clamp(2.5rem, 6vw, 5rem); }
.f-inset { grid-column: 4 / 10; margin-block: clamp(.6rem, 2vw, 1.6rem); }
@media (max-width: 820px) {
  .folio-chapter { grid-template-columns: 1fr; gap: 1.2rem; }
  .folio-side { position: static; display: flex; gap: .9rem; align-items: baseline; padding-top: 1.2rem; }
  .folio-side::before { width: 2rem; }
  .folio-num { font-size: 1.3rem; }
  .folio-room { margin-top: 0; }
  .f-a, .f-b, .f-inset { grid-column: 1 / -1; margin: 0; }
}

/* ---------- Plate captions ---------- */
.plate {
  display: flex; gap: .9rem; align-items: baseline;
  margin-top: .75rem;
  font-size: .92rem; letter-spacing: .04em;
  color: var(--ink-soft); line-height: 1.5;
}
.plate .pn {
  font-family: var(--accent-serif); font-style: italic;
  font-size: 1.05rem; color: var(--brass-deep); flex: none;
}

/* ---------- Gallery wall (portfolio) ---------- */
.gwall { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.6rem, 3vw, 3rem); align-items: start; }
.gwall > figure { position: relative; }
.gwall > figure .frame { cursor: zoom-in; }
.gwall > figure:nth-child(6n+1) { grid-column: span 5; }
.gwall > figure:nth-child(6n+2) { grid-column: span 4; margin-top: clamp(2.5rem, 6vw, 5rem); }
.gwall > figure:nth-child(6n+3) { grid-column: span 3; margin-top: clamp(5rem, 10vw, 8rem); }
.gwall > figure:nth-child(6n+4) { grid-column: span 4; }
.gwall > figure:nth-child(6n+5) { grid-column: span 5; margin-top: clamp(2rem, 5vw, 4rem); }
.gwall > figure:nth-child(6n)   { grid-column: span 3; margin-top: clamp(1rem, 2.5vw, 2rem); }
.gwall .interlude { grid-column: 1 / -1; text-align: center; padding-block: clamp(2rem, 5vw, 4rem); margin-top: 0 !important; }
@media (max-width: 820px) {
  .gwall > figure:nth-child(n) { grid-column: span 6; margin-top: 0; }
}
@media (max-width: 520px) {
  .gwall > figure:nth-child(n) { grid-column: 1 / -1; }
}

/* ---------- Layered collage (home studio intro) ---------- */
.collage { position: relative; margin-left: clamp(1rem, 3vw, 2.5rem); }
.collage::before {
  content: ""; position: absolute;
  top: clamp(-1.4rem, -2vw, -1rem); right: clamp(-1.4rem, -2vw, -1rem);
  width: 62%; height: 58%;
  border: 1px solid var(--brass); opacity: .5;
  pointer-events: none;
}
.collage .c-main { position: relative; z-index: 1; }
.collage .c-detail {
  position: absolute; z-index: 2;
  left: clamp(-2.6rem, -4vw, -1.6rem); bottom: clamp(-2rem, -3vw, -1.2rem);
  width: 44%;
  border: 8px solid var(--paper);
  box-shadow: 0 22px 54px rgba(38, 35, 30, .14);
}
@media (max-width: 900px) { .collage { margin-left: 0; margin-bottom: 2.5rem; } }

/* ---------- Quote interlude (home) ---------- */
.interlude-band { background: var(--paper-3); overflow: clip; }
.interlude-grid {
  display: grid; grid-template-columns: 1fr minmax(auto, 640px) 1fr;
  gap: clamp(2rem, 4.5vw, 4.5rem); align-items: center;
}
.interlude-grid blockquote {
  font-family: var(--accent-serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.45;
  color: var(--ink); text-align: center; text-wrap: balance;
}
.interlude-grid figcaption {
  margin-top: 1.6rem; text-align: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .3em;
  text-transform: uppercase; color: var(--ink-faint);
}
.interlude-grid > figure:first-child { margin-top: clamp(2rem, 5vw, 4rem); }
.interlude-grid > figure:last-child { margin-bottom: clamp(2rem, 5vw, 4rem); }
@media (max-width: 860px) { .interlude-grid { grid-template-columns: 1fr; } .interlude-grid > figure { display: none; } }

/* ---------- Dark process band with plate image ---------- */
.process-band-grid { display: grid; grid-template-columns: 1.05fr 1fr .72fr; gap: clamp(2rem, 4.5vw, 4rem); align-items: center; }
.process-band-grid .keyline { align-self: stretch; }
.process-band-grid .keyline .frame { height: 100%; }
.process-band-grid .keyline img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 1100px) { .process-band-grid { grid-template-columns: 1.05fr 1fr; } .process-band-grid .keyline { display: none; } }
@media (max-width: 900px) { .process-band-grid { grid-template-columns: 1fr; } }

/* ---------- Proof band: rating + press tearsheets ---------- */
.section--forest2 { background: var(--forest-2); color: var(--cream-on-dark); }
.section--forest2 h2, .section--forest2 h3 { color: var(--cream-on-dark); }
.section--forest2 .eyebrow { color: var(--cream-on-dark); }
.section--forest2 .eyebrow::before { background: var(--brass); }
.proof-grid { display: grid; grid-template-columns: 1.05fr 1.2fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.rating-num {
  font-family: var(--serif); font-size: clamp(2.8rem, 5.5vw, 4.4rem); line-height: 1;
  color: var(--brass-lite);
  display: block; margin-bottom: 1.2rem; letter-spacing: .01em;
}
.proof-grid blockquote { font-family: var(--serif); font-size: clamp(1.4rem, 2.4vw, 2rem); line-height: 1.4; max-width: 22ch; }
.proof-grid .stars { display: inline-flex; gap: .4rem; color: var(--brass-lite); margin-right: 1rem; vertical-align: middle; }
.proof-grid .stars svg { width: 15px; height: auto; }
.proof-grid figcaption { margin-top: 1.3rem; font-size: .74rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: #C3BCAC; }
.press-fan { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.8rem); align-items: start; }
.press-fan .frame { background: #fff; border: 1px solid rgba(250,247,241,.16); padding: clamp(.55rem, 1.1vw, .9rem); cursor: zoom-in; box-shadow: 0 18px 44px rgba(0,0,0,.28); }
.press-fan > :nth-child(1) { transform: rotate(-1.6deg); }
.press-fan > :nth-child(2) { margin-top: clamp(1.4rem, 2.8vw, 2.4rem); transform: rotate(.9deg); }
.press-fan > :nth-child(3) { margin-top: clamp(.5rem, 1.2vw, 1rem); transform: rotate(-.6deg); }
.proof-press-line { margin-top: 1.6rem; font-family: var(--serif); font-size: clamp(1.05rem, 1.8vw, 1.4rem); letter-spacing: .06em; color: var(--cream-on-dark); }
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }

/* ---------- Instagram marquee band ---------- */
.ig-band { overflow: hidden; border-top: 1px solid var(--line); padding-block: clamp(2.5rem, 5vw, 4rem) 0; }
.ig-track { display: flex; width: max-content; margin-top: 1.8rem; }
.js .ig-track { animation: marquee 85s linear infinite; }
.ig-band:hover .ig-track,
.ig-band:focus-within .ig-track { animation-play-state: paused; }
.ig-cell { width: clamp(170px, 19vw, 250px); aspect-ratio: 1; overflow: hidden; flex: none; margin-right: clamp(.8rem, 1.4vw, 1.2rem); }
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ig-cell:hover img { transform: scale(1.05); }

/* ---------- Image-backed footer CTA ---------- */
.footer-cta--img { position: relative; isolation: isolate; overflow: hidden; }
.footer-cta--img .cta-bg { position: absolute; inset: 0; z-index: -2; }
.footer-cta--img .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.footer-cta--img::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(31, 34, 26, .82);
}
.footer-cta--img .keyline-box {
  position: absolute; inset: clamp(.9rem, 2vw, 1.6rem); border: 1px solid rgba(239, 234, 224, .22);
  pointer-events: none;
}

/* ---------- Prev/next with cover thumbnails ---------- */
.proj-nav .thumb { width: clamp(90px, 10vw, 130px); flex: none; overflow: hidden; }
.proj-nav .thumb img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .9s var(--ease); }
.proj-nav > a { flex-direction: row; align-items: center; gap: 1.6rem; }
.proj-nav > a .txt { display: flex; flex-direction: column; gap: .5rem; }
.proj-nav > a:hover .thumb img { transform: scale(1.06); }
.proj-nav .next { flex-direction: row-reverse; text-align: right; }
.proj-nav .next .txt { align-items: flex-end; }
@media (max-width: 700px) { .proj-nav .next { flex-direction: row-reverse; } .proj-nav .next .txt { align-items: flex-end; } }

/* ---------- Page transition veil ---------- */
.js .veil {
  position: fixed; inset: 0; z-index: 400;
  background: var(--paper);
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
html.is-leaving .veil { opacity: 1; }

/* ---------- Sticky footer reveal ---------- */
html.footer-reveal main { position: relative; z-index: 2; background: var(--paper); box-shadow: 0 34px 70px rgba(38, 35, 30, .16); }
html.footer-reveal .footer { position: sticky; bottom: 0; z-index: 1; }

/* ---------- Marquee edge masks ---------- */
.areas-band, .film-strip, .ig-band {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}

/* ---------- Word-rise heading reveal ---------- */
.js .lines .word { display: inline-block; overflow: hidden; vertical-align: bottom; }
.js .lines .word > span { display: inline-block; transform: translateY(110%); transition: transform 1s var(--ease); }
.js .lines.is-in .word > span { transform: none; }

/* ---------- No-anim mode (reduced-motion fallback + QA) ---------- */
.no-anim .reveal, .no-anim [data-stagger] > *, .no-anim .frame::before { opacity: 1 !important; transform: none !important; transition: none !important; }
.no-anim .frame::before { display: none; }
.no-anim .frame img { transform: none !important; }
.no-anim [data-hero] { animation: none !important; opacity: 1 !important; transform: none !important; }
.no-anim .hero-media img, .no-anim .hero-slides img { animation: none !important; transform: none !important; }
.no-anim body, .no-anim .areas-track { transition: none !important; }
.no-anim .areas-track, .no-anim .film-track, .no-anim .ig-track { animation: none !important; }
.no-anim .film-strip, .no-anim .ig-band, .no-anim .areas-band { overflow-x: auto; }
.no-anim .lines .word > span { transform: none !important; transition: none !important; }
.no-anim .hero-slides figure { transition: none !important; }
.no-anim .veil { display: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, [data-stagger] > *, .frame::before { opacity: 1 !important; transform: none !important; }
  .frame img { transform: none !important; }
  .lines .word > span { transform: none !important; }
  .areas-track, .film-track, .ig-track { animation: none !important; }
  .areas-band, .film-strip, .ig-band { overflow-x: auto; }
  .hero-slides figure { transition: none !important; }
  .veil { display: none; }
  body { opacity: 1; }
}

/* ---------- Print ---------- */
@media print {
  .announce, .site-header, .footer, .to-top, .scroll-cue { display: none; }
}
