@font-face {
  font-display: swap;
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  src: url("dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-display: swap;
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400 500;
  src: url("newsreader-latin.woff2") format("woff2");
}

:root {
  --ivory: #f4f1ea;
  --ivory-soft: #fbf8f1;
  --sandstone: #dcc9ae;
  --stone: #b9b2a7;
  --ink: #18181d;
  --navy: #0e1622;
  --navy-soft: #182536;
  --olive: #3d4636;
  --slate: #4a5a6b;
  --brass: #b08e4a;
  --copper: #a85f3d;
  --petrol: #23565b;
  --line: rgba(24, 24, 29, 0.18);
  --line-light: rgba(244, 241, 234, 0.22);
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
[data-lang="es"] { display: none; }
body.lang-es [data-lang="en"] { display: none; }
body.lang-es [data-lang="es"] { display: revert; }

.skip-link {
  background: var(--ivory-soft);
  color: var(--navy);
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: 12px;
  transform: translateY(-180%);
  z-index: 100;
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--copper); outline-offset: 4px; }

.site-header {
  align-items: center;
  background: rgba(14, 22, 34, 0.96);
  border-bottom: 1px solid var(--line-light);
  color: var(--ivory);
  display: grid;
  gap: 28px;
  grid-template-columns: auto 1fr auto;
  min-height: 86px;
  padding: 12px clamp(20px, 5vw, 80px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand { display: block; }
.brand-logo { height: auto; width: clamp(150px, 14vw, 180px); }
.primary-nav { align-items: center; display: flex; gap: clamp(18px, 2.4vw, 34px); justify-content: flex-end; }
.primary-nav a { border-bottom: 1px solid transparent; font-size: 0.79rem; font-weight: 600; padding: 8px 0; }
.primary-nav a:hover { border-color: var(--brass); }
.language-button {
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.45);
  border-radius: 50%;
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  height: 42px;
  width: 42px;
}
.language-button:hover { background: var(--ivory); color: var(--navy); }
.menu-button { display: none; }

.hero {
  background: var(--ivory-soft);
  color: var(--navy);
  display: flex;
  min-height: 690px;
  overflow: hidden;
  padding: clamp(74px, 10vh, 112px) clamp(20px, 7vw, 112px) clamp(58px, 8vh, 86px);
  position: relative;
}
.hero-media { bottom: 0; opacity: 0.32; position: absolute; right: 0; top: 0; width: min(54vw, 860px); }
.hero-media img { filter: saturate(0.62) contrast(0.9); height: 100%; object-fit: cover; object-position: 58% center; width: 100%; }
.hero-shade {
  background: linear-gradient(90deg, var(--ivory-soft) 0%, rgba(251, 248, 241, 0.99) 45%, rgba(251, 248, 241, 0.84) 68%, rgba(251, 248, 241, 0.48) 100%), linear-gradient(0deg, rgba(251, 248, 241, 0.82), transparent 48%);
  inset: 0;
  position: absolute;
}
.hero-content { align-self: center; max-width: 820px; position: relative; z-index: 2; }
.eyebrow {
  align-items: center;
  color: var(--sandstone);
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 14px;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.eyebrow::before { background: currentColor; content: ""; height: 1px; width: 48px; }
.eyebrow.dark { color: var(--copper); }
.eyebrow.light { color: var(--sandstone); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-family: var(--serif);
  font-size: clamp(4.8rem, 10vw, 8.8rem);
  font-weight: 400;
  line-height: 0.86;
  margin-bottom: 18px;
}
.hero-display {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 0.96;
  margin-bottom: 24px;
}
.hero-lede { color: #3d4651; font-size: clamp(1.05rem, 1.7vw, 1.24rem); line-height: 1.6; margin-bottom: 32px; max-width: 670px; }
.language-note { border-left: 2px solid var(--brass); color: var(--slate); font-size: 0.8rem; line-height: 1.5; max-width: 560px; padding-left: 14px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { align-items: center; display: inline-flex; font-size: 0.82rem; font-weight: 700; justify-content: center; min-height: 52px; padding: 14px 22px; }
.button-light { background: var(--navy); color: var(--ivory-soft); }
.button-light:hover { background: var(--petrol); }
.button-ghost { border: 1px solid rgba(14, 22, 34, 0.42); color: var(--navy); }
.button-ghost:hover { background: rgba(14, 22, 34, 0.07); }
.concept-caption {
  bottom: 20px;
  color: rgba(14, 22, 34, 0.58);
  font-size: 0.62rem;
  margin: 0;
  max-width: 360px;
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  text-align: right;
  z-index: 2;
}
.wind-lines { opacity: 0.38; position: absolute; right: 3%; top: 12%; width: 28vw; z-index: 2; }
.wind-lines span { border-top: 1px solid rgba(14, 22, 34, 0.62); display: block; margin: 18px 0; transform: skewX(-28deg); }
.wind-lines span:nth-child(2) { margin-left: 18%; width: 76%; }
.wind-lines span:nth-child(3) { margin-left: 7%; width: 64%; }

.signal-band {
  background: var(--ivory-soft);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(20px, 7vw, 112px);
}
.signal-band div { align-items: baseline; border-right: 1px solid var(--line); display: grid; gap: 8px; grid-template-columns: auto 1fr; padding: 22px clamp(16px, 3vw, 38px); }
.signal-band div:first-child { border-left: 1px solid var(--line); }
.signal-band span { color: var(--copper); font-size: 0.62rem; font-weight: 700; text-transform: uppercase; }
.signal-band strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.signal-band small { color: var(--slate); font-size: 0.67rem; grid-column: 2; text-transform: uppercase; }

.section { padding: clamp(72px, 9vw, 132px) clamp(20px, 7vw, 112px); }
.section-intro, .gatherings-intro { display: grid; gap: 32px; grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.2fr); margin-bottom: 64px; }
.section-intro .eyebrow, .gatherings-intro .eyebrow { align-self: start; }
h2 { font-family: var(--serif); font-size: clamp(2.7rem, 6vw, 5.6rem); font-weight: 400; line-height: 0.98; margin-bottom: 24px; }
.section-intro p:last-child, .gatherings-intro p:last-child { color: var(--slate); font-size: 1.08rem; line-height: 1.7; max-width: 720px; }
.gatherings { background: var(--ivory); }
.gathering-steps { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.gathering-steps article { min-height: 300px; padding: clamp(26px, 3vw, 42px); }
.gathering-steps article + article { border-left: 1px solid var(--line); }
.step-time { color: var(--copper); display: block; font-size: 0.66rem; font-weight: 700; margin-bottom: 58px; text-transform: uppercase; }
.gathering-steps h3 { font-family: var(--serif); font-size: clamp(1.85rem, 2.8vw, 2.8rem); font-weight: 400; line-height: 1.03; margin-bottom: 18px; }
.gathering-steps p { color: var(--slate); line-height: 1.65; margin-bottom: 0; }
.detail-note { border-left: 2px solid var(--brass); color: var(--slate); font-size: 0.78rem; line-height: 1.5; margin: 24px 0 0; max-width: 660px; padding-left: 14px; }
.documentary { background: var(--ivory-soft); }
.documentary-intro { display: grid; gap: 32px; grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.2fr); margin-bottom: 56px; }
.documentary-intro .eyebrow { align-self: start; }
.documentary-intro p:last-child { color: var(--slate); font-size: 1.08rem; line-height: 1.7; max-width: 720px; }
.documentary-grid { display: grid; gap: 14px; grid-template-columns: repeat(12, 1fr); }
.documentary-item { min-height: clamp(310px, 34vw, 510px); margin: 0; overflow: hidden; position: relative; }
.documentary-item.wide { grid-column: span 7; }
.documentary-item.narrow { grid-column: span 5; }
.documentary-item img { filter: saturate(0.82) contrast(0.97); height: 100%; object-fit: cover; width: 100%; }
.documentary-item:nth-child(3) img { object-position: 38% center; }
.documentary-item::after { background: linear-gradient(0deg, rgba(14, 22, 34, 0.66), transparent 46%); content: ""; inset: 0; position: absolute; }
.documentary-item figcaption { bottom: 22px; color: var(--ivory-soft); font-size: 0.66rem; font-weight: 700; left: 24px; position: absolute; text-transform: uppercase; z-index: 2; }
.documentary-note { color: var(--slate); font-size: 0.66rem; line-height: 1.5; margin: 18px 0 0; max-width: 820px; }
.journey { background: var(--ivory); }
.journey-grid { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); }
.journey-grid article { min-height: 320px; padding: 32px; }
.journey-grid article + article { border-left: 1px solid var(--line); }
.journey-number { color: var(--copper); display: block; font-size: 0.7rem; font-weight: 700; margin-bottom: 54px; }
.journey-grid h3 { font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.2rem); font-weight: 400; margin-bottom: 24px; }
.journey-lead { font-size: 1rem; line-height: 1.6; min-height: 78px; }
.scripture { color: var(--slate); font-size: 0.67rem; font-weight: 700; text-transform: uppercase; }

.life { background: var(--navy); color: var(--ivory-soft); min-height: 660px; overflow: hidden; position: relative; }
.life-atmosphere { inset: 0; opacity: 0.16; position: absolute; }
.life-atmosphere img { filter: saturate(0.48); height: 100%; object-fit: cover; object-position: center; width: 100%; }
.life-shade { background: linear-gradient(90deg, rgba(14, 22, 34, 0.99) 0%, rgba(14, 22, 34, 0.94) 48%, rgba(14, 22, 34, 0.72) 100%); inset: 0; position: absolute; }
.life-content { max-width: 930px; position: relative; z-index: 2; }
.life-content h2 { max-width: 820px; }
.life-lede { color: rgba(244, 241, 234, 0.76); font-size: 1.1rem; line-height: 1.7; max-width: 680px; }
.life-signals { border-bottom: 1px solid var(--line-light); border-top: 1px solid var(--line-light); display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 52px; max-width: 820px; }
.life-signals div { border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2rem); padding: 22px 12px 22px 0; }
.life-signals div:nth-child(even) { border-left: 1px solid var(--line-light); padding-left: 28px; }
.asset-disclosure { color: rgba(244, 241, 234, 0.5); font-size: 0.62rem; line-height: 1.5; margin: 22px 0 0; max-width: 760px; }

.identity { background: var(--navy); color: var(--ivory-soft); }
.identity-layout { display: grid; gap: clamp(48px, 8vw, 120px); grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.8fr); }
.identity-statement h2 { color: var(--ivory-soft); }
.identity-statement p:last-child { color: rgba(244, 241, 234, 0.72); font-size: 1.05rem; line-height: 1.7; max-width: 660px; }
.identity-principles { border-top: 1px solid var(--line-light); }
.identity-principles article { align-items: baseline; border-bottom: 1px solid var(--line-light); display: grid; gap: 16px; grid-template-columns: 34px 1fr; padding: 24px 0; }
.identity-principles span { color: var(--brass); font-size: 0.64rem; font-weight: 700; }
.identity-principles h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1.15; margin: 0; }

.mission { background: var(--ivory-soft); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); padding: 0; }
.mission-photo { min-height: 680px; margin: 0; overflow: hidden; position: relative; }
.mission-photo img { filter: saturate(0.78) contrast(0.96); height: 100%; object-fit: cover; object-position: 54% center; width: 100%; }
.mission-photo::after { background: linear-gradient(0deg, rgba(14, 22, 34, 0.58), transparent 42%); content: ""; inset: 0; position: absolute; }
.mission-photo figcaption { bottom: 24px; color: var(--ivory-soft); font-size: 0.65rem; font-weight: 700; left: 28px; position: absolute; text-transform: uppercase; z-index: 2; }
.mission-copy { align-self: center; padding: clamp(64px, 8vw, 124px) clamp(32px, 7vw, 104px); }
.mission-copy h2 { font-size: clamp(2.8rem, 5.6vw, 5.4rem); }
.mission-copy p:not(.eyebrow):not(.mission-line) { color: var(--slate); font-size: 1.06rem; line-height: 1.72; max-width: 620px; }
.mission-line { border-top: 1px solid var(--line); color: var(--copper); font-family: var(--serif); font-size: 1.45rem; margin: 42px 0 0; padding-top: 22px; }

.manifesto { background: var(--sandstone); overflow: hidden; position: relative; }
.manifesto-line { color: var(--navy); font-family: var(--serif); font-size: clamp(3.5rem, 8vw, 8rem); line-height: 0.9; margin-bottom: 40px; max-width: 1100px; }
.manifesto-copy { font-size: 1.1rem; line-height: 1.7; margin: 0 0 0 auto; max-width: 620px; }
.movement-rule { margin-top: 68px; width: min(700px, 90%); }
.movement-rule i { border-top: 1px solid var(--copper); display: block; margin: 13px 0; transform: skewX(-28deg); }
.movement-rule i:nth-child(2) { margin-left: 14%; width: 75%; }
.movement-rule i:nth-child(3) { margin-left: 4%; width: 62%; }

.status { background: var(--ivory); }
.status-heading { max-width: 880px; }
.status-grid { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(2, 1fr); margin-top: 54px; }
.status-grid article { padding: clamp(28px, 4vw, 52px); }
.status-grid article + article { border-left: 1px solid var(--line); }
.status-label { align-items: center; display: flex; font-size: 0.69rem; font-weight: 700; gap: 10px; margin-bottom: 28px; text-transform: uppercase; }
.status-label i { background: var(--olive); border-radius: 50%; height: 9px; width: 9px; }
.held .status-label i { background: var(--copper); }
.status-grid ul { margin: 0; padding-left: 20px; }
.status-grid li { line-height: 1.65; margin-bottom: 10px; }

.site-footer {
  align-items: end;
  background: var(--navy);
  color: rgba(244, 241, 234, 0.76);
  display: grid;
  gap: 18px;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  padding: 48px clamp(20px, 7vw, 112px);
}
.site-footer p { font-size: 0.72rem; margin: 0; }
.footer-brand { display: block; width: clamp(160px, 14vw, 195px); }
.footer-brand img { height: auto; width: 100%; }
.footer-meta { text-align: right; }

@media (prefers-reduced-motion: no-preference) {
  .wind-lines { animation: drift 8s ease-in-out infinite alternate; }
  @keyframes drift { from { transform: translateX(0); } to { transform: translateX(-24px); } }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .menu-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--ivory);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 700;
    gap: 10px;
    justify-self: end;
  }
  .menu-icon { display: grid; gap: 5px; width: 20px; }
  .menu-icon i { border-top: 1px solid currentColor; display: block; }
  .primary-nav {
    align-content: center;
    background: var(--navy);
    display: none;
    inset: 86px 0 0;
    justify-content: start;
    padding: 48px 24px;
    position: fixed;
    z-index: 20;
  }
  .primary-nav.open { display: grid; }
  .primary-nav a { font-family: var(--serif); font-size: clamp(2rem, 9vw, 4rem); font-weight: 400; }
  .section-intro, .gatherings-intro, .documentary-intro, .identity-layout { grid-template-columns: 1fr; }
  .section-intro, .gatherings-intro, .documentary-intro { gap: 8px; }
  .gathering-steps { grid-template-columns: 1fr; }
  .gathering-steps article { min-height: 0; }
  .gathering-steps article + article { border-left: 0; border-top: 1px solid var(--line); }
  .step-time { margin-bottom: 30px; }
  .documentary-item.wide, .documentary-item.narrow { grid-column: span 6; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-grid article { min-height: 0; }
  .journey-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .journey-number { margin-bottom: 30px; }
  .journey-lead { min-height: 0; }
  .mission { grid-template-columns: 1fr; }
  .mission-photo { min-height: 480px; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
  .footer-meta { text-align: left; }
}

@media (max-width: 680px) {
  .site-header { gap: 12px; padding-inline: 16px; }
  .brand-logo { width: 142px; }
  .hero { min-height: 720px; padding: 70px 20px 76px; }
  .hero-media { left: 0; opacity: 0.18; width: 100%; }
  .hero-media img { object-position: 56% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(251, 248, 241, 0.98), rgba(251, 248, 241, 0.76)), linear-gradient(0deg, rgba(251, 248, 241, 0.98), rgba(251, 248, 241, 0.42) 60%, rgba(251, 248, 241, 0.88)); }
  h1 { font-size: clamp(4.2rem, 21vw, 6.2rem); }
  .hero-display { font-size: clamp(2rem, 11.5vw, 3.1rem); }
  .hero-lede { font-size: 1rem; line-height: 1.55; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .concept-caption { bottom: 12px; font-size: 0.5rem; left: 20px; max-width: calc(100% - 40px); right: auto; text-align: left; }
  .wind-lines { display: none; }
  .signal-band { grid-template-columns: 1fr; padding: 0 20px; }
  .signal-band div { border-bottom: 1px solid var(--line); border-left: 0; border-right: 0; gap: 5px 12px; grid-template-columns: 120px 1fr; padding: 18px 0; }
  .signal-band div:first-child { border-left: 0; }
  .signal-band strong { font-size: 1.15rem; }
  .signal-band span, .signal-band small { font-size: 0.56rem; }
  .section { padding: 72px 20px; }
  h2 { font-size: clamp(2.65rem, 15vw, 4.2rem); }
  .life { min-height: 0; }
  .life-shade { background: rgba(14, 22, 34, 0.91); }
  .life-signals { grid-template-columns: 1fr; }
  .life-signals div:nth-child(even) { border-left: 0; padding-left: 0; }
  .documentary-grid { grid-template-columns: 1fr; }
  .documentary-item, .documentary-item.wide, .documentary-item.narrow { grid-column: 1; min-height: 320px; }
  .mission-photo { min-height: 360px; }
  .mission-copy { padding: 72px 20px; }
  .manifesto-line { font-size: clamp(3.6rem, 19vw, 5.3rem); }
  .status-grid { grid-template-columns: 1fr; }
  .status-grid article + article { border-left: 0; border-top: 1px solid var(--line); }
  .site-footer { align-items: start; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
