@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --forest: #17372f;
  --forest-mid: #0f2c24;
  --forest-deep: #0b1b12;
  --logo-deep: #07160e;
  --sage: #6a7b63;
  --charcoal: #242725;
  --ivory: #f4f0e6;
  --ivory-2: #e9e1d2;
  --brass: #a88952;
  --brass-light: #d8bd79;
  --white: #fffdf8;
  --muted: #59625d;
  --border: rgba(23, 55, 47, .14);
  --shadow: 0 24px 80px rgba(8, 31, 26, .14);
  --radius: 18px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; color: var(--charcoal); background: var(--ivory); font-family: var(--sans); font-size: 16px; line-height: 1.66; }
a { color: inherit; }
img, svg { max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; transform: translateY(-150%); border-radius: 6px; background: var(--white); color: var(--forest); padding: 10px 14px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(216, 189, 121, .22); background: rgba(11, 27, 18, .96); backdrop-filter: blur(14px); }
.nav { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; color: var(--ivory); text-decoration: none; }
.brand-logo-shell { display: grid; place-items: center; width: 66px; height: 66px; border-radius: 9px; background: var(--logo-deep); overflow: hidden; }
.brand img { display: block; width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font: 500 1.25rem var(--serif); letter-spacing: .08em; text-transform: uppercase; }
.brand-copy small { margin-top: 7px; color: var(--brass-light); font-size: .72rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 24px; color: var(--ivory); font-size: .76rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.nav-links a { text-decoration: none; opacity: .88; }
.nav-links a:hover, .nav-links a:focus { color: var(--brass-light); opacity: 1; }
.nav-links .nav-cta { border: 1px solid rgba(216,189,121,.52); border-radius: 999px; padding: 10px 15px; color: var(--brass-light); }
.nav-toggle { display: none; border: 1px solid rgba(244, 240, 230, .35); border-radius: 999px; background: transparent; color: var(--ivory); padding: 9px 14px; font: 600 .76rem var(--sans); letter-spacing: .08em; text-transform: uppercase; }

section { padding: 100px 0; }
.hero { position: relative; overflow: hidden; min-height: 700px; background: radial-gradient(circle at 82% 34%, rgba(106,123,99,.28), transparent 32%), linear-gradient(125deg, var(--forest-deep), var(--forest)); color: var(--ivory); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(to left, black, transparent 72%); }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 66px; min-height: 700px; padding: 82px 0 76px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 21px; color: var(--brass-light); font-size: .78rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::before { content: ""; flex: 0 0 38px; height: 1px; background: var(--brass); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h1 { max-width: 780px; margin: 0 0 27px; font-size: clamp(3.25rem, 6.2vw, 6rem); letter-spacing: -.035em; }
h1 em { color: var(--brass-light); font-weight: 500; }
.hero-lead { max-width: 690px; margin: 0 0 34px; color: rgba(244,240,230,.86); font-size: clamp(1.06rem, 1.5vw, 1.22rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; border: 1px solid transparent; border-radius: 999px; padding: 0 24px; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: .2s ease; }
.btn-primary { background: var(--brass); color: #fff; }
.btn-primary:hover, .btn-primary:focus { background: var(--brass-light); color: var(--forest-deep); transform: translateY(-2px); }
.btn-secondary { border-color: rgba(244,240,230,.38); color: var(--ivory); }
.btn-secondary:hover, .btn-secondary:focus { border-color: var(--brass-light); color: var(--brass-light); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 26px; color: rgba(244,240,230,.67); font-size: .78rem; font-weight: 600; }
.hero-points span { display: inline-flex; align-items: center; gap: 8px; }
.hero-points span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--brass-light); }

.logo-stage { display: grid; place-items: center; background: radial-gradient(circle at 50% 44%, var(--logo-deep) 0 54%, #0a2017 72%, var(--forest) 100%); }
.logo-stage img { display: block; width: 100%; border-radius: 17px; }
.hero-logo-stage { width: min(520px, 100%); justify-self: end; border: 1px solid rgba(216,189,121,.28); border-radius: 30px; padding: clamp(20px, 3.3vw, 38px); box-shadow: 0 32px 95px rgba(0,0,0,.3); }

.section-head { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: end; margin-bottom: 54px; }
.section-head.compact { grid-template-columns: 1fr 1fr; }
.section-head > p { margin: 0 0 5px; color: var(--muted); font-size: 1.05rem; }
.section-head.light > p { color: rgba(244,240,230,.74); }
.kicker { margin: 0 0 12px; color: var(--brass); font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
h2 { margin: 0; color: var(--forest); font-size: clamp(2.35rem, 4.1vw, 4.1rem); letter-spacing: -.025em; }

.opportunity { background: var(--white); }
.opportunity-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); border-radius: 22px; overflow: hidden; box-shadow: 0 14px 45px rgba(23,55,47,.06); }
.opportunity-grid article { min-height: 230px; border-right: 1px solid var(--border); background: var(--white); padding: 34px; }
.opportunity-grid article:last-child { border-right: 0; }
.opportunity-grid article.accent { background: var(--forest); color: var(--ivory); }
.opportunity-grid .number { color: var(--brass); font: 500 1.7rem var(--serif); }
.opportunity-grid h3 { margin: 24px 0 11px; color: var(--forest); font-size: 1.45rem; }
.opportunity-grid .accent h3 { color: var(--ivory); }
.opportunity-grid p { margin: 0; color: #606863; font-size: .94rem; }
.opportunity-grid .accent p { color: rgba(244,240,230,.72); }

.systems { background: var(--ivory); }
.systems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.system-card { min-height: 280px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); padding: 31px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.system-card:hover { transform: translateY(-3px); border-color: rgba(168,137,82,.55); box-shadow: 0 16px 40px rgba(23,55,47,.08); }
.system-label { display: inline-block; color: var(--brass); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.system-card h3 { margin: 17px 0 12px; color: var(--forest); font-size: 1.45rem; }
.system-card p { margin: 0; color: #59615c; font-size: .91rem; }
.systems-note { display: grid; grid-template-columns: .35fr 1.65fr; gap: 28px; margin-top: 22px; border-left: 4px solid var(--brass); background: var(--forest); color: var(--ivory); padding: 25px 28px; }
.systems-note strong { font-family: var(--serif); font-size: 1.18rem; }
.systems-note span { color: rgba(244,240,230,.74); font-size: .9rem; }

.approach { background: var(--forest); color: var(--ivory); }
.approach h2 { color: var(--ivory); }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; border: 1px solid rgba(216,189,121,.22); background: rgba(216,189,121,.22); }
.method-step { min-height: 245px; background: var(--forest); padding: 32px; }
.method-step > span { color: var(--brass-light); font: 500 2rem var(--serif); }
.method-step h3 { margin: 10px 0 13px; font-size: 1.4rem; }
.method-step p { margin: 0; color: rgba(244,240,230,.7); font-size: .89rem; }

.pilot { background: var(--white); }
.pilot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; }
.pilot-copy h2 { margin-bottom: 25px; }
.pilot-copy > p { color: #59615c; }
.pilot-emphasis { border-left: 3px solid var(--brass); padding-left: 18px; color: var(--forest) !important; font-weight: 600; }
.clean-list { margin: 28px 0; padding: 0; list-style: none; }
.clean-list li { position: relative; margin: 13px 0; padding-left: 29px; }
.clean-list li::before { content: ""; position: absolute; left: 0; top: .62em; width: 12px; height: 6px; border-left: 2px solid var(--brass); border-bottom: 2px solid var(--brass); transform: rotate(-45deg); }
.pilot-panel { position: relative; border-radius: 24px; background: var(--forest-deep); color: var(--ivory); padding: 48px; box-shadow: var(--shadow); }
.pilot-panel::before { content: ""; position: absolute; top: 24px; left: 24px; right: 24px; height: 1px; background: linear-gradient(90deg, var(--brass), transparent); }
.pilot-panel h3 { margin: 10px 0 20px; font-size: 2rem; }
.timeline { display: grid; gap: 20px; margin-top: 30px; }
.timeline-row { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.timeline-row b { display: grid; place-items: center; width: 29px; height: 29px; border: 1px solid var(--brass); border-radius: 50%; color: var(--brass-light); font-size: .74rem; }
.timeline-row strong { display: block; font-size: .92rem; }
.timeline-row span { display: block; margin-top: 2px; color: rgba(244,240,230,.64); font-size: .81rem; }

.fit { background: var(--ivory-2); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.fit-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); padding: 40px; }
.fit-card.featured { background: #ded5c5; }
.fit-card h3 { margin: 0 0 20px; color: var(--forest); font-size: 1.55rem; }
.fit-card .clean-list { margin-bottom: 0; }

.expectations { background: var(--charcoal); color: var(--ivory); }
.expectations h2 { color: var(--ivory); }
.expectations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 52px; }
.expectations-grid article { border-top: 1px solid var(--brass); padding-top: 22px; }
.expectations-grid h3 { margin: 0 0 10px; font-size: 1.25rem; }
.expectations-grid p { margin: 0; color: rgba(244,240,230,.68); font-size: .88rem; }

.founder { background: var(--white); }
.founder-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 76px; align-items: center; }
.founder-visual { position: relative; display: grid; align-content: center; min-height: 545px; border-radius: 26px; background: linear-gradient(145deg, var(--forest), var(--forest-deep)); box-shadow: var(--shadow); padding: 34px; overflow: hidden; }
.founder-logo-stage { width: 100%; border-radius: 22px; padding: 26px; }
.founder-visual-caption { display: grid; gap: 3px; margin-top: 22px; color: var(--ivory); }
.founder-visual-caption strong { font-family: var(--serif); font-size: 1.28rem; }
.founder-visual-caption span { color: rgba(244,240,230,.63); font-size: .72rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.founder-copy h2 { margin-bottom: 24px; }
.founder-copy p { color: #555e58; }
.signature { margin-top: 31px; color: var(--forest) !important; font: italic 500 1.46rem var(--serif); }
.signature span { margin-left: 8px; color: var(--brass); font: 600 .68rem var(--sans); letter-spacing: .12em; text-transform: uppercase; }

.faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; }
.faq-list details { border-top: 1px solid rgba(23,55,47,.2); padding: 21px 0; }
.faq-list details:last-child { border-bottom: 1px solid rgba(23,55,47,.2); }
.faq-list summary { cursor: pointer; color: var(--forest); font-weight: 650; }
.faq-list summary::marker { color: var(--brass); }
.faq-list p { margin: 13px 0 2px; color: #59625d; font-size: .91rem; }

.contact { background: var(--forest); color: var(--ivory); }
.contact-compact { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.contact h2 { color: var(--ivory); }
.contact-copy > p { color: rgba(244,240,230,.72); }
.contact-card { border: 1px solid rgba(216,189,121,.36); border-radius: 22px; background: rgba(11,27,18,.52); padding: 42px; box-shadow: 0 24px 70px rgba(0,0,0,.18); }
.contact-card .eyebrow { margin-bottom: 18px; }
.contact-card h3 { margin: 0 0 9px; font-size: 2rem; }
.contact-card > p { margin: 0 0 20px; color: rgba(244,240,230,.72); }
.contact-card .contact-email { display: block; margin: 24px 0 11px; color: var(--brass-light); font-size: clamp(1rem, 2.2vw, 1.35rem); overflow-wrap: anywhere; text-decoration: none; }
.contact-card .contact-location { margin: 0 0 28px; color: rgba(244,240,230,.59); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }

footer { background: var(--forest-deep); color: rgba(244,240,230,.68); padding: 38px 0; }
.footer-grid { display: flex; justify-content: space-between; gap: 28px; align-items: flex-end; }
.footer-logo-shell { display: block; width: 112px; max-width: 40vw; border-radius: 9px; background: var(--logo-deep); overflow: hidden; }
.footer-logo-shell img { display: block; width: 100%; }
.footer-brand p { margin: 9px 0 0; font-size: .74rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; font-size: .76rem; }
.footer-links a { text-decoration: none; }

.policy-page { background: var(--white); }
.policy-page .site-header .nav { justify-content: flex-start; }
.policy-hero { padding: 72px 0 42px; background: var(--forest); color: var(--ivory); }
.policy-hero h1 { max-width: 900px; font-size: clamp(2.7rem, 5vw, 4.6rem); }
.policy-meta { color: rgba(244,240,230,.66); font-size: .84rem; }
.policy-content { width: min(820px, calc(100% - 40px)); margin: 0 auto; padding: 70px 0 110px; }
.policy-content h2 { margin: 48px 0 18px; font-size: 2rem; }
.policy-content h3 { color: var(--forest); font-size: 1.2rem; margin-top: 30px; }
.policy-content p, .policy-content li { color: #535b56; }

@media (max-width: 1030px) {
  .nav-links { gap: 16px; font-size: .7rem; }
  .brand-copy { display: none; }
  .hero-grid { gap: 40px; }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .expectations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links { display: none; position: absolute; top: 87px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--forest-deep); padding: 14px 26px 26px; box-shadow: 0 24px 50px rgba(0,0,0,.25); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 3px; }
  .nav-links .nav-cta { margin-top: 8px; text-align: center; }
  .nav-toggle { display: block; }
  .hero-grid, .pilot-grid, .founder-grid, .contact-compact { grid-template-columns: 1fr; }
  .hero-grid { gap: 12px; }
  .hero-logo-stage { width: min(540px, 100%); justify-self: center; margin-top: 28px; }
  .section-head, .section-head.compact, .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .opportunity-grid { grid-template-columns: 1fr; }
  .opportunity-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid var(--border); }
  .opportunity-grid article:last-child { border-bottom: 0; }
  .founder-visual { min-height: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  section { padding: 76px 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.15rem); }
  .hero-grid { min-height: 0; padding: 64px 0 68px; }
  .button-row { align-items: stretch; }
  .button-row .btn { width: 100%; }
  .hero-points { display: grid; }
  .systems-grid, .method-steps, .fit-grid, .expectations-grid { grid-template-columns: 1fr; }
  .system-card { min-height: 0; }
  .systems-note { grid-template-columns: 1fr; gap: 8px; }
  .pilot-panel, .fit-card, .contact-card { padding: 30px; }
  .founder-visual { padding: 20px; }
  .founder-logo-stage { padding: 16px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
