
    /* ─── Fonts ──────────────────────────────────────────────── */
    @font-face { font-family: 'FG'; src: url('fonts/fgatf/FranklinGothicATF-Light.otf') format('opentype'); font-weight: 300; font-display: swap; }
    @font-face { font-family: 'FG'; src: url('fonts/fgatf/FranklinGothicATF-Regular.otf') format('opentype'); font-weight: 400; font-display: swap; }
    @font-face { font-family: 'FG'; src: url('fonts/fgatf/FranklinGothicATF-Medium.otf') format('opentype'); font-weight: 500; font-display: swap; }
    @font-face { font-family: 'FG'; src: url('fonts/fgatf/FranklinGothicATF-Bold.otf') format('opentype'); font-weight: 700; font-display: swap; }
    @font-face { font-family: 'FG'; src: url('fonts/fgatf/FranklinGothicATF-Heavy.otf') format('opentype'); font-weight: 900; font-display: swap; }

    /* ─── Reset ──────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    img, video { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }
    button { background: none; border: none; cursor: pointer; color: inherit; font: inherit; }
    input { font: inherit; color: inherit; background: none; border: none; outline: none; }

    /* ─── Root ───────────────────────────────────────────────── */
    :root {
      --white: #fff;
      --off: #999;
      --dim: #4a4a4a;
      --rule: rgba(255,255,255,.07);
      --bg: #000;
      --fg: #fff;
      --f: 'FG', 'Franklin Gothic Medium', Arial, sans-serif;
      --space-xl: clamp(160px, 20vw, 300px);
      --space-lg: clamp(120px, 15vw, 220px);
      --space-md: clamp(80px, 10vw, 150px);
      --space-sm: clamp(48px, 6vw, 80px);
      --ease: cubic-bezier(.16,1,.3,1);
    }

    body {
      background: var(--bg);
      color: var(--fg);
      font-family: var(--f);
      font-weight: 400;
      font-size: 13px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    /* ─── Grain overlay ─────────────────────────────────────── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 9999;
      opacity: .024;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
      background-size: 180px;
    }

    /* ─── Custom cursor ─────────────────────────────────────── */
    .cursor-dot {
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      mix-blend-mode: difference;
      opacity: 0;
      transition: opacity .4s, transform .12s ease-out;
      transform: translate(-50%, -50%);
      font-family: 'Webdings';
      font-size: 18px;
      color: var(--fg);
      line-height: 1;
    }
    .cursor-dot.visible { opacity: 1; }
    @media (hover: none), (pointer: coarse) { .cursor-dot { display: none; } }

    /* ─── Utility ────────────────────────────────────────────── */
    .container { max-width: 1320px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 80px); }
    .label {
      font-size: 10px;
      font-weight: 300;
      letter-spacing: .35em;
      text-transform: uppercase;
      color: var(--dim);
    }

    /* ─── Navigation ─────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 32px clamp(24px, 5vw, 80px);
      mix-blend-mode: difference;
      transition: transform .5s var(--ease);
    }
    nav.nav-hidden { transform: translateY(-100%); }

    .logo { display: flex; align-items: center; gap: 10px; }
    .logo img { height: 28px; width: auto; }

    .nav-links { display: flex; gap: 36px; }
    .nav-links a {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--off);
      position: relative;
      transition: color .3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--fg);
      transition: width .35s var(--ease);
    }
    .nav-links a:hover { color: var(--fg); }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
      padding: 10px 24px;
      border: 1px solid rgba(255,255,255,.25);
      transition: background .3s, color .3s;
    }
    .nav-cta:hover { background: var(--fg); color: var(--bg); }

    .mob-cta-pill {
      display: none;
      font-size: 9px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      padding: 8px 14px;
      border: 1px solid rgba(255,255,255,.35);
      margin-right: 10px;
      color: var(--fg);
    }
    .mob-cta-pill:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }


    .nav-hamburger { display: none; }
    .nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--fg); transition: transform .3s ease, opacity .3s ease; transform-origin: center; }
    .nav-hamburger span + span { margin-top: 6px; }
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ─── Mobile menu overlay ───────────────────────────────── */
    .mob-nav {
      position: fixed; inset: 0; z-index: 150;
      background: var(--bg);
      display: flex; flex-direction: column;
      padding: 120px clamp(24px, 8vw, 80px) 60px;
      opacity: 0; pointer-events: none;
      transform: translateY(-12px);
      transition: opacity .35s ease, transform .35s ease;
    }
    .mob-nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }
    .mob-nav-links { display: flex; flex-direction: column; gap: 32px; flex: 1; }
    .mob-nav-links a {
      font-size: clamp(28px, 9vw, 52px);
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--fg);
      line-height: 1;
      transition: color .25s;
    }
    .mob-nav-links a:hover { color: var(--off); }
    .mob-nav-cta {
      display: inline-block;
      font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
      padding: 14px 32px;
      border: 1px solid rgba(255,255,255,.4);
      align-self: flex-start;
      transition: background .3s, color .3s;
    }
    .mob-nav-cta:hover { background: var(--fg); color: var(--bg); }

    /* ─── Page Hero (division stage) ─────────────────────────── */
    .div-hero {
      position: relative;
      min-height: 100vh;
      min-height: 760px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 128px clamp(24px, 5vw, 80px) clamp(64px, 10vh, 132px);
      overflow: hidden;
    }

    .div-hero-bg {
      position: absolute; inset: 0;
      background: #050505;
    }
    .div-hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 78% 18%, rgba(255,255,255,.12), transparent 26%),
        linear-gradient(120deg, rgba(0,0,0,.58) 0%, rgba(0,0,0,0) 46%, rgba(0,0,0,.62) 100%);
      z-index: 1;
    }
    .div-hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.94) 0%, rgba(0,0,0,.3) 52%, rgba(0,0,0,.68) 100%);
      z-index: 2;
    }
    .div-hero-bg img {
      width: 100%; height: 100%; object-fit: cover;
      object-position: center 28%;
      filter: grayscale(24%) contrast(1.08) brightness(.78);
    }

    .div-hero-content { position: relative; z-index: 2; max-width: 1320px; width: 100%; margin: 0 auto; }
    .div-hero-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
      gap: clamp(32px, 4vw, 64px);
      align-items: end;
    }
    .div-hero-copy { max-width: 760px; }

    .div-hero .label {
      opacity: 0; transform: translateY(16px);
      animation: fadeUp .95s .2s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .div-wordmark {
      font-weight: 700;
      font-size: clamp(60px, 12vw, 200px);
      letter-spacing: .02em;
      line-height: .88;
      text-transform: uppercase;
      margin-top: clamp(16px, 2vw, 28px);
      opacity: 0; transform: translateY(30px);
      animation: fadeUp 1.15s .35s cubic-bezier(.22, 1, .36, 1) forwards;
    }

    .hero-manifesto {
      font-weight: 300;
      font-size: clamp(16px, 2vw, 22px);
      line-height: 1.45;
      letter-spacing: .01em;
      color: rgba(255,255,255,.78);
      max-width: 680px;
      margin-top: clamp(28px, 4vw, 44px);
      opacity: 0; transform: translateY(16px);
      animation: fadeUp .95s .65s cubic-bezier(.22, 1, .36, 1) forwards;
    }
    .div-hero-spotlight {
      justify-self: end;
      width: min(100%, 320px);
      padding: clamp(12px, 1.8vw, 18px);
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(8,8,8,.48);
      backdrop-filter: blur(10px);
      opacity: 0;
      transform: translateY(22px);
      animation: fadeUp 1s .85s cubic-bezier(.22, 1, .36, 1) forwards;
    }
    .div-hero-spotlight-media {
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: #060606;
    }
    .div-hero-spotlight img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .div-hero-spotlight figcaption {
      margin-top: 14px;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: rgba(255,255,255,.62);
      line-height: 1.6;
    }

    @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
    @keyframes fadeIn { to { opacity: 1; } }

    /* ─── Section rhythm ─────────────────────────────────────── */
    .section { padding: var(--space-lg) 0; }

    /* ─── Prose block ────────────────────────────────────────── */
    .gallery-intro {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
      gap: clamp(40px, 6vw, 96px);
      align-items: center;
    }
    .gallery-visual {
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: #060606;
      position: relative;
    }
    .gallery-visual::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 1px solid rgba(255,255,255,.08);
      pointer-events: none;
    }
    .gallery-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      filter: grayscale(8%);
    }
    .gallery-copy h2 {
      font-weight: 700;
      font-size: clamp(30px, 4.8vw, 64px);
      letter-spacing: .03em;
      line-height: .94;
      margin: 16px 0 24px;
      text-transform: uppercase;
    }
    .gallery-copy-body {
      font-size: clamp(15px, 1.5vw, 18px);
      line-height: 1.75;
      color: rgba(255,255,255,.78);
      font-weight: 300;
      max-width: 520px;
    }
    .gallery-copy-body + .gallery-copy-body { margin-top: 18px; }
    .gallery-copy .small-rule { width: 32px; height: 1px; background: var(--dim); margin: 0 0 clamp(28px, 4vw, 40px); }

    /* ─── Email capture ──────────────────────────────────────── */
    .capture {
      max-width: 820px;
      margin: 0 auto;
      text-align: center;
      padding: clamp(40px, 6vw, 80px);
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(255,255,255,.01);
      backdrop-filter: blur(12px);
      transition: border-color .4s var(--ease), transform .4s var(--ease);
    }
    .capture:hover {
      border-color: rgba(255,255,255,.2);
      transform: translateY(-2px);
    }
    .capture p.label { margin-bottom: 20px; }
    .capture h3 {
      font-weight: 700;
      font-size: clamp(22px, 2.8vw, 34px);
      letter-spacing: .02em;
      line-height: 1.1;
      text-transform: uppercase;
      margin-bottom: 18px;
    }
    .capture-form {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr) auto;
      gap: 16px;
      align-items: end;
    }
    .capture-field {
      display: block;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,.25);
      transition: border-color .3s;
      padding-bottom: 4px;
    }
    .capture-field:focus-within { border-bottom-color: var(--fg); }
    .capture-field .label {
      display: block;
      margin-bottom: 8px;
      letter-spacing: .24em;
    }
    .capture-form input[type="email"],
    .capture-form input[type="text"] {
      width: 100%;
      padding: 12px 0;
      font-size: 14px;
      letter-spacing: .05em;
      color: var(--fg);
    }
    .capture-form input[type="email"]::placeholder,
    .capture-form input[type="text"]::placeholder { color: var(--dim); letter-spacing: .08em; text-transform: uppercase; font-size: 11px; }
    .capture-form button {
      padding: 16px 32px;
      background: var(--fg);
      color: var(--bg);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      transition: opacity .3s, transform .3s var(--ease);
    }
    .capture-form button:hover { opacity: .9; transform: translateX(2px); }
    .capture-form button[disabled] { opacity: .4; cursor: not-allowed; }

    .capture-note {
      margin: 0 0 28px;
      font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--dim);
    }
    .capture-msg {
      margin-top: 24px;
      font-size: 12px; letter-spacing: .08em;
      color: var(--off);
      min-height: 18px;
      opacity: 0;
      transition: opacity .4s;
    }
    .capture-msg.show { opacity: 1; }
    .capture-msg.error { color: #c66; }

    /* HubSpot form — inherit LAKRAZ type, strip stock chrome */
    .hs-embed-wrap { min-height: 120px; max-width: 520px; margin: 0 auto; }
    .hs-form-frame,
    .hs-form-frame * {
      font-family: var(--f) !important;
      color: var(--fg) !important;
    }
    .hs-form-frame input[type="email"],
    .hs-form-frame input[type="text"],
    .hs-form-frame input[type="tel"] {
      background: transparent !important;
      border: 0 !important;
      border-bottom: 1px solid rgba(255,255,255,.25) !important;
      border-radius: 0 !important;
      padding: 12px 0 !important;
      font-size: 14px !important;
      letter-spacing: .05em !important;
      color: var(--fg) !important;
      width: 100% !important;
      box-shadow: none !important;
    }
    .hs-form-frame label {
      font-size: 10px !important;
      font-weight: 300 !important;
      letter-spacing: .24em !important;
      text-transform: uppercase !important;
      color: var(--dim) !important;
    }
    .hs-form-frame input[type="submit"],
    .hs-form-frame button[type="submit"],
    .hs-form-frame .hs-button {
      background: var(--fg) !important;
      color: var(--bg) !important;
      border: 1px solid var(--fg) !important;
      padding: 14px 32px !important;
      font-size: 10px !important;
      font-weight: 700 !important;
      letter-spacing: .22em !important;
      text-transform: uppercase !important;
      cursor: pointer !important;
      transition: opacity .3s !important;
    }
    .hs-form-frame .hs-button:hover { opacity: .8 !important; }
    
    .hs-form, .hs-form-frame form {
      display: flex !important;
      flex-direction: column !important;
      gap: 12px !important;
      opacity: 1 !important;
      visibility: visible !important;
    }
    .hs-richtext, .hs-error-msgs { display: none !important; }
      font-size: 10px !important;
      font-weight: 700 !important;
      letter-spacing: .22em !important;
      text-transform: uppercase !important;
      padding: 14px 32px !important;
      cursor: pointer !important;
      transition: background .3s, color .3s !important;
      margin-top: 12px !important;
    }
    .hs-form-frame input[type="submit"]:hover,
    .hs-form-frame button[type="submit"]:hover {
      background: transparent !important;
      color: var(--fg) !important;
    }

    /* ─── Section divider ────────────────────────────────────── */
    .section-divider { width: 100%; height: 1px; background: var(--rule); }

    /* ─── Marquee ─────────────────────────────────────────────── */
    .marquee {
      overflow: hidden;
      padding: var(--space-sm) 0;
      border-top: 1px solid var(--rule);
    }
    .marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: marquee-scroll 35s linear infinite;
      will-change: transform;
    }
    .marquee-track:hover { animation-play-state: paused; }
    .marquee-text {
      font-weight: 900;
      font-size: clamp(48px, 8vw, 110px);
      letter-spacing: .04em;
      text-transform: uppercase;
      white-space: nowrap;
      padding: 0 clamp(20px, 3vw, 40px);
      color: rgba(255,255,255,.04);
      transition: color .6s;
    }
    .marquee:hover .marquee-text { color: rgba(255,255,255,.1); }
    .marquee-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
      flex-shrink: 0;
    }
    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ─── Footer ──────────────────────────────────────────────── */
    footer { padding: clamp(64px, 10vw, 120px) clamp(24px, 5vw, 80px) clamp(32px, 4vw, 48px); }
    .footer-grid {
      max-width: 1320px; margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 80px;
    }
    .footer-brand-name {
      font-weight: 700; font-size: 18px; letter-spacing: .22em;
      text-transform: uppercase;
      margin-bottom: 16px; display: block;
    }
    .footer-brand p {
      font-size: 12px; color: var(--off); line-height: 1.75;
      max-width: 260px; margin-bottom: 20px;
    }
    .footer-col h5 {
      font-size: 9px; font-weight: 700; letter-spacing: .3em;
      text-transform: uppercase; color: var(--dim);
      margin-bottom: 20px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
    .footer-col a {
      font-size: 12px; color: var(--off);
      transition: color .3s;
    }
    .footer-col a:hover { color: var(--fg); }

    .footer-bottom {
      max-width: 1320px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 32px;
      border-top: 1px solid var(--rule);
      flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom p { font-size: 10px; color: var(--dim); letter-spacing: .06em; }
    .footer-socials { display: flex; gap: 20px; align-items: center; }
    .footer-socials a {
      display: flex; align-items: center; justify-content: center;
      width: 20px; height: 20px;
      color: var(--dim); transition: color .3s;
    }
    .footer-socials a:hover { color: var(--fg); }
    .footer-socials svg { width: 16px; height: 16px; fill: currentColor; }

    /* ─── Scroll reveal (upgraded: smoother, connected) ─────── */
    .r {
      opacity: 0;
      transform: translateY(32px);
      transition:
        opacity .95s cubic-bezier(.22, 1, .36, 1),
        transform 1.05s cubic-bezier(.22, 1, .36, 1);
      transition-delay: var(--r-delay, 0s);
      will-change: opacity, transform;
    }
    .r.v { opacity: 1; transform: translateY(0); }

    /* Preserve existing manual stagger classes where used */
    .r-stagger > .r:nth-child(1) { --r-delay: 0s; }
    .r-stagger > .r:nth-child(2) { --r-delay: .07s; }
    .r-stagger > .r:nth-child(3) { --r-delay: .14s; }
    .r-stagger > .r:nth-child(4) { --r-delay: .21s; }
    .r-stagger > .r:nth-child(5) { --r-delay: .28s; }
    .r-stagger > .r:nth-child(6) { --r-delay: .35s; }

    /* Page-load fade — connects navigation between pages */
    @keyframes page-in {
      from { opacity: 0; }
      to { opacity: 1; }
    }
    body { animation: page-in .55s ease-out both; }

    /* Honor reduced motion */
    @media (prefers-reduced-motion: reduce) {
      .r, .r-stagger > .r {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
      }
      body { animation: none !important; }
      *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ─── Responsive ─────────────────────────────────────────── */
    @media (max-width: 960px) {
      .nav-links, .nav-cta { display: none; }
      .nav-hamburger { display: block; } .mob-cta-pill { display: inline-block; }
      .div-hero-shell, .gallery-intro, .capture-form { grid-template-columns: 1fr; }
      .div-hero-spotlight { justify-self: start; width: min(72vw, 320px); }
    }
    @media (max-width: 600px) {
      .div-hero {
        min-height: 100svh;
        padding-top: 112px;
        padding-bottom: 56px;
      }
      .div-hero-bg img { object-position: center top; }
      .div-hero-spotlight { width: min(100%, 280px); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 440px) {
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
  
.inline-style-b34b65 { height:32px; width:auto; margin-bottom:14px; display:block; }