/* ============================================================
   janehodson.com — Shared Stylesheet
   Design direction: Refined editorial minimalism
   Fonts: Cormorant Garamond (display) + DM Sans (UI/body)
   Palette: Pure white, near-black, warm mid-grey, blush accent
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --white:        #ffffff;
  --off-white:    #f9f8f6;
  --cream:        #f3f1ed;
  --ink:          #1a1714;
  --ink-soft:     #3d3935;
  --grey:         #8a857e;
  --grey-light:   #d4d0ca;
  --blush:        #c8a99a;       /* warm accent — restrained */
  --header-h:     68px;
  --max-w:        1280px;
  --text-max:     680px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, sans-serif;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── HEADER ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  z-index: 200;
  transition: border-color var(--transition);
}

.site-header.scrolled {
  border-bottom-color: var(--grey-light);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* Wordmark */
.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.35em;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
  color: var(--ink);
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.wordmark:hover { opacity: 0.6; }
.wm-first { font-style: italic; }
.wm-last  { font-style: normal; }

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--ink);
  transition: right var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link:hover::after,
.nav-link.active::after {
  right: 0;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
  background: var(--ink);   /* fallback if image fails */
}

/* Background image loaded via JS */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

/* Dark gradient from bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18,15,12,0.85) 0%,
    rgba(18,15,12,0.3)  50%,
    rgba(18,15,12,0.1)  100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  /* Animate in on load */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 6px;
  line-height: 1.6;
}
.br-desktop { display: inline; }

.hero-attribution {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--blush);
  margin-bottom: 36px;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 4px;
  transition: border-color var(--transition), gap var(--transition);
}
.cta-link:hover { border-color: var(--white); gap: 16px; }
.cta-arrow { transition: transform var(--transition); }
.cta-link:hover .cta-arrow { transform: translateX(4px); }

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.35);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: 0.35; }
  50%      { transform: scaleY(0.4); opacity: 0.1; }
}
.scroll-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}

/* ── SECTION HEADER (shared) ─────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 80px;
  margin-bottom: 56px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.section-rule {
  flex: 1;
  height: 1px;
  background: var(--grey-light);
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

/* ── FEATURED STORIES (home) ─────────────────────────────────── */
.featured-section {
  padding: 96px 0 72px;
  background: var(--white);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 3px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
}

/* Tall card occupies 2 rows on the left */
.story-card--tall  { grid-row: 1 / 3; }
/* Wide card spans 2 columns on bottom right */
.story-card--wide  { grid-column: 2 / 4; }

.story-card {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}

.story-img-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 75%;   /* 4:3 default */
  overflow: hidden;
}
.story-card--tall  .story-img-wrap { padding-bottom: 130%; }
.story-card--wide  .story-img-wrap { padding-bottom: 55%; }

.story-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.story-card:hover .story-img { transform: scale(1.04); }

/* Fallback text shown when image fails */
.img-fallback .story-img-fallback-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--grey);
}
.story-img-fallback-text {
  display: none;
}
.img-fallback .story-img-fallback-text { display: flex; }

.story-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
}
.story-name {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}
.story-arrow {
  color: var(--grey);
  font-size: 1rem;
  transition: transform var(--transition), color var(--transition);
}
.story-card:hover .story-arrow {
  transform: translateX(4px);
  color: var(--ink);
}

.featured-cta {
  text-align: center;
  margin-top: 48px;
}
.text-link {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  border-bottom: 1px solid var(--grey-light);
  padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition);
}
.text-link:hover { color: var(--ink); border-color: var(--ink); }

/* ── PULL QUOTE SECTION (home) ───────────────────────────────── */
.pull-quote-section {
  background: var(--cream);
  padding: 96px 80px;
  text-align: center;
}
.pull-quote {
  max-width: 720px;
  margin: 0 auto;
}
.pull-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
}
.pull-quote cite {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  font-style: normal;
}

/* ── CONTACT STRIP (home) ────────────────────────────────────── */
.contact-strip {
  padding: 56px 80px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}
.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey);
}
.contact-details {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-item {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-soft);
  transition: color var(--transition);
}
.contact-item:hover { color: var(--blush); }
.contact-divider { color: var(--grey-light); }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.35);
  padding: 48px 80px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}
.footer-nav {
  display: flex;
  gap: 32px;
}
.footer-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-nav a:hover { color: rgba(255,255,255,0.75); }
.footer-copy {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.22);
  max-width: 500px;
  line-height: 1.6;
}

/* ── PAGE INTRO (inner pages) ────────────────────────────────── */
.page-intro {
  margin-top: var(--header-h);
  padding: 80px 80px 60px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
}
.page-intro-inner { max-width: var(--max-w); margin: 0 auto; }

.page-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 12px;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}
.page-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--grey);
}

/* ── FILTER BAR (pictures page) ──────────────────────────────── */
.filter-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding: 0 48px;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 18px 20px 16px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.filter-btn:hover   { color: var(--ink-soft); }
.filter-btn.active  { color: var(--ink); border-bottom-color: var(--ink); }

/* ── STORIES MAIN (pictures page) ────────────────────────────── */
.stories-main { padding: 72px 0 96px; }

.stories-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Each story block: number + title + mosaic */
.story-block { transition: opacity var(--transition); }
.story-block.hidden { display: none; }

.story-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.story-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--blush);
  flex-shrink: 0;
  min-width: 24px;
}
.story-block-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--ink);
}
.story-rule {
  flex: 1;
  height: 1px;
  background: var(--grey-light);
  display: block;
}

/* Gallery mosaic — hero + 4 thumbs */
.gallery-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  height: 420px;
}
.mosaic-item--hero {
  grid-row: 1 / 3;  /* tall left cell */
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
}

/* Show placeholder text when image actually missing */
.mosaic-item.img-missing::after {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--grey-light);
  text-align: center;
  padding: 8px;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.mosaic-item:hover img { transform: scale(1.05); }

/* Plus icon overlay on hover */
.mosaic-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,15,12,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mosaic-overlay span {
  font-size: 1.8rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity var(--transition), transform var(--transition);
  font-weight: 100;
}
.mosaic-item:hover .mosaic-overlay {
  background: rgba(18,15,12,0.25);
}
.mosaic-item:hover .mosaic-overlay span {
  opacity: 1;
  transform: scale(1);
}

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox-bg {
  position: fixed;
  inset: 0;
  background: rgba(10,8,7,0.96);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.lightbox-bg.active { opacity: 1; pointer-events: all; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 910;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  /* visible/hidden toggled by JS: */
}
.lightbox[hidden] { display: none; }

.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-width: 90vw;
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.lb-img.ready { opacity: 1; transform: scale(1); }

.lb-caption {
  margin-top: 18px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
}
.lb-counter {
  margin-top: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

.lb-close {
  position: fixed;
  top: 28px; right: 36px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  transition: color var(--transition);
  z-index: 920;
  line-height: 1;
}
.lb-close:hover { color: var(--white); }

.lb-prev, .lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 3rem;
  cursor: pointer;
  padding: 16px 20px;
  transition: color var(--transition);
  z-index: 920;
  line-height: 1;
  font-weight: 100;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { color: var(--white); }

/* ── BIOGRAPHY PAGE ──────────────────────────────────────────── */
.page-intro--biog {
  background: var(--cream);
}

.biog-section {
  padding: 80px 0 96px;
  background: var(--white);
}

.biog-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

/* Sticky sidebar */
.biog-sidebar-sticky {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}

/* Giant decorative letter */
.biog-initial {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 8rem;
  line-height: 1;
  color: var(--grey-light);
  margin-bottom: 32px;
  user-select: none;
}

.sidebar-facts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.fact-block { border-top: 1px solid var(--grey-light); padding-top: 14px; }
.fact-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 4px;
}
.fact-value {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.fact-value a {
  color: var(--ink-soft);
  border-bottom: 1px solid var(--grey-light);
  transition: border-color var(--transition), color var(--transition);
}
.fact-value a:hover { color: var(--blush); border-color: var(--blush); }

.sidebar-portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(20%);
}

/* Biography text */
.biog-text {
  max-width: var(--text-max);
}

.biog-lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 28px;
}

.biog-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.biog-text em { font-style: italic; }

.biog-subhead {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 40px 0 12px;
}

.biog-quotes {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.biog-quote {
  border-left: 2px solid var(--grey-light);
  padding-left: 24px;
}
.biog-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.biog-quote cite {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  font-style: normal;
}

/* ── PORTFOLIO GRID (biography page) ────────────────────────── */
.portfolio-section {
  padding: 80px 0 96px;
  background: var(--off-white);
}

.portfolio-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

/* Wide item spans 2 columns */
.port-item--wide { grid-column: span 2; }

.port-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream);
  aspect-ratio: 4/3;
}
.port-item--wide { aspect-ratio: 8/3; }

.port-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
  filter: grayscale(15%);
}
.port-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Missing image fallback */
.port-item.img-missing::after {
  content: attr(data-caption);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--grey-light);
  font-size: 0.9rem;
}

/* Label overlay */
.port-hover {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 16px;
  background: linear-gradient(to top, rgba(10,8,7,0.7), transparent);
  transform: translateY(100%);
  transition: transform var(--transition);
}
.port-item:hover .port-hover { transform: translateY(0); }
.port-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .header-inner { padding: 0 32px; }
  .hero-content { padding: 0 48px; }
  .section-header, .featured-section .featured-grid,
  .pull-quote-section, .contact-strip, .stories-grid,
  .biog-inner, .portfolio-grid { padding-left: 40px; padding-right: 40px; }
  .featured-grid { padding: 0 40px; }
  .biog-inner { grid-template-columns: 220px 1fr; gap: 48px; }
}

@media (max-width: 860px) {
  /* Mobile nav */
  .hamburger { display: flex; }
  .main-nav {
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .main-nav.open { max-height: 200px; }
  .nav-link {
    padding: 16px 32px;
    font-size: 0.85rem;
    width: 100%;
    border-bottom: 1px solid var(--grey-light);
  }
  .nav-link::after { display: none; }

  /* Hero */
  .hero-content { padding: 0 32px; }
  .hero-title { font-size: clamp(3.5rem, 12vw, 6rem); }
  .br-desktop { display: none; }
  .scroll-hint { right: 24px; }

  /* Featured grid → 2 cols */
  .featured-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }
  .story-card--tall { grid-row: auto; }
  .story-card--wide { grid-column: 1 / 3; }

  /* Pull quote */
  .pull-quote-section { padding: 64px 32px; }

  /* Contact strip */
  .contact-strip {
    flex-direction: column;
    gap: 16px;
    padding: 40px 32px;
    text-align: center;
  }
  .contact-details { flex-direction: column; gap: 8px; }
  .contact-divider { display: none; }

  /* Footer */
  .site-footer { padding: 40px 32px; }

  /* Page intro */
  .page-intro { padding: 60px 32px 40px; }

  /* Filter */
  .filter-bar { padding: 0 24px; }

  /* Stories */
  .stories-grid { padding: 0 24px; gap: 56px; }
  .gallery-mosaic { height: 300px; }

  /* Biography */
  .biog-inner {
    grid-template-columns: 1fr;
    padding: 0 32px;
    gap: 40px;
  }
  .biog-sidebar-sticky { position: static; }
  .biog-initial { font-size: 5rem; }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }
  .port-item--wide { grid-column: span 2; }

  /* Section headers */
  .section-header { padding: 0 24px; }
}

@media (max-width: 560px) {
  .header-inner { padding: 0 20px; }
  .featured-grid { grid-template-columns: 1fr; }
  .story-card--wide, .story-card--tall { grid-column: auto; grid-row: auto; }
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .mosaic-item { aspect-ratio: 1; }
  .mosaic-item--hero { grid-row: auto; grid-column: 1 / 3; aspect-ratio: 4/3; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .port-item--wide { grid-column: auto; aspect-ratio: 4/3; }
}
