@layer reset, base, components, pages, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, p, figure, blockquote, dl, dd { margin: 0; }
  ul, ol { margin: 0; padding: 0; }
  img, picture { display: block; max-width: 100%; }
  button, input, textarea, select { font: inherit; }
  button { color: inherit; }
  a { color: inherit; text-decoration: none; }
}

@layer base {
  :root {
    --ink: #0b1611;
    --muted: #5f685f;
    --cream: #faf8f1;
    --paper: #fffef9;
    --sand: #ede7d9;
    --sand-2: #e4dccb;
    --forest: #0c3223;
    --forest-deep: #071e16;
    --green: #176840;
    --green-light: #70a75a;
    --gold: #d4a816;
    --gold-light: #f0d46f;
    --line: rgba(11, 22, 17, .16);
    --line-light: rgba(255, 255, 255, .18);
    --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, "Times New Roman", serif;
    --sans: Inter, "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
    --shell: min(91vw, 1420px);
    --header: 88px;
    --ease: cubic-bezier(.2, .72, .2, 1);
  }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  ::selection { background: var(--gold); color: var(--forest-deep); }
  :focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
  h1, h2, h3 { line-height: .98; font-weight: 500; letter-spacing: -.045em; }
  h1 em, h2 em { color: var(--green); font-family: var(--serif); font-weight: 400; }
  .section-dark h1 em, .section-dark h2 em, .site-footer h2 em { color: var(--gold-light); }
  p { color: var(--muted); }
  .lead { color: var(--ink); font-size: clamp(1.15rem, 1.7vw, 1.55rem); line-height: 1.45; letter-spacing: -.02em; }
  .section-dark .lead { color: rgba(255, 255, 255, .9); }
  .shell { width: var(--shell); margin-inline: auto; }
  .section { padding-block: clamp(90px, 10vw, 168px); position: relative; }
  .section-dark { background: var(--forest-deep); color: #fff; }
  .section-dark p { color: rgba(255, 255, 255, .66); }
  .section-sand { background: var(--sand); }
  .section-gold { background: var(--gold); }
  .section-gold p { color: rgba(7, 30, 22, .72); }
  .sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  .skip-link {
    position: fixed; z-index: 9999; left: 20px; top: 14px; padding: 12px 18px;
    background: var(--gold); color: var(--forest-deep); transform: translateY(-140%);
    transition: transform .2s ease;
  }
  .skip-link:focus { transform: translateY(0); }
}

@layer components {
  .scroll-progress { position: fixed; inset: 0 0 auto; z-index: 300; height: 3px; pointer-events: none; }
  .scroll-progress span { display: block; width: 100%; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }

  .site-header {
    position: fixed; z-index: 200; inset: 0 0 auto; color: #fff;
    transition: color .4s var(--ease), background .4s var(--ease), transform .4s var(--ease);
  }
  .site-header::after {
    content: ""; position: absolute; inset: auto 0 0; height: 1px;
    background: rgba(255, 255, 255, .18); transition: background .4s var(--ease);
  }
  .header-shell {
    width: var(--shell); height: var(--header); margin-inline: auto; display: flex; align-items: center; gap: 42px;
  }
  .site-header.is-scrolled { color: var(--ink); background: rgba(250, 248, 241, .92); backdrop-filter: blur(18px); }
  .site-header.is-scrolled::after { background: var(--line); }
  .brand-lockup { display: flex; align-items: center; gap: 12px; margin-right: auto; min-width: 180px; }
  .brand-lockup img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: #fff; box-shadow: 0 0 0 1px rgba(255,255,255,.25); }
  .brand-name { display: grid; line-height: 1; text-transform: uppercase; }
  .brand-name strong { font-size: .96rem; letter-spacing: .12em; }
  .brand-name small { margin-top: 7px; font-size: .58rem; letter-spacing: .18em; opacity: .68; }
  .desktop-nav { display: flex; align-items: center; gap: 30px; }
  .desktop-nav a { position: relative; font-size: .76rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
  .desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -9px; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
  .desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
  .header-cta { display: flex; align-items: center; gap: 24px; border: 1px solid rgba(255,255,255,.38); padding: 11px 15px 11px 18px; font-size: .72rem; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; transition: background .3s ease, color .3s ease, border .3s ease, transform .2s ease; }
  .site-header.is-scrolled .header-cta { border-color: var(--line); }
  .header-cta:hover { background: var(--gold); color: var(--forest-deep); border-color: var(--gold); }
  .header-cta b { font-size: 1rem; }
  .menu-toggle { display: none; width: 46px; height: 46px; background: transparent; border: 1px solid currentColor; align-items: center; justify-content: center; flex-direction: column; gap: 7px; cursor: pointer; }
  .menu-toggle i { width: 19px; height: 1px; background: currentColor; transition: transform .3s var(--ease); }
  .menu-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu { display: none; }

  .button { min-height: 56px; display: inline-flex; align-items: center; justify-content: space-between; gap: 34px; padding: 14px 18px 14px 22px; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: background .3s ease, color .3s ease, border .3s ease, transform .2s ease; }
  .button b { font-size: 1.1rem; }
  .button-gold { background: var(--gold); color: var(--forest-deep); border: 1px solid var(--gold); }
  .button-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
  .button-ghost { border: 1px solid rgba(255,255,255,.45); color: #fff; }
  .button-ghost:hover { background: #fff; color: var(--forest-deep); }
  .button-dark { color: #fff; background: var(--forest-deep); border: 1px solid var(--forest-deep); }
  .button-dark:hover { background: var(--green); border-color: var(--green); }
  .text-link { display: inline-flex; align-items: center; gap: 38px; margin-top: 30px; padding-bottom: 8px; border-bottom: 1px solid currentColor; color: var(--ink); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .text-link b { font-size: 1.05rem; transition: transform .25s ease; }
  .text-link:hover b { transform: translate(3px, -3px); }
  .text-link-light { color: #fff; }

  .eyebrow { color: var(--green); font-size: .72rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
  .eyebrow-light { color: var(--gold-light) !important; }
  .section-marker { margin-bottom: clamp(48px, 6vw, 88px); padding-top: 13px; border-top: 1px solid var(--line); color: rgba(11,22,17,.5); font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .section-marker-light { border-color: var(--line-light); color: rgba(255,255,255,.46); }
  .section-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(250px, .55fr); gap: 10vw; align-items: end; margin-bottom: clamp(56px, 8vw, 110px); }
  .section-heading h2 { max-width: 840px; margin-top: 18px; font-size: clamp(3rem, 5.4vw, 6.5rem); }
  .section-heading > p { max-width: 420px; }
  .section-heading-wide { grid-template-columns: minmax(0, 1.6fr) minmax(260px, .4fr); }

  [data-reveal] { opacity: 1; transform: none; }
  .js-ready [data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
  .js-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
}

@layer pages {
  .hero { position: relative; min-height: 100svh; overflow: hidden; background: var(--forest-deep); color: #fff; }
  .hero-media, .hero-shade, .hero-grid-lines { position: absolute; inset: 0; }
  .hero-media { transform: scale(1.02); }
  .hero-media img { width: 100%; height: 112%; object-fit: cover; object-position: center 46%; filter: saturate(1.08) contrast(1.03); }
  .hero-shade { background: linear-gradient(90deg, rgba(4,22,14,.9) 0%, rgba(4,22,14,.66) 43%, rgba(4,22,14,.13) 78%), linear-gradient(0deg, rgba(4,22,14,.72) 0%, transparent 42%); }
  .hero-grid-lines { opacity: .16; background-image: linear-gradient(to right, transparent calc(25% - .5px), #fff 25%, transparent calc(25% + .5px)), linear-gradient(to right, transparent calc(50% - .5px), #fff 50%, transparent calc(50% + .5px)), linear-gradient(to right, transparent calc(75% - .5px), #fff 75%, transparent calc(75% + .5px)); }
  .hero-content { position: relative; z-index: 2; min-height: 100svh; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(250px, .45fr); align-items: end; gap: 7vw; padding-top: calc(var(--header) + 70px); padding-bottom: 90px; }
  .hero-copy { max-width: 950px; }
  .hero-kicker { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.78); font-size: .7rem; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
  .hero-kicker span { width: 32px; height: 1px; background: var(--gold); }
  .hero h1 { max-width: 1000px; margin-top: 30px; font-size: clamp(4.5rem, 8.3vw, 9.6rem); }
  .hero h1 em { display: block; color: var(--gold-light); }
  .hero-deck { max-width: 670px; margin-top: 32px; color: rgba(255,255,255,.76); font-size: clamp(1.05rem, 1.45vw, 1.35rem); line-height: 1.55; }
  .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 42px; }
  .hero-facts { align-self: end; border-top: 1px solid rgba(255,255,255,.34); }
  .hero-facts div { display: grid; grid-template-columns: 105px 1fr; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .hero-facts strong { color: var(--gold-light); font-family: var(--serif); font-size: 1.75rem; font-weight: 400; letter-spacing: -.03em; }
  .hero-facts span { color: rgba(255,255,255,.72); font-size: .76rem; line-height: 1.4; }
  .scroll-cue { position: absolute; z-index: 3; right: 4.5vw; bottom: 30px; display: flex; align-items: center; gap: 15px; color: rgba(255,255,255,.65); font-size: .63rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: right bottom; }
  .scroll-cue i { width: 70px; height: 1px; background: rgba(255,255,255,.5); position: relative; overflow: hidden; }
  .scroll-cue i::after { content: ""; position: absolute; inset: 0; background: #fff; animation: scroll-line 2s ease-in-out infinite; }
  @keyframes scroll-line { 0% { transform: translateX(-100%); } 55%, 100% { transform: translateX(100%); } }

  .signal-strip { overflow: hidden; padding: 17px 0; background: var(--gold); color: var(--forest-deep); }
  .signal-track { width: max-content; display: flex; align-items: center; gap: 26px; animation: ticker 33s linear infinite; }
  .signal-track span { font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap; }
  .signal-track i { width: 5px; height: 5px; background: var(--forest-deep); border-radius: 50%; }
  @keyframes ticker { to { transform: translateX(-50%); } }

  .manifesto-copy { margin-left: 15%; }
  .manifesto-copy h2 { max-width: 1080px; margin-top: 18px; font-size: clamp(3.4rem, 6.2vw, 7.5rem); }
  .split-copy { display: grid; grid-template-columns: 1.1fr .8fr; gap: 10vw; margin-top: 58px; }
  .split-copy > div p { max-width: 480px; }
  .image-composition { min-height: 770px; margin-top: clamp(74px, 9vw, 130px); position: relative; }
  .image-composition figure { position: absolute; overflow: hidden; }
  .image-composition img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
  .image-composition figure:hover img { transform: scale(1.025); }
  .image-composition figcaption { position: absolute; left: 18px; bottom: 16px; padding: 7px 10px; background: rgba(7,30,22,.82); color: #fff; font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
  .image-large { inset: 0 23% 5% 0; }
  .image-small { width: 32%; height: 43%; right: 0; bottom: 0; border: 12px solid var(--cream); }
  .image-note { position: absolute; z-index: 2; right: 2%; top: 3%; width: 260px; padding: 30px; background: var(--gold); }
  .image-note span { font-family: var(--serif); font-size: 2rem; }
  .image-note p { margin-top: 38px; color: var(--forest-deep); line-height: 1.45; }

  .capability-list { border-top: 1px solid var(--line-light); }
  .capability-row { display: grid; grid-template-columns: 70px minmax(220px, .8fr) 1.1fr 40px; gap: 30px; align-items: center; min-height: 124px; border-bottom: 1px solid var(--line-light); transition: color .3s ease, padding .4s var(--ease); }
  .capability-row:hover { color: var(--gold-light); padding-inline: 14px; }
  .capability-row > span { color: rgba(255,255,255,.4); font-family: var(--serif); }
  .capability-row h3 { font-size: clamp(1.5rem, 2.7vw, 2.65rem); }
  .capability-row p { max-width: 520px; }
  .capability-row b { font-size: 1.4rem; font-weight: 400; }

  .presidential-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 8vw; align-items: center; }
  .presidential-copy h2 { margin-top: 18px; font-size: clamp(3.4rem, 5.8vw, 6.9rem); }
  .presidential-copy .lead { margin-top: 38px; }
  .presidential-copy > p:not(.eyebrow):not(.lead) { margin-top: 22px; max-width: 590px; }
  .presidential-image { position: relative; overflow: hidden; min-height: 700px; background: var(--forest); }
  .presidential-image > img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: 18% center; transition: transform 1.2s var(--ease); }
  .presidential-image:hover > img { transform: scale(1.03); }
  .image-stamp { position: absolute; left: 0; top: 0; width: 230px; padding: 22px 24px; background: var(--gold); color: var(--forest-deep); display: grid; }
  .image-stamp b { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
  .image-stamp small { margin-top: 6px; font-size: .65rem; }
  .image-action { position: absolute; right: 20px; bottom: 20px; padding: 11px 14px; background: rgba(7,30,22,.86); color: #fff; font-size: .67rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }

  .scale-intro { margin-left: 15%; }
  .scale-intro h2 { margin-top: 18px; font-size: clamp(3.5rem, 6.1vw, 7rem); }
  .scale-grid { display: grid; grid-template-columns: .95fr .7fr; grid-template-rows: auto auto; gap: 34px; margin-top: 85px; align-items: stretch; }
  .scale-photo { position: relative; min-height: 430px; overflow: hidden; }
  .scale-photo-tall { grid-row: 1 / 3; min-height: 900px; }
  .scale-photo img { width: 100%; height: 100%; object-fit: cover; }
  .scale-photo figcaption { position: absolute; left: 18px; bottom: 15px; color: #fff; padding: 6px 9px; background: rgba(7,30,22,.8); font-size: .62rem; text-transform: uppercase; letter-spacing: .08em; }
  .scale-numbers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(11,22,17,.14); }
  .scale-numbers div { padding: 34px 24px; background: var(--cream); }
  .scale-numbers strong { display: block; color: var(--green); font-family: var(--serif); font-size: clamp(2.1rem, 3.3vw, 4.1rem); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
  .scale-numbers span { display: block; min-height: 43px; margin-top: 20px; color: var(--ink); font-size: .72rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
  .scale-numbers p { margin-top: 15px; font-size: .82rem; line-height: 1.55; }
  .data-note { margin-top: 24px; font-size: .72rem; font-style: italic; }

  .precision-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: center; }
  .precision-visual { min-height: 780px; position: relative; overflow: hidden; }
  .precision-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .precision-ring { position: absolute; right: -58px; bottom: -58px; width: 220px; aspect-ratio: 1; border-radius: 50%; background: var(--gold); color: var(--forest-deep); display: grid; place-items: center; animation: rotate-ring 18s linear infinite; }
  .precision-ring span { width: 150px; text-align: center; font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
  @keyframes rotate-ring { to { transform: rotate(360deg); } }
  .precision-copy h2 { margin-top: 18px; font-size: clamp(3.2rem, 5.2vw, 6rem); }
  .precision-copy .lead { margin-top: 40px; }
  .precision-copy > p:not(.eyebrow):not(.lead) { margin-top: 22px; }

  .impact-callout-grid { display: grid; grid-template-columns: 1.1fr .75fr; gap: 10vw; align-items: end; }
  .impact-callout h2 { margin-top: 18px; font-size: clamp(3.3rem, 6vw, 7rem); }
  .impact-copy p + p { margin-top: 25px; }

  .interior-hero { min-height: min(88svh, 900px); position: relative; overflow: hidden; background: var(--forest-deep); color: #fff; }
  .interior-media, .interior-shade { position: absolute; inset: 0; }
  .interior-media img { width: 100%; height: 110%; object-fit: cover; }
  .interior-shade { background: linear-gradient(90deg, rgba(4,22,14,.9), rgba(4,22,14,.58) 52%, rgba(4,22,14,.12)), linear-gradient(0deg, rgba(4,22,14,.58), transparent 46%); }
  .interior-content { position: relative; z-index: 2; min-height: min(88svh, 900px); padding-top: calc(var(--header) + 90px); padding-bottom: 78px; display: flex; flex-direction: column; justify-content: flex-end; }
  .interior-content h1 { max-width: 1120px; margin-top: 30px; font-size: clamp(4.2rem, 8vw, 9rem); }
  .interior-content h1 em { display: block; color: var(--gold-light); }
  .interior-content > p:last-of-type { max-width: 680px; margin-top: 28px; color: rgba(255,255,255,.76); font-size: clamp(1.05rem, 1.45vw, 1.35rem); }
  .page-index { position: absolute; right: 0; bottom: 62px; font-family: var(--serif); font-size: clamp(3rem, 5vw, 5rem); color: rgba(255,255,255,.3); }
  .company-hero .interior-media img { object-position: center 58%; }
  .operations-hero .interior-media img { object-position: center 55%; }
  .impact-hero .interior-media img { object-position: center; }

  .editorial-grid { display: grid; grid-template-columns: 1.1fr .72fr; gap: 10vw; }
  .editorial-grid h2 { max-width: 820px; font-size: clamp(3.2rem, 5.6vw, 6.7rem); }
  .editorial-grid > div p + p { margin-top: 24px; }
  .story-facts { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 100px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .story-facts div { padding: 30px 28px 32px 0; border-right: 1px solid var(--line); }
  .story-facts div:not(:first-child) { padding-left: 28px; }
  .story-facts div:last-child { border-right: 0; }
  .story-facts span, .contact-locations span { color: var(--green); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
  .story-facts strong { display: block; margin-top: 12px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
  .story-facts p { margin-top: 14px; font-size: .78rem; line-height: 1.5; }

  .purpose-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-light); }
  .purpose-grid article { min-height: 540px; padding: clamp(40px, 5vw, 78px); background: var(--forest-deep); display: flex; flex-direction: column; }
  .purpose-grid article:first-child { background: var(--forest); }
  .purpose-grid article > span { color: var(--gold-light); font-size: .7rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
  .purpose-grid h2 { max-width: 560px; margin-top: auto; font-size: clamp(2.6rem, 4.3vw, 5rem); }
  .purpose-grid p { max-width: 530px; margin-top: 34px; }

  .value-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .value-grid article { min-height: 300px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .value-grid span { color: var(--green); font-family: var(--serif); }
  .value-grid h3 { margin-top: 75px; font-size: 2rem; }
  .value-grid p { margin-top: 18px; max-width: 330px; }

  .leadership-layout { display: grid; grid-template-columns: 1fr .8fr; gap: 10vw; }
  .leadership-layout h2 { margin-top: 18px; font-size: clamp(3.2rem, 5.4vw, 6.4rem); }
  .leadership-layout .lead { max-width: 650px; margin-top: 38px; }
  .leader-cards { border-top: 1px solid var(--line); }
  .leader-cards article { display: flex; gap: 24px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
  .leader-cards article > span { width: 66px; aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center; background: var(--forest); color: var(--gold-light); font-family: var(--serif); font-size: 1.1rem; }
  .leader-cards h3 { font-size: 1.45rem; }
  .leader-cards article p { margin-top: 6px; font-size: .78rem; }
  .team-note { padding-top: 28px; }
  .visual-break { height: min(75vw, 820px); position: relative; overflow: hidden; background: var(--forest); }
  .visual-break img { width: 100%; height: 100%; object-fit: cover; }
  .visual-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,30,22,.72), transparent 65%); }
  .visual-break p { position: absolute; z-index: 2; left: 7vw; bottom: 7vw; color: #fff; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 6rem); line-height: 1; }

  .operations-stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; background: var(--forest); color: #fff; }
  .operations-stats div { min-height: 250px; padding: 36px; border-right: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; justify-content: flex-end; }
  .operations-stats div:last-child { border-right: 0; }
  .operations-stats strong { color: var(--gold-light); font-family: var(--serif); font-size: clamp(2.8rem, 4.5vw, 5.5rem); font-weight: 400; line-height: 1; }
  .operations-stats span { margin-top: 23px; color: rgba(255,255,255,.68); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

  .tabs-layout { display: grid; grid-template-columns: 330px 1fr; gap: 6vw; }
  .tab-list { border-top: 1px solid var(--line-light); }
  .tab-list button { width: 100%; display: grid; grid-template-columns: 38px 1fr; gap: 12px; text-align: left; padding: 20px 0; border: 0; border-bottom: 1px solid var(--line-light); background: transparent; color: rgba(255,255,255,.5); font-size: .75rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; cursor: pointer; transition: color .25s ease, padding .35s var(--ease); }
  .tab-list button span { font-family: var(--serif); font-weight: 400; }
  .tab-list button[aria-selected="true"], .tab-list button:hover { color: var(--gold-light); padding-left: 10px; }
  .tab-panels article { display: grid; grid-template-columns: 1.05fr .8fr; gap: 5vw; align-items: center; }
  .tab-panels article[hidden] { display: none; }
  .tab-panels img { width: 100%; height: 650px; object-fit: cover; }
  .tab-panels h2 { margin-top: 18px; font-size: clamp(2.8rem, 4.5vw, 5.3rem); }
  .tab-panels p:not(.eyebrow) { margin-top: 28px; }
  .tab-panels ul { list-style: none; margin-top: 30px; border-top: 1px solid var(--line-light); }
  .tab-panels li { position: relative; padding: 13px 0 13px 20px; border-bottom: 1px solid var(--line-light); color: rgba(255,255,255,.75); font-size: .82rem; }
  .tab-panels li::before { content: ""; position: absolute; left: 0; top: 21px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

  .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 170px; gap: 18px; }
  .gallery-item { grid-column: span 5; grid-row: span 3; position: relative; overflow: hidden; padding: 0; border: 0; background: var(--forest); text-align: left; cursor: zoom-in; }
  .gallery-item.gallery-wide { grid-column: span 7; }
  .gallery-item.gallery-tall { grid-column: span 7; grid-row: span 4; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
  .gallery-item:hover img { transform: scale(1.035); }
  .gallery-item > span { position: absolute; inset: auto 16px 16px; display: flex; justify-content: space-between; padding: 11px 13px; color: #fff; background: rgba(7,30,22,.83); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .lightbox { width: min(92vw, 1500px); max-width: none; height: min(90vh, 980px); max-height: none; padding: 0; border: 0; background: #06160f; overflow: hidden; }
  .lightbox::backdrop { background: rgba(3,10,7,.9); backdrop-filter: blur(8px); }
  .lightbox img { width: 100%; height: 100%; object-fit: contain; }
  .lightbox button { position: absolute; z-index: 2; right: 18px; top: 18px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; background: rgba(7,30,22,.8); color: #fff; font-size: 1.8rem; cursor: pointer; }

  .roadmap-head { max-width: 960px; margin-left: 15%; }
  .roadmap-head h2 { margin-top: 18px; font-size: clamp(3.4rem, 6vw, 7rem); }
  .roadmap-head > p:last-child { max-width: 560px; margin-top: 35px; }
  .timeline { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 90px; border-top: 1px solid var(--line); }
  .timeline article { position: relative; min-height: 370px; padding: 32px 28px 28px 0; border-right: 1px solid var(--line); }
  .timeline article:not(:first-child) { padding-left: 28px; }
  .timeline article::before { content: ""; position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--green); }
  .timeline span { color: var(--green); font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
  .timeline strong { display: block; margin-top: 30px; color: var(--forest); font-family: var(--serif); font-size: clamp(2rem, 3vw, 3.8rem); font-weight: 400; letter-spacing: -.04em; }
  .timeline h3 { margin-top: 52px; font-size: 1.45rem; }
  .timeline p { margin-top: 15px; }

  .target-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 90px; background: var(--line); }
  .target-cards article { min-height: 440px; padding: 35px; background: var(--forest); color: #fff; display: flex; flex-direction: column; }
  .target-cards article:nth-child(2) { background: var(--green); }
  .target-cards article:nth-child(3) { background: var(--sand); color: var(--ink); }
  .target-cards > article > span { font-size: .65rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }
  .target-cards strong { margin-top: auto; color: var(--gold-light); font-family: var(--serif); font-size: clamp(4rem, 6.8vw, 8rem); font-weight: 400; letter-spacing: -.06em; line-height: .9; }
  .target-cards article:nth-child(3) strong { color: var(--green); }
  .target-cards h3 { margin-top: 22px; font-size: 1.35rem; }
  .target-cards p { margin-top: 17px; font-size: .84rem; }
  .target-cards article:not(:nth-child(3)) p { color: rgba(255,255,255,.64); }

  .journey-list { list-style: none; border-top: 1px solid var(--line-light); }
  .journey-list li { display: grid; grid-template-columns: 130px 1fr; gap: 40px; padding: 36px 0; border-bottom: 1px solid var(--line-light); }
  .journey-list li > span { color: var(--gold-light); font-family: var(--serif); font-size: 1.5rem; }
  .journey-list h3 { font-size: clamp(2rem, 3.2vw, 3.5rem); }
  .journey-list p { max-width: 760px; margin-top: 14px; }

  .inclusion-grid { display: grid; grid-template-columns: 1.1fr .75fr; gap: 9vw; align-items: center; }
  .inclusion-image { min-height: 750px; position: relative; overflow: hidden; }
  .inclusion-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .inclusion-image span { position: absolute; left: 26px; bottom: 24px; padding: 10px 14px; background: var(--gold); color: var(--forest-deep); font-family: var(--serif); font-size: 1.35rem; }
  .inclusion-grid h2 { margin-top: 18px; font-size: clamp(3rem, 5.1vw, 6rem); }
  .inclusion-grid .lead { margin-top: 35px; }
  .inclusion-grid > div:last-child > p:not(.eyebrow):not(.lead) { margin-top: 22px; }
  .inclusion-lines { margin-top: 35px; border-top: 1px solid var(--line); }
  .inclusion-lines p { display: grid; grid-template-columns: 38px 1fr; padding: 13px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: .8rem; }
  .inclusion-lines span { color: var(--green); font-family: var(--serif); }

  .outcomes-head { max-width: 1000px; margin-left: 15%; }
  .outcomes-head h2 { margin-top: 18px; font-size: clamp(3.4rem, 6vw, 7rem); }
  .outcomes-head > p:last-child { margin-top: 32px; color: var(--forest-deep); }
  .outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 85px; border-top: 1px solid rgba(7,30,22,.3); }
  .outcome-grid article { min-height: 320px; padding: 32px 28px 28px 0; border-right: 1px solid rgba(7,30,22,.3); }
  .outcome-grid article:not(:first-child) { padding-left: 28px; }
  .outcome-grid strong { color: var(--forest-deep); font-family: var(--serif); font-size: clamp(3.2rem, 5vw, 6rem); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
  .outcome-grid span { display: block; margin-top: 42px; color: var(--forest-deep); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
  .outcome-grid p { margin-top: 16px; }

  .visit-hero { min-height: 100svh; position: relative; overflow: hidden; background: var(--forest-deep); color: #fff; }
  .visit-media, .visit-shade { position: absolute; inset: 0; }
  .visit-media img { width: 100%; height: 110%; object-fit: cover; object-position: center; }
  .visit-shade { background: linear-gradient(90deg, rgba(4,22,14,.88), rgba(4,22,14,.45) 55%, rgba(4,22,14,.05)), linear-gradient(0deg, rgba(4,22,14,.7), transparent 50%); }
  .visit-hero-content { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; padding-top: calc(var(--header) + 70px); padding-bottom: 100px; }
  .visit-hero h1 { max-width: 1150px; margin-top: 30px; font-size: clamp(4.3rem, 8.1vw, 9rem); }
  .visit-hero h1 em { color: var(--gold-light); }
  .visit-hero-content > p:last-of-type { max-width: 720px; margin-top: 30px; color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.45vw, 1.35rem); }
  .visit-caption { position: absolute; z-index: 2; right: 4.5vw; bottom: 32px; max-width: 260px; padding-left: 16px; border-left: 1px solid var(--gold); color: rgba(255,255,255,.65); font-size: .66rem; line-height: 1.5; }
  .article-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 11vw; }
  .article-lede { color: var(--ink); font-family: var(--serif); font-size: clamp(2.4rem, 4.1vw, 4.8rem); line-height: 1.1; letter-spacing: -.035em; }
  .article-grid > div p + p { margin-top: 24px; }
  .visit-gallery { padding-bottom: clamp(90px, 10vw, 160px); }
  .visit-gallery figure img { width: 100%; object-fit: cover; }
  .visit-group img { max-height: 820px; }
  .visit-gallery figcaption { display: flex; gap: 22px; margin-top: 15px; font-size: .72rem; color: var(--muted); }
  .visit-gallery figcaption span { color: var(--green); font-family: var(--serif); }
  .visit-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 75px; }
  .visit-pair figure:first-child { margin-top: 110px; }
  .visit-pair img { height: 560px; }
  .why-visit-grid { display: grid; grid-template-columns: 1.1fr .75fr; gap: 10vw; }
  .why-visit h2 { margin-top: 18px; font-size: clamp(3.3rem, 5.6vw, 6.7rem); }
  .why-visit-grid > div:last-child p + p { margin-top: 23px; }
  .visit-final-image { height: min(72vw, 760px); position: relative; overflow: hidden; margin-bottom: 100px; }
  .visit-final-image img { width: 100%; height: 100%; object-fit: cover; }
  .visit-final-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,30,22,.7), transparent 65%); }
  .visit-final-image p { position: absolute; z-index: 2; left: 5%; bottom: 8%; color: #fff; font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 5.7rem); line-height: 1; }

  .contact-layout { display: grid; grid-template-columns: .72fr 1fr; gap: 9vw; align-items: start; }
  .contact-intro { position: sticky; top: calc(var(--header) + 40px); }
  .contact-intro h2 { margin-top: 18px; font-size: clamp(3rem, 5vw, 5.8rem); }
  .contact-intro > p:not(.eyebrow) { max-width: 550px; margin-top: 28px; }
  .contact-locations { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 55px; padding-top: 26px; border-top: 1px solid var(--line); }
  .contact-locations strong { display: block; margin-top: 11px; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
  .contact-locations strong a { color: inherit; text-decoration: none; }
  .contact-locations p { margin-top: 6px; font-size: .78rem; }
  .inquiry-form { padding: clamp(30px, 4.5vw, 64px); background: var(--sand); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
  .inquiry-form label { display: grid; gap: 10px; margin-bottom: 24px; color: var(--ink); font-size: .68rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
  .inquiry-form input, .inquiry-form textarea, .inquiry-form select { width: 100%; border: 0; border-bottom: 1px solid rgba(11,22,17,.35); border-radius: 0; padding: 12px 0; background: transparent; color: var(--ink); outline: 0; text-transform: none; letter-spacing: 0; transition: border-color .2s ease; }
  .inquiry-form input:focus, .inquiry-form textarea:focus, .inquiry-form select:focus { border-color: var(--green); }
  .inquiry-form textarea { resize: vertical; min-height: 150px; }
  .inquiry-form .consent { display: flex; align-items: flex-start; gap: 12px; text-transform: none; letter-spacing: 0; font-weight: 500; line-height: 1.5; }
  .consent input { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 3px; accent-color: var(--green); }
  .honeypot { position: absolute !important; left: -10000px !important; }
  .form-footer { display: flex; align-items: center; gap: 24px; margin-top: 10px; }
  .form-footer [data-form-status] { font-size: .78rem; }
  .inquiry-form.is-sending { opacity: .68; pointer-events: none; }
  .path-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
  .path-grid article { min-height: 330px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .path-grid span { color: var(--green); font-family: var(--serif); }
  .path-grid h3 { margin-top: 85px; font-size: 1.7rem; }
  .path-grid p { margin-top: 18px; }

  .legal-hero { padding: calc(var(--header) + 150px) 0 90px; background: var(--forest-deep); color: #fff; }
  .legal-hero h1 { margin-top: 18px; font-size: clamp(4rem, 7vw, 8rem); }
  .legal-hero h1 em { color: var(--gold-light); }
  .legal-hero > div > p:last-child { margin-top: 25px; color: rgba(255,255,255,.65); }
  .legal-content { display: grid; grid-template-columns: 220px 1fr; gap: 10vw; align-items: start; }
  .legal-content aside { position: sticky; top: calc(var(--header) + 40px); display: grid; padding-top: 16px; border-top: 1px solid var(--line); }
  .legal-content aside span { color: var(--green); font-size: .64rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
  .legal-content aside strong { margin-top: 9px; font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
  .legal-content aside a { margin-top: 30px; font-size: .72rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
  .legal-content article { max-width: 820px; }
  .legal-content h2 { margin-top: 55px; font-size: 2rem; }
  .legal-content h2:first-child { margin-top: 0; }
  .legal-content article p { margin-top: 18px; }

  .site-footer { padding: clamp(90px, 10vw, 150px) 4.5vw 28px; background: var(--forest-deep); color: #fff; }
  .footer-lead { display: flex; justify-content: space-between; gap: 70px; align-items: flex-end; padding-bottom: clamp(80px, 9vw, 135px); }
  .footer-lead h2 { margin-top: 18px; font-size: clamp(3.6rem, 7vw, 8rem); }
  .circle-link { width: 170px; aspect-ratio: 1; border-radius: 50%; flex: 0 0 auto; padding: 35px; background: var(--gold); color: var(--forest-deep); display: flex; flex-direction: column; justify-content: space-between; transition: background .3s ease, transform .2s ease; }
  .circle-link:hover { background: var(--gold-light); }
  .circle-link span { font-family: var(--serif); font-size: 1.6rem; line-height: 1; }
  .circle-link b { align-self: flex-end; font-size: 1.3rem; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, .7fr); gap: 6vw; padding: 60px 0; border-top: 1px solid var(--line-light); }
  .footer-brand img { width: 78px; height: 78px; border-radius: 50%; }
  .footer-brand p { max-width: 330px; margin-top: 22px; }
  .footer-grid h3 { margin-bottom: 22px; color: var(--gold-light); font-size: .65rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
  .footer-grid a, .footer-grid > div > p { display: block; margin-top: 11px; color: rgba(255,255,255,.65); font-size: .8rem; }
  .footer-grid a:hover { color: #fff; }
  .footer-grid > div > p + p { margin-top: 24px; }
  .footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.4); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
}

@layer utilities {
  @media (max-width: 1180px) {
    :root { --shell: min(92vw, 1080px); }
    .desktop-nav { display: none; }
    .header-cta { margin-left: auto; }
    .menu-toggle { display: flex; }
    .brand-lockup { margin-right: 0; }
    .mobile-menu { display: block; position: fixed; inset: var(--header) 0 auto; height: calc(100svh - var(--header)); padding: 48px 4vw; background: var(--forest-deep); color: #fff; transform: translateY(-110%); opacity: 0; visibility: hidden; transition: transform .55s var(--ease), opacity .4s ease, visibility .4s; }
    .mobile-menu.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
    .mobile-menu nav { display: grid; }
    .mobile-menu nav a { display: flex; justify-content: space-between; padding: 17px 0; border-bottom: 1px solid var(--line-light); font-family: var(--serif); font-size: clamp(2rem, 5vw, 3.5rem); line-height: 1; }
    .mobile-menu nav span { color: var(--gold-light); font-family: var(--sans); font-size: .7rem; }
    .mobile-menu > p { margin-top: 38px; color: rgba(255,255,255,.55); font-size: .78rem; }
    .site-header.menu-open { background: var(--forest-deep); color: #fff; }
    body.menu-open { overflow: hidden; }
    .hero-content { grid-template-columns: 1fr; gap: 44px; }
    .hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); }
    .hero-facts div { display: block; padding-right: 25px; border-right: 1px solid rgba(255,255,255,.24); border-bottom: 0; }
    .hero-facts div:last-child { border-right: 0; }
    .hero-facts span { display: block; margin-top: 8px; }
    .presidential-grid, .precision-layout, .impact-callout-grid, .leadership-layout, .inclusion-grid, .why-visit-grid, .contact-layout { gap: 6vw; }
    .presidential-image { min-height: 580px; }
    .scale-grid { grid-template-columns: 1fr; }
    .scale-photo-tall { grid-row: auto; min-height: 650px; }
    .scale-numbers { grid-row: 2; }
    .tabs-layout { grid-template-columns: 250px 1fr; gap: 4vw; }
    .tab-panels article { grid-template-columns: 1fr; }
    .tab-panels img { height: 480px; }
    .tab-panels article > div { max-width: 700px; }
    .path-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 820px) {
    :root { --header: 74px; --shell: 90vw; }
    body { font-size: 15px; }
    .section { padding-block: 92px; }
    .header-shell { gap: 18px; }
    .brand-lockup img { width: 44px; height: 44px; }
    .brand-name strong { font-size: .8rem; }
    .brand-name small { font-size: .5rem; }
    .header-cta { display: none; }
    .section-marker { margin-bottom: 46px; }
    .section-heading, .section-heading-wide, .editorial-grid, .presidential-grid, .precision-layout, .impact-callout-grid, .leadership-layout, .inclusion-grid, .why-visit-grid, .article-grid, .contact-layout { grid-template-columns: 1fr; gap: 45px; }
    .section-heading h2 { font-size: clamp(3.2rem, 13vw, 5.5rem); }
    .section-heading > p { max-width: 570px; }
    .hero { min-height: 920px; }
    .hero-media img { height: 100%; object-position: 58% center; }
    .hero-shade { background: linear-gradient(0deg, rgba(4,22,14,.92), rgba(4,22,14,.42) 75%), linear-gradient(90deg, rgba(4,22,14,.6), transparent); }
    .hero-content { min-height: 920px; padding-top: 150px; padding-bottom: 58px; }
    .hero h1 { font-size: clamp(4rem, 16vw, 6.2rem); }
    .hero-deck { margin-top: 24px; }
    .hero-actions { margin-top: 30px; }
    .hero-facts { grid-template-columns: repeat(3, 1fr); }
    .hero-facts strong { font-size: 1.3rem; }
    .hero-facts span { font-size: .65rem; }
    .scroll-cue { display: none; }
    .manifesto-copy, .scale-intro, .roadmap-head, .outcomes-head { margin-left: 0; }
    .manifesto-copy h2, .scale-intro h2, .roadmap-head h2, .outcomes-head h2 { font-size: clamp(3.2rem, 13vw, 5.5rem); }
    .split-copy { grid-template-columns: 1fr; gap: 35px; }
    .image-composition { min-height: 670px; }
    .image-large { inset: 0 0 23% 0; }
    .image-small { width: 48%; height: 34%; right: 0; }
    .image-note { top: auto; bottom: 0; left: 0; right: auto; width: 48%; height: 33%; }
    .capability-row { grid-template-columns: 40px 1fr 28px; min-height: 110px; gap: 18px; }
    .capability-row p { display: none; }
    .presidential-copy { order: 1; }
    .presidential-image { min-height: 620px; }
    .scale-numbers { grid-template-columns: 1fr; }
    .scale-numbers div { border-bottom: 1px solid var(--line); }
    .scale-photo-tall { min-height: 580px; }
    .precision-visual { min-height: 620px; }
    .story-facts { grid-template-columns: repeat(2, 1fr); }
    .story-facts div:nth-child(2) { border-right: 0; }
    .story-facts div:nth-child(3), .story-facts div:nth-child(4) { border-top: 1px solid var(--line); }
    .purpose-grid { grid-template-columns: 1fr; }
    .purpose-grid article { min-height: 470px; }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
    .operations-stats { grid-template-columns: repeat(2, 1fr); }
    .operations-stats div:nth-child(2) { border-right: 0; }
    .operations-stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
    .tabs-layout { grid-template-columns: 1fr; }
    .tab-list { display: flex; overflow-x: auto; border: 0; padding-bottom: 12px; scrollbar-width: thin; }
    .tab-list button { flex: 0 0 auto; width: auto; padding: 13px 20px 13px 0; border-bottom: 1px solid var(--line-light); white-space: nowrap; }
    .tab-list button[aria-selected="true"], .tab-list button:hover { padding-left: 0; color: var(--gold-light); }
    .tab-panels img { height: 440px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 420px; }
    .gallery-item, .gallery-item.gallery-wide, .gallery-item.gallery-tall { grid-column: 1; grid-row: auto; }
    .timeline { grid-template-columns: repeat(2, 1fr); }
    .timeline article:nth-child(2) { border-right: 0; }
    .timeline article:nth-child(n+3) { border-top: 1px solid var(--line); }
    .target-cards { grid-template-columns: 1fr; }
    .target-cards article { min-height: 350px; }
    .journey-list li { grid-template-columns: 65px 1fr; }
    .inclusion-image { min-height: 620px; }
    .outcome-grid { grid-template-columns: 1fr; }
    .outcome-grid article { min-height: 230px; border-right: 0; border-bottom: 1px solid rgba(7,30,22,.3); }
    .outcome-grid article:not(:first-child) { padding-left: 0; }
    .visit-hero h1 { font-size: clamp(3.9rem, 14vw, 6.2rem); }
    .visit-caption { display: none; }
    .visit-pair { grid-template-columns: 1fr; }
    .visit-pair figure:first-child { margin-top: 0; }
    .visit-pair img { height: 500px; }
    .contact-intro { position: static; }
    .path-grid { grid-template-columns: repeat(2, 1fr); }
    .legal-content { grid-template-columns: 1fr; gap: 50px; }
    .legal-content aside { position: static; }
    .footer-lead { align-items: flex-start; }
    .circle-link { width: 135px; padding: 27px; }
    .circle-link span { font-size: 1.3rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 560px) {
    :root { --shell: 91vw; }
    .section { padding-block: 78px; }
    .hero { min-height: 860px; }
    .hero-content { min-height: 860px; padding-top: 128px; padding-bottom: 38px; }
    .hero h1 { font-size: clamp(3.5rem, 17vw, 5rem); }
    .hero-deck { font-size: .98rem; }
    .button { width: 100%; }
    .hero-actions { width: 100%; }
    .hero-facts { gap: 0; }
    .hero-facts div { padding-right: 10px; }
    .hero-facts strong { font-size: 1.1rem; }
    .hero-facts span { font-size: .58rem; }
    .image-composition { min-height: 560px; }
    .image-note { padding: 18px; }
    .image-note p { margin-top: 16px; font-size: .8rem; }
    .capability-row h3 { font-size: 1.4rem; }
    .presidential-image { min-height: 500px; }
    .image-stamp { width: 190px; padding: 16px; }
    .scale-photo, .scale-photo-tall, .precision-visual, .inclusion-image { min-height: 480px; }
    .interior-hero, .interior-content { min-height: 760px; }
    .interior-content { padding-top: 120px; padding-bottom: 55px; }
    .interior-content h1 { font-size: clamp(3.5rem, 16vw, 5rem); }
    .page-index { bottom: 24px; }
    .story-facts { grid-template-columns: 1fr; }
    .story-facts div, .story-facts div:not(:first-child) { padding: 22px 0; border-right: 0; border-top: 1px solid var(--line); }
    .story-facts div:first-child { border-top: 0; }
    .purpose-grid article { min-height: 420px; }
    .value-grid { grid-template-columns: 1fr; }
    .operations-stats { grid-template-columns: 1fr; }
    .operations-stats div { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line-light); }
    .tab-panels img { height: 360px; }
    .gallery-grid { grid-auto-rows: 320px; }
    .timeline { grid-template-columns: 1fr; }
    .timeline article { min-height: 310px; border-right: 0; border-top: 1px solid var(--line); }
    .timeline article:not(:first-child) { padding-left: 0; }
    .journey-list li { grid-template-columns: 42px 1fr; gap: 20px; }
    .visit-pair img { height: 360px; }
    .form-row, .contact-locations { grid-template-columns: 1fr; }
    .form-footer { flex-direction: column; align-items: stretch; }
    .path-grid { grid-template-columns: 1fr; }
    .footer-lead { flex-direction: column; }
    .circle-link { align-self: flex-end; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
  }

  @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-ready [data-reveal] { opacity: 1; transform: none; }
  }

  @media print {
    .site-header, .scroll-progress, .signal-strip, .site-footer, .button, .text-link { display: none !important; }
    .hero, .interior-hero, .visit-hero { min-height: 0; height: auto; padding: 80px 0; }
    [data-reveal] { opacity: 1 !important; transform: none !important; }
  }
}
