/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ─── DESIGN TOKENS ─── */
/*
 * Palette: Serpentine (accessibility-passed)
 *   Ink, ink-2, ink-3      — ground tones (near-black, warmed)
 *   Bone, bone-dim, bone-mute — paper / type
 *   Serpentine             — forest deep, the carved-stone green
 *   Serpentine-sage        — the lit sage, used for accent and italic
 *   Ember                  — copper, used sparingly for the meta line
 */
:root {
  --ink:             #0E0D0B;
  --ink-2:           #14120E;
  --ink-3:           #1C1A16;
  --bone:            #FAF7EC;
  --bone-dim:        #F0EAD7;
  --bone-mute:       #A29D90;
  --serpentine:      #1F3A30;
  --serpentine-sage: #728F7A;
  --ember:           #C5754A;
  --line:            rgba(232, 226, 212, 0.08);
  --line-strong:     rgba(232, 226, 212, 0.18);

  --max-w: 1200px;
  --gutter: 3rem;
  --section-y: 8rem;
}
```css
/* Defensive: cap any uncaptured media at viewport width;
   clip horizontal overflow at the html level for iOS Safari reliability. */
img, picture, video { max-width: 100%; height: auto; display: block; }
html { overflow-x: clip; }
```

/* ─── BODY ─── */
body {
  background: var(--ink);
  color: var(--bone);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* While on the landing screen we lock the page; clicking Enter releases. */

/* Keyboard focus — visible outline for all interactive elements unless
   a more specific rule overrides it below. */
a:focus-visible,
button:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--serpentine-sage);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Grain overlay — 4% noise across the body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  mix-blend-mode: overlay;
}

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: var(--section-y) 0; position: relative; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(14, 13, 11, 0.6);
  border-bottom: 1px solid transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
nav.scrolled {
  opacity: 1;
  pointer-events: auto;
  padding: 1rem 3rem;
  background: rgba(14, 13, 11, 0.92);
  border-bottom-color: var(--line);
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  font-weight: 400;
}
.brand span { color: var(--serpentine-sage); font-weight: 600; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--bone-dim);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--serpentine-sage);
  transition: width 0.4s ease;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a:hover::after { width: 100%; }

.nav-enquire {
  border: 1px solid var(--ember);
  color: var(--bone) !important;
  padding: 0.65rem 1.4rem;
  letter-spacing: 0.25em;
  transition: background 0.4s, color 0.4s, letter-spacing 0.3s;
}
.nav-enquire::after { display: none; }
.nav-enquire:hover {
  background: var(--ember);
  color: var(--ink) !important;
  letter-spacing: 0.32em;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bone);
  font-size: 1.9rem;
  cursor: pointer;
  padding: 0.65rem 0.85rem;
}

/* ─── HERO ─── */
.hero {
  height: 100vh;
  height: 100dvh;
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 0 0;
  background: radial-gradient(ellipse at center, var(--ink-2) 0%, var(--ink) 70%);
}


.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(74, 107, 84, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(184, 120, 74, 0.10) 0%, transparent 55%);
  opacity: 0.85;
}

/* Fine film grain over the photograph — deepens the cinematic, gallery feel
   and masks any banding in the dark areas. SVG fractal noise, tiled. */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Vignette: darkens the edges so the eye settles on the centre of the frame
   and the brand mark reads cleanly against it. */
.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 120% 100% at 50% 42%,
    transparent 40%, rgba(8, 7, 5, 0.35) 75%, rgba(8, 7, 5, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 100%;
  padding-bottom: 0;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--serpentine-sage);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--serpentine-sage);
}
.eyebrow-center { justify-content: center; }
.eyebrow-center::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--serpentine-sage);
}

.hero-mark {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(0.4rem, 1.4vw, 1.2rem);
  padding: 1.6rem clamp(1rem, 2.5vw, 2rem) 1.2rem;
  font-size: clamp(1.15rem, 3.8vw, 3.2rem);
  font-weight: 700;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: clamp(0.15em, 0.22em, 0.25em);
  text-transform: uppercase;
  margin: 0;
  color: var(--bone);
  background: rgba(8, 7, 5, 0.82);
  border-top: 1px solid var(--line-strong);
  white-space: nowrap;
  width: 100%;
  max-width: 100%;
}
.hero-mark-title em {
  font-style: normal;
  color: var(--serpentine-sage);
}
.hero-mark-dot {
  color: var(--serpentine-sage);
  margin: 0 0.05em;
}
.hero-mark-pipe {
  font-weight: 200;
  color: var(--bone-mute);
  letter-spacing: 0;
}
.hero-mark-name {
  color: var(--bone);
}

/* Quiet sub-line beneath the brand mark — sits inside the same dark
   plate, no gimmick, just a steady locator. */
.hero-sub {
  width: 100%;
  margin: 0;
  padding: 0 clamp(1rem, 2.5vw, 2rem) 1.1rem;
  text-align: center;
  background: rgba(8, 7, 5, 0.82);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(0.6rem, 1vw, 0.74rem);
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone-mute);
}

.hero-foot {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.hero-meta .dot { color: var(--bone-mute); }
.hero-meta .ember { color: var(--ember); }

.scroll-cue {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  cursor: pointer;

  transition: color 0.3s ease, background 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease;
}
.hero.hero-loaded .hero-content > .hero-mark   { transition-delay: 0.5s; }
.hero.hero-loaded .hero-foot    > .hero-chevron { transition-delay: 2.4s; }

  letter-spacing: 0.5em;
  outline: none;
}

/* Downward chevron beneath the Enter cue — a quiet affordance that the
   action moves the visitor into the site. Gentle bob draws the eye. */
.hero-chevron {
  display: block;
  width: 11px;
  height: 11px;
  margin-top: -0.4rem;
  transform: translateX(-1.5vw) rotate(45deg);
  border-right: 1px solid rgba(250, 247, 236, 0.55);
  border-bottom: 1px solid rgba(250, 247, 236, 0.55);
  animation: chevron-bob 2.4s ease-in-out infinite;
}
@keyframes chevron-bob {
  0%, 100% { transform: translateX(-1.5vw) translateY(0) rotate(45deg); }
  50%      { transform: translateX(-1.5vw) translateY(4px) rotate(45deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-chevron { animation: none; }
}

/* ─── INTRO (second screen — was hero copy) ─── */
.intro {
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--section-y) 0;
  text-align: center;
  background: radial-gradient(ellipse at center, var(--ink-2) 0%, var(--ink) 70%);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.intro-h {
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 auto 2rem;
  color: var(--bone);
  max-width: 920px;
}
.intro-h em { font-style: italic; color: var(--serpentine-sage); font-weight: 600; }
.intro-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bone-dim);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.intro-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.4rem;
  border-top: 1px solid var(--ember);
  border-bottom: 1px solid var(--ember);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ember);
  white-space: nowrap;
}
.intro-meta .dot { color: var(--ember); opacity: 0.55; }

/* Soft, balancing welcome line — sits just under the "By invitation"
   plate so the door reads as open, not closed. */
.intro-welcome {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--bone-dim);
  margin: -1.4rem auto 0;
  letter-spacing: 0.005em;
}

/* ─── PRESS STRIP ─── */
.press {
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}
.press-eye {
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  color: var(--serpentine-sage);
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.press-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
}
.press-item {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--bone-dim);
  text-decoration: none;
  transition: color 0.3s;
}
.press-link { color: var(--bone); border-bottom: 1px solid var(--line-strong); padding-bottom: 2px; }
.press-link:hover { color: var(--serpentine-sage); border-bottom-color: var(--serpentine-sage); }
.press-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--bone-mute);
  opacity: 0.5;
}

/* ─── SECTION TITLE (shared) ─── */
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 1.4rem 0 3rem;
  max-width: 820px;
  color: var(--bone);
}
.section-title em { font-style: italic; color: var(--serpentine-sage); font-weight: 600; }

/* ─── PRACTICE ─── */
.practice { background: var(--ink); border-bottom: 1px solid var(--line); }

.practice-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}
.practice-text p {
  color: var(--bone-dim);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.practice-text p:last-child { margin-bottom: 0; }
.practice-text em { font-style: italic; color: var(--bone); }

.pull-quote {
  padding: 0.4rem 0 0.4rem 2rem;
  border-left: 1px solid var(--serpentine-sage);
}
.pull-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--bone);
  margin-bottom: 1rem;
}
.pull-quote p:last-of-type { margin-bottom: 1.4rem; }
.pull-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--serpentine-sage);
  text-transform: uppercase;
}

.practice-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
.fact {
  padding: 1.6rem 1.8rem;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.fact:last-child { border-right: none; }
.fact-n {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bone);
  font-style: italic;
}
.fact-l {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-mute);
}

/* ─── SELECTED WORK ─── */
.work-section { background: var(--ink-2); border-bottom: 1px solid var(--line); }

.work-list {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.work-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.work-card.reverse .work-img { order: 2; }

.work-img {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line);
  transition: transform 0.6s ease;
}
.work-img:hover { transform: translateY(-4px); }

.placeholder {
  background: linear-gradient(135deg, #1f1611 0%, #0a0604 100%);
  background-origin: border-box;
  background-clip: border-box;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
}
.placeholder-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--bone-dim);
}

.work-img-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--serpentine-sage);
  border: 1px solid var(--line-strong);
  padding: 0.35rem 0.7rem;
  background: rgba(14, 13, 11, 0.4);
}

.work-meta {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--serpentine-sage);
  margin-bottom: 1.4rem;
}

.work-body h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.4rem;
  color: var(--bone);
}
.work-body h3 em { font-style: italic; color: var(--serpentine-sage); font-weight: 600; }

.work-body p {
  color: var(--bone-dim);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.85;
  margin-bottom: 1.8rem;
}

.work-link {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--serpentine-sage);
  padding-bottom: 4px;
  transition: color 0.3s, letter-spacing 0.3s;
}
.work-link:hover { color: var(--serpentine-sage); letter-spacing: 0.34em; }

/* ─── SELECTED WORK · OPTION C EDITORIAL GALLERY ─── */
/* Feature piece (The Sixteen) on the left at portrait aspect; the right
   column stacks two secondary pieces (The Cellar, The Threshold) to
   match the feature's height. Captions sit on a dark scrim at the
   bottom of each frame. WebP loads when supported, JPEG otherwise.

   Behaviour: at rest the image is dimmed (watermark in the background),
   only the eyebrow and title read. On hover the image brightens to full,
   the caption + link fade in, and the scrim deepens to keep the text
   legible against the now-vivid photograph. */
.gallery-c {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.gallery-c-feature {
  display: flex;
  flex-direction: column;
}
.gallery-c-feature .gallery-c-figure {
  aspect-ratio: 4 / 5;
}
.gallery-c-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.gallery-c-secondary {
  display: flex;
  flex-direction: column;
}
.gallery-c-secondary .gallery-c-figure {
  aspect-ratio: 4 / 3;
}
.gallery-c-figure {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
  text-decoration: none;
  color: var(--bone);
  border: 1px solid var(--line);
  outline: none;
}
.gallery-c-figure picture,
.gallery-c-figure img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Image sits dim and largely desaturated at all times — the work is text-led;
   the photograph is the watermark. Image does NOT change on hover; only the
   caption + link block fades in. The scrim deepens slightly on hover so the
   revealed text reads cleanly. */
.gallery-c-figure img {
  opacity: 0.36;
  filter: grayscale(0.85) contrast(0.92);
}
.gallery-c-figure:focus-visible {
  outline: 2px solid var(--serpentine-sage);
  outline-offset: 4px;
}
/* Scrim is HIDDEN at rest — the image (dim/grayscaled) is the whole tile.
   On hover it fades in: blurb + "View →" sit centred-bottom over the photo. */
.gallery-c-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2rem 1.85rem;
  background: linear-gradient(
    to top,
    rgba(14, 13, 11, 0.82) 0%,
    rgba(14, 13, 11, 0.5) 45%,
    rgba(14, 13, 11, 0.12) 78%,
    rgba(14, 13, 11, 0) 100%
  );
  color: var(--bone);
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease;
}
.gallery-c-figure:hover .gallery-c-scrim,
.gallery-c-figure:focus-visible .gallery-c-scrim {
  opacity: 1;
}
.gallery-c-caption {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 0.9rem;
  max-width: 50ch;
  color: var(--bone-dim);
  font-weight: 400;
}
.gallery-c-secondary .gallery-c-caption {
  font-size: 0.85rem;
  max-width: 42ch;
}
.gallery-c-secondary .gallery-c-scrim {
  padding: 1.5rem 1.5rem 1.4rem;
}
.gallery-c-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bone);
  border-bottom: 1px solid var(--ember);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.3s, letter-spacing 0.3s;
}
.gallery-c-figure:hover .gallery-c-link,
.gallery-c-figure:focus-visible .gallery-c-link {
  color: var(--ember);
  letter-spacing: 0.34em;
}

/* The plaque sits OUTSIDE and BELOW the image — two lines in the SAME
   typographic family (Inter, uppercase, letter-spaced). The eyebrow
   reads ember/copper (matches "By invitation"); the title reads bone,
   slightly larger. Reads like an architectural gallery label, image
   stays pure photograph. */
.gallery-c-plaque {
  padding: 1.1rem 0.2rem 0;
  text-align: left;
}
.gallery-c-num {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 0.55rem;
}
.gallery-c-title {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(0.84rem, 1.25vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  line-height: 1.35;
  margin: 0;
  color: var(--bone);
}
.gallery-c-title em {
  font-style: normal;   /* caps don't italicise meaningfully */
  color: var(--bone);
  font-weight: 500;
}
.gallery-c-secondary .gallery-c-title {
  font-size: clamp(0.76rem, 1vw, 0.9rem);
  letter-spacing: 0.26em;
}
.gallery-c-secondary .gallery-c-plaque {
  padding-top: 0.9rem;
}

/* Unbidden Works pointer — sits between the Workshop teaser and the
   Work of Record section. More visible than a footer whisper, but still
   restrained: a centred eyebrow ("There is also") in ember above an
   italic serif title link. Reads as an editorial "see also" plate. */
.unbidden-pointer {
  padding: 5rem 0 5.5rem;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.unbidden-pointer-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  text-decoration: none;
  padding: 0.5rem 0.6rem;
  outline: none;
}
.unbidden-pointer-eyebrow {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.unbidden-pointer-eyebrow::before,
.unbidden-pointer-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--ember);
  opacity: 0.7;
}
.unbidden-pointer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--bone);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.45rem;
  transition: border-color 0.4s ease, letter-spacing 0.4s ease;
}
.unbidden-pointer-title em {
  font-style: italic;
  color: var(--serpentine-sage);
}
.unbidden-pointer-link:hover .unbidden-pointer-title,
.unbidden-pointer-link:focus-visible .unbidden-pointer-title {
  border-bottom-color: var(--ember);
  letter-spacing: 0.01em;
}
.unbidden-pointer-link:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 8px;
  border-radius: 2px;
}
@media (max-width: 900px) {
  .unbidden-pointer { padding: 3.5rem 0 4rem; }
}

/* Responsive: under 900px the gallery becomes a single column — feature
   on top, then the two secondary pieces stacked below. On touch devices
   we drop the dim/hover dance entirely (no hover state to trigger it). */
@media (max-width: 900px) {
  .gallery-c {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .gallery-c-stack {
    gap: 1.25rem;
  }
  .gallery-c-feature .gallery-c-figure {
    aspect-ratio: 4 / 3;
  }
  .gallery-c-secondary .gallery-c-figure {
    aspect-ratio: 4 / 3;
  }
  .gallery-c-scrim,
  .gallery-c-secondary .gallery-c-scrim {
    padding: 1.4rem 1.4rem 1.25rem;
  }
  .gallery-c-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .gallery-c-caption {
    font-size: 0.88rem;
  }
}

@media (hover: none) {
  /* On touch devices there's no hover — show the blurb scrim by default
     since users can't trigger it. Image stays dim. */
  .gallery-c-scrim {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-c-figure img,
  .gallery-c-scrim {
    transition: none;
  }
}

/* ─── WORKSHOP CODA ─── */
.workshop-coda {
  background: var(--ink);
  padding: 6rem 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.workshop-coda-h {
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--bone);
  margin: 0 auto 3rem;
}
.workshop-coda-h em { font-style: italic; color: var(--serpentine-sage); font-weight: 600; }
.workshop-coda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 860px;
  margin: 0 auto;
  align-items: center;
  text-align: left;
}
.workshop-coda-img {
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s ease;
}
.workshop-coda-img:hover { transform: translateY(-4px); }
.workshop-coda-body p {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--bone-dim);
  line-height: 1.85;
  margin-bottom: 1.6rem;
}


/* ─── WORK OF RECORD ─── */
.record { background: var(--ink); border-bottom: 1px solid var(--line); }

.record-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.record-item {
  padding: 2.4rem 2.4rem 2.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.record-name {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--bone);
  font-style: italic;
}
.record-item p {
  font-size: 0.95rem;
  color: var(--bone-dim);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.record-meta {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--serpentine-sage);
}

/* ─── THE STANDARD ─── */
.standard { background: var(--ink-2); border-bottom: 1px solid var(--line); }
.standard-inner { max-width: 820px; }

.standard-text p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bone-dim);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.standard-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 500;
  font-style: italic;
  color: var(--bone) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.005em;
  margin-bottom: 2.4rem !important;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}
.standard-close {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem !important;
  color: var(--bone) !important;
  line-height: 1.55 !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 0.6rem !important;
}

.standard-facts {
  list-style: none;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.standard-facts li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  font-size: 0.95rem;
  color: var(--bone-dim);
  line-height: 1.65;
}
.standard-facts li::before {
  content: '◈';
  color: var(--serpentine-sage);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ─── COMMISSION ─── */
.commission {
  background: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.commission::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(184, 120, 74, 0.06), transparent 70%);
  pointer-events: none;
}
.commission-inner { max-width: 720px; position: relative; }

.commission-h {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 1.4rem 0 2rem;
  color: var(--bone);
}
.commission-h em { font-style: italic; color: var(--serpentine-sage); font-weight: 600; }

.commission-sub {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--bone-dim);
  max-width: 560px;
  margin: 0 auto 4rem;
  line-height: 1.8;
}

.commission-process {
  list-style: none;
  text-align: left;
  margin: 0 auto 4rem;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.commission-process li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.step-n {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--serpentine-sage);
}
.step-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--bone);
  margin-bottom: 0.4rem;
}
.step-d {
  font-size: 0.95rem;
  color: var(--bone-dim);
  line-height: 1.7;
}

.cta {
  display: inline-block;
  padding: 1.15rem 3rem;
  border: 1px solid var(--ember);
  color: var(--bone);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.3s ease;
}
.cta:hover {
  background: var(--ember);
  color: var(--ink);
  letter-spacing: 0.4em;
}

.commission-note {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
  color: var(--bone-mute);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  line-height: 1.9;
}
.commission-note a { color: var(--bone-dim); text-decoration: none; transition: color 0.3s; }
.commission-note a:hover { color: var(--bone); }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--line);
  padding: 2.6rem 0;
  background: var(--ink);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-tagline {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--bone-dim);
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--bone-mute);
  letter-spacing: 0.15em;
}

/* ─── REVEAL ON SCROLL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.stagger > .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger > .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger > .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger > .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger > .reveal:nth-child(5) { transition-delay: 320ms; }

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 5, 0.97);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  text-align: center;
}
.lightbox.on { display: flex; }
.lightbox-content { max-width: 720px; }
.lightbox-title {
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--bone);
  line-height: 1.4;
  margin-bottom: 1rem;
}
.lightbox-sub {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--serpentine-sage);
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: 1px solid var(--line-strong);
  color: var(--bone-dim);
  font-family: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
}
.lightbox-close:hover { color: var(--bone); border-color: var(--serpentine-sage); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  :root { --gutter: 1.5rem; --section-y: 5rem; }

  nav { padding: 1.1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }

  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(14, 13, 11, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--line);
    display: none;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav-enquire { text-align: center; }

  .hero { padding: 5rem 0 0; min-height: 600px; }
  .hero-foot { gap: 1.1rem; }
  .hero-meta { flex-wrap: wrap; justify-content: center; gap: 0.6rem; padding: 0.7rem 1rem; }
  .hero-meta .dot { display: none; }
  .hero-sub { letter-spacing: 0.28em; padding-bottom: 1rem; }
  .intro-h { font-size: clamp(2rem, 7vw, 3.2rem); }
  .intro-meta {
    bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    white-space: normal;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
  }
  .intro-meta .dot { display: none; }
  .intro-welcome { font-size: 0.98rem; }

  .practice-grid { grid-template-columns: 1fr; gap: 3rem; }
  .practice-facts { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: none; }
  .fact:nth-child(3), .fact:nth-child(4) { border-top: 1px solid var(--line); }

  .work-list { gap: 4rem; }
  .work-card,
  .work-card.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .work-card.reverse .work-img { order: 0; }

  .workshop-coda { padding: 4rem 0; }
  .workshop-coda-grid { grid-template-columns: 1fr; gap: 2rem; }

  .record-grid { grid-template-columns: 1fr; }
  .record-item { border-right: 1px solid var(--line); }

  .commission-process li { grid-template-columns: 3rem 1fr; gap: 1rem; }

  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ─── SUBPAGE ─── */
.subpage-hero {
  padding: 11rem 0 5rem;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse at center, var(--ink-2) 0%, var(--ink) 70%);
  text-align: center;
}
.subpage-hero .eyebrow { justify-content: center; }
.subpage-hero .eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--serpentine-sage); }
.subpage-h {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 1.4rem auto 1.8rem;
  max-width: 920px;
  color: var(--bone);
}
.subpage-h em { font-style: italic; color: var(--serpentine-sage); font-weight: 600; }
.subpage-intro {
  font-size: 1.05rem;
  color: var(--bone-dim);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.85;
}

/* Editorial separator line used on the Unbidden Works page: a quiet
   note placed near the top to keep the page from being read as a
   commissioned-works gallery. */
.subpage-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  letter-spacing: 0.04em;
  color: var(--serpentine-sage);
  max-width: 480px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.plates { padding: 6rem 0; background: var(--ink); }
.plate {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}
.plate:last-child { margin-bottom: 0; }
.plate.reverse .plate-img { order: 2; }

.plate-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #1f1611 0%, #0a0604 100%);
  background-origin: border-box;
  background-clip: border-box;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
  cursor: pointer;
  outline: none;
}
.plate-img:focus-visible {
  outline: 2px solid var(--serpentine-sage);
  outline-offset: 4px;
}
.plate-img-tag {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--serpentine-sage);
  border: 1px solid var(--line-strong);
  padding: 0.35rem 0.7rem;
  background: rgba(14, 13, 11, 0.4);
}
.plate-img-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--bone-dim);
}

.plate-body { max-width: 460px; }
.plate-meta {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--serpentine-sage);
  margin-bottom: 1rem;
}
.plate-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--bone);
}
.plate-h em { font-style: italic; color: var(--serpentine-sage); font-weight: 600; }
.plate-body p {
  color: var(--bone-dim);
  font-size: 1rem;
  line-height: 1.85;
}

.subpage-footer {
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  text-align: center;
}
.subpage-footer .back-link {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  border-bottom: 1px solid var(--serpentine-sage);
  padding-bottom: 4px;
  transition: color 0.3s, letter-spacing 0.3s;
}
.subpage-footer .back-link:hover { color: var(--serpentine-sage); letter-spacing: 0.4em; }

@media (max-width: 900px) {
  .subpage-hero { padding: 8rem 0 4rem; }
  .plates { padding: 4rem 0; }
  .plate, .plate.reverse { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
  .plate.reverse .plate-img { order: 0; }
}

/* ─── IMAGE OVERLAY (caption legibility on top of real photographs) ─── */
.work-img::after,
.plate-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(14, 13, 11, 0.85) 0%, rgba(14, 13, 11, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.placeholder-label,
.plate-img-label {
  position: relative;
  z-index: 2;
}

/* ─── HERO IMAGE BACKDROP ─── */
/* .hero-photo sizes itself to the image's aspect ratio, cover-fitting the
   viewport. .hero-image (guardian-heroes.jpeg, the original photograph)
   fills this wrapper at 100% × 100%.

   The wrapper carries the camera motion: a slow pan-out while the
   photograph is fading in (the frame opens tight, then pulls back to
   reveal the full scene), and then a large scale-up on Enter (a forward
   push into the scene before it fades into the next page). Origin anchored
   on the doorway so the motion always feels like the camera moving, not a
   flat scale. */
.hero-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max(100vw, calc(100vh * 6988 / 3930));
  height: max(100vh, calc(100vw * 3930 / 6988));
  transform-origin: 49.7% 36.9%;
  transform: translate(-50%, -50%) scale(1.18);
  transition: transform 7s cubic-bezier(0.16, 0.6, 0.2, 1);
  perspective: 1800px;
  perspective-origin: 47% 37%;
}
/* Pan out: the frame opens tight on the doorway, then the camera pulls
   back to its resting width as the photograph fades in — revealing the
   full scene. Decelerates into place so it reads as the camera settling. */
.hero.hero-loaded .hero-photo {
  transform: translate(-50%, -50%) scale(1);
}
/* Walk-through: once the door is open, push forward into the doorway
   over 1.2s — fast enough to feel like motion, slow enough to read. */
.hero.hero-entering .hero-photo {
  transform: translate(-50%, -50%) scale(2.8);
  transition: transform 1.2s cubic-bezier(0.5, 0, 0.7, 1);
}

/* Fade-to-dark overlay layered above the photo, used during the walk-through
   so the scene transitions cleanly into the intro section below. */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  opacity: 0;
  z-index: 20;
  pointer-events: none;
  transition: opacity 1.2s ease-in;
}
.hero.hero-entering::after { opacity: 1; }

.hero-image {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  /* WebP with a JPEG fallback. The plain url() is used by browsers without
     image-set(); modern browsers take the lighter WebP. */
  background-image: url("images/guardian-heroes.jpeg");
  background-image: image-set(
    url("images/guardian-heroes.webp") type("image/webp"),
    url("images/guardian-heroes.jpeg") type("image/jpeg"));
  opacity: 0;
  filter: saturate(0.5);

}
.hero-image.is-loaded { opacity: 0.22; }

/* Shared WebP-with-JPEG-fallback background, driven by per-element CSS vars
   (--img-webp / --img-jpg) set inline on each card. */
.bg-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--img-jpg);
  background-image: image-set(
    var(--img-webp) type("image/webp"),
    var(--img-jpg) type("image/jpeg"));
}

/* Once the photograph has faded in, it brightens further to take the
   foreground while the title settles onto a dark filled plate. */
.hero.hero-settled .hero-image {
  opacity: 0.9;
  filter: saturate(1);
  transition: opacity 4s ease-in-out, filter 4s ease-in-out;
}

.hero.hero-opening .hero-content,
.hero.hero-opening .hero-foot {
  opacity: 0;
  transition: opacity 0.5s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .hero::after { transition: none; }
  .hero.hero-loaded .hero-photo,
  .hero.hero-entering .hero-photo { transform: translate(-50%, -50%) scale(1); }
}

/* Sequence: title fades in first, then the image rises behind, then the
   Enter cue appears once the image is on its way in. */
.hero-content > .hero-mark,
.hero-foot > .scroll-cue,
.hero-foot > .hero-chevron {
  opacity: 0;
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.hero-content > .hero-mark,
.hero-foot > .scroll-cue { transform: translateY(16px); }
.hero.hero-loaded .hero-content > .hero-mark,
.hero.hero-loaded .hero-foot > .scroll-cue {
  opacity: 1;
  transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
  .hero-image {
    transition: none;
    opacity: 0.22;
  }
  .hero-content > .hero-mark,
  .hero-foot > .scroll-cue {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-foot > .hero-chevron { opacity: 0.85; transition: none; }
}

/* ─── TOUCH DEVICES ─── */
@media (hover: none) {
  .work-img:hover,
  .workshop-coda-img:hover { transform: none; }
  .work-link:hover { letter-spacing: 0.28em; }

  .cta:hover { letter-spacing: 0.32em; }
  .subpage-footer .back-link:hover { letter-spacing: 0.32em; }
}

/* ───────────────────────────────────────────────────────────────────
   EDITORIAL · BONE PAGES
   ───────────────────────────────────────────────────────────────────
   Used on sub-pages that read like printed editorial:
     /work/the-sixteen/, /work/the-cellar/, /work/the-threshold/,
     /work/workshop/ (Unbidden Works).

   The body switches to a bone (warm cream) ground; type is serif-led,
   set wider, with generous vertical rhythm. Pages are built from a
   small set of components — hero, lede, chapter, plate, pull-quote,
   terms — composed differently per piece.

   Opt-in: add  class="editorial-page"  to <body>.
   The dark-page styles (.subpage-hero, .plate, etc.) above are kept
   intact for any page that hasn't been migrated to editorial yet.
   ─────────────────────────────────────────────────────────────────── */

body.editorial-page {
  background: var(--bone);
  color: #2A2520;
}
/* The body grain overlay is too dark on bone — switch to a subtle paper grain. */
body.editorial-page::before {
  opacity: 0.6;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
}
/* Nav stays dark glass on bone pages — gives the editorial pages the same
   "frame" as the home page, so they read as part of one publication. */

/* Hero — large image displayed at its natural aspect ratio (width 100%,
   height auto), with a generous max-height cap so it never dominates
   the whole viewport. Background colour shows during slow connections
   and behind any letterboxing on extreme aspects. */
.editorial-hero {
  padding-top: 0;
  background: var(--bone);
}
.editorial-hero-image {
  width: 100%;
  background: #1f1611;
  display: block;
  overflow: hidden;
  position: relative;
}
.editorial-hero-image picture {
  display: block;
  width: 100%;
}
.editorial-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
.editorial-hero-titleblock {
  text-align: center;
  padding: 4.5rem 2rem 2.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.editorial-hero-eyebrow {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--serpentine);
  margin: 0 0 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.editorial-hero-eyebrow::before,
.editorial-hero-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--serpentine);
}
.editorial-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #1A1612;
  margin: 0;
}
.editorial-hero-title em { font-style: italic; color: var(--serpentine); font-weight: 400; }
.editorial-hero-meta {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #8a8073;
  margin-top: 1.8rem;
}

/* Lede — large italic opening paragraph, sits between hero and body */
.editorial-lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: #2A2520;
  max-width: 760px;
  margin: 1rem auto 4.5rem;
  padding: 0 2rem;
  text-align: center;
}

/* Article body — narrow column for reading rhythm */
.editorial-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Chapter — a heading + prose */
.editorial-chapter {
  margin: 0 0 4.5rem;
}
.editorial-chapter-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--serpentine);
  margin: 0 0 1rem;
}
.editorial-chapter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.005em;
  color: #1A1612;
  margin: 0 0 1.8rem;
}
.editorial-chapter-title em { font-style: italic; color: var(--serpentine); font-weight: 500; }
.editorial-prose p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.7;
  color: #2A2520;
  margin: 0 0 1.4rem;
}
.editorial-prose p:last-child { margin: 0; }
.editorial-prose em { font-style: italic; color: #1A1612; }

/* Pull-quote — large italic, set apart, can sit between chapters */
.editorial-pullquote {
  margin: 5rem auto;
  max-width: 860px;
  padding: 0 2rem;
  text-align: center;
}
.editorial-pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--serpentine);
  margin: 0;
}
.editorial-pullquote cite,
.editorial-pullquote-cite {
  display: block;
  margin-top: 1.3rem;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: #8a8073;
}

/* Photo plate — sits between chapters at a wider width than the body
   text column. Each image displays at its NATURAL aspect ratio (width
   100%, height auto) so portraits stay portrait, landscapes stay
   landscape. Max-height caps prevent any single image from blowing
   out the page. */
.editorial-plate {
  width: 100%;
  max-width: 1100px;
  margin: 4.5rem auto;
  padding: 0 2rem;
}
.editorial-plate-img {
  width: 100%;
  background: #1f1611;
  display: block;
  overflow: hidden;
  line-height: 0; /* removes inline-image baseline gap */
}
.editorial-plate-img picture {
  display: block;
  width: 100%;
}
.editorial-plate-img img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  margin: 0 auto;
}
.editorial-plate-img.portrait { max-width: 720px; margin: 0 auto; }
.editorial-plate-img.square   { max-width: 820px; margin: 0 auto; }
.editorial-plate-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b6258;
  margin: 1rem 0 0;
  text-align: center;
  letter-spacing: 0.01em;
}
/* Full-bleed plate breaks out of the body column to viewport-edge width. */
```css
.editorial-plate-fullbleed {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
}

@media (min-width: 901px) {
  .editorial-plate-fullbleed {
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
  }
}

.editorial-plate-fullbleed .editorial-plate-img img {
  max-height: 92vh;
  object-fit: cover; /* a full-bleed feature can crop slightly for impact */
}

/* Terms block — for Unbidden Works' THE TERMS list, but reusable.
   Quiet boxed list with serpentine top + bottom rules. */
.editorial-terms {
  margin: 5.5rem auto;
  max-width: 540px;
  padding: 2.6rem 2rem 2.8rem;
  text-align: center;
  border-top: 1px solid var(--serpentine);
  border-bottom: 1px solid var(--serpentine);
}
.editorial-terms-h {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--serpentine);
  margin: 0 0 1.8rem;
}
.editorial-terms-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.editorial-terms-list li {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.18rem;
  line-height: 1.35;
  color: #1A1612;
}

/* Note — used for short, separator lines like "Not commissions. Not on demand." */
.editorial-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--serpentine);
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0 auto 2rem;
  max-width: 540px;
}

/* Section heading for in-development / completed sub-sections of a page */
.editorial-section-head {
  margin: 5rem auto 2rem;
  max-width: 680px;
  padding: 0 2rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--serpentine);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  justify-content: center;
}
.editorial-section-head::before,
.editorial-section-head::after {
  content: '';
  flex: 0 0 30px;
  height: 1px;
  background: var(--serpentine);
  opacity: 0.6;
}

/* Footer back link on bone pages */
.editorial-footer {
  padding: 5rem 2rem 6rem;
  text-align: center;
  border-top: 1px solid rgba(31, 58, 48, 0.18);
  margin-top: 5rem;
  background: var(--bone);
}
.editorial-back {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--serpentine);
  text-decoration: none;
  border-bottom: 1px solid var(--serpentine);
  padding-bottom: 4px;
  transition: letter-spacing 300ms ease, color 300ms ease;
}
.editorial-back:hover { letter-spacing: 0.42em; color: #1A1612; }

/* Bottom space between chapters/plates */
.editorial-body > .editorial-chapter + .editorial-chapter { margin-top: 0; }
.editorial-pullquote + .editorial-chapter,
.editorial-plate + .editorial-chapter,
.editorial-chapter + .editorial-pullquote,
.editorial-chapter + .editorial-plate { margin-top: 0; }

@media (max-width: 900px) {
  .editorial-hero-image { height: 56vh; min-height: 380px; }
  .editorial-hero-titleblock { padding: 3rem 1.5rem 2rem; }
  .editorial-hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.36em; }
  .editorial-hero-eyebrow::before,
  .editorial-hero-eyebrow::after { width: 18px; }
  .editorial-lede { padding: 0 1.5rem; margin-bottom: 3.5rem; }
  .editorial-body { padding: 0 1.5rem; }
  .editorial-chapter { margin-bottom: 3.5rem; }
  .editorial-prose p { font-size: 1.1rem; line-height: 1.65; }
  .editorial-pullquote { margin: 3.5rem auto; padding: 0 1.5rem; }
  .editorial-plate { margin: 3rem auto; padding: 0; }
  .editorial-plate-img { aspect-ratio: 3 / 2; }
  .editorial-plate-fullbleed { margin: 3rem 0; }
  .editorial-terms { margin: 4rem 1.5rem; padding: 2rem 1.5rem 2.2rem; }
  .editorial-section-head { margin: 3.5rem 1.5rem 1.6rem; padding: 0; }
  .editorial-footer { padding: 4rem 1.5rem 5rem; margin-top: 3rem; }
}
