/* ============================================================
   UNLOCK MY LIFE — Editorial Sanctuary
   Palette: warm bone paper, deep moss night, dawn ochre, sage.
   Type:    Fraunces (display, variable soft axis), Newsreader (body).
   ============================================================ */

:root {
  /* Palette */
  --bone:     #F2EBDD;
  --bone-2:   #ECE4D2;
  --bone-3:   #E4DAC3;
  --ink:      #16150F;
  --ink-soft: #403D33;
  --ink-mute: #6B675A;

  --moss:     #2B3A2E;
  --moss-2:   #1A2620;
  --moss-3:   #0D1713;

  --sage:     #8A9B7E;
  --sage-2:   #B5BBA7;

  --clay:     #B78159;
  --clay-2:   #D9A77A;
  --clay-3:   #EBC39A;

  --rule:     rgba(22,21,15,0.18);
  --rule-lt:  rgba(242,235,221,0.22);

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body:    'Newsreader', Georgia, serif;

  /* Layout */
  --gutter:  clamp(1.25rem, 3vw, 2.5rem);
  --page:    min(1320px, 94vw);
  --measure: 68ch;

  /* Motion */
  --ease: cubic-bezier(.2,.65,.2,1);
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
  font-feature-settings: "kern", "liga", "onum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color .35s var(--ease), opacity .35s var(--ease);
}

p { margin: 0 0 1.1em; }

.skip {
  position: absolute; left: -999px; top: -999px;
  background: var(--moss); color: var(--bone);
  padding: .5rem .75rem;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 999; }

/* ============================================================
   CRISIS RAIL
   ============================================================ */
.crisis {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .55rem 1.1rem;
  background: rgba(26,38,32,.95);
  color: var(--bone);
  border: 1px solid rgba(242,235,221,.18);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 40px -18px rgba(0,0,0,.5);
  font-family: var(--body);
  font-size: .8125rem;
  line-height: 1;
  max-width: calc(100% - 2rem);
  flex-wrap: wrap;
  justify-content: center;
}
.crisis__label {
  color: var(--sage-2);
  font-style: italic;
}
.crisis__link,
.crisis__link--alt {
  color: var(--bone);
  text-decoration: none;
  letter-spacing: .02em;
}
.crisis__link strong {
  font-weight: 600;
  letter-spacing: .06em;
}
.crisis__link:hover,
.crisis__link--alt:hover { color: var(--clay-3); }
.crisis__sep { color: rgba(242,235,221,.35); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--gutter);
  padding: 1.5rem var(--gutter);
  color: var(--bone);
  transition: background .35s var(--ease), color .35s var(--ease),
              padding .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  position: fixed;
  background: rgba(242,235,221,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  border-bottom-color: var(--rule);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: .005em;
  font-style: italic;
  font-variation-settings: "opsz" 28, "SOFT" 80;
}
.mark { width: 28px; height: 28px; color: currentColor; }
.mark--lg { width: 44px; height: 44px; }

.nav__links {
  display: flex;
  gap: 1.75rem;
  justify-content: center;
  font-size: .8125rem;
  letter-spacing: .02em;
}
.nav__links a {
  position: relative;
  padding: .25rem 0;
  opacity: .85;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transition: right .35s var(--ease);
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  padding: .55rem 1.05rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .8125rem;
  letter-spacing: .02em;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.nav.is-stuck .nav__cta { border-color: var(--moss); color: var(--moss); }
.nav__cta:hover { background: currentColor; color: var(--moss-2); }
.nav.is-stuck .nav__cta:hover { color: var(--bone); }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav { grid-template-columns: auto 1fr; }
  .nav__cta { justify-self: end; }
}

/* ============================================================
   UTILITY TYPE
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 1.5rem;
  font-style: normal;
}
.eyebrow--light { color: var(--sage-2); }
.eyebrow__dash {
  display: inline-block;
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .55;
}

.section__title {
  font-family: var(--display);
  font-weight: 350;
  font-size: clamp(2.25rem, 4.8vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.018em;
  margin: 0 0 1.25rem;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.section__title em {
  font-style: italic;
  color: var(--clay);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.section__lede {
  font-family: var(--body);
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
  margin: 0 0 2.5rem;
}

.lede {
  font-size: clamp(1.15rem, 1.5vw, 1.375rem);
  line-height: 1.55;
  color: var(--ink);
}

/* Editorial numbered rule */
.letter__rule,
.order__rule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin: 0 auto 4rem;
  border-bottom: 1px solid var(--rule);
  max-width: var(--page);
  font-family: var(--body);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: radial-gradient(ellipse at 50% 120%, #1e2e27 0%, #0D1713 60%);
  color: var(--bone);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 9rem var(--gutter) 7rem;
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__breath {
  position: absolute;
  left: 50%;
  bottom: -20%;
  width: 140vmax;
  height: 140vmax;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 50% 50%,
      rgba(235, 195, 154, .55) 0%,
      rgba(183, 129, 89, .32) 18%,
      rgba(45, 58, 46, .0) 55%);
  filter: blur(20px);
  animation: breathe 14s ease-in-out infinite;
  will-change: transform, opacity;
}
@keyframes breathe {
  0%, 100% { transform: translateX(-50%) scale(1);    opacity: .75; }
  50%      { transform: translateX(-50%) scale(1.12); opacity: 1;   }
}

/* Grain */
.hero__grain,
.veterans__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .45;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* A very faint horizon line at the visual base of the breath */
.hero__horizon {
  position: absolute;
  left: 0; right: 0;
  bottom: 22%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(235, 195, 154, .0) 10%,
      rgba(235, 195, 154, .35) 50%,
      rgba(235, 195, 154, .0) 90%,
      transparent 100%);
}

.hero__inner {
  position: relative;
  max-width: var(--page);
  width: 100%;
  margin: 0 auto;
  z-index: 2;
}

.hero__headline {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(3rem, 8.2vw, 7.75rem);
  line-height: .98;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
  max-width: 22ch;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__headline em {
  font-style: italic;
  color: var(--clay-3);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.hero__lede {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  line-height: 1.55;
  max-width: 52ch;
  color: rgba(242,235,221,.85);
  margin: 0 0 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__foot {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(242,235,221,.58);
}
.hero__foot-num {
  font-family: var(--display);
  font-style: italic;
  font-size: .95rem;
  letter-spacing: .1em;
  text-transform: none;
  color: var(--clay-3);
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.hero__foot-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .4;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.4rem;
  font-family: var(--body);
  font-size: .9375rem;
  letter-spacing: .005em;
  line-height: 1;
  border-radius: 999px;
  transition: transform .35s var(--ease),
              background .35s var(--ease),
              color .35s var(--ease),
              border-color .35s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  font-weight: 500;
}
.btn__arr {
  transition: transform .45s var(--ease);
  font-size: 1.05em;
}
.btn:hover .btn__arr { transform: translateX(4px); }

.btn--primary {
  background: var(--clay);
  color: var(--moss-3);
}
.btn--primary:hover { background: var(--clay-2); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(242,235,221,.35);
}
.btn--ghost:hover {
  background: rgba(242,235,221,.08);
  border-color: rgba(242,235,221,.6);
}

.btn--ghost-light {
  background: transparent;
  color: var(--bone);
  border-color: rgba(242,235,221,.35);
  margin-top: 2rem;
}
.btn--ghost-light:hover {
  background: rgba(242,235,221,.08);
  border-color: rgba(242,235,221,.6);
}

.btn--submit {
  margin-top: 1rem;
}

/* ============================================================
   LETTER — Founder's Letter (editorial)
   ============================================================ */
.letter {
  padding: 6rem var(--gutter) 5rem;
  background:
    linear-gradient(180deg, var(--bone) 0%, var(--bone-2) 100%);
  position: relative;
}
.letter__grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 6rem);
}
.letter__meta { padding-top: 1rem; }
.letter__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.letter__title em {
  font-style: italic;
  color: var(--clay);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.letter__place {
  font-size: .8125rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 2rem 0 0;
}

.letter__body {
  max-width: 42em;
  font-size: clamp(1.05rem, 1.25vw, 1.1875rem);
  line-height: 1.72;
  color: var(--ink-soft);
}
.letter__body p { margin-bottom: 1.1em; }
.letter__body strong {
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
  font-family: var(--display);
  font-variation-settings: "opsz" 36, "SOFT" 70;
}

.dropcap {
  float: left;
  font-family: var(--display);
  font-size: 5.2em;
  line-height: .85;
  padding: .15em .12em 0 0;
  font-weight: 300;
  color: var(--clay);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}

.letter__sign {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.letter__sign-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  font-variation-settings: "opsz" 72, "SOFT" 100;
}
.letter__sign-title {
  font-size: .8125rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 820px) {
  .letter__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   ORDER — Executive Order breakdown
   ============================================================ */
.order {
  padding: 6rem var(--gutter) 6rem;
  background: var(--bone);
  position: relative;
}
.order::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: 1320px;
  height: 1px;
  background: var(--rule);
}
.order__head {
  max-width: var(--page);
  margin: 0 auto 4rem;
}
.order__points {
  max-width: 980px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.order__points li {
  display: grid;
  grid-template-columns: 6rem 1fr;
  grid-template-rows: auto auto;
  column-gap: clamp(1rem, 4vw, 4rem);
  row-gap: .5rem;
  padding: 2.25rem clamp(.5rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: background .4s var(--ease);
}
.order__points li:hover {
  background: rgba(183,129,89,.04);
}
.order__num {
  grid-column: 1;
  grid-row: 1 / span 2;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--clay);
  font-variation-settings: "opsz" 36, "SOFT" 100;
  letter-spacing: .05em;
  align-self: start;
  padding-top: .15em;
}
.order__points h3 { grid-column: 2; grid-row: 1; }
.order__points p  { grid-column: 2; grid-row: 2; }

@media (max-width: 640px) {
  .order__points li {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    row-gap: .5rem;
  }
  .order__num { grid-column: 1; grid-row: 1; }
  .order__points h3 { grid-column: 1; grid-row: 2; }
  .order__points p  { grid-column: 1; grid-row: 3; }
}
.order__points h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  margin: 0 0 .5rem;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 72, "SOFT" 60;
}
.order__points p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* stats */
.stats {
  max-width: var(--page);
  margin: 5rem auto 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.stat {
  padding: 2.5rem 1.5rem;
  background: var(--bone);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  min-height: 170px;
}
.stat__num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.25rem, 4.5vw, 3.8rem);
  line-height: .95;
  color: var(--moss);
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.stat__label {
  font-size: .8125rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.45;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .stats { grid-template-columns: 1fr; }
}

.order__cite {
  max-width: var(--page);
  margin: 2rem auto 0;
  font-size: .875rem;
  color: var(--ink-mute);
  font-style: italic;
  line-height: 1.6;
  padding-top: 1.5rem;
  border-top: 1px dotted var(--rule);
}
.order__cite a {
  color: var(--clay);
  border-bottom: 1px solid currentColor;
  font-style: normal;
}
.order__cite a:hover { color: var(--moss); }

/* ============================================================
   VETERANS — dark honoring band
   ============================================================ */
.veterans {
  position: relative;
  background: var(--moss-2);
  color: var(--bone);
  padding: 7rem var(--gutter);
  overflow: hidden;
}
.veterans::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at 20% 30%,
      rgba(183,129,89,.18) 0%,
      transparent 50%);
  pointer-events: none;
}
.veterans__inner {
  max-width: var(--page);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.veterans__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin: 0 0 3rem;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.veterans__title em {
  font-style: italic;
  color: var(--clay-3);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.veterans__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 75ch;
}
.veterans__lede {
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgba(242,235,221,.78);
  margin: 0;
}
@media (max-width: 820px) {
  .veterans__grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ============================================================
   HOW — three stages
   ============================================================ */
.how {
  padding: 6rem var(--gutter);
  background: var(--bone-2);
}
.how__head {
  max-width: var(--page);
  margin: 0 auto 4rem;
}
.how__grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.how__stage {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  position: relative;
}
.how__roman {
  font-family: var(--display);
  font-style: italic;
  font-size: 2rem;
  color: var(--clay);
  display: block;
  margin-bottom: 2rem;
  letter-spacing: .05em;
  font-variation-settings: "opsz" 72, "SOFT" 100;
}
.how__stage h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.75rem;
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 72, "SOFT" 60;
}
.how__stage p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}
.how__note {
  max-width: var(--page);
  margin: 4rem auto 0;
  font-size: .9375rem;
  font-style: italic;
  color: var(--ink-mute);
  text-align: center;
  max-width: 60ch;
  padding-top: 2rem;
  border-top: 1px dotted var(--rule);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 820px) {
  .how__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SHARE — Story form
   ============================================================ */
.share {
  padding: 6rem var(--gutter);
  background:
    linear-gradient(180deg, var(--bone-2) 0%, var(--bone-3) 100%);
  position: relative;
}
.share__paper {
  max-width: var(--page);
  margin: 0 auto;
  background: var(--bone);
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--rule);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 40px 80px -50px rgba(22,21,15,.2);
  position: relative;
}
.share__paper::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(22,21,15,.08);
  pointer-events: none;
}
.share__head {
  max-width: 60ch;
  margin: 0 auto 3rem;
  text-align: center;
}
.share__head .eyebrow { justify-content: center; }

/* form */
.storyform {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem clamp(1.5rem, 3vw, 2.5rem);
  max-width: 720px;
  margin: 0 auto;
}
.field { display: flex; flex-direction: column; gap: .5rem; }
.field--wide { grid-column: 1 / -1; }
.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: .75rem;
}
.field--check label {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  font-style: italic;
  font-family: var(--body);
}

.field label {
  font-family: var(--body);
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
}

.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  appearance: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: .75rem 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.6;
  transition: border-color .3s var(--ease);
  border-radius: 0;
}
.field textarea {
  border: 1px solid var(--rule);
  padding: 1rem 1.1rem;
  resize: vertical;
  min-height: 9em;
  background: rgba(242,235,221,.5);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--clay);
}
.field input[type="checkbox"] {
  margin-top: .35em;
  width: 16px; height: 16px;
  accent-color: var(--clay);
}

.storyform__status {
  grid-column: 1 / -1;
  font-style: italic;
  font-size: .95rem;
  color: var(--moss);
  min-height: 1.5em;
  margin: 0;
}
.storyform__status.is-ok { color: var(--moss); }
.storyform__status.is-error { color: #8C3B2A; }

@media (max-width: 680px) {
  .storyform { grid-template-columns: 1fr; }
}

/* ============================================================
   RESOURCES
   ============================================================ */
.resources {
  padding: 6rem var(--gutter);
  background: var(--bone);
}
.resources__head {
  max-width: var(--page);
  margin: 0 auto 3rem;
}
.resources__grid {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.res {
  position: relative;
  padding: 2rem 1.75rem 2.25rem;
  background: var(--bone);
  display: flex;
  flex-direction: column;
  gap: .6rem;
  min-height: 220px;
  transition: background .4s var(--ease), color .4s var(--ease);
  overflow: hidden;
}
.res::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(183,129,89,.05) 100%);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.res:hover { background: var(--moss); color: var(--bone); }
.res:hover::before { opacity: 1; }
.res__label {
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  transition: color .4s var(--ease);
}
.res:hover .res__label { color: var(--clay-3); }
.res__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.15;
  margin-top: .15rem;
  font-variation-settings: "opsz" 72, "SOFT" 60;
}
.res__body {
  font-size: .9375rem;
  line-height: 1.55;
  color: inherit;
  opacity: .75;
  margin-top: .3rem;
}
.res__arr {
  margin-top: auto;
  font-size: 1.1rem;
  opacity: .6;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
  align-self: flex-end;
}
.res:hover .res__arr { transform: translateX(4px); opacity: 1; }

@media (max-width: 900px) { .resources__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .resources__grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 6rem var(--gutter) 8rem;
  background: var(--bone-2);
}
.faq__head {
  max-width: var(--page);
  margin: 0 auto 3rem;
}
.faq__list {
  max-width: var(--page);
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 0;
  transition: background .4s var(--ease);
}
.faq details[open] { background: rgba(255,255,255,.35); }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  letter-spacing: -.005em;
  color: var(--ink);
  font-variation-settings: "opsz" 72, "SOFT" 60;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::marker { display: none; }

.faq__plus {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform .45s var(--ease);
}
.faq__plus::before,
.faq__plus::after {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 18px; height: 1px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform .45s var(--ease);
}
.faq__plus::after { transform: translateY(-50%) rotate(90deg); }
.faq details[open] .faq__plus::after { transform: translateY(-50%) rotate(0); }

.faq__answer {
  padding: 0 2.5rem 2rem 0;
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.faq__answer a { color: var(--clay); border-bottom: 1px solid currentColor; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: var(--moss-3);
  color: rgba(242,235,221,.78);
  padding: 5rem var(--gutter) 7rem;
  position: relative;
}
.foot__inner {
  max-width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule-lt);
}
.foot__brand { color: var(--bone); }
.foot__motto {
  font-family: var(--display);
  font-size: 1.15rem;
  line-height: 1.35;
  margin-top: 1.5rem;
  max-width: 22ch;
  color: var(--bone);
  font-variation-settings: "opsz" 72, "SOFT" 80;
}
.foot__motto em {
  font-style: italic;
  color: var(--clay-3);
}
.foot__col {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.foot__label {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sage-2);
  margin: 0 0 .5rem;
  font-weight: 500;
}
.foot__col a {
  font-size: .95rem;
  color: rgba(242,235,221,.78);
  transition: color .3s var(--ease);
}
.foot__col a:hover { color: var(--clay-3); }

.foot__fine {
  max-width: var(--page);
  margin: 2.25rem auto 0;
  font-size: .8125rem;
  line-height: 1.7;
  color: rgba(242,235,221,.55);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.foot__fine p { margin: 0; max-width: 78ch; }
.foot__line {
  font-size: .75rem;
  letter-spacing: .08em;
  color: rgba(242,235,221,.4);
}

@media (max-width: 820px) {
  .foot__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .foot__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-reveal]:nth-child(2) { transition-delay: .12s; }
[data-reveal]:nth-child(3) { transition-delay: .24s; }
[data-reveal]:nth-child(4) { transition-delay: .36s; }
[data-reveal]:nth-child(5) { transition-delay: .48s; }
[data-reveal]:nth-child(6) { transition-delay: .6s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

/* bottom padding so fixed crisis rail doesn't cover content */
.foot { padding-bottom: 7rem; }
