:root {
  --ink: #11130f;
  --deep: #171913;
  --deep-2: #20231b;
  --olive: #5f6952;
  --olive-dark: #3d4536;
  --cream: #f1eadc;
  --paper: #e8e0d2;
  --copper: #c9854b;
  --copper-bright: #e7a260;
  --line: rgba(29, 31, 24, 0.17);
  --muted: #625f57;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  overflow-x: hidden;
}
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: flex; flex-direction: column; line-height: .78; letter-spacing: .04em; }
.brand strong { font-size: 25px; font-weight: 900; }
.brand span { font-size: 11px; letter-spacing: .55em; margin-top: 8px; padding-left: 2px; }
.site-header .brand { color: var(--cream); }
nav { display: flex; align-items: center; gap: 36px; color: rgba(241,234,220,.72); font-size: 13px; }
nav a { transition: color .2s ease; }
nav a:hover { color: var(--cream); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .035em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button span { font-size: 17px; }
.button-small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.button-outline { border-color: rgba(241,234,220,.45); color: var(--cream); }
.button-outline:hover { border-color: var(--copper-bright); color: var(--copper-bright); }
.button-primary { background: var(--copper); color: #17130e; box-shadow: 0 10px 40px rgba(201,133,75,.2); }
.button-primary:hover { background: var(--copper-bright); }

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 86px;
  background:
    radial-gradient(circle at 82% 16%, rgba(109,123,89,.25), transparent 34%),
    linear-gradient(115deg, #11130f 0%, #1c1f18 60%, #25271e 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to right, black, transparent 74%);
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.hero-grid { position: relative; z-index: 2; min-height: 650px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 50px; }
.hero-copy { padding: 76px 0 48px; }
.eyebrow, .section-tag { display: flex; align-items: center; gap: 10px; margin: 0 0 28px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 800; }
.eyebrow { color: var(--copper-bright); }
.eyebrow > span { width: 34px; height: 1px; background: currentColor; }
.hero h1, .section h2, .final-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: .98;
}
.hero h1 { max-width: 730px; font-size: clamp(48px, 5.3vw, 78px); }
h1 em, h2 em { color: var(--copper-bright); font-weight: 400; }
.hero-lead { max-width: 620px; margin: 30px 0 0; color: rgba(241,234,220,.72); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 35px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: rgba(241,234,220,.68); font-size: 13px; border-bottom: 1px solid rgba(241,234,220,.25); padding-bottom: 5px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 650px; margin-top: 50px; border-top: 1px solid rgba(255,255,255,.15); padding-top: 24px; }
.hero-proof > div { display: flex; align-items: center; gap: 11px; border-right: 1px solid rgba(255,255,255,.12); padding-right: 14px; }
.hero-proof > div + div { padding-left: 20px; }
.hero-proof > div:last-child { border: 0; }
.hero-proof strong { color: var(--copper-bright); font-family: Georgia, serif; font-size: 26px; font-weight: 400; }
.hero-proof span { color: rgba(241,234,220,.56); font-size: 10px; line-height: 1.45; }
.hero-visual { position: relative; align-self: stretch; min-height: 650px; }
.photo-frame { position: absolute; z-index: 3; right: 0; bottom: 0; width: min(480px, 100%); }
.photo-frame::before { content: ""; position: absolute; z-index: -1; inset: -16px 16px 28px -16px; border: 1px solid rgba(201,133,75,.45); }
.photo-frame img { width: 100%; aspect-ratio: .88; object-fit: cover; object-position: center 35%; filter: saturate(.78) contrast(1.04); }
.photo-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,14,11,.86), transparent 42%); pointer-events: none; }
.photo-caption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; display: flex; align-items: end; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.35); padding-top: 12px; }
.photo-caption span { font-family: Georgia, serif; font-size: 20px; }
.photo-caption small { color: rgba(255,255,255,.64); font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.orbit { position: absolute; border: 1px solid rgba(201,133,75,.22); border-radius: 50%; }
.orbit-one { width: 520px; height: 520px; right: -190px; top: 45px; }
.orbit-two { width: 380px; height: 380px; right: -118px; top: 115px; }
.sound-bars { position: absolute; z-index: 4; left: -28px; top: 170px; height: 105px; display: flex; align-items: center; gap: 4px; }
.sound-bars i { width: 2px; background: var(--copper-bright); opacity: .75; }
.marquee { position: relative; z-index: 6; height: 84px; display: flex; align-items: center; overflow: hidden; border-top: 1px solid rgba(255,255,255,.12); background: rgba(10,11,9,.7); }
.marquee div { white-space: nowrap; color: rgba(241,234,220,.33); font-family: Georgia, serif; font-size: 16px; letter-spacing: .12em; word-spacing: 15px; animation: drift 30s linear infinite; }
.marquee span { color: var(--copper); }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(-25%); } }

.section { padding: 120px 0; }
.section-light { background: var(--cream); }
.section-dark { background: var(--deep); color: var(--cream); }
.section-olive { background: var(--olive-dark); color: var(--cream); }
.section-tag { color: var(--olive); }
.section-tag.light { color: var(--copper-bright); }
.section h2 { font-size: clamp(40px, 4.6vw, 64px); }
.split-heading { display: grid; grid-template-columns: .72fr 1.55fr; gap: 70px; }
.split-heading > div > p { max-width: 750px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.split-heading > div > p:first-of-type { margin-top: 36px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 78px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pain-grid article { padding: 34px 36px 40px 0; }
.pain-grid article + article { border-left: 1px solid var(--line); padding-left: 36px; }
.pain-grid span, .pillar > span { color: var(--copper); font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.pain-grid h3 { margin: 36px 0 18px; font-family: Georgia, serif; font-size: 28px; font-weight: 400; line-height: 1.1; }
.pain-grid p, .pillar p { color: var(--muted); font-size: 14px; line-height: 1.75; }

.section-header { display: grid; grid-template-columns: 1.55fr .65fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.section-header > p { margin: 0; color: rgba(241,234,220,.58); font-size: 15px; line-height: 1.8; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.pillar { min-height: 290px; padding: 30px; border-right: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); transition: background .25s ease, transform .25s ease; }
.pillar:hover { background: rgba(255,255,255,.035); transform: translateY(-3px); }
.pillar h3 { margin: 42px 0 17px; font-family: Georgia, serif; font-weight: 400; font-size: 26px; }
.pillar p { color: rgba(241,234,220,.53); }
.center-action { display: flex; justify-content: center; margin-top: 52px; }

.process { background: var(--paper); }
.process-title { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.process-title .section-tag { margin: 0 0 10px; }
.process-title h2 { font-size: clamp(42px, 5vw, 68px); }
.process-line { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-line::before { content: ""; position: absolute; left: 0; right: 0; top: 20px; height: 1px; background: var(--line); }
.process-line article { position: relative; }
.process-line b { position: relative; z-index: 2; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--copper); border-radius: 50%; background: var(--paper); color: var(--copper); font-size: 10px; }
.process-line h3 { margin: 32px 0 13px; font-family: Georgia, serif; font-size: 25px; font-weight: 400; }
.process-line p { color: var(--muted); font-size: 14px; line-height: 1.7; }

.fit-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 100px; }
.fit-intro { max-width: 500px; margin-top: 34px; color: rgba(241,234,220,.64); line-height: 1.8; }
.fit-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.18); }
.fit-list li { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.fit-list span { color: var(--copper-bright); font-size: 10px; }
.fit-list p { margin: 0; color: rgba(241,234,220,.82); font-size: 16px; line-height: 1.45; }

.about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 100px; align-items: center; }
.about-photo-wrap { position: relative; }
.about-photo-wrap::before { content: ""; position: absolute; inset: 28px -20px -20px 24px; border: 1px solid rgba(201,133,75,.55); }
.about-photo-wrap img { position: relative; z-index: 2; width: 100%; aspect-ratio: .88; object-fit: cover; filter: saturate(.72); }
.about-stamp { position: absolute; z-index: 3; right: -60px; bottom: 42px; width: 120px; height: 120px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--copper); color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .14em; line-height: 1.8; transform: rotate(-12deg); }
.about-copy h2 { font-size: clamp(48px, 5vw, 72px); }
.about-role { color: var(--olive); font-family: Georgia, serif; font-size: 22px; line-height: 1.4; }
.about-copy > p:not(.section-tag):not(.about-role) { color: var(--muted); font-size: 16px; line-height: 1.8; }
blockquote { margin: 34px 0; padding: 22px 0 22px 24px; border-left: 2px solid var(--copper); font-family: Georgia, serif; font-size: 20px; line-height: 1.55; }
.credentials { display: flex; flex-wrap: wrap; gap: 8px; }
.credentials span { padding: 9px 13px; border: 1px solid var(--line); color: var(--olive-dark); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.manifesto { background: #2b3026; color: var(--cream); text-align: center; }
.manifesto-inner { max-width: 900px; }
.manifesto .section-tag { justify-content: center; }
.manifesto p:not(.section-tag) { max-width: 700px; margin: 30px auto 36px; color: rgba(241,234,220,.64); font-size: 17px; line-height: 1.8; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; display: grid; grid-template-columns: 38px 1fr 24px; gap: 12px; align-items: center; min-height: 76px; cursor: pointer; font-family: Georgia, serif; font-size: 19px; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--copper); font-family: var(--font-geist-sans); font-size: 10px; }
summary b { font-family: Arial, sans-serif; font-weight: 300; font-size: 23px; transition: transform .2s ease; }
details[open] summary b { transform: rotate(45deg); }
details > p { margin: -4px 40px 24px 50px; color: var(--muted); font-size: 14px; line-height: 1.75; }

.final-cta { position: relative; overflow: hidden; padding: 125px 0; background: var(--deep); color: var(--cream); text-align: center; }
.final-cta::before { content: ""; position: absolute; width: 700px; height: 700px; border: 1px solid rgba(201,133,75,.14); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.final-cta::after { content: ""; position: absolute; width: 470px; height: 470px; border: 1px solid rgba(201,133,75,.1); border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-50%); }
.final-cta-inner { position: relative; z-index: 2; }
.final-cta .eyebrow { justify-content: center; }
.final-cta h2 { font-size: clamp(45px, 5.5vw, 76px); }
.final-cta p:not(.eyebrow) { max-width: 650px; margin: 28px auto 36px; color: rgba(241,234,220,.62); font-size: 16px; line-height: 1.7; }
.sound-bars.large { left: 50%; top: -80px; transform: translateX(-50%); opacity: .25; }

footer { background: #0d0f0c; color: var(--cream); padding: 48px 0; border-top: 1px solid rgba(255,255,255,.1); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; }
.footer-inner > p { margin: 0; color: rgba(241,234,220,.46); font-size: 12px; line-height: 1.7; text-align: center; }
.footer-inner > div { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.footer-inner a:not(.brand) { color: var(--copper-bright); font-size: 12px; }
.footer-inner small { color: rgba(241,234,220,.35); font-size: 9px; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero { min-height: 0; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-copy { padding-bottom: 20px; }
  .hero-visual { min-height: 580px; width: min(560px, 100%); margin: 0 auto; }
  .photo-frame { left: 50%; right: auto; transform: translateX(-50%); }
  .sound-bars { left: 0; }
  .split-heading, .section-header, .fit-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; gap: 45px; }
  .pain-grid, .pillars { grid-template-columns: repeat(2, 1fr); }
  .process-title { display: block; }
  .process-line { grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .process-line::before { display: none; }
  .about-photo-wrap { max-width: 560px; margin: 0 auto; }
  .about-stamp { right: -20px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 30px, 1180px); }
  .nav { height: 72px; }
  .site-header .button-small { display: none; }
  .hero { padding-top: 72px; }
  .hero-grid { gap: 12px; }
  .hero-copy { padding-top: 48px; }
  .hero h1 { font-size: 44px; line-height: 1.02; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .text-link { width: fit-content; }
  .hero-proof { grid-template-columns: 1fr; gap: 14px; }
  .hero-proof > div, .hero-proof > div + div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding: 0 0 14px; }
  .hero-visual { min-height: 445px; }
  .photo-frame { width: calc(100% - 14px); }
  .photo-frame img { aspect-ratio: .98; }
  .photo-caption { display: block; }
  .photo-caption small { display: block; margin-top: 5px; }
  .orbit { display: none; }
  .marquee { height: 62px; }
  .section { padding: 82px 0; }
  .section h2 { font-size: 42px; }
  .split-heading { gap: 20px; }
  .pain-grid, .pillars { grid-template-columns: 1fr; }
  .pain-grid article, .pain-grid article + article { border-left: 0; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .section-header { gap: 30px; margin-bottom: 50px; }
  .pillar { min-height: 250px; }
  .process-line { grid-template-columns: 1fr; }
  .fit-list li { grid-template-columns: 36px 1fr; }
  .about-grid { gap: 65px; }
  .about-stamp { width: 92px; height: 92px; right: -5px; bottom: -28px; font-size: 7px; }
  .manifesto h2, .final-cta h2 { font-size: 43px; }
  .faq-grid { gap: 40px; }
  summary { font-size: 17px; min-height: 70px; }
  details > p { margin-left: 50px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-inner .brand { align-items: center; }
  .footer-inner > div { align-items: center; }
}

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