*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #0a0a0c;
    --bg-2: #111114;
    --line: rgba(239, 234, 221, 0.09);
    --line-strong: rgba(239, 234, 221, 0.20);
    --ink: #efeadd;
    --ink-2: #a8a297;
    --mute: rgba(239, 234, 221, 0.42);
    --gold: #d4a843;
    --gold-2: #f0c866;
    --grad: linear-gradient(123deg, #1a0220 7%, #b600a8 37%, #7621b0 72%, #be4c00 100%);
    --grad-soft: radial-gradient(circle at 30% 30%, #d4a843 0%, #b600a8 35%, #7621b0 65%, #1a0220 100%);

    --ff-sans: 'Geist', ui-sans-serif, system-ui, sans-serif;
    --ff-serif: 'Instrument Serif', 'Times New Roman', serif;
    --ff-mono: 'JetBrains Mono', ui-monospace, monospace;

    --max: 1320px;
    --pad: clamp(20px, 4vw, 56px);
  }

  html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; scrollbar-color: #d4a843 #141417; scrollbar-width: thin; }
  
  ::-webkit-scrollbar { width: 10px; height: 10px; }
  ::-webkit-scrollbar-track { background: #0e0e10; }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f0c866 0%, #b600a8 60%, #7621b0 100%);
    border-radius: 100px;
    border: 2px solid #0e0e10;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f0c866 0%, #be4c00 60%, #7621b0 100%);
  }
  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--ff-sans);
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
    overflow-x: clip;
  }
  /* Native pointer is hidden ONLY when the custom cursor is actually running.
     Without this, any page lacking the cursor script shows no pointer at all. */
  body.custom-cursor, body.custom-cursor button { cursor: none; }

  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }
  button { background: none; border: 0; color: inherit; font: inherit; }
  ::selection { background: var(--gold); color: var(--bg); }

  a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
    border-radius: 4px;
  }

  .wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

  .skip-link {
    position: fixed;
    top: -60px; left: 16px;
    z-index: 200;
    background: var(--gold);
    color: var(--bg);
    padding: 10px 18px;
    border-radius: 8px;
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: top .25s ease;
  }
  .skip-link:focus { top: 16px; }


  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #f0c866 0%, #b600a8 50%, #7621b0 100%);
    z-index: 100;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(182, 0, 168, 0.45);
    transition: width 0.08s linear;
  }

  
  .cursor, .cursor-ring {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 9999;
    border-radius: 50%;
    mix-blend-mode: difference;
  }
  .cursor {
    width: 8px; height: 8px;
    background: #efeadd;
    transform: translate3d(-50%, -50%, 0);
    transition: width .25s, height .25s, background .25s;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid rgba(239, 234, 221, 0.5);
    transform: translate3d(-50%, -50%, 0);
    transition: width .35s cubic-bezier(.2,.8,.2,1), height .35s cubic-bezier(.2,.8,.2,1), background .25s;
  }
  body.cursor-on .cursor { width: 14px; height: 14px; }
  body.cursor-on .cursor-ring { width: 68px; height: 68px; background: rgba(239,234,221,0.05); }
  @media (hover: none) { .cursor, .cursor-ring { display: none; } }

  
  .grain {
    position: fixed; inset: 0; z-index: 9998;
    pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
  }

  
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    padding: 22px var(--pad);
    display: flex; align-items: center; justify-content: space-between;
    transition: backdrop-filter .3s, background .3s, padding .3s;
  }
  .nav.scrolled {
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding-top: 16px; padding-bottom: 16px;
  }
  .logo {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 26px;
    letter-spacing: -0.01em;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .logo-mark {
    height: 26px;
    width: auto;
    display: block;
  }
  .logo-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 14px var(--gold);
    margin-top: 12px;
  }
  .nav-links { display: flex; gap: 36px; }
  .nav-links a {
    font-size: 13px; color: var(--ink-2);
    font-family: var(--ff-mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
  }
  .nav-links a::after {
    content: ""; position: absolute; left: 0; bottom: -6px;
    width: 100%; height: 1px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s cubic-bezier(.7,0,.2,1);
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-status {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--ink-2);
  }
  .nav-status .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    animation: pulse 2.2s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
  }
  /* ===== MOBILE NAVIGATION =====
     Base mobile state is a plain inline list that always works. The overlay
     panel and its toggle only appear once JS adds .js-nav, so a script failure
     leaves usable links rather than a full-screen overlay stuck over the page. */

  .nav-toggle { display: none; }

  @media (max-width: 760px) {
    .nav { padding: 16px var(--pad); }
    .nav-status { display: none; }

    /* --- no JS: compact, always-visible links --- */
    .nav-links { display: flex; flex-wrap: wrap; gap: 6px 18px; }
    .nav-links a { font-size: 11px; }

    /* --- JS present: toggle + slide-in panel --- */
    .js-nav .nav-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px; height: 44px;
      margin-right: -10px;
      padding: 0 10px;
      cursor: pointer;
      z-index: 61;
    }
    .js-nav .nav-toggle span {
      display: block;
      height: 1.5px; width: 24px;
      background: var(--ink);
      border-radius: 2px;
      transition: transform .3s ease, opacity .2s ease;
    }
    .js-nav .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .js-nav .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .js-nav .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    .js-nav .nav-links {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: fixed;
      inset: 0;
      z-index: 60;
      padding: 108px var(--pad) 40px;
      background: rgba(10, 10, 12, 0.97);
      backdrop-filter: blur(20px);
      overflow-y: auto;
      transform: translateX(100%);
      visibility: hidden;
      transition: transform .38s cubic-bezier(.2,.8,.2,1), visibility .38s;
    }
    .js-nav .nav-links a {
      font-family: var(--ff-serif);
      font-style: normal;
      font-size: 30px;
      line-height: 1.1;
      letter-spacing: -0.01em;
      text-transform: none;
      color: var(--ink);
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }
    .js-nav .nav-links a::after { display: none; }
    .js-nav .nav-links.open { transform: translateX(0); visibility: visible; }
    body.nav-open { overflow: hidden; }
  }

  @media (max-width: 760px) and (prefers-reduced-motion: reduce) {
    .js-nav .nav-links { transition: none; }
    .js-nav .nav-toggle span { transition: none; }
  }

  
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 140px var(--pad) 80px;
    overflow: clip;
  }
  /* one soft ambient glow - no orbs, no scattered shapes */
  .hero-glow {
    position: absolute;
    top: 38%; left: 50%;
    width: 90vw; max-width: 1100px;
    aspect-ratio: 1.6 / 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at 60% 40%, rgba(182, 0, 168, 0.22) 0%, rgba(118, 33, 176, 0.12) 30%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
  }
  .hero-glow-2 {
    position: absolute;
    bottom: -20%; left: -10%;
    width: 700px;
    aspect-ratio: 1.4 / 1;
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.16) 0%, transparent 60%);
    filter: blur(50px);
    z-index: 0;
    pointer-events: none;
  }

  /* Hero side accent - compact corner badge, not a full panel */
  .hero-stamp {
    position: absolute;
    top: 110px;
    right: var(--pad);
    z-index: 2;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 16px 10px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    background: rgba(20, 20, 24, 0.7);
    backdrop-filter: blur(10px);
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
  }
  .hero-stamp .pulse {
    width: 7px; height: 7px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    animation: pulse 2.2s infinite;
  }
  .hero-stamp .sep { width: 1px; height: 12px; background: var(--line-strong); }
  .hero-stamp .accent { color: var(--gold); }

  /* Subtle vertical edge marker on the right - single thin gradient line */
  .hero-edge {
    position: absolute;
    top: 45%; right: 28px;
    transform: translateY(-50%);
    width: 1px;
    height: 200px;
    background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
    opacity: 0.55;
    pointer-events: none;
    z-index: 1;
  }
  .hero-edge::after {
    content: "EST. 2026";
    position: absolute;
    top: 50%;
    left: -52px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
  }
  @media (max-width: 760px) {
    .hero-stamp { display: none; }
    .hero-edge { display: none; }
  }

  .hero-grid {
    position: relative; z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-eyebrow {
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-2);
    margin-bottom: 28px;
    display: inline-flex; align-items: center; gap: 12px;
    overflow: hidden;
  }
  .hero-eyebrow::before {
    content: ""; width: 32px; height: 1px; background: var(--gold);
  }

  .hero-title {
    font-family: var(--ff-sans);
    font-weight: 700;
    font-size: clamp(38px, 7.5vw, 130px);
    line-height: 0.9;
    letter-spacing: -0.045em;
    text-transform: uppercase;
  }
  .hero-title .row { overflow: hidden; display: block; }
  .hero-title .line { display: block; }
  .hero-title em {
    font-family: var(--ff-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #f0c866 0%, #b600a8 70%, #7621b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero-title .stroked {
    -webkit-text-stroke: 1.5px var(--ink);
    color: transparent;
  }
  .hero-title .inline-mark {
    display: inline-flex; align-items: center;
    vertical-align: middle;
    width: clamp(80px, 9vw, 150px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--gold) 65%, transparent);
    margin: 0 18px 0.18em;
  }

  .hero-bar {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 48px;
    align-items: end;
    padding-top: 40px;
    margin-top: 16px;
    border-top: 1px solid var(--line);
  }
  .hero-tag {
    font-family: var(--ff-sans);
    font-size: clamp(15px, 1.2vw, 17px);
    color: var(--ink-2);
    max-width: 420px;
    line-height: 1.6;
    font-weight: 300;
    text-wrap: pretty;
  }
  .hero-tag em {
    font-family: var(--ff-serif);
    font-style: italic;
    color: var(--ink);
  }
  .hero-meta { display: flex; gap: 36px; align-items: end; justify-content: flex-end; }
  .hero-meta-item {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute);
    text-align: left;
  }
  .hero-meta-item strong {
    display: block;
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 36px;
    color: var(--ink);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    margin-top: 6px;
    line-height: 1;
  }
  .hero-meta-item strong sup {
    font-size: 16px;
    color: var(--gold);
    vertical-align: top;
    line-height: 1;
  }
  .hero-scroll {
    display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }
  .hero-scroll::after {
    content: "";
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scroll-line 2.5s ease-in-out infinite;
  }
  @keyframes scroll-line {
    0%, 100% { opacity: 0.3; transform: scaleY(1); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1.4); }
  }
  @media (max-width: 820px) {
    .hero-bar { grid-template-columns: 1fr; gap: 28px; }
    .hero-meta { justify-content: flex-start; flex-wrap: wrap; gap: 24px; }
    .hero-scroll { display: none; }
    .hero-title .inline-mark { display: none; }
  }

  /* magnetic gradient pill */
  .magnetic-cta {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 60;
    will-change: transform;
  }
  .pill {
    position: relative;
    display: inline-flex; align-items: center; gap: 14px;
    padding: 18px 32px;
    border-radius: 100px;
    background: var(--grad);
    color: var(--ink);
    font-family: var(--ff-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow:
      0 4px 16px rgba(181, 0, 167, 0.35),
      inset 4px 4px 10px rgba(118, 33, 176, 0.8),
      0 0 0 1px rgba(239, 234, 221, 0.18),
      0 0 0 4px rgba(0,0,0,0.6),
      0 0 0 5px rgba(239, 234, 221, 0.12);
    overflow: hidden;
  }
  .pill::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
    transform: translateX(-110%);
    transition: transform .8s cubic-bezier(.7,0,.3,1);
  }
  .magnetic-cta:hover .pill::after { transform: translateX(110%); }
  .pill-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold-2);
    box-shadow: 0 0 8px var(--gold-2);
  }
  @media (max-width: 760px) {
    .magnetic-cta { bottom: 20px; right: 20px; }
    .pill { padding: 14px 22px; font-size: 11px; }
  }

  
  .marquee {
    padding: 60px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: var(--bg);
  }
  .marquee-row {
    display: flex;
    gap: 64px;
    white-space: nowrap;
    will-change: transform;
  }
  .marquee-item {
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: clamp(28px, 5vw, 64px);
    letter-spacing: -0.025em;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 64px;
  }
  .marquee-item .star {
    color: var(--gold);
    font-family: var(--ff-serif);
    font-style: italic;
    font-weight: 400;
  }
  .marquee-item .outline {
    -webkit-text-stroke: 1.5px var(--ink);
    color: transparent;
  }

  
  .section {
    padding-top: clamp(100px, 12vw, 180px);
    padding-bottom: clamp(100px, 12vw, 180px);
    position: relative;
  }
  .section-eyebrow {
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mute);
    display: inline-flex; align-items: center; gap: 12px;
    margin-bottom: 40px;
  }
  .section-eyebrow::before {
    content: ""; width: 24px; height: 1px; background: var(--gold);
  }
  .section-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 88px;
  }
  .section-title {
    font-family: var(--ff-sans);
    font-weight: 700;
    font-size: clamp(48px, 8vw, 124px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    text-transform: uppercase;
  }
  .section-title em {
    font-family: var(--ff-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #f0c866 0%, #b600a8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .section-sub {
    color: var(--ink-2);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 480px;
    text-wrap: pretty;
  }
  @media (max-width: 820px) {
    .section-head { grid-template-columns: 1fr; gap: 28px; }
  }

  
  .about {
    text-align: center;
    position: relative;
  }
  .about .ambient {
    position: absolute;
    pointer-events: none;
    will-change: transform;
    z-index: 0;
  }
  /* a single soft glow + a single small marker dot - not 4 circles */
  .about-glow {
    top: 40%; left: 50%;
    width: 80vw; max-width: 900px;
    aspect-ratio: 2 / 1;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(118, 33, 176, 0.12) 0%, transparent 65%);
    filter: blur(50px);
  }
  .about-mark {
    top: 10%;
    left: 8%;
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: clamp(64px, 9vw, 140px);
    line-height: 1;
    color: var(--gold);
    opacity: 0.18;
  }
  .about-mark.r {
    left: auto; right: 8%;
    top: auto; bottom: 14%;
    color: var(--ink);
    opacity: 0.08;
  }
  @media (max-width: 760px) {
    .about-mark { font-size: 60px; opacity: 0.12; }
  }

  .about .title-row {
    display: flex; justify-content: center;
    margin-bottom: 64px;
  }
  .about .section-title { text-align: center; }
  .reveal-text {
    max-width: 720px;
    margin: 0 auto 56px;
    font-size: clamp(20px, 2.2vw, 30px);
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    color: var(--ink);
  }
  .reveal-text .word {
    display: inline-block;
    margin-right: 0.25em;
    opacity: 0.18;
    transition: opacity .3s;
  }
  .reveal-text em {
    font-family: var(--ff-serif);
    font-style: italic;
    background: linear-gradient(180deg, #f0c866, #b600a8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 760px) { .services-grid { grid-template-columns: 1fr; } }

  .service-card {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 40px 36px 36px;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: border-color .4s, transform .15s, box-shadow .4s;
    will-change: transform;
  }
  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(212, 168, 67, 0.10), transparent 40%);
    opacity: 0; transition: opacity .4s;
    pointer-events: none;
  }
  .service-card:hover { border-color: rgba(212, 168, 67, 0.35); box-shadow: 0 24px 50px rgba(15, 4, 20, 0.35); }
  .service-card:hover::before { opacity: 1; }

  .service-card-inner {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    align-items: start;
    transform: translateZ(40px);
  }
  .service-num {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: 52px;
    line-height: 1;
    background: linear-gradient(180deg, #f0c866, #b600a8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .service-name {
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: 26px;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    text-transform: uppercase;
  }
  .service-desc {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.65;
    font-weight: 300;
    text-wrap: pretty;
    margin-bottom: 22px;
  }
  .service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .service-tag {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-2);
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 100px;
  }


  /* ===== SELECTED WORK ===== */
  .work { position: relative; overflow: clip; }
  .work-ambient {
    position: absolute;
    top: 12%; left: 50%;
    width: min(1200px, 110vw);
    aspect-ratio: 1.7 / 1;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at 50% 50%, rgba(118, 33, 176, 0.16) 0%, rgba(182, 0, 168, 0.08) 34%, transparent 66%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
  }
  .work .wrap { position: relative; z-index: 1; }

  .work-count {
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
    display: flex; align-items: center; gap: 12px;
    margin-top: 22px;
  }
  .work-count b { color: var(--ink); font-weight: 500; }
  .work-count i {
    flex: 1; height: 1px; max-width: 120px;
    background: linear-gradient(90deg, var(--line-strong), transparent);
  }

  .work-list { display: flex; flex-direction: column; }

  .work-item {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
    gap: clamp(32px, 4.5vw, 76px);
    align-items: center;
    padding: clamp(46px, 6vw, 84px) 0;
    position: relative;
  }
  .work-item + .work-item { border-top: 1px solid var(--line); }
  /* image always keeps the wide column, side alternates row to row */
  .work-item .work-visual { grid-column: 1; grid-row: 1; }
  .work-item .work-info   { grid-column: 2; grid-row: 1; }
  .work-item:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.32fr); }
  .work-item:nth-child(even) .work-visual { grid-column: 2; }
  .work-item:nth-child(even) .work-info   { grid-column: 1; }

  /* --- visual / browser frame --- */
  .work-visual {
    position: relative;
    display: block;
    border-radius: 20px;
    will-change: transform;
  }
  .work-glow {
    position: absolute;
    inset: 6% 4%;
    border-radius: 60px;
    background: var(--grad);
    filter: blur(52px);
    opacity: 0.22;
    transform: translateZ(0);
    transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
  }
  .work-visual:hover .work-glow { opacity: 0.55; transform: scale(1.04); }

  .browser {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #131317;
    border: 1px solid rgba(239, 234, 221, 0.14);
    box-shadow:
      0 -1px 0 0 rgba(239, 234, 221, 0.06) inset,
      0 24px 60px rgba(12, 3, 16, 0.55),
      0 4px 14px rgba(12, 3, 16, 0.4);
    transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s cubic-bezier(.2,.8,.2,1), border-color .6s;
    will-change: transform;
  }
  .work-visual:hover .browser {
    transform: translateY(-8px);
    border-color: rgba(239, 234, 221, 0.26);
    box-shadow:
      0 -1px 0 0 rgba(239, 234, 221, 0.08) inset,
      0 44px 90px rgba(24, 3, 28, 0.62),
      0 8px 22px rgba(24, 3, 28, 0.45);
  }
  .browser-bar {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
    border-bottom: 1px solid rgba(239, 234, 221, 0.09);
  }
  .browser-dots { display: flex; gap: 6px; flex: none; }
  .browser-dots span {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(239, 234, 221, 0.18);
  }
  .browser-dots span:nth-child(1) { background: rgba(255, 95, 87, 0.55); }
  .browser-dots span:nth-child(2) { background: rgba(254, 188, 46, 0.5); }
  .browser-dots span:nth-child(3) { background: rgba(40, 200, 64, 0.45); }
  .browser-url {
    flex: 1;
    min-width: 0;
    display: flex; align-items: center; gap: 7px;
    padding: 5px 12px;
    border-radius: 100px;
    background: rgba(10, 10, 12, 0.65);
    border: 1px solid rgba(239, 234, 221, 0.07);
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.02em;
    color: var(--ink-2);
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  .browser-url svg { width: 10px; height: 10px; flex: none; color: #4ade80; }
  .browser-live {
    flex: none;
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-2);
  }
  .browser-live::before {
    content: "";
    width: 6px; height: 6px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74, 222, 128, 0.8);
    animation: pulse 2.2s infinite;
  }
  .browser-view {
    position: relative;
    aspect-ratio: 1262 / 718;
    overflow: hidden;
    background: #0e0e10;
  }
  .browser-view picture { display: block; width: 100%; height: 100%; }
  .browser-view img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top center;
    transform: scale(1.001);
    transition: transform 1.1s cubic-bezier(.2,.8,.2,1);
  }
  .work-visual:hover .browser-view img { transform: scale(1.045); }
  /* sheen sweep on hover */
  .browser-view::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.13) 48%, transparent 58%);
    transform: translateX(-110%);
    transition: transform 0s;
    pointer-events: none;
  }
  .work-visual:hover .browser-view::after {
    transform: translateX(110%);
    transition: transform 1.1s cubic-bezier(.4,0,.2,1);
  }
  .work-open {
    position: absolute;
    right: 16px; bottom: 16px;
    display: inline-flex; align-items: center; gap: 9px;
    padding: 11px 18px;
    border-radius: 100px;
    background: rgba(10, 10, 12, 0.72);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(239, 234, 221, 0.2);
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .45s cubic-bezier(.2,.8,.2,1), transform .45s cubic-bezier(.2,.8,.2,1);
    pointer-events: none;
  }
  .work-open svg { width: 11px; height: 11px; }
  .work-visual:hover .work-open { opacity: 1; transform: translateY(0); }

  /* --- info column --- */
  .work-info { display: flex; flex-direction: column; align-items: flex-start; }
  .work-index {
    font-family: var(--ff-serif);
    font-style: italic;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1;
    background: linear-gradient(180deg, #f0c866, #b600a8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
  }
  .work-index span {
    font-family: var(--ff-mono);
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.1em;
    -webkit-text-fill-color: var(--mute);
    margin-left: 6px;
  }
  .work-kicker {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .work-name {
    font-family: var(--ff-sans);
    font-weight: 600;
    font-size: clamp(28px, 3vw, 44px);
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .work-desc {
    color: var(--ink-2);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.65;
    max-width: 46ch;
    text-wrap: pretty;
    margin-bottom: 24px;
  }
  .work-tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-bottom: 30px; }
  .work-tags li {
    font-family: var(--ff-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-2);
    padding: 7px 13px;
    border: 1px solid var(--line);
    border-radius: 100px;
    background: rgba(239, 234, 221, 0.02);
    transition: border-color .35s, color .35s;
  }
  .work-item:hover .work-tags li { border-color: var(--line-strong); color: var(--ink); }
  .work-link {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 8px;
    position: relative;
  }
  .work-link::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, var(--gold-2), #b600a8);
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s cubic-bezier(.7,0,.2,1);
  }
  .work-link:hover::after, .work-item:hover .work-link::after { transform: scaleX(1); }
  .work-link .arw {
    width: 26px; height: 26px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--line-strong);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), background .35s, color .35s, border-color .35s;
  }
  .work-link .arw svg { width: 11px; height: 11px; }
  .work-link:hover .arw, .work-item:hover .work-link .arw {
    background: var(--ink); color: var(--bg); border-color: var(--ink);
    transform: translate(3px, -3px);
  }

  @media (max-width: 1000px) {
    .work-item,
    .work-item:nth-child(even) {
      grid-template-columns: minmax(0, 1fr);
      gap: 30px;
    }
    .work-item .work-visual,
    .work-item:nth-child(even) .work-visual { grid-column: 1; grid-row: 2; }
    .work-item .work-info,
    .work-item:nth-child(even) .work-info   { grid-column: 1; grid-row: 1; }
    .work-index { margin-bottom: 12px; }
    .work-desc { max-width: 60ch; margin-bottom: 20px; }
    .work-tags { margin-bottom: 22px; }
  }
  @media (max-width: 620px) {
    .browser { border-radius: 13px; }
    .browser-bar { padding: 9px 11px; gap: 8px; }
    .browser-dots span { width: 7px; height: 7px; }
    .browser-url { font-size: 10px; padding: 4px 10px; }
    .browser-live { display: none; }
    .work-open { right: 10px; bottom: 10px; padding: 9px 14px; font-size: 9px; opacity: 1; transform: none; }
    .work-desc { font-size: 15px; }
    .work-glow { opacity: 0.3; }
  }
  @media (prefers-reduced-motion: reduce) {
    .work-visual, .browser, .browser-view img, .work-open { transition: none !important; }
    .browser-view::after { display: none; }
  }

  
  .contact { text-align: center; }
  .contact-title {
    font-family: var(--ff-sans);
    font-weight: 700;
    font-size: clamp(60px, 11vw, 200px);
    line-height: 0.9;
    letter-spacing: -0.045em;
    text-transform: uppercase;
    margin-bottom: 48px;
  }
  .contact-title em {
    font-family: var(--ff-serif);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #f0c866, #b600a8 70%, #7621b0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .contact-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 80px;
    max-width: 980px;
    margin-left: auto; margin-right: auto;
  }
  @media (max-width: 760px) { .contact-channels { grid-template-columns: 1fr; } }
  .channel {
    display: block;
    text-align: left;
    padding: 28px 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--bg-2);
    transition: border-color .3s, transform .3s, background .3s, box-shadow .3s;
  }
  .channel:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(20, 10, 4, 0.32);
  }
  .channel-label {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }
  .channel-value {
    font-family: var(--ff-sans);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }
  .channel-sub {
    font-size: 13px;
    color: var(--ink-2);
    font-weight: 300;
  }

  
  .faq-grid {
    max-width: 880px;
    margin: 0 auto;
  }
  .faq {
    border-top: 1px solid var(--line);
    padding: 22px 4px;
    cursor: pointer;
    transition: padding-left .3s;
  }
  .faq:last-child { border-bottom: 1px solid var(--line); }
  .faq:hover { padding-left: 12px; }
  .faq summary {
    list-style: none;
    display: grid;
    grid-template-columns: 36px 1fr 24px;
    gap: 20px;
    align-items: center;
    cursor: pointer;
  }
  .faq summary::-webkit-details-marker { display: none; }
  .faq-num {
    font-family: var(--ff-mono);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.1em;
  }
  .faq-q {
    font-family: var(--ff-sans);
    font-weight: 500;
    font-size: clamp(17px, 1.6vw, 22px);
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  .faq-plus {
    font-family: var(--ff-mono);
    font-size: 20px;
    color: var(--gold);
    text-align: right;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    line-height: 1;
  }
  .faq[open] .faq-plus { transform: rotate(45deg); }
  .faq-a {
    padding: 16px 0 4px 56px;
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 300;
    max-width: 700px;
    text-wrap: pretty;
  }
  @media (max-width: 600px) {
    .faq summary { grid-template-columns: 1fr 24px; }
    .faq-num { display: none; }
    .faq-a { padding-left: 0; }
  }

  
  .to-top {
    position: fixed;
    bottom: 36px;
    left: 36px;
    z-index: 55;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bg-2);
    border: 1px solid var(--line-strong);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity .35s, transform .35s, background .25s, border-color .25s;
    transform: translateY(20px);
  }
  .to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .to-top:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
  .to-top svg { width: 18px; height: 18px; }
  @media (max-width: 760px) { .to-top { bottom: 20px; left: 20px; width: 42px; height: 42px; } }

  /* Hide magnetic CTA near footer */
  .magnetic-cta.hide-near-foot { opacity: 0; pointer-events: none; transition: opacity .4s; }
  footer {
    border-top: 1px solid var(--line);
    padding: 40px var(--pad);
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
  }
  .foot-meta {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mute);
  }
  .foot-time {
    font-family: var(--ff-mono);
    font-size: 11px;
    color: var(--mute);
    letter-spacing: 0.08em;
  }
  .foot-time span { color: var(--ink); }

  
  
  /* Only hide pre-animation elements once we know JS is running and can
     reveal them again. Without .anim-ready these stay visible by default. */
  .anim-ready .reveal-up { opacity: 0; transform: translateY(28px); }
  .split-line { overflow: hidden; }

  /* ===== PREMIUM ADDITIONS ===== */

  /* Hero 3D Orb */
  .hero-orb {
    position: absolute;
    right: 5%;
    top: 52%;
    transform: translateY(-50%);
    width: clamp(160px, 18vw, 300px);
    aspect-ratio: 1;
    pointer-events: none;
    z-index: 1;
    animation: orb-levitate 7s ease-in-out infinite;
  }
  @media (max-width: 1100px) { .hero-orb { right: 1%; opacity: 0.6; } }
  @media (max-width: 820px)  { .hero-orb { display: none; } }

  .orb-glow {
    position: absolute;
    inset: -35%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182,0,168,0.22) 0%, rgba(118,33,176,0.11) 45%, transparent 70%);
    animation: orb-pulse 4.5s ease-in-out infinite;
  }
  .orb-core {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
      radial-gradient(circle at 34% 28%, rgba(240,200,102,0.42) 0%, transparent 42%),
      radial-gradient(circle at 68% 70%, rgba(118,33,176,0.55) 0%, transparent 48%),
      radial-gradient(circle at 50% 50%, rgba(182,0,168,0.28) 0%, rgba(10,10,12,0.92) 72%);
    border: 1px solid rgba(240,200,102,0.16);
    box-shadow:
      0 0 50px rgba(182,0,168,0.3),
      0 0 100px rgba(118,33,176,0.14),
      inset 8px 8px 22px rgba(240,200,102,0.07),
      inset -12px -12px 28px rgba(0,0,0,0.5);
  }
  .orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    pointer-events: none;
  }
  .orb-ring-dot {
    position: absolute;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold-2);
    box-shadow: 0 0 8px var(--gold-2);
    top: 50%; right: -3px;
    transform: translateY(-50%);
  }
  .orb-r1 { inset: -10%; border-color: rgba(240,200,102,0.22); animation: orb-ring-a 12s linear infinite; }
  .orb-r2 { inset: -20%; border-color: rgba(182,0,168,0.14); animation: orb-ring-b 20s linear infinite reverse; }
  .orb-r3 { inset: 16%; border-color: rgba(118,33,176,0.32); animation: orb-ring-a 8s linear infinite; }

  @keyframes orb-levitate {
    0%, 100% { transform: translateY(-50%) translateY(0); }
    50%       { transform: translateY(-50%) translateY(-16px); }
  }
  @keyframes orb-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%       { opacity: 1; transform: scale(1.06); }
  }
  @keyframes orb-ring-a {
    from { transform: rotate(0deg) rotateX(70deg); }
    to   { transform: rotate(360deg) rotateX(70deg); }
  }
  @keyframes orb-ring-b {
    from { transform: rotate(0deg) rotateY(65deg); }
    to   { transform: rotate(360deg) rotateY(65deg); }
  }

  /* 3D Service Icons */
  .svc-icon { width: 72px; height: 72px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

  .svc-cube-wrap { width: 52px; height: 52px; perspective: 200px; display: flex; align-items: center; justify-content: center; }
  .svc-cube { width: 34px; height: 34px; position: relative; transform-style: preserve-3d; animation: cube-spin 9s linear infinite; }
  .svc-face { position: absolute; width: 34px; height: 34px; border: 1px solid rgba(240,200,102,0.42); background: rgba(212,168,67,0.04); }
  .svc-face.f  { transform: translateZ(17px); }
  .svc-face.bk { transform: rotateY(180deg) translateZ(17px); }
  .svc-face.l  { transform: rotateY(-90deg) translateZ(17px); }
  .svc-face.r  { transform: rotateY(90deg) translateZ(17px); }
  .svc-face.tp { transform: rotateX(90deg) translateZ(17px); }
  .svc-face.bt { transform: rotateX(-90deg) translateZ(17px); }
  @keyframes cube-spin {
    from { transform: rotateX(22deg) rotateY(0deg); }
    to   { transform: rotateX(22deg) rotateY(360deg); }
  }

  .svc-globe-wrap { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
  .svc-globe {
    width: 38px; height: 38px; border-radius: 50%; position: relative;
    background:
      radial-gradient(circle at 34% 30%, rgba(182,0,168,0.55) 0%, rgba(118,33,176,0.3) 45%, rgba(10,10,12,0.65) 85%);
    border: 1px solid rgba(182,0,168,0.35);
    box-shadow: 0 0 16px rgba(182,0,168,0.3), inset 3px 3px 8px rgba(240,200,102,0.08);
  }
  .svc-globe::before {
    content: ""; position: absolute; inset: -7px; border-radius: 50%;
    border: 1px solid rgba(182,0,168,0.22);
    animation: orb-ring-b 9s linear infinite;
  }
  .svc-globe::after {
    content: ""; position: absolute; inset: -13px; border-radius: 50%;
    border: 1px dashed rgba(240,200,102,0.15);
    animation: orb-ring-a 16s linear infinite;
  }

  .svc-diamond-wrap { width: 52px; height: 52px; perspective: 160px; display: flex; align-items: center; justify-content: center; }
  .svc-diamond {
    width: 26px; height: 26px;
    background: linear-gradient(135deg, rgba(240,200,102,0.16) 0%, rgba(182,0,168,0.38) 60%, rgba(118,33,176,0.2) 100%);
    border: 1px solid rgba(240,200,102,0.44);
    box-shadow: 0 0 16px rgba(182,0,168,0.3), inset 2px 2px 5px rgba(240,200,102,0.08);
    animation: diamond-tilt 5.5s ease-in-out infinite;
  }
  @keyframes diamond-tilt {
    0%, 100% { transform: rotateZ(45deg) rotateX(25deg) rotateY(-15deg); }
    50%       { transform: rotateZ(45deg) rotateX(25deg) rotateY(15deg) translateY(-2px); }
  }

  .svc-bolt-wrap { width: 52px; height: 52px; perspective: 160px; display: flex; align-items: center; justify-content: center; }
  .svc-bolt-inner {
    transform: rotateY(-18deg) rotateX(8deg);
    animation: bolt-pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(240,200,102,0.55));
  }
  .svc-bolt-inner svg { width: 30px; height: 30px; fill: none; stroke: var(--gold-2); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
  @keyframes bolt-pulse {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(240,200,102,0.45)); opacity: 0.85; }
    50%       { filter: drop-shadow(0 0 14px rgba(240,200,102,0.85)); opacity: 1; }
  }

  /* Process Section */
  .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    padding-top: 8px;
  }
  .process-grid::before {
    content: "";
    position: absolute;
    top: 36px;
    left: calc(12.5% + 18px);
    right: calc(12.5% + 18px);
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212,168,67,0.5) 15%, rgba(212,168,67,0.5) 85%, transparent 100%);
    pointer-events: none;
  }
  @media (max-width: 820px) {
    .process-grid { grid-template-columns: 1fr 1fr; gap: 56px 24px; }
    .process-grid::before { display: none; }
  }
  @media (max-width: 480px) { .process-grid { grid-template-columns: 1fr; gap: 40px; } }

  .process-step { padding: 0 20px; text-align: center; }
  .process-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--bg-2);
    border: 1px solid rgba(212,168,67,0.32);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    position: relative; z-index: 1;
    font-family: var(--ff-mono); font-size: 12px;
    letter-spacing: 0.08em; color: var(--gold);
    box-shadow: 0 0 18px rgba(212,168,67,0.07);
    transition: background .4s, box-shadow .4s, border-color .4s;
  }
  .process-step:hover .process-num {
    background: rgba(212,168,67,0.09);
    border-color: rgba(212,168,67,0.65);
    box-shadow: 0 0 28px rgba(212,168,67,0.18);
  }
  .process-step-tag {
    display: block;
    font-family: var(--ff-mono); font-size: 10px;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 10px;
  }
  .process-step-title {
    font-family: var(--ff-sans); font-weight: 600;
    font-size: 17px; letter-spacing: -0.02em;
    margin-bottom: 10px; text-transform: uppercase;
  }
  .process-step-desc {
    font-size: 14px; color: var(--ink-2);
    font-weight: 300; line-height: 1.65;
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-orb, .orb-glow, .orb-core, .orb-ring,
    .svc-cube, .svc-globe::before, .svc-globe::after,
    .svc-diamond, .svc-bolt-inner,
    .hero-scroll::after, .nav-status .dot, .hero-stamp .pulse, .browser-live::before {
      animation: none !important;
    }
  }

  /* ===== CONTENT PAGES (services, case studies, locations) ===== */

  .page { padding-top: 120px; }

  .page-hero {
    padding: clamp(40px, 7vw, 90px) 0 clamp(32px, 5vw, 56px);
    border-bottom: 1px solid var(--line);
  }
  .crumbs {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 28px;
  }
  .crumbs a { color: var(--mute); text-decoration: none; transition: color .3s; }
  .crumbs a:hover { color: var(--gold-2); }
  .crumbs [aria-current] { color: var(--ink-2); }

  .page-title {
    font-family: var(--ff-serif);
    font-weight: 400;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.03;
    letter-spacing: -0.015em;
    max-width: 18ch;
    text-wrap: balance;
  }
  .page-lede {
    margin-top: 22px;
    max-width: 62ch;
    font-size: clamp(16px, 1.5vw, 19px);
    color: var(--ink-2);
    line-height: 1.62;
    text-wrap: pretty;
  }

  .page-facts { display: flex; flex-wrap: wrap; gap: 14px 48px; margin-top: 40px; }
  .page-fact { display: flex; flex-direction: column; gap: 4px; }
  .page-fact b {
    font-family: var(--ff-serif);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 400;
    color: var(--gold-2);
    line-height: 1;
  }
  .page-fact span {
    font-family: var(--ff-mono);
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute);
  }

  .page-body { padding: clamp(40px, 6vw, 72px) var(--pad); }
  .page-section { margin-bottom: clamp(40px, 5vw, 64px); }
  .page-section:last-child { margin-bottom: 0; }
  .page-section h2 {
    font-family: var(--ff-serif);
    font-weight: 400;
    font-size: clamp(26px, 3.4vw, 40px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    max-width: 24ch;
    text-wrap: balance;
  }
  .page-section p {
    max-width: 68ch;
    color: var(--ink-2);
    line-height: 1.72;
    margin-bottom: 16px;
    text-wrap: pretty;
  }
  .page-section p:last-child { margin-bottom: 0; }
  .page-section p b { color: var(--ink); font-weight: 600; }
  .page-section a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
  .page-section a:hover { color: var(--gold); }

  .steps { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 18px; max-width: 68ch; margin-bottom: 18px; }
  .steps li {
    counter-increment: step;
    position: relative;
    padding-left: 46px;
    color: var(--ink-2);
    line-height: 1.7;
  }
  .steps li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute; left: 0; top: 2px;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gold);
  }
  .steps li b { color: var(--ink); font-weight: 600; }

  .ticks { list-style: none; display: flex; flex-direction: column; gap: 12px; max-width: 68ch; }
  .ticks li {
    position: relative;
    padding-left: 30px;
    color: var(--ink-2);
    line-height: 1.65;
  }
  .ticks li::before {
    content: "";
    position: absolute; left: 2px; top: 10px;
    width: 12px; height: 7px;
    border-left: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(-45deg);
  }

  .page-faq { display: flex; flex-direction: column; gap: 22px; max-width: 72ch; }
  .page-faq-item {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--bg-2);
    padding: 24px 26px;
  }
  .page-faq-item h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
  .page-faq-item p { margin-bottom: 0; font-size: 15px; }

  .related { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
  .related a {
    display: flex; flex-direction: column; gap: 7px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--bg-2);
    padding: 22px 24px;
    text-decoration: none;
    transition: border-color .3s, transform .3s, background .3s;
  }
  .related a:hover { border-color: var(--gold); transform: translateY(-3px); }
  .related a b { color: var(--ink); font-size: 15.5px; font-weight: 600; }
  .related a span { color: var(--mute); font-size: 13.5px; line-height: 1.5; }

  .page-cta {
    border-top: 1px solid var(--line);
    padding: clamp(56px, 8vw, 104px) 0;
    text-align: center;
  }
  .page-cta-title {
    font-family: var(--ff-serif);
    font-weight: 400;
    font-size: clamp(30px, 4.6vw, 56px);
    line-height: 1.1;
    letter-spacing: -0.015em;
    max-width: 20ch;
    margin: 0 auto 18px;
    text-wrap: balance;
  }
  .page-cta-sub { max-width: 58ch; margin: 0 auto 34px; color: var(--ink-2); line-height: 1.65; text-wrap: pretty; }
  .page-cta-meta {
    margin-top: 26px;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mute);
  }

  @media (max-width: 700px) {
    .page { padding-top: 96px; }
    .page-facts { gap: 18px 32px; }
  }

  .service-more {
    display: inline-block;
    margin-top: 18px;
    font-family: var(--ff-mono);
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-2);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.35);
    padding-bottom: 3px;
    transition: color .3s, border-color .3s;
  }
  .service-more:hover { color: var(--gold); border-color: var(--gold); }

  .service-extra {
    margin-top: 34px;
    font-size: 14.5px;
    color: var(--mute);
    text-align: center;
  }
  .service-extra a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 3px; }
  .service-extra a:hover { color: var(--gold); }

  /* ===== CASE STUDY PAGES ===== */

  .work-kicker {
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
  }
  .work-live {
    display: inline-block;
    margin-top: 34px;
    font-family: var(--ff-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    padding: 13px 26px;
    transition: border-color .3s, color .3s, transform .3s;
  }
  .work-live:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }

  .work-shot {
    margin: 0 0 clamp(40px, 5vw, 64px);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: var(--bg-2);
  }
  .work-shot img { display: block; width: 100%; height: auto; }
  .work-shot figcaption {
    padding: 16px 22px;
    font-family: var(--ff-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mute);
    border-top: 1px solid var(--line);
  }

  .work-case {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--ff-mono);
    font-size: 11.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-2);
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 168, 67, 0.35);
    padding-bottom: 3px;
    transition: color .3s, border-color .3s;
  }
  .work-case:hover { color: var(--gold); border-color: var(--gold); }
