@font-face {
    font-family: "Lemon Milk";
    src: url("assets/LEMONMILK-Light.otf") format("opentype");
    font-weight: 300 500; font-display: swap;
  }

  :root {
    --gold: #BD913D;
    --gold-l: #D2AC62;
    --gold-d: #96722F;
    --gold-soft: rgba(189,145,61,.12);
    --char: #141210;
    --char-2: #1d1a16;
    --char-3: #100e0c;
    --ink: #1c1815;
    --muted: #5f5850;
    --line: #e4dfd6;
    --paper: #faf8f4;
    --white: #ffffff;
    --radius: 3px;
    --maxw: 1140px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink); background: var(--white); line-height: 1.65;
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
  }
  .display { font-family: "Lemon Milk", "Inter", sans-serif; font-weight: 300; text-transform: uppercase; letter-spacing: .06em; line-height: 1.2; }
  h1, h2 { margin: 0 0 .4em; }
  p { margin: 0 0 1em; }
  a { color: inherit; }
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
  .eyebrow { font-family: "Lemon Milk", sans-serif; font-weight: 300; text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; color: var(--gold); margin: 0 0 1.1em; }

  /* Scroll reveal */
  .js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .js .reveal.in { opacity: 1; transform: none; }
  .js .reveal.d1 { transition-delay: .08s; } .js .reveal.d2 { transition-delay: .16s; } .js .reveal.d3 { transition-delay: .24s; } .js .reveal.d4 { transition-delay: .32s; }
  @media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } .plane-hero { animation: none !important; } }

  /* Buttons */
  .btn { display: inline-block; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: .9rem; text-decoration: none; cursor: pointer; transition: background .15s ease, transform .05s ease, border-color .15s ease, color .15s ease; border: 1px solid transparent; letter-spacing: .01em; }
  .btn-primary { background: var(--gold); color: #1a140a; }
  .btn-primary:hover { background: var(--gold-d); }
  .btn-primary:active { transform: translateY(1px); }
  .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  /* Header */
  header { position: sticky; top: 0; z-index: 50; background: rgba(20,18,16,.85); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(189,145,61,.16); transition: background .3s ease, border-color .3s ease; }
  header.solid { background: rgba(16,14,12,.98); border-color: rgba(189,145,61,.28); }
  .nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
  .brand img { height: 30px; display: block; }
  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a { color: #d7d0c5; text-decoration: none; font-size: .82rem; font-weight: 500; letter-spacing: .02em; text-transform: uppercase; }
  .nav-links a:hover { color: var(--gold); }
  .nav-links .btn { padding: 10px 18px; text-transform: none; font-size: .85rem; }
  .nav-toggle { display: none; background: none; border: 0; color: var(--gold); font-size: 1.5rem; cursor: pointer; }

  /* Hero */
  .hero { background: radial-gradient(1100px 460px at 82% -12%, rgba(189,145,61,.20), transparent 62%), linear-gradient(180deg, var(--char) 0%, var(--char-2) 100%); color: #fff; position: relative; overflow: hidden; }
  .hero::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(180deg, rgba(0,0,0,.65), transparent 72%); pointer-events: none; }
  .plane-hero { position: absolute; top: 8%; right: -40px; width: min(46vw, 560px); opacity: .16; z-index: 0; pointer-events: none; animation: fly 1.6s cubic-bezier(.2,.7,.2,1) both; }
  @keyframes fly { 0% { opacity: 0; transform: translate(70px,40px) rotate(-6deg); } 100% { opacity: .16; transform: none; } }
  .hero-inner { position: relative; z-index: 1; padding: 108px 0 116px; max-width: 840px; }
  .hero h1 { font-size: clamp(2.4rem, 5.8vw, 4.1rem); color: #fff; letter-spacing: .04em; }
  .hero .lede { font-size: clamp(1.05rem, 2vw, 1.3rem); color: #c8c1b6; max-width: 640px; }
  .hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
  .hero-meta { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 26px; color: #9a9186; font-size: .82rem; }
  .hero-meta span { display: inline-flex; align-items: center; gap: 9px; }
  .hero-meta .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

  /* Credibility band */
  .band { background: var(--char-3); color: #fff; border-top: 1px solid rgba(189,145,61,.2); }
  .band .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 42px 28px; }
  .stat { text-align: center; border-left: 1px solid rgba(255,255,255,.08); padding: 4px 10px; }
  .stat:first-child { border-left: 0; }
  .stat .n { font-family: "Lemon Milk", sans-serif; font-weight: 300; font-size: 2.1rem; color: var(--gold); letter-spacing: .02em; line-height: 1; }
  .stat .l { font-size: .8rem; color: #b7afa6; margin-top: 10px; letter-spacing: .02em; }

  /* Sections */
  section { padding: 92px 0; }
  .section-head { max-width: 720px; margin-bottom: 52px; }
  .section-head h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); color: var(--ink); }
  .section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }
  .alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

  .lead-statement { font-size: clamp(1.3rem, 2.8vw, 1.9rem); line-height: 1.4; max-width: 900px; color: var(--ink); font-weight: 500; }
  .lead-statement em { color: var(--gold); font-style: normal; }

  /* Grid + cards */
  .grid { display: grid; gap: 22px; }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .lens { border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px; background: #fff; border-top: 3px solid #cfc6b6; }
  .lens.offence { border-top-color: var(--gold); }
  .lens h3 { font-size: 1.3rem; letter-spacing: .03em; margin: 8px 0 0; }
  .lens .tag { font-family: "Lemon Milk", sans-serif; font-weight: 300; font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: #97897a; }
  .lens.offence .tag { color: var(--gold); }
  .lens ul { margin: 18px 0 0; padding-left: 0; list-style: none; }
  .lens li { position: relative; padding-left: 32px; margin-bottom: 11px; color: var(--muted); font-size: .96rem; }
  .lens li::before { content: ""; position: absolute; left: 0; top: .28em; width: 20px; height: 18px; background: url("assets/icon.svg") no-repeat left center; background-size: contain; }

  /* Methodology flow */
  .flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 8px; }
  .step { position: relative; padding: 30px 26px 30px 0; }
  .step:not(:last-child)::after { content: ""; position: absolute; top: 40px; right: 20px; width: 20px; height: 20px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); transform: rotate(45deg); opacity: .5; }
  .step .k { font-family: "Lemon Milk", sans-serif; font-weight: 300; font-size: .78rem; letter-spacing: .12em; color: var(--gold); }
  .step .s { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1.5px solid var(--gold); border-radius: 50%; color: var(--gold); font-family: "Lemon Milk", sans-serif; font-weight: 300; margin-bottom: 18px; }
  .step h4 { margin: 0 0 8px; font-size: 1.05rem; letter-spacing: .03em; }
  .step p { color: var(--muted); font-size: .92rem; margin: 0; }

  /* Video */
  .video-band { background: var(--char); color: #fff; text-align: center; }
  .video-band h2 { color: #fff; }
  .video-band p.sub { color: #c8c1b6; max-width: 600px; margin: 0 auto 40px; }
  .video-frame { position: relative; max-width: 900px; margin: 0 auto; aspect-ratio: 16 / 9; border: 1px solid rgba(189,145,61,.4); border-radius: 6px; overflow: hidden; background: radial-gradient(600px 300px at 50% 30%, rgba(189,145,61,.16), transparent 60%), var(--char-3); display: flex; align-items: center; justify-content: center; }
  .video-frame::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 40px 40px; }
  .play { position: relative; z-index: 1; text-align: center; }
  .play .btn-play { width: 74px; height: 74px; border-radius: 50%; background: var(--gold); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: 0 10px 40px -10px rgba(189,145,61,.6); }
  .play .btn-play::after { content: ""; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #1a140a; margin-left: 5px; }
  .play .ph { font-family: "Lemon Milk", sans-serif; font-weight: 300; text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; color: var(--gold); }
  .play .ph small { display: block; font-family: "Inter", sans-serif; text-transform: none; letter-spacing: 0; color: #8a827a; font-size: .82rem; margin-top: 8px; }
  .video-frame iframe, .video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

  /* Who it's for */
  .split { display: grid; grid-template-columns: 1fr 1.25fr; gap: 52px; align-items: start; }
  .fit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 15px; }
  .fit-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; color: var(--ink); }
  .fit-list .check { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 3px; border-radius: 50%; background: var(--gold-soft); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; }

  /* About */
  .about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: stretch; }
  .about-card { background: var(--char); color: #fff; border-radius: var(--radius); padding: 0; border: 1px solid rgba(189,145,61,.25); overflow: hidden; }
  .portrait { aspect-ratio: 4 / 3; background: radial-gradient(400px 240px at 50% 30%, rgba(189,145,61,.22), transparent 60%), var(--char-3); display: flex; flex-direction: column; align-items: center; justify-content: center; border-bottom: 1px solid rgba(189,145,61,.25); text-align: center; }
  .portrait img.real { width: 100%; height: 100%; object-fit: cover; }
  .portrait .pmark { width: 52px; opacity: .95; margin-bottom: 14px; }
  .portrait .note { font-size: .72rem; color: #8a827a; letter-spacing: .04em; }
  .about-card .body { padding: 28px 30px 34px; }
  .about-card .name { font-family: "Lemon Milk", sans-serif; font-weight: 300; font-size: 1.4rem; letter-spacing: .06em; margin-bottom: 4px; }
  .about-card .role { color: var(--gold); font-weight: 600; font-size: .9rem; margin-bottom: 20px; }
  .about-card .cred { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; color: #c8c1b6; font-size: .9rem; }
  .about-card .cred .dot { flex: 0 0 auto; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: .5em; }
  .about-copy .lead-statement { font-size: clamp(1.2rem,2.3vw,1.55rem); margin-bottom: 22px; }
  .about-copy p { color: var(--muted); font-size: 1.03rem; }

  /* CTA */
  .cta-band { background: radial-gradient(900px 400px at 50% -20%, rgba(189,145,61,.22), transparent 60%), var(--char); color: #fff; text-align: center; }
  .cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: .04em; }
  .cta-band p { color: #c8c1b6; max-width: 580px; margin: 0 auto 30px; font-size: 1.08rem; }
  .cta-band .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-band .cta-note { margin-top: 34px; color: #c8c1b6; font-size: 1rem; }
  .cta-note a { color: #d7d0c5; }

  /* mid CTA inline */
  .mid-cta { background: var(--gold); color: #1a140a; border-radius: var(--radius); padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
  .mid-cta h3 { font-family: "Lemon Milk", sans-serif; font-weight: 300; text-transform: uppercase; letter-spacing: .04em; font-size: 1.5rem; margin: 0; max-width: 620px; line-height: 1.25; }
  .mid-cta .btn { background: #1a140a; color: #fff; white-space: nowrap; }
  .mid-cta .btn:hover { background: #000; }

  /* Footer */
  footer { background: var(--char); color: #948b80; padding: 46px 0; border-top: 1px solid rgba(189,145,61,.18); }
  .foot { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; font-size: .85rem; }
  .foot img { height: 34px; margin-bottom: 12px; display: block; }
  .foot .tagline { font-family: "Lemon Milk", sans-serif; font-weight: 300; color: var(--gold); letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
  .foot a { color: #d7d0c5; text-decoration: none; }
  .foot a:hover { color: var(--gold); }

  @media (max-width: 900px) {
    .band .wrap { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
    .stat:nth-child(3) { border-left: 0; }
    .flow { grid-template-columns: 1fr 1fr; }
    .step:not(:last-child)::after { display: none; }
  }
  @media (max-width: 860px) {
    .grid-2 { grid-template-columns: 1fr; }
    .split, .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: var(--char); padding: 8px 0; border-bottom: 1px solid rgba(189,145,61,.2); }
    .nav-links.open { display: flex; }
    .nav-links a { width: 100%; padding: 14px 28px; }
    .nav-links .btn { margin: 10px 28px; }
    .nav-toggle { display: block; }
    section { padding: 62px 0; }
    .hero-inner { padding: 76px 0 84px; }
    .mid-cta { padding: 30px 26px; }
    .mid-cta h3 { font-size: 1.25rem; }
    .foot { align-items: flex-start; }
  }

  /* ---- multi-page additions ---- */
  .team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 46px; }
  .subhero { background: radial-gradient(1000px 420px at 82% -12%, rgba(189,145,61,.18), transparent 62%), linear-gradient(180deg, var(--char) 0%, var(--char-2) 100%); color:#fff; position:relative; overflow:hidden; }
  .subhero::after { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size:48px 48px; mask-image:linear-gradient(180deg,rgba(0,0,0,.6),transparent 75%); pointer-events:none; }
  .subhero .wrap { position:relative; z-index:1; padding: 82px 28px 66px; max-width: 860px; }
  .subhero .eyebrow { color: var(--gold); }
  .subhero h1 { font-size: clamp(2rem, 4.8vw, 3.3rem); color:#fff; letter-spacing:.04em; margin:0 0 .35em; }
  .subhero .lede { color:#c8c1b6; max-width: 660px; font-size: clamp(1rem, 1.9vw, 1.22rem); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .pill { display:inline-block; font-family:"Lemon Milk",sans-serif; font-weight:300; text-transform:uppercase; letter-spacing:.14em; font-size:.68rem; color:var(--gold); border:1px solid rgba(189,145,61,.4); border-radius:999px; padding:6px 14px; margin:0 8px 8px 0; }
  .post { border:1px solid var(--line); border-radius:var(--radius); padding:30px 30px 26px; background:#fff; display:flex; flex-direction:column; }
  .post .k { font-family:"Lemon Milk",sans-serif; font-weight:300; text-transform:uppercase; letter-spacing:.14em; font-size:.68rem; color:var(--gold); margin-bottom:12px; }
  .post h3 { font-size:1.2rem; letter-spacing:.02em; margin:0 0 10px; }
  .post p { color:var(--muted); font-size:.96rem; margin:0 0 18px; }
  .post .soon { margin-top:auto; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:#a99f92; }
  .domain-num { flex:0 0 auto; width:26px; height:26px; border-radius:50%; background:var(--gold-soft); color:var(--gold); display:inline-flex; align-items:center; justify-content:center; font-size:.8rem; font-weight:700; margin-top:1px; }
  @media (max-width: 860px){ .team-grid{ grid-template-columns:1fr; } .grid-3{ grid-template-columns:1fr; } }
  /* ---- article / insight pages ---- */
  .article { max-width: 760px; margin: 0 auto; }
  .article .lead { font-size: clamp(1.2rem,2.3vw,1.4rem); line-height: 1.55; color: var(--ink); font-weight: 500; margin: 0 0 1.3em; }
  .article p { color: var(--ink); font-size: 1.08rem; line-height: 1.75; margin: 0 0 1.3em; }
  .article h2 { font-family:"Lemon Milk",sans-serif; font-weight:300; text-transform:uppercase; letter-spacing:.04em; font-size:clamp(1.25rem,2.3vw,1.6rem); color:var(--ink); margin:1.9em 0 .55em; }
  .article ul { margin:0 0 1.4em; padding-left:0; list-style:none; }
  .article li { position:relative; padding-left:28px; margin-bottom:12px; color:var(--ink); font-size:1.05rem; line-height:1.6; }
  .article li::before { content:""; position:absolute; left:0; top:.55em; width:8px; height:8px; background:var(--gold); border-radius:50%; }
  .article blockquote { margin:1.7em 0; padding:6px 0 6px 26px; border-left:3px solid var(--gold); font-family:"Lemon Milk",sans-serif; font-weight:300; font-size:clamp(1.15rem,2.3vw,1.45rem); line-height:1.4; color:var(--ink); }
  .article-meta { color:var(--muted); font-size:.8rem; letter-spacing:.06em; text-transform:uppercase; margin-top:14px; }
