:root {
  --ink: #172a25;
  --forest: #173d35;
  --forest-deep: #0e2d27;
  --paper: #f3efe7;
  --paper-light: #fffaf0;
  --white: #fffdf8;
  --coral: #e77d60;
  --gold: #f1c66e;
  --sage: #8eaf9f;
  --muted: #6d7772;
  --line: rgba(23, 42, 37, .15);
  --line-light: rgba(255, 253, 248, .2);
  --shadow: 0 28px 70px rgba(18, 42, 35, .13);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-sm: 14px;
  --sans: "Inter", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --script: "Bradley Hand", "Segoe Print", "Comic Sans MS", cursive;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .26;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23,42,37,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,42,37,.018) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--forest-deep); background: var(--gold); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 999px;
  text-decoration: none;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.page-shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 239, 231, .82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 34px rgba(23, 42, 37, .06);
  background: rgba(243, 239, 231, .94);
}
.nav-shell {
  width: var(--shell);
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  grid-template-columns: 1fr 7px 1fr;
  align-items: center;
  justify-items: center;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.03em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.brand-mark i {
  width: 1px;
  height: 20px;
  transform: rotate(14deg);
  background: var(--coral);
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -.02em;
}
.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a, .back-link {
  position: relative;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--coral);
  transition: transform .25s ease;
}
.site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.back-link { display: inline-flex; align-items: center; gap: 9px; }
.back-link span { font-size: 20px; transition: transform .2s ease; }
.back-link:hover span { transform: translateX(-4px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
}
.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -260px;
  left: -300px;
  border: 1px solid rgba(23,61,53,.13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(23,61,53,.025), 0 0 0 140px rgba(23,61,53,.018);
}
.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 70px;
  padding-bottom: 84px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 2px; background: var(--coral); }
.eyebrow-light { color: var(--paper-light); }
.eyebrow-light span { background: var(--gold); }
.hero h1, .section-heading h2, .about-copy h2, .contact-copy h2, .policy-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .98;
}
.hero h1 { font-size: clamp(54px, 6.25vw, 89px); }
.hero h1 em, .section-heading h2 em, .about-copy h2 em, .contact-copy h2 em, .policy-hero h1 em {
  color: var(--coral);
  font-weight: 400;
}
.hero-lede {
  max-width: 610px;
  margin: 30px 0 0;
  color: #4e5a55;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button span { font-size: 17px; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--forest); box-shadow: 0 14px 28px rgba(23,61,53,.17); }
.button-primary:hover { background: var(--forest-deep); box-shadow: 0 18px 34px rgba(23,61,53,.22); }
.button-light { color: var(--forest-deep); background: var(--paper-light); box-shadow: 0 14px 30px rgba(0,0,0,.14); }
.button-light:hover { background: white; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 520px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: grid; gap: 3px; }
.hero-meta span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-meta strong { font-family: var(--serif); font-size: 15px; }

.hero-visual {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 26px 10px 18px 70px;
  z-index: -2;
  background: var(--forest);
  border-radius: 48% 48% 44% 44% / 35% 35% 55% 55%;
  transform: rotate(4deg);
  box-shadow: var(--shadow);
}
.thread-art {
  position: absolute;
  width: 99%;
  inset: 3% -3% auto auto;
  z-index: -1;
  overflow: visible;
  filter: drop-shadow(0 20px 18px rgba(15,42,35,.12));
}
.visual-card {
  position: absolute;
  z-index: 3;
  width: min(310px, 64%);
  top: 195px;
  left: 71px;
  padding: 31px 32px 27px;
  color: var(--forest-deep);
  background: rgba(255, 250, 240, .96);
  border: 1px solid rgba(23,42,37,.1);
  border-radius: 4px 28px 4px 28px;
  box-shadow: 0 26px 48px rgba(16,44,37,.25);
  transform: rotate(-3deg);
}
.visual-card::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 23px;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
  background: rgba(241,198,110,.7);
}
.visual-kicker { color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.visual-card blockquote {
  margin: 17px 0 26px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.32;
  letter-spacing: -.025em;
}
.visual-signature { display: flex; align-items: center; justify-content: flex-end; gap: 12px; font-family: var(--script); font-size: 19px; }
.signature-line { width: 38px; height: 1px; background: currentColor; opacity: .55; }
.orbit-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px 8px 9px;
  color: var(--forest-deep);
  background: var(--paper-light);
  border: 1px solid rgba(23,42,37,.08);
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(14,45,39,.16);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.orbit-note span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-size: 9px;
}
.orbit-note-one { top: 72px; right: -4px; transform: rotate(4deg); }
.orbit-note-two { right: -12px; bottom: 124px; transform: rotate(-4deg); }
.orbit-note-three { left: 27px; bottom: 35px; transform: rotate(3deg); }
.hero-marquee {
  overflow: hidden;
  color: var(--paper-light);
  background: var(--forest-deep);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-marquee div {
  width: max-content;
  padding: 13px 0 11px;
  font-family: var(--serif);
  font-size: 12px;
  font-style: italic;
  letter-spacing: .12em;
  animation: marquee 28s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: end;
  gap: 60px;
  margin-bottom: 48px;
}
.section-heading h2, .about-copy h2, .contact-copy h2 { font-size: clamp(42px, 5.3vw, 70px); }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-family: var(--serif); font-size: 18px; line-height: 1.65; }
.journal-section { background: var(--paper-light); }
.story-grid { display: grid; grid-template-columns: 1.18fr .91fr .91fr; gap: 20px; }
.story-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(23,42,37,.1);
  border-radius: var(--radius-md);
  transition: transform .28s ease, box-shadow .28s ease;
}
.story-card:hover { transform: translateY(-7px); box-shadow: 0 22px 48px rgba(23,42,37,.1); }
.story-art { position: relative; height: 235px; overflow: hidden; isolation: isolate; }
.story-featured .story-art { height: 286px; }
.story-number {
  position: absolute;
  z-index: 4;
  top: 18px;
  left: 20px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
}
.story-art-one { background: var(--forest); }
.story-art-one::before, .story-art-one::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 26px;
  left: -24%;
  border-radius: 999px;
  transform: rotate(-15deg);
}
.story-art-one::before { top: 145px; background: var(--coral); box-shadow: 0 58px 0 var(--sage), 0 -58px 0 var(--paper-light); }
.story-art-one::after { top: 176px; background: var(--gold); box-shadow: 0 58px 0 var(--paper-light), 0 -58px 0 var(--forest-deep); }
.mini-sun { position: absolute; z-index: -1; width: 150px; height: 150px; right: 28px; top: 28px; border-radius: 50%; background: var(--gold); }
.story-art-two { background: #dfe8e2; }
.story-art-two::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 32px, rgba(23,42,37,.045) 33px 34px);
}
.paper-scrap { position: absolute; border: 1px solid rgba(23,42,37,.08); box-shadow: 0 15px 26px rgba(23,42,37,.12); }
.paper-one { width: 115px; height: 150px; left: 42px; top: 54px; transform: rotate(-11deg); background: var(--paper-light); }
.paper-two { width: 114px; height: 138px; left: 107px; top: 43px; transform: rotate(7deg); background: var(--coral); }
.paper-three { width: 102px; height: 126px; left: 159px; top: 73px; transform: rotate(17deg); background: var(--gold); }
.paper-three::after { content: ""; position: absolute; width: 45px; height: 2px; left: 25px; top: 55px; background: var(--forest-deep); box-shadow: 0 10px 0 var(--forest-deep), 0 20px 0 var(--forest-deep); opacity: .56; }
.story-art-three { background: #f0d7ca; }
.story-art-three::before { content: ""; position: absolute; width: 280px; height: 280px; border: 24px solid rgba(255,250,240,.85); border-radius: 50%; left: -102px; top: 47px; }
.soft-arch { position: absolute; width: 170px; height: 216px; right: 23px; bottom: -47px; border-radius: 90px 90px 0 0; background: var(--forest); }
.soft-arch::before { content: ""; position: absolute; width: 91px; height: 146px; left: 39px; bottom: 0; border-radius: 50px 50px 0 0; background: var(--gold); }
.soft-dot { position: absolute; border-radius: 50%; background: var(--coral); }
.dot-one { width: 28px; height: 28px; top: 60px; left: 67px; }
.dot-two { width: 15px; height: 15px; top: 95px; left: 107px; background: var(--forest); }
.story-content { padding: 28px 28px 30px; }
.story-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.story-content h3 { margin: 16px 0 13px; font-family: var(--serif); font-size: 29px; font-weight: 500; letter-spacing: -.035em; line-height: 1.14; }
.story-featured .story-content h3 { font-size: 35px; }
.story-content p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 16px; }
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  padding: 0 0 5px;
  color: var(--forest);
  background: none;
  border: 0;
  border-bottom: 1px solid var(--forest);
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.story-link span { font-size: 15px; transition: transform .2s ease; }
.story-link:hover span { transform: translate(3px,-3px); }

.about-section { position: relative; overflow: hidden; }
.about-section::after { content: ""; position: absolute; width: 340px; height: 340px; right: -210px; top: 160px; border: 1px solid rgba(23,61,53,.13); border-radius: 50%; box-shadow: 0 0 0 50px rgba(23,61,53,.025), 0 0 0 100px rgba(23,61,53,.018); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 100px; }
.about-portrait { position: relative; min-height: 560px; }
.portrait-panel { position: absolute; inset: 0 20px 30px 0; overflow: hidden; color: var(--white); background: var(--forest); border-radius: 180px 180px 30px 30px; box-shadow: var(--shadow); }
.portrait-panel::before { content: ""; position: absolute; width: 290px; height: 290px; top: 48px; left: 48px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 50px rgba(255,255,255,.035); }
.portrait-initials { position: absolute; top: 126px; left: 50%; transform: translateX(-50%); color: var(--gold); font-family: var(--serif); font-size: 138px; font-style: italic; letter-spacing: -.12em; }
.portrait-caption { position: absolute; left: 42px; bottom: 43px; font-family: var(--serif); font-size: 22px; font-style: italic; line-height: 1.3; }
.portrait-thread { position: absolute; z-index: 2; width: 100%; right: -10px; bottom: 0; overflow: visible; }
.portrait-tag { position: absolute; z-index: 4; right: -24px; top: 284px; padding: 11px 16px; color: var(--forest-deep); background: var(--gold); border-radius: 999px; box-shadow: 0 12px 26px rgba(23,42,37,.12); font-size: 9px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; transform: rotate(5deg); }
.about-lede { margin: 28px 0 18px; color: var(--forest-deep); font-family: var(--serif); font-size: 22px; line-height: 1.52; }
.about-copy > p:not(.eyebrow):not(.about-lede) { color: var(--muted); font-size: 16px; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line); }
.about-facts div { display: flex; align-items: flex-start; gap: 12px; }
.about-facts strong { color: var(--coral); font-family: var(--serif); font-size: 20px; font-style: italic; }
.about-facts span { font-size: 10px; font-weight: 800; letter-spacing: .08em; line-height: 1.5; text-transform: uppercase; }

.thread-section { padding: 44px 0; color: var(--paper-light); background: var(--coral); }
.thread-label { margin: 0 0 20px; font-size: 10px; font-weight: 850; letter-spacing: .16em; text-align: center; text-transform: uppercase; }
.topic-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px 22px; }
.topic-row span { font-family: var(--serif); font-size: clamp(22px, 3.1vw, 36px); font-style: italic; letter-spacing: -.03em; }
.topic-row i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

.contact-section { padding: 110px 0 120px; background: var(--paper-light); }
.contact-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; padding: 76px 80px; color: var(--white); background: var(--forest-deep); border-radius: var(--radius-lg); box-shadow: var(--shadow); isolation: isolate; }
.contact-card::before { content: ""; position: absolute; z-index: -1; width: 480px; height: 480px; left: -240px; bottom: -260px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.025), 0 0 0 120px rgba(255,255,255,.018); }
.contact-card::after { content: ""; position: absolute; z-index: -1; width: 250px; height: 250px; right: 90px; top: -160px; border-radius: 50%; background: var(--coral); opacity: .9; }
.contact-copy h2 { max-width: 700px; }
.contact-copy h2 em { color: var(--gold); }
.contact-copy > p:not(.eyebrow) { max-width: 600px; margin: 24px 0 32px; color: rgba(255,253,248,.72); font-family: var(--serif); font-size: 18px; }
.contact-details { align-self: center; margin: 0; font-style: normal; }
.contact-details div { padding: 21px 0; border-bottom: 1px solid var(--line-light); }
.contact-details div:first-child { border-top: 1px solid var(--line-light); }
.contact-details span { display: block; margin-bottom: 6px; color: var(--sage); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.contact-details a, .contact-details p { margin: 0; color: var(--white); font-family: var(--serif); font-size: 16px; line-height: 1.55; text-decoration: none; }
.contact-details a:hover { color: var(--gold); }
.contact-stitch { position: absolute; right: 31px; bottom: 31px; width: 58px; height: 58px; border: 1px dashed rgba(255,255,255,.32); border-radius: 50%; }

.site-footer { padding: 50px 0 38px; color: var(--paper-light); background: #0b2520; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 36px 60px; align-items: end; }
.footer-brand { font-family: var(--serif); font-size: 25px; text-decoration: none; }
.footer-brand span { display: block; margin-top: 3px; color: rgba(255,253,248,.54); font-family: var(--sans); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,253,248,.75); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold); }
.footer-grid > p { grid-column: 1 / -1; margin: 0; padding-top: 24px; color: rgba(255,253,248,.42); border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.article-dialog {
  width: min(770px, calc(100% - 28px));
  max-height: min(850px, calc(100vh - 30px));
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 30px;
  box-shadow: 0 36px 100px rgba(4,24,19,.4);
}
.article-dialog::backdrop { background: rgba(6,27,22,.72); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px); }
.dialog-shell { position: relative; padding: 64px 72px 70px; background: var(--paper-light); border-radius: 30px; }
.dialog-shell::before { content: ""; position: absolute; width: 160px; height: 9px; top: 0; left: 72px; background: var(--coral); border-radius: 0 0 9px 9px; }
.dialog-close { position: sticky; z-index: 3; top: 18px; float: right; width: 42px; height: 42px; margin: -42px -48px 0 0; display: grid; place-items: center; color: var(--white); background: var(--forest); border: 0; border-radius: 50%; cursor: pointer; font-size: 25px; line-height: 1; box-shadow: 0 10px 24px rgba(23,42,37,.18); }
.dialog-close:hover { background: var(--coral); }
.dialog-meta { display: flex; gap: 18px; color: var(--muted); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.dialog-meta span + span::before { content: "·"; margin-right: 18px; color: var(--coral); }
.dialog-shell h2 { max-width: 620px; margin: 20px 0 18px; font-family: var(--serif); font-size: clamp(38px, 6vw, 58px); font-weight: 500; letter-spacing: -.05em; line-height: 1.02; }
.dialog-deck { margin: 0 0 32px; padding-bottom: 28px; color: var(--forest); border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 20px; font-style: italic; line-height: 1.55; }
.dialog-body p { color: #46544e; font-family: var(--serif); font-size: 18px; line-height: 1.75; }
.dialog-body p:first-child::first-letter { float: left; margin: .08em .1em 0 0; color: var(--coral); font-size: 4.4em; line-height: .75; }
.dialog-signoff { display: flex; align-items: center; justify-content: flex-end; gap: 12px; margin-top: 34px; font-family: var(--script); font-size: 21px; }
body.dialog-open { overflow: hidden; }

/* Privacy policy */
.policy-page { background: var(--paper-light); }
.policy-header { background: rgba(255,250,240,.9); }
.policy-hero { padding: 92px 0 86px; color: var(--white); background: var(--forest-deep); }
.policy-shell { width: min(1040px, calc(100% - 48px)); margin-inline: auto; }
.policy-hero h1 { max-width: 820px; font-size: clamp(58px, 8vw, 98px); }
.policy-hero h1 em { color: var(--gold); }
.policy-hero > .policy-shell > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; color: rgba(255,253,248,.7); font-family: var(--serif); font-size: 20px; }
.policy-date { display: flex; align-items: center; gap: 16px; margin-top: 35px; }
.policy-date span { color: var(--sage); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.policy-date strong { padding: 7px 12px; color: var(--forest-deep); background: var(--gold); border-radius: 999px; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.policy-layout { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 90px; padding: 90px 0 120px; }
.policy-toc { position: sticky; top: 120px; align-self: start; }
.policy-toc > p { margin: 0 0 17px; color: var(--coral); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.policy-toc nav { display: grid; border-top: 1px solid var(--line); }
.policy-toc a { padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; text-decoration: none; }
.policy-toc a:hover { color: var(--forest); padding-left: 5px; }
.policy-content { min-width: 0; }
.policy-content section { position: relative; padding: 0 0 58px; margin: 0 0 58px; border-bottom: 1px solid var(--line); scroll-margin-top: 120px; }
.policy-content section:last-child { margin-bottom: 0; }
.policy-number { display: inline-block; margin-bottom: 12px; color: var(--coral); font-family: var(--serif); font-size: 17px; font-style: italic; }
.policy-content h2 { margin: 0 0 24px; color: var(--forest-deep); font-family: var(--serif); font-size: 42px; font-weight: 500; letter-spacing: -.04em; line-height: 1.08; }
.policy-content h3 { margin: 30px 0 9px; color: var(--forest); font-size: 12px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.policy-content p, .policy-content li { color: #4c5954; font-family: var(--serif); font-size: 17px; line-height: 1.75; }
.policy-content p { margin: 0 0 17px; }
.policy-content ul { margin: 10px 0 20px; padding-left: 22px; }
.policy-content li { margin-bottom: 8px; padding-left: 5px; }
.policy-content a { color: var(--forest); font-weight: 700; text-decoration-color: var(--coral); text-underline-offset: 3px; }
.policy-callout { margin: 24px 0; padding: 27px 30px; background: #e8efe9; border-left: 4px solid var(--sage); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.policy-callout strong { display: block; color: var(--forest-deep); font-family: var(--serif); font-size: 19px; line-height: 1.45; }
.policy-callout p { margin: 8px 0 0; font-size: 15px; }
.policy-table-wrap { max-width: 100%; margin: 26px 0; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.policy-content table { width: 100%; min-width: 720px; border-collapse: collapse; background: var(--white); }
.policy-content th, .policy-content td { padding: 16px 17px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); text-align: left; vertical-align: top; }
.policy-content th:last-child, .policy-content td:last-child { border-right: 0; }
.policy-content tbody tr:last-child td { border-bottom: 0; }
.policy-content th { color: var(--white); background: var(--forest); font-size: 10px; font-weight: 850; letter-spacing: .08em; line-height: 1.4; text-transform: uppercase; }
.policy-content td { color: #4c5954; font-family: var(--serif); font-size: 14px; line-height: 1.55; }
.policy-contact { padding: 44px !important; color: var(--white); background: var(--forest); border: 0 !important; border-radius: var(--radius-md); }
.policy-contact .policy-number { color: var(--gold); }
.policy-contact h2, .policy-contact p, .policy-contact address { color: var(--white); }
.policy-contact address { font-family: var(--serif); font-size: 17px; font-style: normal; line-height: 1.7; }
.policy-contact a { color: var(--gold); text-decoration-color: var(--gold); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.22,1,.36,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr .88fr; gap: 35px; }
  .hero-visual { min-height: 560px; }
  .visual-card { left: 35px; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; }
  .story-featured .story-art { height: 100%; min-height: 320px; }
  .about-grid { gap: 60px; }
  .contact-card { gap: 50px; padding: 65px 58px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .nav-shell { min-height: 74px; }
  .brand-mark { width: 43px; height: 43px; }
  .brand-copy small { display: none; }
  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 50%;
  }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 2px; background: var(--forest); transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 12px 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .hero { padding-top: 54px; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(53px, 13vw, 78px); }
  .hero-visual { min-height: 610px; width: min(100%, 540px); margin-inline: auto; }
  .section { padding: 88px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .section-heading > p { max-width: 570px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-featured { grid-column: auto; display: block; }
  .story-featured .story-art { min-height: 0; height: 286px; }
  .about-grid { grid-template-columns: 1fr; gap: 65px; }
  .about-portrait { width: min(100%, 470px); margin-inline: auto; }
  .contact-card { grid-template-columns: 1fr; gap: 46px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-links { flex-wrap: wrap; }
  .policy-layout { grid-template-columns: 1fr; gap: 50px; }
  .policy-toc { position: static; }
  .policy-toc nav { grid-template-columns: 1fr 1fr; gap: 0 22px; }
  .dialog-shell { padding: 58px 40px 54px; }
  .dialog-close { margin-right: -16px; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  .brand-copy strong { font-size: 16px; }
  .hero { padding-top: 38px; }
  .hero h1 { font-size: clamp(48px, 15vw, 68px); line-height: 1; }
  .hero-lede { margin-top: 24px; font-size: 18px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-meta { grid-template-columns: 1fr; gap: 15px; }
  .hero-visual { min-height: 500px; }
  .hero-visual::before { inset: 18px 0 10px 24px; }
  .thread-art { width: 111%; right: -11%; top: 0; }
  .visual-card { width: 68%; top: 160px; left: 31px; padding: 24px 22px 21px; }
  .visual-card blockquote { font-size: 20px; }
  .orbit-note { font-size: 7px; }
  .orbit-note span { width: 24px; height: 24px; }
  .orbit-note-one { top: 53px; right: -5px; }
  .orbit-note-two { right: -6px; bottom: 92px; }
  .orbit-note-three { left: 8px; bottom: 23px; }
  .section { padding: 74px 0; }
  .section-heading h2, .about-copy h2, .contact-copy h2 { font-size: 45px; }
  .story-content h3, .story-featured .story-content h3 { font-size: 29px; }
  .about-portrait { min-height: 470px; }
  .portrait-panel { border-radius: 140px 140px 25px 25px; }
  .portrait-initials { top: 112px; font-size: 112px; }
  .portrait-caption { left: 29px; bottom: 32px; }
  .portrait-tag { right: -8px; top: 240px; }
  .about-facts { grid-template-columns: 1fr; }
  .topic-row { gap: 12px 14px; }
  .contact-section { padding: 74px 0; }
  .contact-card { padding: 48px 26px; border-radius: 25px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .article-dialog { max-height: calc(100vh - 14px); }
  .dialog-shell { padding: 54px 24px 46px; border-radius: 22px; }
  .dialog-shell::before { left: 24px; width: 110px; }
  .dialog-close { top: 12px; margin: -38px -9px 0 0; }
  .dialog-shell h2 { font-size: 40px; }
  .dialog-deck { font-size: 18px; }
  .dialog-body p { font-size: 17px; }
  .policy-shell { width: calc(100% - 28px); }
  .policy-hero { padding: 68px 0 65px; }
  .policy-hero h1 { font-size: 53px; }
  .policy-hero > .policy-shell > p:not(.eyebrow) { font-size: 18px; }
  .back-link { font-size: 10px; }
  .policy-layout { padding: 65px 0 80px; }
  .policy-toc nav { grid-template-columns: 1fr; }
  .policy-content h2 { font-size: 36px; }
  .policy-content p, .policy-content li { font-size: 16px; }
  .policy-contact { padding: 32px 25px !important; }
}
