  :root{
    --ink: #0A0A0A;
    --ink-2: #141311;
    --ink-3: #1C1A16;
    --cream: #F2EDE4;
    --cream-2: #E8E1D3;
    --paper: #FFFFFF;
    --gold: #B08B4A;
    --gold-soft: #8E6F3A;
    --oxblood: #5A1A1A;
    --rule: rgba(242,237,228,0.14);
    --rule-ink: rgba(10,10,10,0.14);
    --ease: cubic-bezier(.22,1,.36,1);
    --serif: 'Fraunces', 'Tiempos Headline', Georgia, serif;
    --sans: 'Space Grotesk', 'Söhne', 'Inter', system-ui, sans-serif;
    --mono: 'JetBrains Mono', ui-monospace, monospace;
    --maxw: 1560px;
    --gutter: clamp(20px, 3.2vw, 56px);
  }
  *{box-sizing:border-box}
  html,body{margin:0;padding:0;background:var(--ink);color:var(--cream);font-family:var(--sans);font-weight:400;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
  body{overflow-x:hidden;font-size:17px;line-height:1.55;letter-spacing:.005em}
  img{max-width:100%;display:block}
  a{color:inherit;text-decoration:none}
  ::selection{background:var(--gold);color:var(--ink)}

  /* ── Fraunces tuning: low softness, low grade, real serious ── */
  .display, h1, h2, h3, .quote{
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
    font-weight: 400;
    letter-spacing: -0.018em;
    line-height: 0.96;
  }
  .mono, .meta, .kicker{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .rag{text-wrap: pretty; hyphens:none}

  /* ── Film-grain overlay ── */
  .grain{
    position: fixed; inset: -50%;
    pointer-events:none;
    z-index: 90;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.93  0 0 0 0 0.88  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
    opacity: .18;
    animation: grain 1.1s steps(6) infinite;
    will-change: transform;
  }
  @keyframes grain{
    0%{transform:translate(0,0)}
    20%{transform:translate(-4%,2%)}
    40%{transform:translate(3%,-3%)}
    60%{transform:translate(-2%,4%)}
    80%{transform:translate(4%,-2%)}
    100%{transform:translate(0,0)}
  }

  /* ── Cinematic loader (projector iris) ── */
  .loader{
    position: fixed; inset:0; z-index: 200; background:#000;
    pointer-events: none;
  }
  .loader .iris{
    position:absolute; left:50%; top:50%;
    width: 140px; height: 2px; background: var(--cream);
    transform: translate(-50%,-50%) scaleX(0);
    transform-origin:center;
    box-shadow: 0 0 40px rgba(242,237,228,.6);
    animation: irisLine .7s var(--ease) forwards;
  }
  .loader .sheet{
    position:absolute; inset:0; background:#000;
    animation: irisOpen 1.1s .55s var(--ease) forwards;
    clip-path: inset(50% 0 50% 0);
  }
  .loader.done{animation: loaderOut .5s .05s var(--ease) forwards}
  @keyframes irisLine{
    0%{transform:translate(-50%,-50%) scaleX(0)}
    100%{transform:translate(-50%,-50%) scaleX(1)}
  }
  @keyframes irisOpen{
    0%{clip-path: inset(50% 0 50% 0)}
    100%{clip-path: inset(0 0 0 0); opacity:0}
  }
  @keyframes loaderOut{ to{opacity:0; visibility:hidden} }

  /* ── Top nav ── */
  nav.top{
    position: fixed; top:0; left:0; right:0; z-index: 100;
    display:flex; align-items:center; justify-content:space-between;
    padding: 22px var(--gutter);
    mix-blend-mode: difference; color: var(--cream);
  }
  nav.top .mark{
    font-family: var(--serif);
    font-size: 26px;
    letter-spacing: -0.022em;
    font-weight: 500;
    font-variation-settings: "opsz" 144, "SOFT" 0;
    color: var(--cream);
    line-height: 1;
  }
  nav.top .mark em{
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
    font-variation-settings: "opsz" 144, "SOFT" 60;
    margin-left: 1px;
  }
  nav.top .mark .dot{color:var(--gold)}
  nav.top ul{
    list-style:none; margin:0; padding:0;
    display:flex; gap: clamp(14px, 2.4vw, 36px);
    font-family: var(--mono);
    font-size: 11px; letter-spacing:.16em; text-transform: uppercase;
  }
  nav.top ul a{opacity:.8; transition: opacity .3s var(--ease)}
  nav.top ul a:hover{opacity:1}
  nav.top ul li.has-sub{position:relative}
  nav.top ul li.has-sub > a::after{
    content:"·"; margin-left: 6px; color: var(--gold); opacity:.8;
  }
  nav.top .submenu{
    position:absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(-4px);
    display:flex; flex-direction: column;
    min-width: 220px;
    padding: 14px 18px;
    background: #0A0A0A;
    border: 1px solid var(--rule);
    opacity: 0; pointer-events:none;
    transition: opacity .4s var(--ease), transform .4s var(--ease);
    mix-blend-mode: normal;
    z-index: 120;
  }
  nav.top .submenu::before{
    content:""; position:absolute; top:-1px; left: 50%; transform: translateX(-50%);
    width: 28px; height: 1px; background: var(--gold);
  }
  nav.top .submenu a{
    display:block; padding: 9px 0;
    font-family: var(--mono); font-size: 11px; letter-spacing:.14em; text-transform: uppercase;
    color: var(--cream); opacity: .75;
    border-bottom: 1px solid var(--rule);
  }
  nav.top .submenu a:last-child{border-bottom:0}
  nav.top .submenu a:hover{opacity: 1; color: var(--gold)}
  nav.top ul li.has-sub:hover > .submenu,
  nav.top ul li.has-sub:focus-within > .submenu{
    opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
  }
  nav.top .tag{
    font-family: var(--mono);
    font-size: 11px; letter-spacing:.16em; text-transform: uppercase;
    opacity:.6;
  }
  @media (max-width: 860px){
    nav.top ul{display:none}
  }

  /* ── Hero ── */
  .hero{
    position: relative;
    min-height: 100vh;
    padding: 120px var(--gutter) 56px;
    display:flex; flex-direction:column; justify-content: space-between;
    overflow:hidden;
    isolation:isolate;
  }
  .hero .stage{
    position:absolute; inset:0; z-index:-1;
    background:
      radial-gradient(ellipse at 50% 120%, rgba(176,139,74,.18), transparent 55%),
      linear-gradient(180deg, #07060a 0%, #0A0A0A 40%, #110d08 100%);
  }
  .hero .horizon{
    position:absolute; left:0; right:0; bottom:22%;
    height: 1px; background: linear-gradient(90deg, transparent, rgba(176,139,74,.55) 20%, rgba(242,237,228,.6) 50%, rgba(176,139,74,.55) 80%, transparent);
    filter: blur(.3px);
  }
  .hero .silhouette{
    position:absolute; left:0; right:0; bottom:0; height: 22%;
    background: linear-gradient(180deg, transparent, #050505 65%);
  }
  .hero .figure{
    position:absolute; bottom:22%; left: 58%;
    width: 2px; height: 14vh; background:#000;
    transform: translateY(0);
  }
  .hero .figure::before{
    content:""; position:absolute; bottom:100%; left:50%;
    width: 9px; height: 9px; border-radius:50%;
    background:#000; transform:translateX(-50%);
  }
  .hero .sun{
    position:absolute; left:50%; bottom:22%;
    width: 180px; height: 180px; border-radius:50%;
    background: radial-gradient(circle, rgba(224,185,110,.95), rgba(176,139,74,.3) 45%, transparent 70%);
    transform: translate(-60%, 40%);
    filter: blur(1px);
    mix-blend-mode: screen;
  }

  .hero-top{
    display:flex; justify-content:space-between; align-items:flex-start;
    gap: 40px;
  }
  .hero-top .card{
    font-family: var(--mono); font-size: 11px; letter-spacing:.16em; text-transform: uppercase;
    color: var(--cream); opacity:.7;
  }
  .hero-top .card .row{display:flex; gap: 10px; align-items:center}
  .hero-top .card .row span.sep{width:10px; height:1px; background:var(--cream); opacity:.5}

  .hero-type{
    max-width: 18ch;
  }
  .hero-elevator{
    font-family: var(--sans);
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.5;
    letter-spacing: 0.005em;
    color: var(--cream);
    opacity: .82;
    max-width: 56ch;
    margin: 0 0 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--rule);
  }
  .hero-elevator em{
    font-family: var(--serif);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    color: var(--gold);
    font-size: 1.05em;
    letter-spacing: -0.01em;
  }
  .hero-type .titlecard{
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
    font-weight: 300;
    font-size: clamp(48px, 7.6vw, 128px);
    line-height: .92;
    letter-spacing: -0.028em;
    color: var(--cream);
  }
  .hero-type .titlecard em{font-style: italic; color: var(--cream); font-variation-settings: "opsz" 144, "SOFT" 50}
  .hero-type .titlecard .gold{color: var(--gold)}

  .hero-bottom{
    display:grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: end;
  }
  .hero-sub{
    max-width: 44ch;
    font-size: 17px; line-height:1.55; color: rgba(242,237,228,.78);
  }
  .hero-sub .label{
    display:block; margin-bottom: 12px;
    font-family: var(--mono); font-size:11px; letter-spacing:.16em; text-transform: uppercase; opacity:.55;
  }
  .cta-row{display:flex; gap: 14px; flex-wrap:wrap}

  .btn{
    display:inline-flex; align-items:center; gap: 12px;
    padding: 14px 22px;
    border: 1px solid rgba(242,237,228,.18);
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    color: var(--cream);
    transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
    background: transparent; cursor: pointer;
  }
  .btn .arrow{width:18px; height:1px; background: currentColor; position:relative}
  .btn .arrow::after{content:""; position:absolute; right:-1px; top:-3px; width:7px; height:7px; border-right:1px solid currentColor; border-top:1px solid currentColor; transform: rotate(45deg)}
  .btn:hover{background: var(--cream); color: var(--ink); border-color: var(--cream)}
  .btn.primary{background: var(--cream); color: var(--ink); border-color: var(--cream)}
  .btn.primary:hover{background: var(--gold); color: var(--ink); border-color: var(--gold)}

  /* scroll cue */
  .scroll-cue{
    position:absolute; left: var(--gutter); bottom: 18px;
    font-family: var(--mono); font-size:11px; letter-spacing:.18em; text-transform: uppercase; opacity:.6;
    display:flex; align-items:center; gap: 10px;
  }
  .scroll-cue .line{width: 60px; height:1px; background: currentColor; position:relative; overflow:hidden}
  .scroll-cue .line::after{content:""; position:absolute; inset:0; background: var(--gold); transform: translateX(-100%); animation: cue 2.4s var(--ease) infinite}
  @keyframes cue{
    0%{transform:translateX(-100%)}
    50%{transform:translateX(0)}
    100%{transform:translateX(100%)}
  }

  /* ── Section chrome ── */
  section{position:relative}
  .sec-head{
    display:grid; grid-template-columns: 1fr 2fr; gap: 40px;
    padding: 120px var(--gutter) 40px;
    border-top: 1px solid var(--rule);
  }
  .sec-head .eyebrow{
    font-family: var(--mono); font-size:11px; letter-spacing:.18em; text-transform: uppercase;
    color: var(--gold);
    display:flex; align-items:center; gap: 14px;
  }
  .sec-head .eyebrow .num{color: var(--cream); opacity:.45}
  .sec-head .eyebrow .rule{flex:1; height:1px; background: var(--rule); max-width: 120px}
  .sec-head h2{
    font-size: clamp(36px, 5.2vw, 88px);
    line-height:.98;
    font-weight:400;
    margin:0;
    color: var(--cream);
  }
  .sec-head h2 em{font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 60}
  @media (max-width: 860px){
    .sec-head{grid-template-columns:1fr}
  }

  /* ── Band 1: Model teaser ── */
  .model{
    padding: 40px var(--gutter) 160px;
  }
  .model-grid{
    display:grid; grid-template-columns: repeat(12, 1fr); gap: 24px;
    margin-top: 64px;
  }
  .tenet{
    grid-column: span 4;
    display:flex; flex-direction:column; gap: 18px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    min-height: 340px;
  }
  .tenet .n{font-family: var(--mono); font-size:11px; letter-spacing:.18em; color: var(--gold)}
  .tenet .head{
    font-family: var(--serif);
    font-size: 28px; line-height: 1.08; letter-spacing:-0.01em;
    color: var(--cream);
    font-variation-settings: "opsz" 144, "SOFT" 30;
  }
  .tenet .body{
    font-size: 15.5px; line-height: 1.6; color: rgba(242,237,228,.7);
  }
  @media (max-width: 1024px){
    .tenet{grid-column: span 6}
  }
  @media (max-width: 640px){
    .tenet{grid-column: span 12}
  }

  .model-close{
    margin-top: 80px;
    display:grid; grid-template-columns: 1fr 1fr; gap: 40px;
    align-items: end;
    border-top: 1px solid var(--rule);
    padding-top: 36px;
  }
  .model-close .quote{
    font-size: clamp(28px, 3.4vw, 54px);
    line-height: 1.08;
    color: var(--cream);
    max-width: 22ch;
    font-weight: 300;
    font-variation-settings: "opsz" 144, "SOFT" 40;
  }
  .model-close .quote .ox{color: var(--oxblood); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 80}
  .model-close .foot{
    justify-self: end;
    text-align: right;
  }

  /* ── Band 1b: Three capabilities ── */
  .caps{
    padding: 0 var(--gutter) 160px;
    background: var(--ink);
  }
  .caps-grid{
    display:grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule);
    margin-top: 56px;
  }
  .cap{
    padding: 44px 0 40px;
    border-right: 1px solid var(--rule);
    position:relative;
    display:flex; flex-direction:column; gap: 22px;
    min-height: 340px;
  }
  .cap:last-child{border-right:none}
  .cap > *{padding-left: 32px; padding-right: 32px}
  .cap:first-child > *{padding-left: 0}
  .cap .c-num{
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    color: var(--gold);
  }
  .cap .c-name{
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(36px, 3.6vw, 60px);
    line-height: .98;
    letter-spacing:-0.018em;
    color: var(--cream);
    font-variation-settings: "opsz" 144, "SOFT" 0;
  }
  .cap .c-name em{font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 60}
  .cap .c-name .amp{color: var(--gold); font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 80; font-weight: 400}
  .cap .c-body{
    font-size: 15.5px; line-height: 1.55;
    color: rgba(242,237,228,.72);
    max-width: 34ch;
    flex: 1;
  }
  .cap .c-link{
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    color: var(--cream);
    display:flex; align-items:center; gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--rule);
    transition: color .5s var(--ease);
  }
  .cap .c-link .arrow{width: 22px; height: 1px; background: currentColor; position:relative; transition: width .4s var(--ease)}
  .cap .c-link .arrow::after{content:""; position:absolute; right:-1px; top:-3px; width:7px; height:7px; border-right:1px solid currentColor; border-top:1px solid currentColor; transform: rotate(45deg)}
  .cap:hover .c-link{color: var(--gold)}
  .cap:hover .c-link .arrow{width: 42px}
  .caps .sec-head .lede{
    grid-column: 2;
    margin-top: 20px;
    color: rgba(242,237,228,.72);
    font-size: 16px; line-height: 1.55;
    max-width: 48ch;
  }
  @media (max-width: 900px){
    .caps-grid{grid-template-columns: 1fr}
    .cap{border-right: none; border-bottom: 1px solid var(--rule); padding: 40px 0}
    .cap:last-child{border-bottom: none}
    .cap > *{padding-left: 0; padding-right: 0}
  }

  /* ── Band 2: The Slate ── */
  .slate{
    padding: 0 0 160px 0;
    background: var(--ink);
  }
  .slate .rail{
    display:flex; gap: 28px;
    padding: 24px var(--gutter) 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .slate .rail::-webkit-scrollbar{display:none}
  .poster{
    scroll-snap-align: start;
    flex: 0 0 clamp(300px, 28vw, 440px);
    display:flex; flex-direction: column;
    gap: 18px;
  }
  .poster .art{
    position: relative;
    aspect-ratio: 2 / 3;
    overflow:hidden;
    background: #14110c;
    border: 1px solid var(--rule);
  }
  .poster .art::after{
    content:""; position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55));
    pointer-events:none;
  }
  .poster .lut{
    position:absolute; inset:0;
    mix-blend-mode: overlay;
    background: linear-gradient(180deg, rgba(224,185,110,.22), transparent 40%, rgba(12,8,4,.45));
    pointer-events:none;
  }
  .poster .overline{
    position:absolute; top: 18px; left: 18px; right: 18px; z-index:2;
    display:flex; justify-content: space-between;
    font-family: var(--mono); font-size:10.5px; letter-spacing:.18em; text-transform: uppercase;
    color: var(--cream); opacity:.85;
  }
  .poster .title{
    position:absolute; left: 18px; right: 18px; bottom: 20px; z-index:2;
    font-family: var(--serif);
    font-weight:300;
    font-size: clamp(26px, 2.2vw, 40px);
    line-height: .98;
    letter-spacing:-0.012em;
    color: var(--cream);
    font-variation-settings: "opsz" 144, "SOFT" 0;
  }
  .poster .title em{font-style: italic; color: var(--gold); font-variation-settings: "opsz" 144, "SOFT" 70}
  .poster .meta-row{
    display:flex; justify-content: space-between; gap: 20px;
    font-family: var(--mono); font-size:11px; letter-spacing:.14em; text-transform: uppercase;
    color: rgba(242,237,228,.55);
  }
  .poster .log{
    font-size: 15px; line-height:1.55; color: rgba(242,237,228,.82);
    max-width: 36ch;
  }

  /* Poster "art" — each one is a unique typographic placeholder */
  .art-caravan{ background: radial-gradient(ellipse at 50% 30%, #3a2a12 0%, #120a03 70%), #0b0704; }
  .art-caravan .graphic{
    position:absolute; inset:0;
    background:
      repeating-linear-gradient(180deg, transparent 0 46px, rgba(176,139,74,.09) 46px 47px),
      radial-gradient(circle at 50% 62%, rgba(224,185,110,.45), transparent 45%);
  }
  .art-orchard{ background: linear-gradient(180deg, #141411 0%, #2a231a 100%); }
  .art-orchard .graphic{
    position:absolute; inset:0;
    background:
      repeating-linear-gradient(90deg, transparent 0 60px, rgba(242,237,228,.06) 60px 61px),
      radial-gradient(ellipse at 50% 100%, rgba(90,26,26,.35), transparent 55%);
  }
  .art-harbor{ background: linear-gradient(180deg, #0a1214 0%, #03080a 100%); }
  .art-harbor .graphic{
    position:absolute; inset:0;
    background:
      linear-gradient(180deg, transparent 72%, rgba(242,237,228,.1) 72.2%, transparent 72.4%),
      linear-gradient(180deg, transparent 74%, rgba(242,237,228,.08) 74.2%, transparent 74.4%),
      linear-gradient(180deg, transparent 78%, rgba(176,139,74,.2) 78.2%, transparent 78.4%);
  }
  .art-mnemos{ background: linear-gradient(180deg, #1a0f0a 0%, #0a0605 100%); }
  .art-mnemos .graphic{
    position:absolute; inset:0;
    background:
      radial-gradient(circle at 30% 35%, rgba(224,185,110,.35), transparent 38%),
      radial-gradient(circle at 70% 65%, rgba(90,26,26,.45), transparent 42%);
  }
  .art-atlas{ background: linear-gradient(180deg, #0c0c10 0%, #04040a 100%); }
  .art-atlas .graphic{
    position:absolute; inset:0;
    background:
      repeating-linear-gradient(45deg, transparent 0 24px, rgba(242,237,228,.04) 24px 25px),
      radial-gradient(circle at 50% 50%, rgba(176,139,74,.22), transparent 55%);
  }
  .art-lion{ background: linear-gradient(180deg, #2a0d0d 0%, #0a0303 100%); }
  .art-lion .graphic{
    position:absolute; inset:0;
    background:
      radial-gradient(ellipse at 50% 70%, rgba(242,237,228,.14), transparent 45%),
      repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.25) 3px 4px);
  }

  .slate-foot{
    display:flex; justify-content: space-between; align-items: center;
    padding: 0 var(--gutter);
    gap: 40px;
    flex-wrap: wrap;
  }
  .slate-foot .count{font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase; color: rgba(242,237,228,.5)}

  /* ── Band 3: Who we build with ── */
  .partners{
    padding: 0 var(--gutter) 160px;
    background: var(--cream);
    color: var(--ink);
  }
  .partners .sec-head{border-top-color: var(--rule-ink); padding-left: 0; padding-right: 0}
  .partners .sec-head h2{color: var(--ink)}
  .partners .sec-head .eyebrow .num{color: var(--ink); opacity:.45}
  .partners .sec-head .eyebrow .rule{background: var(--rule-ink)}
  .partners-grid{
    display:grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--rule-ink);
    border-left: 1px solid var(--rule-ink);
  }
  .partner{
    padding: 44px 32px 36px;
    border-right: 1px solid var(--rule-ink);
    border-bottom: 1px solid var(--rule-ink);
    position:relative;
    min-height: 260px;
    transition: background .6s var(--ease);
    cursor: pointer;
    display:flex; flex-direction: column; justify-content: space-between; gap: 24px;
  }
  .partner:hover{background: var(--ink); color: var(--cream)}
  .partner:hover .p-num{color: var(--gold)}
  .partner:hover .p-rule{background: rgba(242,237,228,.2)}
  .partner .p-num{
    font-family: var(--mono); font-size:11px; letter-spacing:.18em; color: var(--gold-soft);
    transition: color .6s var(--ease);
  }
  .partner .p-name{
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(26px, 2.4vw, 40px);
    line-height: 1;
    letter-spacing:-0.012em;
    font-variation-settings: "opsz" 144, "SOFT" 0;
  }
  .partner .p-name em{font-style: italic}
  .partner .p-body{
    font-size: 14.5px; line-height:1.5; color: inherit; opacity:.7;
    max-width: 30ch;
  }
  .partner .p-rule{
    position:absolute; top:0; left:0; right:0; height:1px; background: transparent;
  }
  @media (max-width: 900px){ .partners-grid{grid-template-columns: repeat(2,1fr)} }
  @media (max-width: 560px){ .partners-grid{grid-template-columns: 1fr} }

  /* ── Band 4: Founder's note ── */
  .founder{
    padding: 160px var(--gutter);
    background: var(--ink);
    color: var(--cream);
    position: relative;
  }
  .founder-grid{
    display:grid; grid-template-columns: 260px 1fr; gap: clamp(32px, 5vw, 96px);
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
  }
  .founder .portrait{
    width: 260px;
    aspect-ratio: 3/4;
    background: #050505;
    border: 1px solid var(--rule);
    position: relative;
    overflow: hidden;
  }
  .founder .portrait img{
    position:absolute; inset:0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.02) brightness(.96);
  }
  .founder .portrait::after{
    content:""; position:absolute; inset:0;
    background:
      linear-gradient(180deg, rgba(224,185,110,.08), transparent 30%, rgba(5,5,5,.35)),
      radial-gradient(ellipse at 50% 100%, rgba(0,0,0,.55), transparent 60%);
    mix-blend-mode: multiply;
    pointer-events:none;
  }
  .founder .portrait .meta{
    position:absolute; bottom: 8px; left: 10px; right: 10px;
    font-family: var(--mono); font-size: 10px; letter-spacing:.14em; text-transform: uppercase;
    color: rgba(242,237,228,.55);
    display:flex; justify-content:space-between;
  }
  .founder blockquote{
    margin: 0;
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(28px, 3.2vw, 48px);
    line-height: 1.14;
    letter-spacing:-0.012em;
    color: var(--cream);
    font-variation-settings: "opsz" 144, "SOFT" 70;
    max-width: 24ch;
    text-wrap: pretty;
  }
  .founder blockquote::before{content:"“"; color: var(--gold); margin-right: 4px}
  .founder blockquote::after{content:"”"; color: var(--gold); margin-left: 2px}
  .founder .attribution{
    margin-top: 32px;
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    color: rgba(242,237,228,.6);
  }
  .founder .attribution .name{color: var(--cream)}
  .founder .attribution .role{color: var(--gold); display:block; margin-top: 4px}
  @media (max-width: 720px){
    .founder-grid{grid-template-columns: 1fr}
    .founder .portrait{width: 160px}
  }

  /* ── Band 5: Contact gateway — four doors ── */
  .gateway{
    padding: 0 0 0 0;
    background: var(--ink);
    border-top: 1px solid var(--rule);
  }
  .gateway .sec-head{padding-left: var(--gutter); padding-right: var(--gutter)}
  .doors{
    display:grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--rule);
  }
  .door{
    padding: 56px var(--gutter) 72px;
    border-right: 1px solid var(--rule);
    min-height: 360px;
    display:flex; flex-direction:column; justify-content: space-between; gap: 32px;
    cursor:pointer;
    position: relative;
    transition: background .6s var(--ease), color .6s var(--ease);
    overflow:hidden;
  }
  .door:last-child{border-right:none}
  .door::before{
    content:""; position:absolute; left:0; right:0; bottom:0; height: 0;
    background: var(--cream);
    transition: height .6s var(--ease);
    z-index: 0;
  }
  .door:hover{color: var(--ink)}
  .door:hover::before{height: 100%}
  .door:hover .door-num{color: var(--oxblood)}
  .door > *{position: relative; z-index: 1}
  .door-num{
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    color: var(--gold);
    transition: color .6s var(--ease);
  }
  .door-name{
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(36px, 4.4vw, 72px);
    line-height: .96;
    letter-spacing:-0.018em;
    font-variation-settings: "opsz" 144, "SOFT" 0;
  }
  .door-name em{font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 60}
  .door-sub{
    font-size: 14.5px; line-height: 1.5;
    opacity: .75;
    max-width: 24ch;
  }
  .door-enter{
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    display:flex; align-items:center; gap: 12px; opacity: .8;
  }
  .door-enter .arrow{width: 22px; height:1px; background: currentColor; position:relative; transition: width .5s var(--ease)}
  .door-enter .arrow::after{content:""; position:absolute; right:-1px; top:-3px; width:7px; height:7px; border-right:1px solid currentColor; border-top:1px solid currentColor; transform: rotate(45deg)}
  .door:hover .door-enter .arrow{width: 48px}
  @media (max-width: 1024px){ .doors{grid-template-columns: repeat(2, 1fr)} .door:nth-child(2){border-right:none} .door:nth-child(1), .door:nth-child(2){border-bottom: 1px solid var(--rule)}}
  @media (max-width: 560px){ .doors{grid-template-columns: 1fr} .door{border-right:none; border-bottom:1px solid var(--rule)} .door:last-child{border-bottom:none} }

  /* ── Dispatch + Footer ── */
  .dispatch{
    padding: 120px var(--gutter) 40px;
    background: var(--ink);
    border-top: 1px solid var(--rule);
    display:grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 120px);
    align-items: start;
  }
  .dispatch h3{
    font-family: var(--serif); font-weight: 300;
    font-size: clamp(32px, 3.6vw, 56px); line-height: 1; margin:0 0 20px;
    letter-spacing:-0.015em;
    font-variation-settings: "opsz" 144, "SOFT" 30;
  }
  .dispatch h3 em{font-style: italic}
  .dispatch p{
    font-size: 15px; color: rgba(242,237,228,.7);
    max-width: 44ch; line-height:1.55; margin: 0 0 28px;
  }
  .dispatch form{
    display:flex; gap: 0; border-bottom: 1px solid var(--cream);
    max-width: 440px;
  }
  .dispatch input{
    flex:1; background: transparent; border: 0; color: var(--cream);
    font-family: var(--sans); font-size: 16px; padding: 12px 0; outline: none;
  }
  .dispatch input::placeholder{color: rgba(242,237,228,.4)}
  .dispatch button{
    background: transparent; border: 0; color: var(--cream);
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    padding: 12px 0 12px 20px; cursor:pointer;
  }
  .dispatch button:hover{color: var(--gold)}
  .dispatch .cadence{
    font-family: var(--mono); font-size: 11px; letter-spacing:.14em; text-transform: uppercase;
    color: rgba(242,237,228,.45); margin-top: 12px;
  }
  @media (max-width: 860px){.dispatch{grid-template-columns: 1fr}}

  footer.foot{
    padding: 80px var(--gutter) 40px;
    background: var(--ink);
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(24px, 4vw, 80px);
    align-items: start;
  }
  footer .col h4{
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 18px;
    font-weight: 500;
  }
  footer .col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: 10px}
  footer .col a{font-size: 14px; color: rgba(242,237,228,.7); transition: color .3s var(--ease)}
  footer .col a:hover{color: var(--gold)}
  footer .brand{
    font-family: var(--serif); font-weight: 300;
    font-size: 36px; letter-spacing: -0.015em; margin-bottom: 16px;
    font-variation-settings: "opsz" 144;
  }
  footer .addr{
    font-family: var(--mono); font-size:11px; letter-spacing:.12em; text-transform: uppercase;
    color: rgba(242,237,228,.5); line-height:1.8;
  }
  footer .legal{
    grid-column: 1 / -1;
    margin-top: 56px; padding-top: 28px;
    border-top: 1px solid var(--rule);
    display:flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    font-family: var(--mono); font-size: 10.5px; letter-spacing:.14em; text-transform: uppercase;
    color: rgba(242,237,228,.4);
  }
  @media (max-width: 860px){ footer.foot{grid-template-columns: 1fr 1fr} }
  @media (max-width: 520px){ footer.foot{grid-template-columns: 1fr} }

  /* ── Scroll-linked type reveal ── */
  .reveal{opacity: 0; transform: translateY(24px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease)}
  .reveal.in{opacity: 1; transform: none}
  .reveal.d2{transition-delay: .12s}
  .reveal.d3{transition-delay: .24s}
  .reveal.d4{transition-delay: .36s}
  .reveal.d5{transition-delay: .48s}

  /* ── Side marker (architectural) ── */
  .side-mark{
    position: fixed; left: 14px; top: 50%;
    transform: translateY(-50%) rotate(-90deg); transform-origin: left center;
    font-family: var(--mono); font-size: 10px; letter-spacing:.28em; text-transform: uppercase;
    color: rgba(242,237,228,.35); z-index: 80;
    pointer-events:none;
    mix-blend-mode: difference;
  }
  @media (max-width: 900px){ .side-mark{display:none} }

  @media (prefers-reduced-motion: reduce){
    .grain{animation: none}
    .reveal{opacity:1; transform:none; transition:none}
    .loader{display:none}
    .scroll-cue .line::after{animation:none}
  }

  /* ──────────────────────────────────────────────────────────
     SHARED LONG-FORM (used by the-model, light-volume, campaigns,
     studio, work). Lifted from the home page's inline band so any
     page can consume it without duplicating styles.
  ────────────────────────────────────────────────────────── */
  .page-head{
    padding: 180px var(--gutter) 80px;
    border-top: 1px solid var(--rule);
  }
  .page-head .eyebrow{
    font-family: var(--mono); font-size:11px; letter-spacing:.18em; text-transform: uppercase;
    color: var(--gold);
    display:flex; align-items:center; gap: 14px;
    margin-bottom: 36px;
  }
  .page-head .eyebrow .num{color: var(--cream); opacity:.45}
  .page-head .eyebrow .rule{flex:1; height:1px; background: var(--rule); max-width: 160px}
  .page-head h1{
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(48px, 6.6vw, 112px);
    line-height: .94;
    letter-spacing:-0.022em;
    color: var(--cream);
    margin: 0;
    max-width: 18ch;
    font-variation-settings: "opsz" 144, "SOFT" 0;
  }
  .page-head h1 em{font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 60}
  .page-head .deck{
    margin-top: 40px;
    max-width: 52ch;
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "SOFT" 50;
    font-style: italic;
    font-weight: 340;
    font-size: clamp(19px, 1.6vw, 24px);
    line-height: 1.4;
    color: rgba(242,237,228,.78);
  }

  /* Manifesto / prose grid — sticky left rail, chapters right */
  .manifesto-grid{
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr);
    gap: clamp(32px, 5vw, 96px);
    align-items: start;
    padding: 120px var(--gutter) 160px;
    border-top: 1px solid var(--rule);
  }
  .manifesto-grid .rail-head{
    position: sticky;
    top: 120px;
    align-self: start;
  }
  .manifesto-grid .rail-head .eyebrow{
    font-family: var(--mono); font-size:11px; letter-spacing:.18em; text-transform: uppercase;
    color: var(--gold);
    display:flex; align-items:center; gap: 14px;
    margin-bottom: 28px;
  }
  .manifesto-grid .rail-head .eyebrow .num{color: var(--cream); opacity:.45}
  .manifesto-grid .rail-head .eyebrow .rule{flex:1; height:1px; background: var(--rule); max-width: 80px}
  .manifesto-grid .rail-head h2{
    margin: 0;
    max-width: 12ch;
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(40px, 4.6vw, 72px);
    line-height: .98;
    letter-spacing:-0.018em;
    color: var(--cream);
    font-variation-settings: "opsz" 144, "SOFT" 0;
  }
  .manifesto-grid .rail-head h2 em{font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 60}
  .manifesto-grid .rail-head .sticky-sub{
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--rule);
    font-family: var(--serif);
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 50;
    font-size: 19px; line-height: 1.45;
    color: rgba(242,237,228,.72);
    max-width: 34ch;
  }
  .manifesto-grid .rail-head .toc{
    margin-top: 36px;
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    display: flex; flex-direction: column; gap: 10px;
  }
  .manifesto-grid .rail-head .toc a{
    color: rgba(242,237,228,.5);
    transition: color .3s var(--ease);
  }
  .manifesto-grid .rail-head .toc a:hover{color: var(--gold)}
  .manifesto-grid .rail-head .toc .roman{
    display: inline-block; width: 4.5ch; color: var(--gold); opacity: .7;
  }

  .chapters{display: flex; flex-direction: column; gap: 96px}
  .chapter{
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 28px;
    max-width: 64ch;
    scroll-margin-top: 120px;
  }
  .chapter .roman{
    font-family: var(--serif);
    font-variation-settings: "opsz" 144, "SOFT" 40;
    font-style: italic;
    font-size: 34px; line-height: 1;
    color: var(--gold);
    opacity: .9;
    font-weight: 300;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }
  .chapter h3{
    font-family: var(--serif);
    font-weight: 300;
    font-size: clamp(28px, 2.8vw, 42px);
    line-height: 1.02;
    letter-spacing: -0.012em;
    margin: 0 0 28px;
    font-variation-settings: "opsz" 144, "SOFT" 20;
    color: var(--cream);
    max-width: 22ch;
  }
  .chapter h3 em{font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 70}
  .chapter p{
    font-family: var(--serif);
    font-variation-settings: "opsz" 60, "SOFT" 70;
    font-weight: 380;
    font-size: 19px;
    line-height: 1.65;
    margin: 0 0 20px;
    letter-spacing: -0.002em;
    text-wrap: pretty;
    color: rgba(242,237,228,.82);
  }
  .chapter p.lede{
    font-size: 22px;
    line-height: 1.5;
    font-weight: 340;
    color: var(--cream);
    font-variation-settings: "opsz" 96, "SOFT" 80;
  }
  .chapter p em{font-style: italic; font-variation-settings: "opsz" 60, "SOFT" 100}
  .chapter p strong{font-weight: 500; color: var(--gold); font-style: normal}
  .chapter .pullquote{
    margin: 28px 0;
    padding: 24px 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    font-family: var(--serif);
    font-weight: 300;
    font-style: italic;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.15;
    letter-spacing: -0.008em;
    max-width: 24ch;
    font-variation-settings: "opsz" 144, "SOFT" 70;
    color: var(--cream);
  }
  .chapter .pullquote::before{content:"“ "; color: var(--gold)}
  .chapter .pullquote::after{content:" ”"; color: var(--gold)}

  .chapter .triad{
    margin: 28px 0 12px;
    display: grid; gap: 20px;
    border-top: 1px solid var(--rule);
    padding-top: 24px;
  }
  .chapter .triad-row{
    display: grid; grid-template-columns: 120px 1fr; gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--rule);
  }
  .chapter .triad-row:last-child{border-bottom: none}
  .chapter .triad-row .t-label{
    font-family: var(--serif);
    font-size: 22px; font-weight: 400;
    font-variation-settings: "opsz" 144, "SOFT" 40;
    font-style: italic;
    color: var(--gold);
    line-height: 1;
  }
  .chapter .triad-row .t-body{
    font-family: var(--serif);
    font-size: 17px; line-height: 1.6;
    font-variation-settings: "opsz" 60, "SOFT" 70;
    font-weight: 380;
    color: rgba(242,237,228,.82);
  }

  /* Rule list — a bullet-free vertical list used on division pages */
  .chapter .rule-list{
    list-style: none; margin: 12px 0 20px; padding: 0;
    border-top: 1px solid var(--rule);
  }
  .chapter .rule-list li{
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    font-family: var(--serif);
    font-variation-settings: "opsz" 60, "SOFT" 70;
    font-weight: 380;
    font-size: 18px; line-height: 1.55;
    color: rgba(242,237,228,.82);
  }
  .chapter .rule-list li em{color: var(--cream); font-style: italic; margin-right: 8px}

  @media (max-width: 900px){
    .manifesto-grid{grid-template-columns: 1fr; padding-top: 80px}
    .manifesto-grid .rail-head{position: relative; top: 0}
    .chapter{grid-template-columns: 64px 1fr; gap: 16px}
    .chapter .triad-row{grid-template-columns: 1fr; gap: 8px}
  }

  /* Page closing — CTA + rule */
  .page-close{
    padding: 80px var(--gutter) 120px;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
  }
  .page-close .close-quote{
    font-family: var(--serif);
    font-weight: 300; font-style: italic;
    font-size: clamp(24px, 2.6vw, 40px);
    line-height: 1.1;
    color: var(--cream);
    font-variation-settings: "opsz" 144, "SOFT" 70;
    max-width: 26ch;
  }
  .page-close .close-cta{justify-self: end; text-align: right}
  .page-close .close-cta .cta-label{
    font-family: var(--mono); font-size: 11px; letter-spacing:.18em; text-transform: uppercase;
    color: rgba(242,237,228,.5);
    margin-bottom: 14px; display:block;
  }
  @media (max-width: 720px){ .page-close{grid-template-columns: 1fr} .page-close .close-cta{justify-self: start; text-align: left} }

  /* ───────────────────────────────────────────────── */
  /* ──            MOBILE CONSOLIDATION             ── */
  /* ──  Pass applied globally. Keeps desktop intact. ── */
  /* ───────────────────────────────────────────────── */

  /* Small tablets and below */
  @media (max-width: 860px){
    /* Nav: stop hiding the menu entirely. Show as a tight horizontal strip. */
    nav.top{
      padding: 14px 16px;
      gap: 12px;
      align-items: center;
    }
    nav.top .mark{ font-size: 15px; }
    nav.top .tag{ display: none; }
    nav.top ul{
      display: flex;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 18px;
      max-width: 62%;
      mask-image: linear-gradient(90deg, black 85%, transparent);
      -webkit-mask-image: linear-gradient(90deg, black 85%, transparent);
    }
    nav.top ul::-webkit-scrollbar{ display: none; }
    nav.top ul li.has-sub > a::after{ display: none; }
    nav.top .submenu{ display: none; } /* dropdowns make no sense on mobile; primary link navigates */
    nav.top ul a{ opacity: .9; font-size: 10px; letter-spacing: .14em; white-space: nowrap; }
  }

  /* Phone */
  @media (max-width: 640px){
    :root{
      --gutter: 20px;
    }
    body{ font-size: 15px; }

    /* ── Hero fixes ── */
    .hero{
      min-height: auto;                     /* don't force 100vh — lets content breathe */
      padding: 96px 20px 72px;
      gap: 48px;
    }
    .hero-top{
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-top .card{ font-size: 9.5px; letter-spacing: .12em; }
    .hero-type{ max-width: 100%; }          /* remove 18ch cap that overflows narrow phones */
    .hero-type .titlecard{
      font-size: clamp(34px, 10.5vw, 56px);
      letter-spacing: -0.02em;              /* less tight — avoids left-edge clipping */
      line-height: 1.02;
    }
    .hero-type .titlecard br{ display: none; } /* let the browser wrap naturally */
    .hero-bottom{
      grid-template-columns: 1fr;            /* stack sub-text and CTAs */
      gap: 28px;
      align-items: start;
    }
    .hero-sub{ max-width: 100%; font-size: 15.5px; line-height: 1.5; }
    .cta-row{ width: 100%; }
    .cta-row .btn{ flex: 1 1 auto; justify-content: center; padding: 13px 16px; }
    .scroll-cue{ display: none; }
    .hero .sun{ width: 120px; height: 120px; }
    .hero .figure{ left: 64%; height: 10vh; }

    /* ── Section heads (all pages) ── */
    .sec-head{
      padding: 72px 20px 28px;
      gap: 20px;
    }
    .sec-head .eyebrow{ flex-wrap: wrap; gap: 10px; }
    .sec-head .eyebrow .rule{ max-width: 40px; }
    .sec-head h2{ font-size: clamp(32px, 9.5vw, 54px); }

    /* ── Model / tenet grid ── */
    .model{ padding: 24px 0 80px; }
    .model-grid{ gap: 0; margin-top: 40px; }
    .tenet{ min-height: auto; padding: 28px 20px 28px; border-top: 1px solid var(--rule); }
    .tenet .head{ font-size: 24px; }
    .model-close{ grid-template-columns: 1fr; gap: 24px; padding: 32px 20px 0; }
    .model-close .foot{ justify-self: start; text-align: left; }
    .model-close .quote{ font-size: clamp(26px, 7vw, 38px); max-width: 100%; }

    /* ── Capabilities band ── */
    .caps{ padding: 0 20px 80px; }
    .caps .sec-head .lede{ grid-column: 1; margin-top: 12px; }
    .cap{ padding: 32px 0; min-height: auto; }
    .cap .c-name{ font-size: clamp(28px, 8.5vw, 40px); }
    .cap .c-body{ max-width: 100%; font-size: 15px; }

    /* ── Slate / posters ── */
    .slate{ padding: 0 0 96px; }
    .slate .rail{ padding: 24px 20px 32px; gap: 22px; }
    .poster{ flex: 0 0 78vw; }                /* poster takes nearly full phone width */
    .poster .title{ font-size: clamp(24px, 6vw, 32px); }
    .poster .log{ font-size: 14px; max-width: 100%; }

    /* Special: asnaff & empire art treatments stay proportional */
    .art-asnaff .asnaff-icon{ width: 44%; }

    /* Slate aside (editorial note inside rail) */
    .slate-aside{ flex: 0 0 78vw; padding: 8px 0 !important; }
    .slate-aside .aside-title{ font-size: clamp(22px, 6vw, 28px) !important; }

    /* Slate foot */
    .slate-foot{ padding: 0 20px; gap: 14px; }

    /* ── Dispatch / newsletter ── */
    .dispatch{ padding: 64px 20px 96px; }

    /* ── Footer ── */
    footer.foot{
      grid-template-columns: 1fr !important;
      padding: 40px 20px 48px;
      gap: 32px;
    }

    /* ── Page head (inner pages) ── */
    .page-head{ padding: 88px 20px 32px; }
    .page-head .eyebrow{ flex-wrap: wrap; }
    .page-head .eyebrow .rule{ max-width: 60px; }
    .page-head h1{ font-size: clamp(36px, 10vw, 60px); max-width: 100%; }
    .page-head .lede{ max-width: 100%; font-size: 16px; margin-top: 20px; }

    /* ── Manifesto grid on the-model.html ── */
    .manifesto-grid{
      grid-template-columns: 1fr !important;
      gap: 24px !important;
      padding-top: 48px !important;
    }
    .manifesto-grid .sec-head{
      position: static !important;            /* sticky doesn't help on phone */
      padding: 0 20px !important;
    }
    .manifesto-grid .sec-head h2{
      max-width: 100% !important;
      font-size: clamp(32px, 9vw, 52px) !important;
    }
    .manifesto-grid .rails{ padding: 0 20px; }

    /* ── Page close (bottom CTA on inner pages) ── */
    .page-close{ padding: 48px 20px; }

    /* ── Side mark (vertical text gutter on desktop) ── */
    .side-mark{ display: none !important; }

    /* Inline styles in index.html hero sub — override max-width that gets inherited */
    .hero-bottom .hero-sub span{ display: inline; }

    /* Reveal animation: reduce vertical travel on mobile so things don't feel laggy */
    .reveal{ transform: translateY(14px); }
  }

  /* Very small phones */
  @media (max-width: 380px){
    :root{ --gutter: 16px; }
    .hero{ padding: 88px 16px 64px; }
    .hero-type .titlecard{ font-size: 32px; }
    .sec-head h2{ font-size: 30px; }
    nav.top ul{ max-width: 58%; }
  }
