:root {
  --black: #070707;
  --ink: #101010;
  --paper: #e9e4d8;
  --paper-bright: #f5f1e8;
  --white: #f4f1e9;
  --muted: #aaa79f;
  --gold: #c79218;
  --gold-bright: #e0aa28;
  --red: #a5221d;
  --line: rgba(199, 146, 24, 0.35);
  --scroll-progress: 0%;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 20% 30%, white 0 0.5px, transparent 0.8px),
    radial-gradient(circle at 70% 60%, white 0 0.4px, transparent 0.7px);
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: overlay;
}

a { color: inherit; text-decoration: none; }
button, summary { font: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--gold); color: var(--black); }

.progress-bar {
  position: fixed;
  inset: 0 auto auto 0;
  width: var(--scroll-progress);
  height: 3px;
  z-index: 1001;
  background: var(--gold-bright);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 92px;
  padding: 0 clamp(24px, 5vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(0,0,0,.8), transparent);
}

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-main, .footer-brand > span {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 31px;
  letter-spacing: .07em;
  transform: scaleX(.86);
  transform-origin: left;
}
.brand-sub {
  margin-top: 7px;
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.nav { display: flex; gap: 34px; align-items: center; }
.nav a {
  position: relative;
  padding: 12px 0;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: color .25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 6px;
  height: 1px;
  background: var(--gold-bright);
  transition: right .3s ease;
}
.nav a:hover { color: white; }
.nav a:hover::after { right: 0; }
.menu-button { display: none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 140px clamp(24px, 6vw, 110px) clamp(64px, 9vh, 100px);
  overflow: hidden;
  background: #050505;
}

.hero-image {
  position: absolute;
  inset: -2%;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.62) 36%, rgba(0,0,0,.18) 63%, rgba(0,0,0,.66) 100%),
    linear-gradient(0deg, #060606 0%, transparent 45%),
    url("assets/hero.webp");
  background-size: cover;
  background-position: center;
  filter: contrast(1.08) saturate(.82);
  animation: hero-arrive 1.7s cubic-bezier(.2,.75,.25,1) both;
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .18;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.04) 4px);
  mix-blend-mode: overlay;
}

.hero-content { position: relative; z-index: 2; width: min(720px, 80vw); }
.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.hero-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(34px, 3vw, 46px);
  animation: reveal-up .75s .25s both;
}
.hero h1 {
  margin: 0;
  color: #f1eee6;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(72px, 11vw, 168px);
  font-weight: 900;
  line-height: .78;
  letter-spacing: .005em;
  text-transform: uppercase;
  text-shadow: 0 4px 30px rgba(0,0,0,.55);
  animation: reveal-up .85s .35s both;
}
.hero h1 span {
  display: block;
  width: max-content;
  margin-top: .18em;
  padding: .07em .12em .08em;
  color: var(--black);
  background: var(--gold-bright);
  font-size: .46em;
  letter-spacing: .1em;
  line-height: 1;
  transform: rotate(-1deg);
}
.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.6;
  animation: reveal-up .85s .48s both;
}
.hero-actions { display: flex; gap: 12px; margin-top: 34px; animation: reveal-up .85s .6s both; }
.button {
  display: inline-flex;
  min-height: 51px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--gold-bright); color: var(--black); }
.button-primary:hover { background: #f0bb38; }
.button-ghost { border-color: rgba(255,255,255,.32); color: white; backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: white; background: rgba(255,255,255,.08); }
.scroll-cue {
  position: absolute;
  right: clamp(24px, 5vw, 88px);
  bottom: 46px;
  z-index: 3;
  display: flex;
  gap: 13px;
  align-items: center;
  color: rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.scroll-cue i { color: var(--gold-bright); font-size: 22px; font-style: normal; animation: bob 1.8s ease-in-out infinite; }

.news-ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--gold); color: var(--black); }
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 15px;
  letter-spacing: .13em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
  will-change: transform;
}
.ticker-group {
  display: flex;
  flex-shrink: 0;
  min-width: 100vw;
  align-items: center;
  justify-content: space-around;
  gap: 38px;
  padding: 14px 38px 14px 0;
}
.ticker-group b { flex: 0 0 auto; font-size: 8px; }
.ticker-group span { flex: 0 0 auto; white-space: nowrap; }

.section { padding: clamp(90px, 11vw, 170px) 0; }
.section-shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.section-index { margin: 0; color: #817d73; font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }

.manifest { background: var(--paper); color: var(--ink); }
.manifest-grid { display: grid; grid-template-columns: .6fr 2fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: start; }
.manifest blockquote {
  position: relative;
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(38px, 5.3vw, 77px);
  line-height: 1.01;
  letter-spacing: .01em;
  text-transform: uppercase;
}
.manifest blockquote strong { display: inline; color: var(--gold); font-weight: inherit; }
.quote-mark { position: absolute; left: -.5em; top: -.28em; color: var(--gold); font-family: Georgia, serif; font-size: 1.5em; opacity: .6; }
.manifest-copy { padding-top: 8px; border-top: 2px solid var(--ink); font-size: 15px; line-height: 1.7; }
.signature { margin-top: 36px; font-family: Georgia, serif; font-size: 21px; font-style: italic; }

.posts { background: #0a0a0a; }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: end; margin-bottom: 55px; }
.section-heading h2, .about-copy h2, .principles h2, .closing h2 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(52px, 7vw, 98px);
  line-height: .95;
  letter-spacing: .015em;
  text-transform: uppercase;
}
.section-heading > p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.posts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.post-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: #111;
  transition: border-color .3s ease, transform .3s ease;
}
.post-card:hover { border-color: rgba(199,146,24,.72); transform: translateY(-4px); }
.post-card summary { display: grid; grid-template-columns: 43% 57%; min-height: 360px; cursor: pointer; list-style: none; }
.post-card summary::-webkit-details-marker { display: none; }
.post-image-wrap { position: relative; min-height: 360px; overflow: hidden; background: #161616; }
.post-image { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.post-card:hover .post-image { transform: scale(1.045); filter: contrast(1.05); }
.post-number {
  position: absolute;
  left: 15px;
  top: 15px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: var(--gold-bright);
  color: var(--black);
  font-family: Impact, sans-serif;
  font-size: 17px;
}
.post-info { display: flex; flex-direction: column; padding: 28px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 26px; color: #777; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.post-meta span { color: var(--gold-bright); }
.post-info h3 { margin: 0; font-family: Impact, "Arial Narrow", sans-serif; font-size: clamp(29px, 3vw, 46px); font-weight: 700; line-height: 1; text-transform: uppercase; }
.post-info > p:not(.post-meta) { margin: 18px 0 30px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.read-more { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.14); color: var(--gold-bright); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.read-more i { font-size: 20px; font-style: normal; transition: transform .3s ease; }
.read-close { display: none; }
.post-card[open] .read-open { display: none; }
.post-card[open] .read-close { display: inline; }
.post-card[open] .read-more i { transform: rotate(135deg); }
.post-body { padding: 32px clamp(24px, 4vw, 52px) 42px; border-top: 1px solid rgba(255,255,255,.12); animation: details-in .38s ease both; }
.post-body p { max-width: 770px; margin: 0 auto 17px; color: #d0cdc5; font-family: Georgia, serif; font-size: 17px; line-height: 1.75; }
.post-body .post-disclaimer { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); color: #777; font-family: Arial, sans-serif; font-size: 11px; }

.about { background: var(--paper-bright); color: var(--ink); }
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(45px, 7vw, 100px); align-items: center; }
.about-visual { position: relative; }
.about-visual::before { content: ""; position: absolute; inset: -14px 14px 14px -14px; border: 1px solid var(--gold); }
.about-visual img { position: relative; width: 100%; max-height: 820px; object-fit: cover; object-position: center top; filter: saturate(.78) contrast(1.05); }
.photo-caption { position: absolute; right: -26px; bottom: 50px; padding: 10px 14px; background: var(--gold); color: var(--black); font-size: 9px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; writing-mode: vertical-rl; }
.about-copy .eyebrow { margin-bottom: 24px; }
.about-copy h2 { max-width: 630px; }
.about-copy > p:not(.eyebrow) { color: #47443e; font-size: 15px; line-height: 1.75; }
.about-copy .about-lead { margin-top: 34px; color: var(--ink); font-family: Georgia, serif; font-size: clamp(19px, 2vw, 26px); line-height: 1.5; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 46px; border-block: 1px solid #c9c3b5; }
.about-stats div { display: flex; flex-direction: column; padding: 20px 14px 20px 0; }
.about-stats strong { color: var(--gold); font-family: Impact, sans-serif; font-size: 42px; line-height: 1; }
.about-stats span { margin-top: 7px; color: #555148; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.timeline { position: relative; overflow: hidden; background: #0b0b0b; }
.timeline::before { content: "30"; position: absolute; right: -3vw; top: 0; color: rgba(199,146,24,.045); font-family: Impact, sans-serif; font-size: 39vw; line-height: .8; pointer-events: none; }
.inverse { position: relative; }
.timeline-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid rgba(255,255,255,.15); }
.timeline-item { padding: 31px 25px 10px 0; border-right: 1px solid rgba(255,255,255,.12); }
.timeline-item + .timeline-item { padding-left: 25px; }
.timeline-item:last-child { border-right: 0; }
.timeline-item > span { display: block; margin-bottom: 45px; color: var(--gold-bright); font-family: Impact, sans-serif; font-size: 25px; }
.timeline-item h3 { margin: 0 0 14px; font-family: Impact, "Arial Narrow", sans-serif; font-size: 28px; letter-spacing: .03em; text-transform: uppercase; }
.timeline-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.principles { background: var(--paper); color: var(--ink); }
.principles-intro { display: grid; grid-template-columns: .55fr 2.45fr; gap: 40px; }
.principles-intro h2 { max-width: 980px; }
.principles-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 80px; border-block: 1px solid #bdb7a8; }
.principles-grid article { min-height: 270px; padding: 27px 34px 35px 0; border-right: 1px solid #bdb7a8; }
.principles-grid article + article { padding-left: 34px; }
.principles-grid article:last-child { border-right: 0; }
.principles-grid span { color: var(--gold); font-family: Impact, sans-serif; font-size: 18px; }
.principles-grid h3 { margin: 52px 0 12px; font-family: Impact, sans-serif; font-size: 37px; text-transform: uppercase; }
.principles-grid p { margin: 0; color: #555148; font-size: 14px; line-height: 1.65; }

.closing { position: relative; min-height: 680px; display: flex; align-items: center; padding: 100px clamp(24px, 7vw, 130px); overflow: hidden; }
.closing-image { position: absolute; inset: 0; background-image: linear-gradient(90deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.72) 44%, rgba(0,0,0,.18) 80%), url("assets/hero.webp"); background-size: cover; background-position: center; filter: grayscale(.25); }
.closing-content { position: relative; max-width: 740px; }
.closing h2 { font-size: clamp(65px, 10vw, 145px); }
.closing-content > p:not(.eyebrow) { max-width: 600px; margin: 25px 0 34px; color: #c0bdb5; font-family: Georgia, serif; font-size: 18px; line-height: 1.65; }

.footer { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 50px; align-items: center; padding: 45px clamp(24px, 5vw, 88px); border-top: 1px solid rgba(255,255,255,.12); background: #050505; }
.footer-brand { display: flex; flex-direction: column; }
.footer-brand small { margin-top: 6px; color: var(--gold-bright); font-size: 8px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.footer p { margin: 0; color: #777; font-size: 11px; line-height: 1.6; }
.footer > a { color: var(--gold-bright); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.js [data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.25,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes hero-arrive { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1); } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes bob { 0%,100% { transform: translateY(-3px); } 50% { transform: translateY(5px); } }
@keyframes details-in { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .site-header { height: 78px; }
  .menu-button { display: flex; width: 44px; height: 44px; flex-direction: column; gap: 7px; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.18); background: rgba(0,0,0,.45); color: white; }
  .menu-button span { width: 19px; height: 1px; background: currentColor; transition: transform .25s ease; }
  .nav { position: absolute; top: 78px; left: 0; right: 0; display: none; flex-direction: column; gap: 0; align-items: stretch; padding: 18px 24px 26px; border-bottom: 1px solid var(--line); background: rgba(6,6,6,.97); backdrop-filter: blur(18px); }
  .nav.is-open { display: flex; animation: details-in .25s ease both; }
  .nav a { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .hero { min-height: 830px; padding-bottom: 72px; }
  .hero-image { background-position: 52% center; }
  .scroll-cue { display: none; }
  .manifest-grid { grid-template-columns: 1fr; }
  .manifest blockquote { max-width: 820px; }
  .manifest-copy { max-width: 540px; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-card summary { grid-template-columns: 38% 62%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { width: min(660px, 100%); }
  .timeline-list { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { border-bottom: 1px solid rgba(255,255,255,.12); }
  .principles-intro { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr auto; }
  .footer p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 640px) {
  .section-shell { width: min(100% - 32px, 1240px); }
  .site-header { padding-inline: 16px; }
  .brand-main { font-size: 27px; }
  .brand-sub { font-size: 7px; }
  .hero { min-height: 760px; padding: 120px 18px 58px; align-items: flex-end; }
  .hero-image { inset: 0; background-image: linear-gradient(0deg, #050505 5%, rgba(0,0,0,.48) 55%, rgba(0,0,0,.35) 100%), url("assets/about.webp"); background-position: 67% top; }
  .hero-content { width: 100%; }
  .hero-kicker { margin-bottom: 30px; }
  .hero h1 {
    max-width: calc(100vw - 36px);
    font-size: clamp(48px, 17vw, 76px);
    line-height: .86;
    letter-spacing: -.01em;
    white-space: nowrap;
  }
  .hero h1 span { font-size: .38em; }
  .hero-lead { max-width: 94%; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 330px; }
  .button { width: 100%; }
  .ticker-track { font-size: 12px; }
  .section { padding: 82px 0; }
  .manifest-grid { gap: 38px; }
  .quote-mark { display: none; }
  .manifest blockquote { font-size: clamp(37px, 12vw, 55px); }
  .posts-grid { gap: 16px; }
  .post-card summary { grid-template-columns: 1fr; }
  .post-image-wrap { min-height: 300px; max-height: 440px; }
  .post-card-1 .post-image-wrap, .post-card-4 .post-image-wrap { max-height: 480px; }
  .post-info { padding: 24px; }
  .post-info h3 { font-size: 36px; }
  .post-body p { font-size: 16px; }
  .about-visual::before { inset: -8px 8px 8px -8px; }
  .photo-caption { right: -8px; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats div { border-bottom: 1px solid #c9c3b5; }
  .about-stats div:last-child { border-bottom: 0; }
  .timeline-list { grid-template-columns: 1fr; }
  .timeline-item, .timeline-item + .timeline-item { padding: 28px 0; border-right: 0; }
  .timeline-item > span { margin-bottom: 20px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principles-grid article, .principles-grid article + article { min-height: auto; padding: 28px 0; border-right: 0; border-bottom: 1px solid #bdb7a8; }
  .principles-grid article:last-child { border-bottom: 0; }
  .principles-grid h3 { margin-top: 28px; }
  .closing { min-height: 640px; padding-inline: 18px; }
  .closing-image { background-position: 55% center; }
  .footer { grid-template-columns: 1fr; gap: 26px; padding-inline: 18px; }
  .footer p { grid-column: auto; grid-row: auto; }
}

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