/* Nina Suess, Press Dossier
   Ultra-minimal monochrome luxury. Carbon / ivory / warm-white.
   No oxblood. No ornament. Just space, hairlines, and couture type. */

:root {
  --carbon:  #0C0C0C;
  --ivory:   #F8F5F0;
  --warm:    #F0EBE3;
  --ash:     #C8C3BC;
  --ghost:   rgba(12, 12, 12, 0.10);
  --ghost-2: rgba(12, 12, 12, 0.06);

  /* Type: ultra-thin display + wide-tracked mono */
  --f-display: "Cormorant Garamond", "Cormorant", "EB Garamond", Georgia, "Times New Roman", serif;
  --f-label:   "Josefin Sans", "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", ui-sans-serif, sans-serif;
  --f-body:    "EB Garamond", Georgia, "Times New Roman", serif;

  --max: 1280px;
  --gutter: clamp(24px, 5vw, 80px);
  --rule-w: 1px;
}

/* Local fallback: drop remote fonts, system equivalents */
.is-local {
  --f-display: Georgia, "Times New Roman", serif;
  --f-label:   ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --f-body:    Georgia, "Times New Roman", serif;
}

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

body {
  background: var(--ivory);
  color: var(--carbon);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; }
img, svg { max-width: 100%; display: block; }

/* =========================================================
   AMBIENT WASH — a barely-there warm vignette, no grain
   ========================================================= */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(248,245,240,0) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(12,12,12,0.04) 0%, transparent 70%);
}

/* =========================================================
   HAIRLINE RAIL — single 1px vertical rule, far left
   The ONE signature motif allowed.
   ========================================================= */
.rail {
  position: fixed;
  top: 0;
  bottom: 0;
  left: clamp(32px, 5vw, 80px);
  width: var(--rule-w);
  z-index: 10;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--ash) 6%,
    var(--ash) 94%,
    transparent 100%
  );
}

/* =========================================================
   MAIN Z-LAYER
   ========================================================= */
main, header, footer { position: relative; z-index: 2; }

/* =========================================================
   MASTHEAD
   A single hairline bar. Three typographic fields.
   ========================================================= */
.masthead {
  padding: 20px var(--gutter) 18px;
  border-bottom: var(--rule-w) solid var(--ghost);
  position: relative;
  z-index: 20;
}
.masthead-row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.m-label {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ash);
}
.m-wordmark {
  font-family: var(--f-display);
  font-size: clamp(13px, 1.4vw, 17px);
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--carbon);
  text-decoration: none;
  flex-shrink: 0;
}
.m-cta {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--carbon);
  text-decoration: none;
  border-bottom: var(--rule-w) solid var(--carbon);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
@media (hover: hover) {
  .m-cta:hover { color: var(--ash); border-color: var(--ash); }
}

/* =========================================================
   HERO — full-bleed split, oversized type left, portrait right
   ========================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr minmax(0, 520px);
  gap: 0;
  overflow: hidden;
}

/* Left column: all the copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(60px, 10vw, 140px) var(--gutter) clamp(60px, 10vw, 120px);
  padding-left: clamp(64px, 9vw, 120px);
  border-right: var(--rule-w) solid var(--ghost);
  position: relative;
  z-index: 2;
}

/* Right column: portrait, edge to edge */
.hero-image {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 560px;
}
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(0.12) contrast(1.08);
  background: var(--warm);
}
.hero-image figcaption {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-family: var(--f-label);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(12,12,12,0.38);
  z-index: 3;
}

/* Eyebrow above the name */
.eyebrow {
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 clamp(20px, 4vw, 44px);
}

/* NAME — the centrepiece, full-bleed oversized serif */
.hero-name {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: normal;
  font-size: clamp(72px, 13vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(32px, 5vw, 60px);
  color: var(--carbon);
}
.hero-name .name-given  { display: block; }
.hero-name .name-family { display: block; font-style: italic; }

/* Stagger entrance per letter */
.hero-name .ltr {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(.22,.7,.2,1);
}
.hero-name.is-in .ltr { opacity: 1; transform: none; }

/* Deck — short, restrained */
.hero-deck {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--carbon);
  max-width: 540px;
  margin: 0 0 clamp(28px, 4vw, 48px);
}

/* Stats row — four cells, hairline top/bottom only */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: var(--rule-w) solid var(--ghost);
  margin: 0 0 clamp(28px, 4vw, 48px);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 28px 16px 0;
  margin-right: 28px;
  border-right: var(--rule-w) solid var(--ghost);
}
.stat:last-child { border-right: 0; margin-right: 0; }
.stat-key {
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash);
}
.stat-val {
  font-family: var(--f-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--carbon);
}

/* CTAs — underline-only, no pill/capsule */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}

/* Primary: filled block, very low-key */
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ivory);
  background: var(--carbon);
  padding: 14px 28px;
  border: var(--rule-w) solid var(--carbon);
  transition: background 0.35s, color 0.35s;
}
@media (hover: hover) {
  .btn-primary:hover { background: transparent; color: var(--carbon); }
}

/* Secondary: underline only */
.btn-line {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-label);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--carbon);
  border-bottom: var(--rule-w) solid var(--carbon);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
@media (hover: hover) {
  .btn-line:hover { color: var(--ash); border-color: var(--ash); }
}

/* =========================================================
   SECTION CHROME — shared section label pattern
   ========================================================= */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--gutter);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(.22,.7,.2,1);
}
.section.is-in { opacity: 1; transform: none; }

/* Section label row: tiny index number + hairline + label text */
.s-label {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.s-index {
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ash);
  flex-shrink: 0;
}
.s-rule {
  flex: 1;
  height: var(--rule-w);
  background: var(--ghost);
}
.s-title {
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ash);
  flex-shrink: 0;
}

/* =========================================================
   ABOUT — two-col typographic split, no cards
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
.about-headline {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--carbon);
}
.about-body p {
  margin: 0 0 20px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
  color: var(--carbon);
}
.about-body p:last-child { margin: 0; }
.about-body .lede {
  font-family: var(--f-display);
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
}

/* =========================================================
   PILLARS — horizontal list, hairline dividers only
   ========================================================= */
.pillars-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: var(--rule-w) solid var(--ghost);
}
.pillar-item {
  display: grid;
  grid-template-columns: 48px 1fr 2fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: var(--rule-w) solid var(--ghost);
  transition: background 0.3s;
}
@media (hover: hover) {
  .pillar-item:hover { background: rgba(12,12,12,0.02); }
}
.pillar-roman {
  font-family: var(--f-label);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  padding-top: 6px;
}
.pillar-name {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  margin: 0;
  color: var(--carbon);
}
.pillar-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--carbon);
  margin: 0;
  padding-top: 4px;
}

/* =========================================================
   REACH — sparse numbers, no grid boxes
   ========================================================= */
.reach-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: var(--rule-w) solid var(--ghost);
}
.reach-cell {
  padding: clamp(32px, 4vw, 52px) clamp(16px, 2vw, 32px) clamp(32px, 4vw, 52px) 0;
  border-right: var(--rule-w) solid var(--ghost);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reach-cell:last-child { border-right: 0; }
.reach-cell:first-child { padding-left: 0; }
.reach-num {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--carbon);
}
.reach-label {
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ash);
  max-width: 180px;
}

/* =========================================================
   PARTNERS — one steady marquee, second reversed, lighter
   ========================================================= */
.partners-intro {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--carbon);
  max-width: 700px;
  margin: 0 0 clamp(32px, 5vw, 56px);
  line-height: 1.45;
}
.marquee-wrap {
  overflow: hidden;
  border-top: var(--rule-w) solid var(--ghost);
  padding: 18px 0;
}
.marquee-wrap + .marquee-wrap { border-top: 0; }
.marquee-wrap:last-of-type { border-bottom: var(--rule-w) solid var(--ghost); }
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  gap: 32px;
  align-items: center;
  animation: scroll-left 42s linear infinite;
  padding-right: 32px;
}
.marquee-reverse .marquee-track {
  animation: scroll-right 54s linear infinite;
}
.marquee-track span {
  font-family: var(--f-display);
  font-size: clamp(22px, 3.2vw, 44px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--carbon);
}
.marquee-track .sep {
  font-family: var(--f-label);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--ash);
  align-self: center;
}
.marquee-reverse .marquee-track span {
  font-family: var(--f-label);
  font-size: clamp(9px, 1vw, 11px);
  font-weight: 400;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ash);
}
@media (hover: hover) {
  .marquee-wrap:hover .marquee-track { animation-play-state: paused; }
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scroll-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* =========================================================
   WORK / GALLERY — asymmetric grid, images full bleed
   ========================================================= */
.work-note {
  font-family: var(--f-label);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin: 0 0 clamp(24px, 3vw, 36px);
}
.work-note a { text-decoration: none; border-bottom: var(--rule-w) solid var(--ash); }

/* Portrait strip above IG grid */
.portrait-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 28px;
  padding: 20px 24px;
  border: var(--rule-w) solid var(--ghost);
  background: var(--warm);
}
.portrait-strip-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.08) contrast(1.1);
  border: var(--rule-w) solid var(--ghost);
  flex-shrink: 0;
}
.portrait-strip-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portrait-strip-name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--carbon);
}
.portrait-strip-handle {
  font-family: var(--f-label);
  font-size: 9px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--ash);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 340px;
  gap: 10px;
}
.ig-tile {
  position: relative;
  overflow: hidden;
  background: var(--warm);
  border: var(--rule-w) solid var(--ghost);
}
.ig-tile .tile-cap {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  font-family: var(--f-label);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  background: var(--ivory);
  padding: 5px 10px;
  border: var(--rule-w) solid var(--ghost);
}
.ig-tile figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 4;
  font-family: var(--f-label);
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--carbon);
  background: rgba(248,245,240,0.92);
  padding: 6px 10px;
  border: var(--rule-w) solid var(--ghost);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s, transform 0.35s;
}
@media (hover: hover) {
  .ig-tile:hover figcaption { opacity: 1; transform: none; }
}
.ig-tile.tile-tall { grid-row: span 2; }

/* IG embed takes full tile */
.ig-tile .instagram-media {
  position: relative;
  z-index: 2;
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  height: 100%;
}
.ig-tile .instagram-media iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
}

/* CSS art placeholders (always visible; on live IG embed overlays them) */
.tile-art {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.tile-art-1 { background: linear-gradient(160deg, #0C0C0C 0%, #2a2a2a 60%, #888 100%); }
.tile-art-1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 60% at 35% 45%, rgba(248,245,240,0.14), transparent 65%);
}
.tile-art-2 { background: linear-gradient(130deg, #1a1a1a 0%, #555 100%); }
.tile-art-2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(22deg, rgba(248,245,240,0.06) 0 1px, transparent 1px 14px);
}
.tile-art-3 { background: linear-gradient(200deg, #0C0C0C 0%, #3a3a3a 60%, #aaa 100%); }
.tile-art-3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 50% at 70% 30%, rgba(248,245,240,0.22), transparent 60%);
}
.tile-art-5 { background: linear-gradient(115deg, #0C0C0C 0%, #2e2e2e 100%); }
.tile-art-5::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 20% 80%, rgba(200,195,188,0.30), transparent 70%);
}
.tile-art-6 { background: linear-gradient(120deg, #e0dbd4 0%, #999 60%, #2a2a2a 100%); }
.tile-art-6::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 50% at 70% 40%, rgba(12,12,12,0.18), transparent 70%);
}
.tile-art-7 { background: linear-gradient(135deg, #0C0C0C 0%, #444 80%); }
.tile-art-7::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(30% 30% at 35% 45%, rgba(248,245,240,0.25), transparent 60%),
    radial-gradient(30% 30% at 60% 55%, rgba(248,245,240,0.12), transparent 65%);
}

/* Local: always show art, hide IG */
.is-local .ig-tile .instagram-media { display: none !important; }
.is-local .ig-tile figcaption {
  background: transparent;
  border: 0;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(4px);
}
@media (hover: hover) {
  .is-local .ig-tile:hover figcaption { opacity: 1; transform: none; }
}

/* =========================================================
   PULL QUOTE — stripped, near full-width, type-only
   ========================================================= */
.pull-quote {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(30px, 4vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--carbon);
  max-width: 1000px;
  padding-left: clamp(32px, 5vw, 80px);
  position: relative;
}
.pull-quote::before {
  content: "\201C";
  position: absolute;
  left: 0;
  top: -8px;
  font-family: var(--f-display);
  font-size: clamp(80px, 11vw, 160px);
  line-height: 1;
  color: var(--ash);
  pointer-events: none;
}
.pull-cite {
  display: block;
  margin-top: 24px;
  font-family: var(--f-label);
  font-size: 9px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ash);
}

/* =========================================================
   BOOKING — two columns, starkly minimal
   ========================================================= */
.book-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(16px, 3vw, 40px);
}
.book-card {
  padding: clamp(32px, 4vw, 56px);
  border: var(--rule-w) solid var(--ghost);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.book-card-dark {
  background: var(--carbon);
  color: var(--ivory);
  border-color: var(--carbon);
}
.book-card-light {
  background: var(--warm);
}
.book-card h3 {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.12;
  margin: 0;
}
.book-card-dark h3 { color: var(--ivory); }
.book-card-light h3 { color: var(--carbon); }
.book-card p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.book-card-dark p { color: rgba(248,245,240,0.75); }
.book-card-light p { color: var(--carbon); }

/* Buttons inside book cards */
.book-card .btn-primary {
  align-self: flex-start;
}
.book-card-dark .btn-primary {
  background: var(--ivory);
  color: var(--carbon);
  border-color: var(--ivory);
}
@media (hover: hover) {
  .book-card-dark .btn-primary:hover {
    background: transparent;
    color: var(--ivory);
    border-color: var(--ivory);
  }
}
.book-card .btn-line {
  align-self: flex-start;
}

/* =========================================================
   FOOTER
   ========================================================= */
.foot {
  border-top: var(--rule-w) solid var(--ghost);
  padding: clamp(28px, 4vw, 44px) var(--gutter);
}
.foot-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.foot-name {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--carbon);
}
.foot-locs {
  font-family: var(--f-label);
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash);
}
.foot-contact {
  font-family: var(--f-label);
  font-size: 9px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ash);
}
.foot-credit {
  max-width: var(--max);
  margin: 14px auto 0;
  font-family: var(--f-body);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ash);
  text-align: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .ig-tile.tile-tall { grid-row: auto; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    padding-left: var(--gutter);
    border-right: 0;
    border-bottom: var(--rule-w) solid var(--ghost);
    justify-content: flex-start;
    padding-top: clamp(48px, 10vw, 80px);
  }
  .hero-image {
    min-height: 400px;
    max-height: 55vw;
  }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .pillar-item { grid-template-columns: 36px 1fr; }
  .pillar-desc { grid-column: 2 / 3; }
  .reach-row { grid-template-columns: repeat(2, 1fr); }
  .reach-cell:nth-child(2) { border-right: 0; }
  .reach-cell:nth-child(3) { border-right: var(--rule-w) solid var(--ghost); }
  .book-grid { grid-template-columns: 1fr; }
  .foot-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 600px) {
  .masthead-row { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .m-label { display: none; }
  .reach-row { grid-template-columns: 1fr; }
  .reach-cell { border-right: 0; border-bottom: var(--rule-w) solid var(--ghost); padding-left: 0; }
  .reach-cell:last-child { border-bottom: 0; }
  .pillar-item { grid-template-columns: 1fr; gap: 8px; }
  .pillar-roman { padding-top: 0; }
  .ig-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .ig-tile { aspect-ratio: 4/5; min-height: 420px; }
  .rail { display: none; }
  .stat { border-right: 0; padding-right: 0; margin-right: 0; padding-left: 0; }
  .hero-stats { gap: 2px; }
}

/* Slow marquee on mobile */
@media (max-width: 768px) {
  .marquee-track { animation-duration: 72s; }
  .marquee-reverse .marquee-track { animation-duration: 88s; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .section { opacity: 1; transform: none; }
  .hero-name .ltr { opacity: 1; transform: none; }
}
