:root {
  color-scheme: dark;
  --ink: #07110f;
  --ink-2: #0b1916;
  --forest: #10271f;
  --moss: #244739;
  --mist: #dfe5dc;
  --paper: #f1eee4;
  --paper-2: #e7e2d4;
  --gold: #d9aa58;
  --gold-light: #f0cc82;
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-light: rgba(7, 17, 15, 0.16);
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --header-h: 86px;
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: var(--ink); }
.shell { width: var(--shell); margin-inline: auto; }
.section { position: relative; padding: clamp(96px, 12vw, 170px) 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 12px max(24px, calc((100vw - 1350px) / 2));
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, min-height 240ms ease;
}
.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(5, 13, 12, 0.88);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; min-width: max-content; }
.brand img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 1px rgba(255,255,255,.22); }
.brand-copy { display: grid; line-height: 1.06; }
.brand-copy > span { font-family: var(--serif); font-size: 1.17rem; letter-spacing: .01em; }
.brand-copy sup { color: var(--gold); font: 500 .56em var(--sans); margin-left: 2px; }
.brand-copy small { margin-top: 5px; color: rgba(255,255,255,.62); font-size: .68rem; text-transform: uppercase; letter-spacing: .19em; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(13px, 1.55vw, 24px); }
.site-nav a {
  position: relative;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .035em;
  color: rgba(255,255,255,.77);
  transition: color 180ms ease;
}
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right 180ms ease; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.is-active { color: #fff; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.is-active::after { right: 0; }
.site-nav .nav-cta { padding: 10px 14px; border: 1px solid rgba(255,255,255,.35); color: #fff; }
.site-nav .nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.menu-toggle { display: none; border: 0; background: none; width: 46px; height: 46px; padding: 12px; cursor: pointer; }
.menu-toggle span { display: block; height: 1px; margin: 7px 0; background: #fff; transition: transform 180ms ease; }

.hero { position: relative; min-height: min(900px, 100svh); display: grid; align-items: end; isolation: isolate; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 59% center; z-index: -4; animation: hero-settle 1.4s cubic-bezier(.2,.7,.2,1) both; }
.hero-scrim { position: absolute; inset: 0; z-index: -3; background: linear-gradient(90deg, rgba(3,9,10,.95) 0%, rgba(3,9,10,.78) 33%, rgba(3,9,10,.16) 70%, rgba(3,9,10,.36) 100%), linear-gradient(0deg, rgba(3,9,10,.9) 0%, transparent 45%, rgba(3,9,10,.35) 100%); }
.hero-orbit { position: absolute; z-index: -2; width: min(48vw, 700px); aspect-ratio: 1; right: -5vw; top: 7vh; border: 1px solid rgba(217,170,88,.24); border-radius: 50%; box-shadow: 0 0 80px rgba(217,170,88,.06) inset; }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,.1); }
.hero-orbit::before { inset: 10%; }
.hero-orbit::after { inset: 24%; }
.hero-content { padding-top: calc(var(--header-h) + 80px); padding-bottom: 150px; }
.eyebrow, .section-index, .mini-label { margin: 0 0 24px; color: var(--gold-light); font-size: .75rem; font-weight: 700; line-height: 1.35; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { display: inline-block; margin-inline: 10px; color: rgba(255,255,255,.45); }
.hero h1, .section h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: .93; letter-spacing: -.045em; }
.hero h1 { max-width: 780px; font-size: clamp(4.1rem, 9.5vw, 9.5rem); text-wrap: balance; }
.hero h1 em, .section h2 em { color: var(--gold-light); font-weight: 400; }
.hero h1 span { display: inline-block; margin-left: .18em; color: var(--gold-light); font: 600 .28em/1 var(--sans); letter-spacing: .08em; vertical-align: .45em; }
.hero-lead { max-width: 570px; margin: 30px 0 0; color: rgba(255,255,255,.82); font-size: clamp(1.06rem, 1.55vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; text-decoration: none; font-size: .8rem; font-weight: 700; letter-spacing: .04em; transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-light); }
.button-ghost { border-color: rgba(255,255,255,.4); color: #fff; backdrop-filter: blur(5px); }
.button-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.hero-facts { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); background: rgba(5,13,12,.58); backdrop-filter: blur(12px); }
.hero-facts div { min-height: 88px; padding: 18px 23px; border-right: 1px solid var(--line-dark); display: grid; align-content: center; gap: 3px; }
.hero-facts dt { color: rgba(255,255,255,.55); font-size: .67rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero-facts dd { margin: 0; font-family: var(--serif); font-size: 1.07rem; }
.hero-facts a { text-underline-offset: 4px; text-decoration-thickness: 1px; }
.scroll-cue { position: absolute; right: 28px; bottom: 105px; display: grid; justify-items: center; gap: 10px; text-decoration: none; }
.scroll-cue span { writing-mode: vertical-rl; color: rgba(255,255,255,.55); font-size: .65rem; text-transform: uppercase; letter-spacing: .2em; }
.scroll-cue i { height: 44px; width: 1px; background: linear-gradient(var(--gold), transparent); }

.manifesto { background: var(--paper); color: var(--ink); overflow: hidden; }
.manifesto::before { content: ""; position: absolute; width: 620px; aspect-ratio: 1; border: 1px solid rgba(7,17,15,.08); border-radius: 50%; left: -330px; top: 110px; }
.manifesto-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, .75fr); gap: clamp(60px, 10vw, 150px); align-items: start; }
.section-index { color: #846020; }
.section h2 { font-size: clamp(3.2rem, 6.4vw, 6.2rem); }
.manifesto-copy { padding-top: 54px; }
.manifesto-copy > p { color: #3b4541; max-width: 670px; }
.lead-copy { font-family: var(--serif); font-size: clamp(1.45rem, 2.35vw, 2.15rem); line-height: 1.37; letter-spacing: -.018em; }
.mission-note { margin-top: 42px; padding: 18px 0; display: flex; align-items: center; gap: 16px; border-block: 1px solid var(--line-light); color: #32413b; font-size: .87rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.mission-note svg { width: 30px; fill: none; stroke: #9b712c; stroke-width: 1.5; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 95px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.pillar { min-height: 290px; padding: 28px 30px 34px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); display: flex; flex-direction: column; }
.pillar > span { margin-bottom: auto; color: #8b6a30; font-size: .72rem; letter-spacing: .17em; }
.pillar h3 { margin: 42px 0 12px; font: 400 clamp(2rem, 3.3vw, 3.1rem)/1 var(--serif); }
.pillar p { margin: 0; max-width: 310px; color: #53605a; }
.scope-note { margin-top: 26px; color: #63706a; font-size: .8rem; }

.program { background: radial-gradient(circle at 92% 14%, rgba(36,71,57,.44), transparent 35%), var(--ink); }
.program-heading { display: grid; grid-template-columns: 1.1fr .75fr; gap: 70px; align-items: end; }
.program-heading .section-index, .section-dark .section-index, .section-forest .section-index, .contact .section-index { color: var(--gold-light); }
.status-card { justify-self: end; width: min(100%, 430px); padding: 22px 24px; display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--line-dark); background: rgba(255,255,255,.035); }
.status-card strong, .status-card small { display: block; }
.status-card strong { font-size: .87rem; }
.status-card small { margin-top: 4px; color: rgba(255,255,255,.55); font-size: .76rem; }
.status-pulse { width: 8px; height: 8px; margin-top: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(217,170,88,.12); flex: 0 0 auto; }
.program-list { margin-top: 82px; border-top: 1px solid var(--line-dark); }
.program-list article { display: grid; grid-template-columns: 70px 1fr max-content; gap: 30px; align-items: center; padding: 29px 8px; border-bottom: 1px solid var(--line-dark); transition: background 180ms ease, padding 180ms ease; }
.program-list article:hover { padding-inline: 20px; background: rgba(255,255,255,.035); }
.program-number { color: var(--gold); font: 400 1.1rem var(--serif); }
.program-list h3 { margin: 0 0 3px; font: 400 1.75rem var(--serif); }
.program-list p { margin: 0; color: rgba(255,255,255,.55); font-size: .9rem; }
.program-state { padding: 7px 10px; border: 1px solid rgba(217,170,88,.3); color: var(--gold-light); font-size: .66rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.program-disclaimer { max-width: 630px; margin: 27px 0 0 auto; color: rgba(255,255,255,.45); font-size: .78rem; }

.guests { background: var(--paper-2); color: var(--ink); }
.guests-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(390px, .75fr); gap: clamp(55px, 10vw, 145px); align-items: center; }
.guests-copy > p:not(.section-index) { max-width: 620px; color: #46534d; }
.coming-soon { max-width: 560px; margin-top: 46px; padding: 25px 0; border-block: 1px solid var(--line-light); }
.coming-soon span, .coming-soon strong { display: block; }
.coming-soon span { color: #856525; font-size: .69rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.coming-soon strong { margin-top: 6px; font: 400 1.7rem var(--serif); }
.coming-soon p { margin: 7px 0 0; color: #66716d; font-size: .82rem; }
.past-guests { background: var(--ink-2); color: var(--paper); padding: clamp(30px, 5vw, 60px); box-shadow: 28px 28px 0 rgba(11,25,22,.09); }
.past-guests ul { list-style: none; padding: 0; margin: 0; }
.past-guests li { display: grid; gap: 3px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.past-guests li span { font: 400 clamp(1.35rem, 2vw, 1.8rem) var(--serif); }
.past-guests li small { color: rgba(255,255,255,.5); }
.archive-caption { margin: 22px 0 0; color: rgba(255,255,255,.4); font-size: .72rem; }

.talks { background: var(--paper); color: var(--ink); }
.section-intro.wide { display: grid; grid-template-columns: 1.3fr .75fr; column-gap: 85px; align-items: end; }
.section-intro.wide .section-index { grid-column: 1 / -1; }
.section-intro.wide p:last-child { margin: 0 0 6px; color: #53605a; }
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 85px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.topic { min-height: 310px; padding: 28px 24px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.topic > span { color: #9b712c; font-size: .7rem; letter-spacing: .16em; }
.topic h3 { margin: 95px 0 15px; font: 400 1.65rem/1.1 var(--serif); }
.topic p { color: #5a6661; font-size: .88rem; }

.section-forest { background: linear-gradient(115deg, rgba(8,20,17,.96), rgba(14,42,32,.92)), repeating-linear-gradient(90deg, transparent 0 15%, rgba(255,255,255,.015) 15% 15.1%); color: var(--paper); }
.workshop-head { display: grid; grid-template-columns: 1fr .7fr; gap: 90px; align-items: end; }
.workshop-head > p { margin: 0 0 7px; color: rgba(255,255,255,.6); }
.workshop-history-label { margin: 75px 0 18px; color: rgba(240,204,130,.72); }
.workshop-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.workshop-card { position: relative; min-height: 350px; padding: 32px; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid var(--line-dark); background: rgba(0,0,0,.13); overflow: hidden; }
.workshop-card::after { content: ""; position: absolute; width: 180px; aspect-ratio: 1; right: -90px; bottom: -100px; border: 1px solid rgba(217,170,88,.18); border-radius: 50%; }
.workshop-card h3 { margin: 0 0 16px; font: 400 1.8rem/1.1 var(--serif); }
.workshop-card p:last-child { color: rgba(255,255,255,.56); font-size: .88rem; }
.section-status { margin-top: 25px; padding: 21px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 40px; border-block: 1px solid var(--line-dark); }
.section-status span { color: var(--gold-light); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section-status strong { font-size: .84rem; }

.makers { background: var(--paper-2); color: var(--ink); }
.makers-grid { display: grid; grid-template-columns: .75fr 1fr; gap: clamp(70px, 12vw, 170px); align-items: center; }
.maker-visual { min-height: 520px; position: relative; display: grid; place-items: center; background: var(--ink-2); color: var(--paper); overflow: hidden; }
.maker-visual::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.14); }
.maker-visual p { position: relative; z-index: 1; margin: 0; text-align: center; font: italic 400 clamp(1.7rem, 3vw, 2.7rem)/1.15 var(--serif); }
.moon-seal { position: absolute; width: 310px; aspect-ratio: 1; border: 1px solid rgba(217,170,88,.28); border-radius: 50%; }
.moon-seal::before, .moon-seal::after, .moon-seal span::before, .moon-seal span::after { content: ""; position: absolute; border-radius: 50%; }
.moon-seal::before { inset: 34px; border: 1px solid rgba(255,255,255,.1); }
.moon-seal::after { width: 12px; height: 12px; left: 79px; top: 105px; background: var(--gold); box-shadow: 140px 0 0 var(--gold); }
.moon-seal span::before { width: 70px; height: 70px; left: 52px; top: 76px; border: 1px solid rgba(217,170,88,.45); }
.moon-seal span::after { width: 70px; height: 70px; right: 52px; top: 76px; border: 1px solid rgba(217,170,88,.45); }
.maker-copy > p:not(.section-index) { color: #4a5851; }
.application-box { margin-top: 40px; padding: 23px 0; border-block: 1px solid var(--line-light); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; }
.application-box span, .application-box strong { display: block; }
.application-box span { color: #846020; font-size: .69rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.application-box strong { margin-top: 4px; font: 400 1.3rem var(--serif); }
.text-link { text-underline-offset: 5px; text-decoration-thickness: 1px; font-size: .84rem; font-weight: 700; }

.practical { background: linear-gradient(145deg, #07110f 35%, #10261e); }
.practical .section-intro.wide p:last-child { color: rgba(255,255,255,.55); }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.info-card { min-height: 250px; padding: 28px 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.info-card > span { color: var(--gold-light); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.info-card h3 { margin: 70px 0 12px; font: 400 1.45rem var(--serif); }
.info-card p { margin: 0; color: rgba(255,255,255,.52); font-size: .84rem; }
.official-note { display: flex; gap: 14px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line-dark); }
.official-note svg { width: 26px; fill: none; stroke: var(--gold); stroke-width: 1.5; flex: 0 0 auto; }
.official-note p { margin: 0; color: rgba(255,255,255,.6); font-size: .82rem; }
.official-note strong { color: #fff; }

.archive { background: var(--paper); color: var(--ink); }
.archive-heading { display: grid; grid-template-columns: 1.2fr .75fr; gap: 90px; align-items: end; }
.archive-heading > p { margin: 0 0 5px; color: #53605a; }
.archive-gallery { display: grid; grid-template-columns: 1fr 1.3fr .75fr; grid-template-rows: 210px 250px; gap: 12px; margin-top: 80px; }
.archive-photo { position: relative; margin: 0; overflow: hidden; background: #c8c8c0; }
.archive-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72) contrast(1.02); transition: transform 500ms ease, filter 500ms ease; }
.archive-photo:hover img { transform: scale(1.035); filter: saturate(1); }
.archive-photo figcaption { position: absolute; left: 15px; bottom: 14px; padding: 5px 8px; background: rgba(7,17,15,.76); color: #fff; font-size: .67rem; letter-spacing: .07em; text-transform: uppercase; }
.archive-photo-tall { grid-row: 1 / 3; }
.archive-photo-wide { grid-column: 2; grid-row: 1; }
.archive-photo-small { grid-column: 3; grid-row: 1 / 3; }
.archive-gallery blockquote { grid-column: 2; grid-row: 2; margin: 0; padding: 32px; display: flex; flex-direction: column; justify-content: center; background: var(--ink-2); color: var(--paper); }
.archive-gallery blockquote p { margin: 0; font: italic 400 clamp(1.5rem, 2.7vw, 2.45rem)/1.15 var(--serif); }
.archive-gallery blockquote cite { margin-top: 18px; color: var(--gold-light); font: 700 .64rem var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.heritage-art { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(300px, .7fr); margin-top: clamp(70px, 9vw, 115px); overflow: hidden; background: var(--ink-2); color: var(--paper); box-shadow: 28px 28px 0 rgba(11,25,22,.08); }
.heritage-artwork { margin: 0; display: flex; flex-direction: column; background: #000; }
.heritage-artwork img { width: 100%; aspect-ratio: 1200 / 630; object-fit: cover; }
.heritage-artwork figcaption { padding: 11px 17px; border-top: 1px solid var(--line-dark); color: rgba(255,255,255,.48); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.heritage-copy { padding: clamp(34px, 5vw, 66px); display: flex; flex-direction: column; justify-content: center; }
.heritage-copy .mini-label { margin-bottom: 24px; color: var(--gold-light); }
.heritage-copy h3 { margin: 0; font: 400 clamp(2rem, 3.1vw, 3.25rem)/1.02 var(--serif); letter-spacing: -.025em; }
.heritage-copy > p:not(.mini-label):not(.heritage-credit) { margin: 25px 0 0; color: rgba(255,255,255,.6); font-size: .9rem; }
.heritage-credit { margin: 35px 0 0; padding-top: 20px; display: grid; gap: 4px; border-top: 1px solid var(--line-dark); }
.heritage-credit span { color: var(--gold-light); font-size: .63rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.heritage-credit strong { font: 400 1.35rem var(--serif); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(8, minmax(190px, 1fr)); list-style: none; padding: 50px 0 18px; margin: 80px 0 0; overflow-x: auto; scrollbar-color: #9f8f69 transparent; }
.timeline::before { content: ""; position: absolute; top: 62px; left: 0; width: 100%; height: 1px; background: var(--line-light); }
.timeline li { position: relative; min-height: 160px; padding-right: 28px; }
.timeline li::before { content: ""; position: absolute; top: 7px; left: 0; width: 11px; height: 11px; background: var(--paper); border: 2px solid #906923; border-radius: 50%; }
.timeline time { display: block; padding-left: 21px; color: #836024; font: 700 .72rem var(--sans); letter-spacing: .1em; }
.timeline div { display: grid; gap: 5px; margin-top: 42px; }
.timeline strong { font: 400 1.2rem var(--serif); }
.timeline span { color: #64716b; font-size: .77rem; }

.contact { background: #0b1916; color: var(--paper); }
.contact-grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(60px, 11vw, 155px); align-items: start; }
.contact-copy > p:last-child { max-width: 500px; color: rgba(255,255,255,.55); }
.contact-links { border-top: 1px solid var(--line-dark); }
.contact-links a { position: relative; display: grid; gap: 2px; padding: 20px 45px 20px 0; border-bottom: 1px solid var(--line-dark); text-decoration: none; transition: padding 180ms ease, background 180ms ease; }
.contact-links a:hover { padding-left: 12px; background: rgba(255,255,255,.025); }
.contact-links span { color: var(--gold-light); font-size: .65rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-links .social-platform { display: flex; align-items: center; gap: 8px; }
.contact-links .social-platform svg { width: 16px; height: 16px; flex: none; fill: currentColor; }
.contact-links strong { overflow-wrap: anywhere; font: 400 clamp(1.3rem, 2.2vw, 1.9rem) var(--serif); }
.contact-links i { position: absolute; right: 5px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.4); font-style: normal; }

.site-footer { background: #050c0b; color: var(--paper); }
.footer-main { min-height: 220px; padding-block: 55px; display: flex; justify-content: space-between; gap: 60px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 20px; }
.footer-brand img { width: 80px; height: 80px; border-radius: 50%; }
.footer-brand div { display: grid; gap: 5px; }
.footer-brand strong { font: 400 1.6rem var(--serif); }
.footer-brand sup { color: var(--gold); font: 600 .46em var(--sans); }
.footer-brand span { color: rgba(255,255,255,.48); font-size: .73rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-main > p { max-width: 520px; color: rgba(255,255,255,.5); font-size: .8rem; }
.footer-bottom { padding-block: 20px; border-top: 1px solid var(--line-dark); display: flex; justify-content: space-between; gap: 25px; color: rgba(255,255,255,.38); font-size: .68rem; }
.footer-bottom a { color: rgba(255,255,255,.68); text-decoration: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes hero-settle { from { opacity: .25; transform: scale(1.045); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 1120px) {
  :root { --shell: min(calc(100% - 40px), 1040px); }
  .site-nav { gap: 14px; }
  .site-nav a { font-size: .71rem; }
  .site-nav a:nth-child(4), .site-nav a:nth-child(5) { display: none; }
  .topic-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
  .archive-gallery { grid-template-columns: 1fr 1.25fr; }
  .archive-photo-small { display: none; }
}

@media (max-width: 820px) {
  :root { --header-h: 76px; --shell: calc(100vw - 34px); }
  .site-header { min-height: 76px; padding-inline: 17px; }
  .brand img { width: 48px; height: 48px; }
  .brand-copy > span { font-size: 1rem; }
  .menu-toggle { display: block; z-index: 2; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    padding: 110px 28px 35px;
    background: rgba(5,13,12,.98);
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a, .site-nav a:nth-child(4), .site-nav a:nth-child(5) { display: block; padding: 13px 4px; border-bottom: 1px solid var(--line-dark); font: 400 1.65rem var(--serif); }
  .site-nav a::after { display: none; }
  .site-nav .nav-cta { margin-top: 16px; padding: 13px 15px; text-align: center; font-family: var(--sans); font-size: .8rem; }
  .hero { min-height: 860px; }
  .hero-image { object-position: 66% center; }
  .hero-scrim { background: linear-gradient(90deg, rgba(3,9,10,.93) 0%, rgba(3,9,10,.55) 65%, rgba(3,9,10,.3) 100%), linear-gradient(0deg, rgba(3,9,10,.94) 0%, transparent 55%, rgba(3,9,10,.45) 100%); }
  .hero-content { padding-bottom: 300px; }
  .hero h1 { font-size: clamp(4rem, 16vw, 7rem); }
  .hero h1 span { display: block; margin: .28em 0 0; vertical-align: initial; font-size: .24em; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); }
  .scroll-cue { display: none; }
  .manifesto-grid, .program-heading, .guests-grid, .section-intro.wide, .workshop-head, .makers-grid, .archive-heading, .contact-grid { grid-template-columns: 1fr; gap: 45px; }
  .manifesto-copy { padding-top: 0; }
  .status-card { justify-self: stretch; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: 230px; }
  .pillar > span { margin-bottom: 40px; }
  .past-guests { margin-inline: 4px 18px; }
  .section-intro.wide .section-index { grid-column: auto; }
  .topic-grid { margin-top: 55px; }
  .workshop-cards { grid-template-columns: 1fr; }
  .workshop-card { min-height: 300px; }
  .maker-visual { min-height: 410px; }
  .info-grid { margin-top: 55px; }
  .archive-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 230px 220px; }
  .archive-photo-tall { grid-row: 1 / 3; }
  .archive-photo-wide { grid-column: 2; }
  .archive-gallery blockquote { grid-column: 2; }
  .heritage-art { grid-template-columns: 1fr; }
  .footer-main { align-items: flex-start; flex-direction: column; }
  .footer-bottom { flex-wrap: wrap; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100vw - 28px); }
  .section { padding-block: 88px; }
  .brand-copy small { display: none; }
  .hero { min-height: 825px; }
  .hero-image { object-position: 69% center; }
  .hero-orbit { width: 92vw; right: -35vw; top: 18vh; }
  .hero-content { padding-bottom: 302px; }
  .eyebrow { max-width: 250px; }
  .hero h1 { font-size: clamp(3.75rem, 18vw, 5.4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts div { min-height: 75px; padding: 13px; }
  .hero-facts dt { font-size: .59rem; }
  .hero-facts dd { font-size: .92rem; }
  .section h2 { font-size: clamp(2.85rem, 14vw, 4.35rem); }
  .program-list article { grid-template-columns: 38px 1fr; gap: 14px; }
  .program-state { grid-column: 2; justify-self: start; }
  .topic-grid, .info-grid { grid-template-columns: 1fr; }
  .topic, .info-card { min-height: 230px; }
  .topic h3, .info-card h3 { margin-top: 45px; }
  .application-box { align-items: flex-start; flex-direction: column; }
  .archive-gallery { grid-template-columns: 1fr; grid-template-rows: 260px 210px 250px; }
  .archive-photo-tall { grid-column: 1; grid-row: 1; }
  .archive-photo-wide { grid-column: 1; grid-row: 2; }
  .archive-gallery blockquote { grid-column: 1; grid-row: 3; }
  .heritage-art { box-shadow: 14px 14px 0 rgba(11,25,22,.08); }
  .heritage-copy { padding: 34px 25px 38px; }
  .footer-brand { align-items: flex-start; }
  .footer-brand img { width: 64px; height: 64px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (forced-colors: active) {
  .hero-scrim { background: rgba(0,0,0,.72); }
  .status-pulse { forced-color-adjust: none; }
}
