
  :root {
    --bg: #12151A;
    --bg2: #171B22;
    --bg3: #1D222A;
    --surface: #232A33;
    --border: rgba(237,235,228,0.09);
    --border-strong: rgba(237,235,228,0.18);
    --ink: #EDEBE4;
    --ink-dim: #A9AEB7;
    --muted: #6D7280;
    --brass: #CDA24C;
    --brass-dim: #9C7B39;
    --brass-bright: #E4BE6E;
    --steel: #6E8CA0;
    --plate: #EDEAE2;
    --plate-ink: #23262B;
    --display: 'Space Grotesk', sans-serif;
    --serif: 'Fraunces', serif;
    --body: 'Inter', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    background-image:
      linear-gradient(rgba(237,235,228,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(237,235,228,0.025) 1px, transparent 1px);
    background-size: 64px 64px;
  }

  ::selection { background: var(--brass); color: #14171C; }

  /* CUSTOM CURSOR */
  .cursor {
    width: 8px; height: 8px; background: var(--brass); border-radius: 50%;
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
    transition: transform 0.15s ease;
  }
  .cursor-ring {
    width: 34px; height: 34px; border: 1px solid rgba(205,162,76,0.4); border-radius: 50%;
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
    transition: transform 0.3s cubic-bezier(.17,.67,.3,1.1), width 0.2s, height 0.2s;
  }
  body:has(a:hover) .cursor-ring,
  body:has(button:hover) .cursor-ring { width: 54px; height: 54px; border-color: rgba(205,162,76,0.7); }
  @media (hover: none) { .cursor, .cursor-ring { display: none; } body { cursor: auto; } }

  a { cursor: none; }
  @media (hover: none) { a { cursor: pointer; } }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 48px;
    background: linear-gradient(to bottom, rgba(18,21,26,0.92) 0%, transparent 100%);
    backdrop-filter: blur(2px);
  }
  .nav-logo {
    font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: 0.06em;
    color: var(--ink); text-decoration: none;
  }
  .nav-logo span { color: var(--brass-bright); }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--ink-dim); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--brass-bright); }
  .nav-toggle {
    display: none; background: none; border: none; cursor: none; padding: 8px;
    flex-direction: column; gap: 5px; z-index: 210; position: relative;
  }
  .nav-toggle span {
    width: 22px; height: 1.5px; background: var(--ink); display: block;
    transition: transform 0.3s cubic-bezier(.2,.8,.2,1), opacity 0.2s ease;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .mobile-nav {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(18,21,26,0.98); backdrop-filter: blur(8px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
  }
  .mobile-nav.open { opacity: 1; pointer-events: auto; }
  .mobile-nav a {
    font-family: var(--display); font-weight: 600; font-size: 30px; letter-spacing: 0.01em;
    color: var(--ink); text-decoration: none; opacity: 0; transform: translateY(14px);
    transition: opacity 0.4s ease, transform 0.4s ease; cursor: none;
  }
  .mobile-nav.open a { opacity: 1; transform: translateY(0); }
  .mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
  .mobile-nav.open a:nth-child(2) { transition-delay: 0.1s; }
  .mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
  .mobile-nav.open a:nth-child(4) { transition-delay: 0.2s; }
  .mobile-nav a:hover { color: var(--brass-bright); }
  .mobile-nav-meta {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--muted); opacity: 0; transition: opacity 0.4s ease 0.3s;
  }
  .mobile-nav.open .mobile-nav-meta { opacity: 1; }
  @media (hover: none) { .nav-toggle, .mobile-nav a { cursor: pointer; } }
  .nav-cta {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    border: 1px solid var(--border-strong); color: var(--ink); padding: 10px 20px;
    text-decoration: none; transition: all 0.25s; border-radius: 2px;
  }
  .nav-cta:hover { border-color: var(--brass); color: var(--brass-bright); background: rgba(205,162,76,0.08); }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: flex-start; padding: 168px 48px 100px; position: relative; overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 55% 45% at 82% 30%, rgba(205,162,76,0.09) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-corner {
    position: absolute; width: 22px; height: 22px; opacity: 0;
    animation: fadeUp 0.9s 0.15s forwards;
  }
  .hero-corner svg { width: 100%; height: 100%; }
  .hc-tl { top: 100px; left: 48px; }
  .hc-tr { top: 100px; right: 48px; }
  @media (max-width: 900px) { .hero-corner { display: none; } }

  .hero-eyebrow {
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass);
    margin-bottom: 16px; opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before { content: ''; width: 26px; height: 1px; background: var(--brass); display: inline-block; }
  .hero-headline {
    font-family: var(--display); font-weight: 600; font-size: clamp(30px, 3.6vw, 58px); line-height: 1.22;
    letter-spacing: -0.01em; color: var(--ink); max-width: 900px;
    opacity: 0; animation: fadeUp 0.9s 0.34s forwards;
  }
  .hero-headline em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--brass-bright); }
  .hero-pills {
    display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; margin-bottom: 46px;
    opacity: 0; animation: fadeUp 0.85s 0.52s forwards;
  }
  .hero-pill {
    display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--border-strong);
    border-radius: 100px; padding: 9px 17px 9px 14px; font-family: var(--mono); font-size: 11.5px;
    letter-spacing: 0.03em; color: var(--ink-dim); background: rgba(237,235,228,0.02);
  }
  .pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brass); flex-shrink: 0; display: inline-block; }
  .hero-sub {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 48px;
    margin-top: 0; opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
  }
  .hero-desc { max-width: 460px; font-size: 16px; line-height: 1.7; color: var(--ink-dim); font-weight: 300; }
  .hero-desc strong { color: var(--ink); font-weight: 500; }
  .hero-meta {
    font-family: var(--mono); text-align: right; font-size: 11px; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--muted); line-height: 2.1; white-space: nowrap;
  }
  .hero-meta .live { color: var(--brass); }
  .hero-meta .live::before { content: '● '; }
  .hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; animation: fadeUp 1s 1.2s forwards;
  }
  .hero-scroll span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
  .scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, var(--brass), transparent); animation: scrollPulse 2s infinite; }

  /* MARQUEE */
  .marquee-wrap { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; padding: 16px 0; background: var(--bg2); }
  .marquee-track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
  .marquee-track:hover { animation-play-state: paused; }
  .marquee-item {
    display: flex; align-items: center; gap: 30px; padding: 0 30px;
    font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); white-space: nowrap;
  }
  .marquee-dot { color: var(--brass); }

  /* SHARED SECTION LABEL */
  .section-label {
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass);
    margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
  }
  .section-label::before { content: ''; width: 18px; height: 1px; background: var(--brass); display: inline-block; }

  /* CLIENTS / MANIFEST */
  .clients-section { padding: 100px 48px; background: var(--bg2); border-bottom: 1px solid var(--border); }
  .clients-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
  .clients-headline {
    font-family: var(--display); font-weight: 600; font-size: clamp(32px, 3.6vw, 52px);
    letter-spacing: -0.01em; line-height: 1.1; margin-bottom: 16px; color: var(--ink);
  }
  .clients-headline em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--brass-bright); }
  .clients-note { font-size: 14px; color: var(--ink-dim); font-weight: 300; line-height: 1.7; }

  .plates-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
    max-width: 1180px; margin: 0 auto;
  }
  .plate {
    background: var(--plate); border-radius: 5px; padding: 26px 30px;
    display: flex; align-items: center; justify-content: center;
    min-width: 150px; box-shadow: 0 12px 30px -18px rgba(0,0,0,0.55);
    border: 1px solid rgba(0,0,0,0.04); transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
  }
  .plate:hover { transform: translateY(-4px); }
  .plate-mark { height: 34px; display: flex; align-items: center; justify-content: center; }
  .plate-mark svg { height: 100%; width: auto; max-width: 140px; display: block; }

  /* CASE STUDIES */
  .work-section { padding: 120px 48px; }
  .work-head { max-width: 1220px; margin: 0 auto 64px; }
  .work-headline {
    font-family: var(--display); font-weight: 600; font-size: clamp(38px, 4.8vw, 66px); line-height: 1.05;
    letter-spacing: -0.01em; color: var(--ink); max-width: 700px;
  }
  .work-headline em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--brass-bright); }
  .work-subhead { margin-top: 18px; font-size: 15px; color: var(--ink-dim); font-weight: 300; max-width: 520px; line-height: 1.7; }

  .case-stack { max-width: 1220px; margin: 0 auto; display: flex; flex-direction: column; gap: 32px; }
  .case-card {
    display: grid; grid-template-columns: 0.98fr 1.02fr; background: var(--bg2);
    border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
    min-height: 500px; box-shadow: 0 30px 70px -40px rgba(0,0,0,0.6);
  }
  .case-card.reverse .case-content { order: 2; }
  .case-card.reverse .case-image { order: 1; }

  .case-content { padding: 52px 52px 48px; display: flex; flex-direction: column; justify-content: center; }
  .case-index-row {
    display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted);
  }
  .case-index-num { color: var(--brass); font-weight: 500; }
  .case-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); margin-bottom: 16px; }
  .case-title {
    font-family: var(--display); font-weight: 600; font-size: clamp(30px, 2.9vw, 44px); line-height: 1.08;
    letter-spacing: -0.01em; color: var(--ink); margin-bottom: 32px;
  }
          
  .case-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 30px; }
  .case-tag {
    font-family: var(--mono); border: 1px solid var(--border-strong); border-radius: 3px; padding: 6px 12px;
    font-size: 10.5px; letter-spacing: 0.05em; color: var(--ink-dim); transition: all 0.2s;
  }
  .case-tag:hover { border-color: var(--brass); color: var(--brass-bright); }

  .case-divider { height: 1px; background: var(--border); margin: 6px 0 28px; }
  .case-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-bottom: 30px; }
  .case-stat-num { font-family: var(--display); font-weight: 600; font-size: 38px; line-height: 1; color: var(--ink); }
  .case-stat-num span { color: var(--brass-bright); }
  .case-stat-label { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 8px; max-width: 130px; line-height: 1.5; }

  .case-cta {
    align-self: flex-start; display: inline-flex; align-items: center; gap: 10px;
    background: transparent; color: var(--ink); border: 1px solid var(--border-strong); border-radius: 3px; padding: 13px 24px;
    font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
    transition: all 0.25s;
  }
  .case-cta:hover { border-color: var(--brass); background: rgba(205,162,76,0.08); color: var(--brass-bright); }
  .case-cta svg { transition: transform 0.2s; }
  .case-cta:hover svg { transform: translateX(4px); }

  .case-image { position: relative; overflow: hidden; min-height: 500px; display: flex; align-items: center; justify-content: center; }
  .case-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; position: absolute; inset: 0; transition: transform 0.6s cubic-bezier(.2,0,0,1); }
  .case-card:hover .case-image img { transform: scale(1.035); }

  /* Technical placeholder panels (used where no live screenshot is shown, e.g. NDA-protected products) */
  .case-blueprint {
    position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center;
    background-image:
      linear-gradient(rgba(237,235,228,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(237,235,228,0.05) 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .case-blueprint::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
  }
  .bp-ring { position: relative; width: 190px; height: 190px; border-radius: 50%; border: 1px solid rgba(237,235,228,0.14); display: flex; align-items: center; justify-content: center; }
  .bp-ring::before { content: ''; position: absolute; inset: 22px; border-radius: 50%; border: 1px solid rgba(237,235,228,0.1); }
  .bp-ring::after { content: ''; position: absolute; top: -1px; left: 50%; width: 1px; height: 14px; background: var(--brass); transform: translateX(-50%); }
  .bp-mark { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: 0.06em; color: rgba(237,235,228,0.55); text-align: center; position: relative; z-index: 2; }
  .bp-mark span { display: block; font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; color: var(--brass); margin-top: 8px; font-weight: 400; }
  .bp-note {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 2;
    font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(237,235,228,0.4);
    white-space: nowrap;
  }
  .case-status-badge {
    position: absolute; top: 22px; right: 22px; z-index: 3;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(18,21,26,0.75); backdrop-filter: blur(6px);
    border: 1px solid rgba(205,162,76,0.45); border-radius: 100px;
    padding: 8px 16px 8px 12px;
    font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brass-bright);
  }
  .case-status-badge .pulse-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--brass); flex-shrink: 0;
    position: relative;
  }
  .case-status-badge .pulse-dot::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 1px solid var(--brass);
    animation: pulseRing 1.8s ease-out infinite;
  }
  @keyframes pulseRing {
    0% { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
  }

  .bp-corner { position: absolute; width: 16px; height: 16px; z-index: 2; }
  .bp-corner svg { width: 100%; height: 100%; }
  .bp-tl { top: 24px; left: 24px; }
  .bp-tr { top: 24px; right: 24px; transform: scaleX(-1); }
  .bp-bl { bottom: 24px; left: 24px; transform: scaleY(-1); }
  .bp-br { bottom: 24px; right: 24px; transform: scale(-1,-1); }

  /* OTHER WORK */
  .other-work { padding: 100px 48px; background: var(--bg2); border-top: 1px solid var(--border); }
  .other-work-inner { max-width: 1220px; margin: 0 auto; }
  .other-work-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 20px; }
  .other-work-headline { font-family: var(--display); font-weight: 600; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 18px; max-width: 700px; }
  .other-work-sub { font-size: 15px; color: var(--ink-dim); font-weight: 300; line-height: 1.8; max-width: 620px; margin-bottom: 56px; }
  .other-work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .ow-card {
    background: var(--bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
    transition: border-color 0.25s, transform 0.25s; text-decoration: none; display: block;
  }
  .ow-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
  .ow-thumb { position: relative; overflow: hidden; aspect-ratio: 4/3; }
  .ow-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(.2,0,0,1); }
  .ow-card:hover .ow-thumb img { transform: scale(1.06); }
  .ow-body { padding: 22px 24px 26px; }
  .ow-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; gap: 10px; }
  .ow-title { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); letter-spacing: -0.01em; }
  .ow-arrow { color: var(--muted); transition: transform 0.2s, color 0.2s; flex-shrink: 0; }
  .ow-card:hover .ow-arrow { color: var(--brass-bright); transform: translate(3px, -3px); }
  .ow-desc { font-size: 12.5px; color: var(--ink-dim); font-weight: 300; line-height: 1.6; margin-bottom: 14px; }
  .ow-tags { display: flex; flex-wrap: wrap; gap: 7px; }
  .ow-tag { font-family: var(--mono); border: 1px solid var(--border-strong); border-radius: 3px; padding: 4px 9px; font-size: 9.5px; letter-spacing: 0.05em; color: var(--muted); }

  @media (max-width: 900px) {
    .other-work { padding: 64px 22px; }
    .other-work-grid { grid-template-columns: 1fr; gap: 20px; }
  }
  @media (min-width: 901px) and (max-width: 1180px) {
    .other-work-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* STATS */
  .stats { padding: 100px 48px; background: var(--bg2); border-top: 1px solid var(--border); position: relative; }
  .stats-inner { max-width: 1220px; margin: 0 auto; }
  .stats-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 36px; }
  .stats-headline { font-family: var(--display); font-weight: 600; font-size: clamp(32px, 4.2vw, 56px); line-height: 1.1; letter-spacing: -0.01em; max-width: 760px; margin-bottom: 60px; color: var(--ink); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
  .stat-card { background: var(--bg2); padding: 40px 30px; display: flex; flex-direction: column; gap: 12px; }
  .stat-num { font-family: var(--display); font-weight: 600; font-size: clamp(44px, 4.4vw, 68px); line-height: 1; color: var(--ink); }
  .stat-num span { color: var(--brass-bright); }
  .stat-desc { font-size: 13px; color: var(--ink-dim); line-height: 1.55; font-weight: 300; max-width: 190px; }


  /* CONTACT */
  .contact-section { padding: 130px 48px; text-align: center; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
  .contact-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 65% 55% at 50% 45%, rgba(205,162,76,0.08) 0%, transparent 60%); pointer-events: none; }
  .contact-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass); margin-bottom: 30px; }
  .contact-headline { font-family: var(--display); font-weight: 600; font-size: clamp(46px, 7.4vw, 96px); line-height: 1.02; letter-spacing: -0.01em; margin-bottom: 44px; color: var(--ink); }
  .contact-headline em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--brass-bright); display: block; }
  .contact-info { display: flex; justify-content: center; gap: 48px; margin-bottom: 52px; flex-wrap: wrap; }
  .contact-link { display: flex; flex-direction: column; gap: 6px; text-decoration: none; align-items: center; }
  .contact-link-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
  .contact-link-val { font-size: 15px; color: var(--ink); transition: color 0.2s; }
  .contact-link:hover .contact-link-val { color: var(--brass-bright); }
  .contact-cta { display: inline-block; background: var(--brass); color: #171B22; font-family: var(--mono); font-weight: 500; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding: 18px 46px; text-decoration: none; border-radius: 3px; transition: all 0.2s; }
  .contact-cta:hover { background: var(--brass-bright); transform: translateY(-2px); }

  /* FOOTER */
  footer { border-top: 1px solid var(--border); padding: 30px 48px; display: flex; justify-content: space-between; align-items: center; background: var(--bg); }
  .footer-copy { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
  .footer-right { display: flex; gap: 30px; }
  .footer-right a { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
  .footer-right a:hover { color: var(--brass-bright); }

  /* ANIMATIONS */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes scrollPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
  .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.75s cubic-bezier(.2,.8,.2,1), transform 0.75s cubic-bezier(.2,.8,.2,1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.08s; }
  .reveal-delay-2 { transition-delay: 0.16s; }
  .reveal-delay-3 { transition-delay: 0.24s; }

  @media (max-width: 900px) {
    nav { padding: 18px 22px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 0 22px 56px; }
    .hero-sub { flex-direction: column; gap: 22px; align-items: flex-start; }
    .hero-meta { text-align: left; }
    .clients-section, .work-section, .stats, .contact-section { padding: 70px 22px; }
    .case-card, .case-card.reverse { grid-template-columns: 1fr; }
    .case-card.reverse .case-content { order: 1; }
    .case-card.reverse .case-image { order: 2; }
    .case-content { padding: 36px 28px; }
    .case-image { min-height: 260px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .contact-info { flex-direction: column; gap: 22px; }
    footer { padding: 22px; flex-direction: column; gap: 14px; text-align: center; }
    .plate { min-width: 140px; padding: 14px 18px 12px; }
  }
