
    /* ========== RESET + TOKENS ========== */

    :root {
      --bg: #121312;
      --bg-card: #1c1d1c;
      --text-1: #f1f1f1;
      --text-2: #9e9e9e;
      --text-3: #404040;
      --border: rgba(255,255,255,0.07);
      --border-hi: rgba(255,255,255,0.14);
      --font: 'DM Sans', sans-serif;
      --accent: #E91E8C;
      --accent-rgb: 233, 30, 140;
    }

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

    html {
      background: var(--bg);
    }

    body {
      max-width: 1600px;
      margin: 0 auto;
      background: var(--bg);
      color: var(--text-1);
      font-family: var(--font);
      -webkit-font-smoothing: antialiased;
    }

    /* ========== GLOBAL ========== */

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

    /* ========== BRUTALIST PULSE BUTTONS ========== */

    @keyframes pipBreathe {
      0%, 100% {
        transform: scaleY(1);
        opacity: 0.7;
      }
      50% {
        transform: scaleY(0.7);
        opacity: 1;
      }
    }

    /* --- PRIMARY --- */
    .bp-primary {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 0.9rem 1.6rem 0.9rem 1.2rem;
      background: transparent;
      color: var(--accent);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.15rem;
      text-decoration: none;
      transition: color 0.3s;
    }
    .bp-primary .bp-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.18em;
      color: var(--text-3);
      text-transform: uppercase;
      transition: color 0.3s;
      position: relative;
      z-index: 1;
    }
    .bp-primary .bp-text {
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }
    .bp-primary::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 0;
      background: var(--accent);
      transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s;
      z-index: 0;
    }
    .bp-primary::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--accent);
      z-index: 2;
      animation: pipBreathe 2.5s ease-in-out infinite;
      transform-origin: center;
      box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.4);
      transition: box-shadow 0.3s;
    }
    .bp-primary:hover::before { width: 100%; }
    .bp-primary:hover::after {
      animation: none;
      transform: scaleY(1);
      opacity: 1;
      box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.6);
    }
    .bp-primary:hover .bp-text { color: #fff; }
    .bp-primary:hover .bp-label { color: rgba(255,255,255,0.5); }
    .bp-primary:active { transform: scale(0.97); }

    /* --- GHOST --- */
    .bp-ghost {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      font-weight: 400;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 0.9rem 1.6rem 0.9rem 1.2rem;
      background: transparent;
      color: var(--text-2);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.15rem;
      text-decoration: none;
      transition: color 0.3s;
    }
    .bp-ghost .bp-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.18em;
      color: var(--text-3);
      text-transform: uppercase;
      transition: color 0.3s;
      position: relative;
      z-index: 1;
    }
    .bp-ghost .bp-text {
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }
    .bp-ghost::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 0;
      background: var(--accent);
      transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s;
      z-index: 0;
    }
    .bp-ghost::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--accent);
      z-index: 2;
      animation: pipBreathe 2.5s ease-in-out infinite;
      transform-origin: center;
      box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.4);
      transition: box-shadow 0.3s;
      opacity: 0.5;
    }
    .bp-ghost:hover { color: var(--accent); }
    .bp-ghost:hover::before { width: 100%; }
    .bp-ghost:hover::after {
      animation: none;
      transform: scaleY(1);
      opacity: 1;
      box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.6);
    }
    .bp-ghost:hover .bp-text { color: #fff; }
    .bp-ghost:hover .bp-label { color: rgba(255,255,255,0.5); }
    .bp-ghost:active { transform: scale(0.97); }

    /* --- SMALL --- */
    .bp-small {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding: 0.6rem 1.2rem 0.6rem 0.9rem;
      background: transparent;
      color: var(--accent);
      border: none;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      text-decoration: none;
      transition: color 0.3s;
    }
    .bp-small .bp-text {
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }
    .bp-small::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 0;
      background: var(--accent);
      transition: width 0.35s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s;
      z-index: 0;
    }
    .bp-small::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--accent);
      z-index: 2;
      animation: pipBreathe 2.5s ease-in-out infinite;
      transform-origin: center;
      box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.4);
      transition: box-shadow 0.3s;
    }
    .bp-small:hover::before { width: 100%; }
    .bp-small:hover::after {
      animation: none;
      transform: scaleY(1);
      opacity: 1;
      box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.6);
    }
    .bp-small:hover .bp-text { color: #fff; }
    .bp-small:active { transform: scale(0.97); }

    /* --- FULL-WIDTH MODIFIER --- */
    .bp-full {
      width: 100%;
    }

    /* ========== NAV ========== */

    #nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 0;
      transition: padding 0.4s cubic-bezier(0.4,0,0.2,1);
    }

    .v2-microbar {
      display: flex;
      width: 100%;
      height: 24px;
      align-items: center;
      justify-content: space-between;
      padding: 0 max(1.75rem, calc(50% - 800px));
      overflow: hidden;
      transition: height 0.4s ease, opacity 0.3s ease;
    }
    .v2-microbar-text {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-3);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.7rem max(1.75rem, calc(50% - 800px));
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
      position: relative;
    }

    .nav-logo {
      font-family: 'Bebas Neue', cursive;
      font-size: 1.3rem;
      letter-spacing: 0.06em;
      color: var(--text-1);
      text-decoration: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      transition: color 0.3s ease, font-size 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
      z-index: 1;
    }

    .links-left, .links-right {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
      transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    }
    .links-left li, .links-right li {
      display: flex;
      align-items: center;
    }

    .nav-lk {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0 0.9rem;
      white-space: nowrap;
      color: rgba(255,255,255,0.45);
      transition: color 0.2s ease, opacity 0.2s;
      position: relative;
    }
    .nav-lk:hover { color: var(--text-1); }

    .dot-sep {
      width: 1px;
      height: 14px;
      background: rgba(var(--accent-rgb), 0.3);
      flex-shrink: 0;
    }

    .has-dropdown { position: relative; }
    .nav-dropdown {
      position: absolute;
      top: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 100;
    }
    .nav-dropdown-inner {
      background: #0c0d0c;
      border: 1px solid rgba(var(--accent-rgb), 0.2);
      padding: 0.5rem 0;
      min-width: 140px;
    }
    .nav-dropdown-item {
      display: block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.58rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.5rem 1rem;
      color: rgba(255,255,255,0.55);
      transition: color 0.15s, background 0.15s;
    }
    .nav-dropdown-item:hover {
      color: var(--accent);
      background: rgba(var(--accent-rgb), 0.06);
    }

    .dd-arrow {
      font-size: 0.45rem;
      margin-left: 0.3rem;
      opacity: 0.5;
      vertical-align: middle;
    }

    .btn-nav {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.45rem 1rem;
      margin-left: 0.8rem;
      border-radius: 0;
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.65);
      background: transparent;
      cursor: pointer;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .btn-nav:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: #121312;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      z-index: 10;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-1);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Scrolled state */
    #nav.scrolled .v2-microbar {
      height: 0;
      opacity: 0;
    }
    #nav.scrolled .nav-inner {
      background: rgba(10,11,10,0.97);
      border-bottom: 1px solid var(--accent);
      border-radius: 0;
      padding: 0.55rem max(1.75rem, calc(50% - 800px));
    }
    #nav.scrolled .btn-nav {
      background: var(--accent);
      border-color: var(--accent);
      color: #121312;
    }

    /* Mobile drawer */
    .mob-menu {
      position: fixed;
      inset: 0;
      z-index: 2000;
      pointer-events: none;
    }
    .mob-menu.is-open { pointer-events: auto; }
    .mob-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.7);
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .mob-menu.is-open .mob-backdrop { opacity: 1; }

    .mob-drawer {
      position: absolute;
      top: 0;
      right: 0;
      width: min(320px, 85vw);
      height: 100dvh;
      background: #0a0b0a;
      border-left: 2px solid var(--accent);
      border-top: 2px solid var(--accent);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
      display: flex;
      flex-direction: column;
      padding: 5rem 1.5rem 2rem;
      overflow-y: auto;
      gap: 0;
      overflow: hidden;
    }
    .mob-menu.is-open .mob-drawer { transform: translateX(0); }

    .mob-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding-bottom: 1.25rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      margin-bottom: 0.5rem;
    }
    .mob-location {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.5rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-3);
    }
    .mob-logo-small {
      font-family: 'Bebas Neue', cursive;
      font-size: 1.1rem;
      letter-spacing: 0.06em;
      color: var(--text-3);
      line-height: 1;
    }

    .mob-watermark {
      position: absolute;
      bottom: 5rem;
      right: -0.25rem;
      font-family: 'Bebas Neue', cursive;
      font-size: 4.5rem;
      line-height: 0.85;
      letter-spacing: 0.02em;
      color: rgba(255,255,255,0.03);
      pointer-events: none;
      text-align: right;
      user-select: none;
    }

    .mob-link {
      font-family: 'DM Sans', sans-serif;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text-1);
      text-decoration: none;
      padding: 0.65rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      position: relative;
      opacity: 0;
      transform: translateX(16px);
      transition: color 0.2s, opacity 0.3s, transform 0.3s;
    }
    .mob-link::before {
      content: '';
      position: absolute;
      left: -1.5rem;
      top: 0;
      bottom: 0;
      width: 0;
      background: var(--accent);
      transition: width 0.2s ease;
    }
    .mob-link:hover::before { width: 2px; }
    .mob-link:hover { color: var(--accent); }

    .mob-link-sub {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-2);
      text-decoration: none;
      padding: 0.45rem 0 0.45rem 0.75rem;
      border-left: 1px solid rgba(var(--accent-rgb), 0.2);
      opacity: 0;
      transform: translateX(16px);
      transition: color 0.2s, opacity 0.3s, transform 0.3s;
      display: block;
    }
    .mob-link-sub:hover { color: var(--accent); }

    .mob-divider {
      height: 1px;
      background: rgba(255,255,255,0.07);
      margin: 0.75rem 0;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .mob-section-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-3);
      padding: 0.4rem 0;
      opacity: 0;
      transition: opacity 0.3s;
    }

    .mob-cta-wrap {
      margin-top: auto;
      padding-top: 1.5rem;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .mob-cta {
      display: block;
      text-align: center;
      background: var(--accent);
      color: #121312;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0.9rem 1.5rem;
      border-radius: 0;
      font-weight: 600;
      transition: opacity 0.2s;
    }
    .mob-cta:hover { opacity: 0.85; }

    /* Stagger in when drawer opens */
    .mob-menu.is-open .stagger-item {
      opacity: 1;
      transform: translateX(0);
    }
    .mob-menu.is-open .stagger-item:nth-child(1)  { transition-delay: 0.05s; }
    .mob-menu.is-open .stagger-item:nth-child(2)  { transition-delay: 0.08s; }
    .mob-menu.is-open .stagger-item:nth-child(3)  { transition-delay: 0.11s; }
    .mob-menu.is-open .stagger-item:nth-child(4)  { transition-delay: 0.14s; }
    .mob-menu.is-open .stagger-item:nth-child(5)  { transition-delay: 0.17s; }
    .mob-menu.is-open .stagger-item:nth-child(6)  { transition-delay: 0.20s; }
    .mob-menu.is-open .stagger-item:nth-child(7)  { transition-delay: 0.23s; }
    .mob-menu.is-open .stagger-item:nth-child(8)  { transition-delay: 0.26s; }
    .mob-menu.is-open .stagger-item:nth-child(9)  { transition-delay: 0.28s; }
    .mob-menu.is-open .stagger-item:nth-child(10) { transition-delay: 0.30s; }
    .mob-menu.is-open .stagger-item:nth-child(11) { transition-delay: 0.32s; }
    .mob-menu.is-open .stagger-item:nth-child(12) { transition-delay: 0.34s; }
    .mob-menu.is-open .stagger-item:nth-child(13) { transition-delay: 0.36s; }
    .mob-menu.is-open .stagger-item:nth-child(14) { transition-delay: 0.38s; }

    /* X hamburger when open */
    #nav .hamburger.is-open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    #nav .hamburger.is-open span:nth-child(2) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Intro animation */
    #nav.awaiting .nav-lk,
    #nav.awaiting .dot-sep,
    #nav.awaiting .btn-nav {
      opacity: 0;
      transform: translateX(0px);
    }
    #nav.awaiting .nav-logo {
      opacity: 0;
      transform: translateX(-50%) scale(1.4);
    }
    #nav.anim-go .nav-logo {
      transition: opacity 0.5s ease 0.05s, transform 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.05s, color 0.3s, font-size 0.4s;
    }
    #nav.anim-go .links-left .nav-lk,
    #nav.anim-go .links-left .dot-sep {
      transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
    }
    #nav.anim-go .links-right .nav-lk,
    #nav.anim-go .links-right .dot-sep {
      transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
    }
    #nav.anim-go .btn-nav {
      transition: opacity 0.4s ease 0.3s, transform 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.3s, background 0.2s, color 0.2s, border-color 0.2s;
    }
    #nav.anim-go .nav-lk,
    #nav.anim-go .dot-sep,
    #nav.anim-go .btn-nav {
      opacity: 1;
      transform: translateX(0);
    }
    #nav.anim-go .nav-logo {
      opacity: 1;
      transform: translateX(-50%) scale(1);
    }

    /* Stagger left links */
    #nav.anim-go .links-left li:nth-child(1) .nav-lk  { transition-delay: 0.10s; }
    #nav.anim-go .links-left li:nth-child(2) .dot-sep  { transition-delay: 0.13s; }
    #nav.anim-go .links-left li:nth-child(3) .nav-lk  { transition-delay: 0.16s; }
    #nav.anim-go .links-left li:nth-child(4) .dot-sep  { transition-delay: 0.18s; }
    #nav.anim-go .links-left li:nth-child(5) .nav-lk  { transition-delay: 0.20s; }
    #nav.anim-go .links-left li:nth-child(6) .dot-sep  { transition-delay: 0.22s; }
    #nav.anim-go .links-left li:nth-child(7) .nav-lk  { transition-delay: 0.24s; }

    /* Stagger right links */
    #nav.anim-go .links-right li:nth-child(1) .nav-lk  { transition-delay: 0.10s; }
    #nav.anim-go .links-right li:nth-child(2) .dot-sep  { transition-delay: 0.13s; }
    #nav.anim-go .links-right li:nth-child(3) .nav-lk  { transition-delay: 0.16s; }
    #nav.anim-go .links-right li:nth-child(4) .dot-sep  { transition-delay: 0.18s; }
    #nav.anim-go .links-right li:nth-child(5) .nav-lk  { transition-delay: 0.20s; }

    /* ========== HERO ========== */

    /* ── Scroll zone + sticky viewport ── */
    .hero-scroll-zone {
      height: 520vh;
      position: relative;
    }
    .hero-sticky {
      position: sticky;
      top: 0;
      height: 100vh;
      height: 100dvh;
      overflow: hidden;
      background: var(--bg);
    }

    /* ── Video layer ── */
    .hero-vid-layer {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
    }
    .hero-vid-wrap {
      position: absolute;
      overflow: hidden;
      top: 0;
      height: 100%;
    }
    .hero-vid-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ── Duotone overlays (siblings of vid wraps, positioned by JS) ── */
    .side-duotone {
      position: absolute;
      background: var(--accent);
      mix-blend-mode: screen;
      pointer-events: none;
      z-index: 2;
      opacity: 0;
    }

    /* ── Dark overlay ── */
    .hero-vid-overlay {
      position: absolute;
      inset: 0;
      background: var(--bg);
      z-index: 1;
      pointer-events: none;
    }

    /* ── Bottom scrim gradient ── */
    .hero-scrim {
      position: absolute;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      opacity: 0;
      background: linear-gradient(
        to top,
        rgba(0,0,0,0.82) 0%,
        rgba(0,0,0,0.45) 28%,
        transparent 58%
      );
    }
    .hero-scrim.visible { opacity: 1; }

    /* ── "EST. 2024" label ── */
    .hero-est {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 4;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-3);
      white-space: nowrap;
      pointer-events: none;
    }

    /* ── "RUFF BANDIT" split title ── */
    .hero-title-wrap {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      z-index: 4;
      pointer-events: none;
      display: flex;
      align-items: baseline;
      gap: 0.6em;
      white-space: nowrap;
    }
    .hero-title-left,
    .hero-title-right {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(5rem, 14vw, 12rem);
      line-height: 0.9;
      letter-spacing: 0.03em;
      color: var(--text-1);
      white-space: nowrap;
      display: block;
    }

    /* ── Vertical accent line ─── */
    .hero-vline {
      position: absolute;
      top: 0;
      height: 100vh;
      width: 1px;
      background: var(--accent);
      z-index: 4;
      pointer-events: none;
      transform: translateX(-50%);
      animation: vlinePulse 3s ease-in-out infinite;
    }
    @keyframes vlinePulse {
      0%, 100% { box-shadow: 0 0 6px 1px rgba(var(--accent-rgb), 0.08); }
      50%       { box-shadow: 0 0 10px 2px rgba(var(--accent-rgb), 0.15); }
    }

    /* ── Desktop subheaders ── */
    .hero-hood-left,
    .hero-hood-right {
      position: absolute;
      z-index: 4;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-3);
      white-space: nowrap;
      pointer-events: none;
    }

    /* ── Scattered annotation labels ── */
    .hero-annot {
      position: absolute;
      z-index: 4;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-3);
      pointer-events: none;
      transition: color 0.6s ease;
      white-space: nowrap;
    }
    .hero-annot.accent { color: var(--accent); }
    .annot-toronto {
      top: 18%;
      right: 8%;
      transform: rotate(90deg);
      transform-origin: right center;
    }
    .annot-dogwalking { top: 58%; left: 6%; }
    .annot-boarding   { top: 63%; right: 6%; }
    .annot-parkdale   { bottom: 22%; left: 10%; }

    /* ── Auto-scroll button (square, V5C design) ── */
    @keyframes floatRight {
      0%, 100% { transform: translateX(0);    opacity: 0.7; }
      50%       { transform: translateX(4px); opacity: 1;   }
    }
    @keyframes btnFlyOut {
      0%   { opacity: 1;   transform: translateX(0)    scale(1);    }
      40%  { opacity: 0.6; transform: translateX(20px) scale(0.92); }
      100% { opacity: 0;   transform: translateX(60px) scale(0.72); }
    }
    @keyframes dotPulse {
      0%, 100% { opacity: 1;   transform: scale(1);   }
      50%       { opacity: 0.5; transform: scale(0.7); }
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0.25; }
    }

    .scroll-btn-wrap {
      position: absolute;
      z-index: 6;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
      pointer-events: auto;
    }
    .scroll-btn {
      width: 44px;
      height: 44px;
      border-radius: 0;
      border: 1px solid rgba(255,255,255,0.12);
      background: transparent;
      cursor: pointer;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.25s ease;
      animation: floatRight 2.4s ease-in-out infinite;
      overflow: hidden;
      flex-shrink: 0;
      pointer-events: auto;
    }
    .scroll-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .scroll-btn:hover { border-color: var(--accent); }
    .scroll-btn:hover::before { transform: scaleX(1); }
    .scroll-btn:hover .scroll-chevron { stroke: #fff; }
    .scroll-btn-dot {
      position: absolute;
      top: 5px;
      right: 5px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--accent);
      z-index: 2;
      flex-shrink: 0;
      animation: dotPulse 2.4s ease-in-out infinite;
    }
    .scroll-chevron {
      position: relative;
      z-index: 1;
      stroke: var(--text-3);
      transition: stroke 0.25s ease;
      flex-shrink: 0;
    }
    .scroll-btn-label {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.45rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-3);
      white-space: nowrap;
      pointer-events: none;
    }
    .scroll-btn-wrap.flying-out {
      animation: btnFlyOut 0.55s cubic-bezier(0.55, 0, 1, 0.45) forwards;
      pointer-events: none;
    }
    .scroll-btn-wrap.flying-out .scroll-btn { animation: none; }

    /* ── Hero content (Stage 5) ── */
    .hero-content {
      position: absolute;
      inset: 0;
      z-index: 5;
      display: flex;
      align-items: flex-end;
      padding: 3.5rem 1.75rem 4.5rem;
      pointer-events: none;
      opacity: 0;
    }
    .hero-content.active { pointer-events: auto; }
    .hero-left {
      display: flex;
      flex-direction: column;
      max-width: 480px;
      gap: 0;
    }
    .hero-micro-label {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      margin-bottom: 0.9rem;
    }
    .hero-micro-pip {
      width: 3px;
      height: 14px;
      background: var(--accent);
      flex-shrink: 0;
    }
    .hero-micro-text {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.55rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-3);
    }
    .hero-tagline {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      font-weight: 400;
      line-height: 1.05;
      letter-spacing: 0.02em;
      text-transform: uppercase;
      color: var(--text-1);
      margin-bottom: 1rem;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-2);
      margin-bottom: 1rem;
    }
    .badge-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #5dff5d;
      flex-shrink: 0;
      animation: blink 2.5s ease-in-out infinite;
    }
    .hero-bio {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.88rem;
      line-height: 1.78;
      color: var(--text-2);
      max-width: 380px;
      margin-bottom: 1.4rem;
    }
    .hero-actions {
      display: flex;
      gap: 0.55rem;
      flex-wrap: wrap;
    }

    /* ========== STATEMENT ========== */

    .statement-scroll-zone {
      height: 300vh;
      position: relative;
    }

    .statement-sticky {
      height: 100vh;
      position: sticky;
      top: 0;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 0.82fr;
    }

    /* Left: text side */
    .stmt-left {
      display: flex;
      align-items: center;
      padding: 4rem 3rem 4rem 1.75rem;
      position: relative;
      z-index: 2;
      min-height: 0;
      align-self: stretch;
    }

    .stmt-left-inner {
      width: 100%;
    }

    .stmt-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-3);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 2.5rem;
    }

    .stmt-eyebrow .pip {
      width: 6px;
      height: 6px;
      background: var(--accent);
      flex-shrink: 0;
      display: block;
      animation: pipPulse 2.5s ease-in-out infinite;
    }

    @keyframes pipPulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.7); }
    }

    .stmt-text {
      font-size: clamp(1.5rem, 2.5vw, 2.2rem);
      font-weight: 400;
      line-height: 1.45;
      letter-spacing: -0.02em;
    }

    .st-phrase {
      display: inline;
      opacity: 0.08;
      filter: blur(6px);
      transition: opacity 600ms ease, filter 600ms ease, color 600ms ease;
    }

    .st-phrase.lit {
      opacity: 1;
      filter: blur(0);
      color: #ffffff;
    }

    .st-phrase.lit-dim {
      opacity: 0.65;
      filter: blur(0);
      color: var(--text-2);
    }

    .st-phrase.bold {
      font-weight: 600;
    }

    .st-phrase.accent {
      color: var(--accent);
      font-weight: 600;
    }

    .st-phrase.lit.accent {
      opacity: 1;
      filter: blur(0);
      color: var(--accent);
    }

    .stmt-rule-wrap {
      margin-top: 2.5rem;
      opacity: 0;
      transform: scaleX(0);
      transform-origin: left;
      transition: opacity 800ms ease 200ms, transform 800ms ease 200ms;
    }

    .stmt-rule-wrap.visible {
      opacity: 1;
      transform: scaleX(1);
    }

    .stmt-rule {
      height: 1px;
      width: 120px;
      background: var(--text-3);
    }

    .stmt-attribution {
      margin-top: 0.75rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      color: var(--text-2);
      letter-spacing: 0.05em;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 600ms ease 500ms, transform 600ms ease 500ms;
    }

    .stmt-attribution.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Right: photo side */
    .stmt-right {
      position: relative;
      overflow: hidden;
      align-self: stretch;
    }

    .stmt-photo-wrap {
      position: absolute;
      inset: 0;
      will-change: transform, opacity;
    }

    .stmt-photo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: grayscale(1) contrast(1.1) brightness(0.7);
      display: block;
    }

    .stmt-duotone {
      position: absolute;
      inset: 0;
      background: var(--accent);
      mix-blend-mode: screen;
      opacity: 0;
      pointer-events: none;
      will-change: opacity;
    }

    .stmt-watermark {
      position: absolute;
      right: -0.25rem;
      top: 50%;
      transform: translateY(-50%) rotate(90deg);
      transform-origin: center center;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 8vw, 8rem);
      color: rgba(255,255,255,0.06);
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
      letter-spacing: 0.05em;
      line-height: 1;
    }

    /* ========== SERVICES ========== */

    /* ── Section label ── */
    .section-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .fn-star {
      color: var(--accent);
      font-weight: 700;
    }

    /* ── Section wrapper ── */
    .hybrid-section-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 3rem 2rem 1.5rem;
    }
    .hybrid-section {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    .hybrid-header {
      margin-bottom: 3rem;
    }
    .hybrid-heading {
      font-size: clamp(2.5rem, 5vw, 4rem);
      line-height: 0.95;
      margin: 0.5rem 0 1rem;
    }
    .hybrid-subtext {
      color: var(--text-2);
      font-size: 0.95rem;
      max-width: 500px;
      line-height: 1.6;
    }

    /* ── Card grid ── */
    .hybrid-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      flex: 1;
      width: 100%;
    }
    .hybrid-divider {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--accent);
      z-index: 10;
      opacity: 0.4;
    }

    /* ── Cards ── */
    .hybrid-card {
      position: relative;
      min-height: 650px;
      overflow: hidden;
    }
    .hybrid-card .image-wrap {
      position: absolute;
      inset: 0;
      overflow: hidden;
      background: #000;
    }
    .hybrid-card .image-wrap video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.05) brightness(0.35);
      display: block;
      transition: transform 0.5s;
    }
    .hybrid-card:hover .image-wrap video { transform: scale(1.04); }

    /* ── Gradient scrim ── */
    .hybrid-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        #121312 0%,
        rgba(18,19,18,0.95) 35%,
        rgba(18,19,18,0.5) 60%,
        transparent 75%
      );
      z-index: 2;
      pointer-events: none;
      transition: background 0.4s ease;
    }

    /* ── Content area ── */
    .hybrid-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 2rem;
      z-index: 5;
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .hybrid-content::before {
      content: '';
      position: absolute;
      left: 0; right: 0;
      top: -2rem; bottom: 0;
      background: linear-gradient(to top, rgba(18,19,18,0.95) 0%, rgba(18,19,18,0.7) 70%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }
    .hybrid-card:hover .hybrid-content::before { opacity: 1; }
    .hybrid-card:hover .hybrid-content { transform: translateY(-10px); }

    /* ── Watermark ── */
    .hybrid-watermark {
      position: absolute;
      z-index: 3;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4rem, 8vw, 7rem);
      color: rgba(255,255,255,0.06);
      line-height: 0.9;
      pointer-events: none;
      transition: color 0.4s ease;
      left: 2rem;
      top: 42%;
      transform: translateY(-50%);
    }
    .hybrid-card:hover .hybrid-watermark { color: rgba(255,255,255,0.25); }

    /* ── Card labels / text ── */
    .hybrid-card-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.75rem;
      transition: color 0.4s ease 0.15s;
    }
    .hybrid-card:hover .hybrid-card-label { color: #ffffff; }
    .hybrid-card-desc {
      color: var(--text-2);
      font-size: 0.85rem;
      line-height: 1.5;
      margin-bottom: 1rem;
      transition: opacity 0.4s ease;
    }

    /* ── Price table (walks) ── */
    .hybrid-price-table { margin: 2.25rem 0 1rem; }
    .hybrid-price-row {
      display: flex;
      justify-content: space-between;
      padding: 0.35rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 0.85rem;
    }
    .hybrid-price-row span:first-child { color: var(--text-2); }
    .hybrid-price-row span:last-child {
      font-weight: 700;
      color: var(--accent);
      font-size: 0.9rem;
    }

    /* ── Big price (boarding) ── */
    .hybrid-price-big {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 7vw, 5rem);
      color: var(--accent);
      line-height: 0.85;
      margin-top: 1.5rem;
    }
    .hybrid-price-unit {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      color: var(--text-2);
      margin-left: 0.25rem;
    }
    .hybrid-footnote {
      font-size: 0.7rem;
      color: var(--text-3);
      margin: 0.75rem 0 1.25rem;
      line-height: 1.5;
    }

    /* ── X-ray / duotone hover overlay ── */
    .hybrid-xray {
      position: absolute;
      inset: 0;
      background: var(--accent);
      mix-blend-mode: screen;
      opacity: 0;
      pointer-events: none;
      z-index: 4;
      transition: opacity 0.4s ease;
    }
    .hybrid-card:hover .hybrid-xray { opacity: 0.22; }

    /* ── Contact section (desktop) ── */
    .contact-section { max-width: 1000px; margin: 0 auto; padding: 0 1rem; }
    .contact-drawer { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.4s ease, opacity 0.3s ease; }
    .contact-trigger { display: flex; align-items: center; gap: 1rem; cursor: pointer; padding: 1rem 0; user-select: none; }
    .contact-trigger:hover .ca-trigger-text { color: var(--text-1); }
    .contact-trigger:hover .contact-arrow { color: var(--accent); }
    .ca-trigger-text { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; letter-spacing: 0.1em; color: var(--text-2); transition: color 0.3s; }
    .contact-arrow { font-size: 1.2rem; color: var(--text-3); transition: transform 0.3s ease, color 0.3s; }
    .contact-xray-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 940px; margin: 0 auto; padding: 0.5rem 0 1.5rem; }
    .cx-card {
      position: relative;
      padding: 1.5rem 1.25rem;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,0.06);
      border-right: none;
      overflow: hidden;
      display: flex;
      align-items: center;
    }
    .cx-card:last-child { border-right: 1px solid rgba(255,255,255,0.06); }
    .cx-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.02) 0%, transparent 60%), var(--bg-card);
      z-index: 0;
    }
    .cx-xray {
      position: absolute;
      inset: 0;
      background: var(--accent);
      mix-blend-mode: screen;
      opacity: 0;
      pointer-events: none;
      z-index: 1;
      transition: opacity 0.4s ease;
    }
    .cx-card:hover .cx-xray { opacity: 0.22; }
    .cx-content { position: relative; z-index: 2; display: flex; align-items: center; gap: 0.75rem; flex: 1; }
    .cx-type { font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; min-width: 70px; transition: color 0.3s ease; }
    .cx-card:hover .cx-type { color: #fff; }
    .cx-value { font-family: 'DM Sans', sans-serif; font-size: 0.85rem; font-weight: 500; color: var(--text-1); flex: 1; }
    .cx-arrow { font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; color: var(--text-3); transition: color 0.3s, transform 0.3s; }
    .cx-card:hover .cx-arrow { color: #fff; transform: translateX(4px); }
    .cx-card-ig .cx-type { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .cx-card-ig:hover .cx-type { background: none; -webkit-text-fill-color: #fff; color: #fff; }
    .cx-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); z-index: 3; animation: pipBreathe 2.5s ease-in-out infinite; transform-origin: center; }
    .cx-card:hover::before { animation: none; transform: scaleY(1); opacity: 1; }

    /* ── Mobile swipe section ── */
    .m1-section {
      width: 100%;
      display: flex;
      flex-direction: column;
      background: var(--bg);
    }
    .m1-main-content {
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transition: transform 0.4s ease, opacity 0.3s ease;
    }
    .m1-section.drawer-open .m1-main-content {
      transform: scale(0.95);
      opacity: 0.7;
    }
    .m1-header {
      padding: 2rem 1.25rem 1rem;
      flex-shrink: 0;
    }
    .m1-header .section-label { font-size: 0.6rem; }
    .m1-header h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 1.8rem;
      line-height: 0.95;
      margin: 0.4rem 0 0.5rem;
      text-transform: uppercase;
    }
    .m1-header p {
      color: var(--text-2);
      font-size: 0.75rem;
      line-height: 1.5;
    }
    .m1-swipe-zone {
      flex: 1;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .m1-swipe {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      gap: 12px;
      padding: 0 calc((100vw - 88vw) / 2);
    }
    .m1-swipe::-webkit-scrollbar { display: none; }
    .m1-card {
      flex: 0 0 88vw;
      min-height: 500px;
      scroll-snap-align: center;
      position: relative;
      overflow: hidden;
    }
    .m1-card video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(100%) contrast(1.05) brightness(0.35);
    }
    .m1-card-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,
        #121312 0%,
        rgba(18,19,18,0.95) 35%,
        rgba(18,19,18,0.5) 60%,
        transparent 75%
      );
      z-index: 2;
      pointer-events: none;
    }
    .m1-card-watermark {
      position: absolute;
      z-index: 3;
      font-family: 'Bebas Neue', sans-serif;
      font-size: 3.5rem;
      color: rgba(255,255,255,0.15);
      line-height: 0.9;
      pointer-events: none;
      left: 1.25rem;
      top: 35%;
      transform: translateY(-50%);
      transition: color 0.4s ease;
    }
    .m1-card.xray-active .m1-card-watermark { color: rgba(255,255,255,0.35); }
    .m1-xray {
      position: absolute;
      inset: 0;
      background: var(--accent);
      mix-blend-mode: screen;
      opacity: 0;
      pointer-events: none;
      z-index: 4;
      transition: opacity 0.4s ease;
    }
    .m1-card.xray-active .m1-xray { opacity: 0.22; }
    .m1-card.xray-active .m1-card-label { color: #fff; transition: color 0.4s ease 0.2s; }
    .m1-section.drawer-open .m1-xray { opacity: 0; }
    .m1-card-content {
      position: absolute;
      bottom: 0;
      left: 0; right: 0;
      padding: 1.25rem;
      z-index: 5;
    }
    .m1-card-label {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.5rem;
      transition: color 0.4s ease;
    }
    .m1-card-desc {
      color: var(--text-2);
      font-size: 0.75rem;
      line-height: 1.5;
      margin-bottom: 0.75rem;
    }
    .m1-price-table { margin: 1rem 0 0.75rem; }
    .m1-price-row {
      display: flex;
      justify-content: space-between;
      padding: 0.25rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-size: 0.75rem;
    }
    .m1-price-row span:first-child { color: var(--text-2); }
    .m1-price-row span:last-child { font-weight: 700; color: var(--accent); font-size: 0.8rem; }
    .m1-price-big {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 2.8rem;
      color: var(--accent);
      line-height: 0.85;
      margin-top: 0.75rem;
    }
    .m1-price-unit {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      color: var(--text-2);
      margin-left: 0.25rem;
    }
    .m1-footnote {
      font-size: 0.6rem;
      color: var(--text-3);
      margin: 0.5rem 0 0.75rem;
      line-height: 1.5;
    }
    .m1-card .bp-primary,
    .m1-card .bp-ghost {
      width: 100%;
      padding: 0.75rem 1rem 0.75rem 0.9rem;
      font-size: 0.8rem;
    }
    .m1-card .bp-label { font-size: 0.5rem; }
    .m1-dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem 0 0.5rem;
      flex-shrink: 0;
    }
    .m1-dot {
      width: 6px;
      height: 6px;
      background: rgba(255,255,255,0.15);
      transition: background 0.3s, transform 0.3s;
    }
    .m1-dot.active { background: var(--accent); transform: scale(1.3); }
    .m1-both-note {
      padding: 0 1.25rem;
      font-size: 0.62rem;
      color: var(--text-3);
      letter-spacing: 0.03em;
      flex-shrink: 0;
    }
    .m1-both-note span { color: var(--text-2); }
    .m1-drawer-section {
      flex-shrink: 0;
      padding: 0 1.25rem 1rem;
    }
    .m1-drawer-trigger {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      cursor: pointer;
      padding: 0.5rem 0;
      user-select: none;
    }
    .m1-drawer-trigger .m1-dt-pip {
      width: 3px;
      height: 14px;
      background: var(--accent);
      animation: pipBreathe 2.5s ease-in-out infinite;
      transform-origin: center;
      flex-shrink: 0;
    }
    .m1-drawer-trigger .m1-dt-text {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      color: var(--text-2);
      transition: color 0.3s;
    }
    .m1-drawer-trigger .m1-dt-line {
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,0.07);
    }
    .m1-drawer-trigger .m1-dt-arrow {
      color: var(--text-3);
      font-size: 0.9rem;
      transition: transform 0.3s;
    }
    .m1-drawer {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    .m1-section.drawer-open .m1-drawer { max-height: 300px; opacity: 1; }
    .m1-cx-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 0 0.6rem 0.75rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }
    .m1-cx-item::before {
      content: '';
      position: absolute;
      left: 0; top: 0; bottom: 0;
      width: 2px;
      background: var(--accent);
      animation: pipBreathe 2.5s ease-in-out infinite;
    }
    .m1-cx-xray {
      position: absolute;
      inset: 0;
      background: var(--accent);
      mix-blend-mode: screen;
      opacity: 0;
      pointer-events: none;
      z-index: 0;
      transition: opacity 0.4s ease;
    }
    .m1-cx-item:hover .m1-cx-xray { opacity: 0.22; }
    .m1-cx-item .cx-type { font-family: 'JetBrains Mono', monospace; font-size: 0.5rem; letter-spacing: 0.12em; color: var(--accent); text-transform: uppercase; min-width: 55px; position: relative; z-index: 1; transition: color 0.3s; }
    .m1-cx-item:hover .cx-type { color: #fff; }
    .m1-cx-item .cx-value { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 500; color: var(--text-1); flex: 1; position: relative; z-index: 1; }
    .m1-cx-item .cx-arrow { font-family: 'Bebas Neue', sans-serif; font-size: 0.9rem; color: var(--text-3); position: relative; z-index: 1; transition: color 0.3s, transform 0.3s; }
    .m1-cx-item:hover .cx-arrow { color: #fff; transform: translateX(3px); }
    .m1-cx-item.m1-cx-ig .cx-type { background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .m1-cx-item.m1-cx-ig:hover .cx-type { background: none; -webkit-text-fill-color: #fff; }

    /* ========== HOW IT WORKS ========== */

    .hiw-section {
      padding: 4rem 2.5rem 5rem;
      max-width: 1100px;
      margin: 0 auto;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hiw-header {
      margin-bottom: 3.5rem;
    }

    .hiw-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.75rem;
    }
    .hiw-eyebrow::before {
      content: '';
      display: block;
      width: 18px;
      height: 2px;
      background: var(--accent);
    }

    .hiw-heading {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 5rem);
      line-height: 0.93;
      letter-spacing: 0.01em;
      color: var(--text-1);
      margin-bottom: 1rem;
    }

    .hiw-subtext {
      font-size: 0.95rem;
      color: var(--text-2);
      max-width: 420px;
      line-height: 1.65;
    }

    /* ── Flip Card Grid ── */
    .hiw-cards-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      max-width: 940px;
      background: rgba(255,255,255,0.05);
    }

    /* ── Flip Card ── */
    .hiw-card {
      perspective: 1000px;
      min-height: 380px;
      cursor: pointer;
      position: relative;
    }

    .hiw-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: 380px;
      transform-style: preserve-3d;
      transition: transform 650ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hiw-card:hover .hiw-card-inner {
      transform: rotateY(180deg);
    }

    .hiw-card-front,
    .hiw-card-back {
      position: absolute;
      inset: 0;
      backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      background: var(--bg-card);
      overflow: hidden;
    }

    /* Front face */
    .hiw-card-front {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 1.75rem 1.5rem 1.5rem;
      border-left: 1px solid rgba(255,255,255,0.04);
    }

    .hiw-ghost-number {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(4.5rem, 8vw, 7rem);
      line-height: 1;
      letter-spacing: -0.02em;
      color: rgba(255,255,255,0.04);
      user-select: none;
      pointer-events: none;
    }

    .hiw-card-front-content {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .hiw-step-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .hiw-step-title {
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-1);
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    .hiw-hover-hint {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.55rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-top: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }

    .hiw-hover-hint-arrow {
      display: inline-block;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .hiw-card:hover .hiw-hover-hint {
      color: rgba(255,255,255,0.35);
    }

    .hiw-card:hover .hiw-hover-hint-arrow {
      transform: translateX(4px);
    }

    /* Accent line on hover */
    .hiw-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: var(--accent);
      z-index: 5;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    }
    .hiw-card:hover::after {
      transform: scaleX(1);
    }

    /* Back face */
    .hiw-card-back {
      transform: rotateY(180deg);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0;
    }

    .hiw-back-video-wrap {
      position: absolute;
      inset: 0;
      background: var(--bg-card);
      overflow: hidden;
    }

    .hiw-back-video-wrap video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1) contrast(1.05) brightness(0.55);
      display: block;
    }

    .hiw-back-overlay {
      position: absolute;
      inset: 0;
      background: var(--accent);
      mix-blend-mode: screen;
      opacity: 0;
      transition: opacity 0.4s ease 0.35s;
    }

    .hiw-card:hover .hiw-back-overlay {
      opacity: 0.22;
    }

    .hiw-back-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(10,10,10,0.96) 0%,
        rgba(10,10,10,0.75) 35%,
        rgba(10,10,10,0.3) 65%,
        transparent 100%
      );
    }

    .hiw-back-content {
      position: relative;
      z-index: 2;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .hiw-back-step {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
    }

    .hiw-back-desc {
      font-size: 0.88rem;
      color: var(--text-1);
      line-height: 1.6;
      font-weight: 400;
    }

    .hiw-back-badge {
      display: inline-block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.52rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      border: 1px solid rgba(var(--accent-rgb), 0.35);
      padding: 0.2rem 0.5rem;
      margin-top: 0.35rem;
      align-self: flex-start;
    }

    /* Dot indicators — hidden on desktop, shown on mobile */
    .hiw-dots {
      display: none;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1.25rem;
      padding: 0 1.25rem;
    }

    .hiw-dot {
      width: 6px;
      height: 6px;
      background: var(--text-3);
      transition: background 0.3s, transform 0.3s;
      cursor: pointer;
    }

    .hiw-dot.active {
      background: var(--accent);
      transform: scale(1.3);
    }

    /* Entrance animation states */
    .hiw-card:not(.is-visible),
    .hiw-header:not(.is-visible) {
      opacity: 0;
    }

    .hiw-card.is-visible {
      animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
    }
    .hiw-card.is-visible:nth-child(1) { animation-delay: 0ms; }
    .hiw-card.is-visible:nth-child(2) { animation-delay: 80ms; }
    .hiw-card.is-visible:nth-child(3) { animation-delay: 160ms; }
    .hiw-card.is-visible:nth-child(4) { animation-delay: 240ms; }

    .hiw-header.is-visible {
      animation: fadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
    }

    /* ========== MAXINE ========== */

    .maxine-split {
      display: flex; width: 100%; min-height: 100vh; height: auto; position: relative; overflow: hidden;
      padding: 10vh 0;
      box-sizing: border-box;
      align-items: center; justify-content: center;
    }
    .maxine-img-wrap {
      width: 55%; height: 100%; max-height: 80vh; position: relative; overflow: hidden; flex-shrink: 0;
      padding: 2.5rem 0 2.5rem 2.5rem;
    }
    .maxine-img-wrap::before {
      content: '';
      position: absolute;
      inset: 2.5rem;
      border: 2px solid rgba(var(--accent-rgb), 0.4);
      z-index: 2;
      pointer-events: none;
    }
    .maxine-img-wrap img {
      width: 100%; height: 100%; object-fit: cover; object-position: center top;
      display: block; position: relative; z-index: 1;
    }
    .maxine-img-wrap.ken-burns img {
      animation: kenBurns 12s ease-in-out infinite alternate;
    }
    .split-line {
      width: 2px; flex-shrink: 0; background: var(--accent); position: relative;
      box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.15);
      animation: linePulse-maxine 3s ease-in-out infinite;
      overflow: hidden;
    }
    .split-line::before {
      content: ''; position: absolute; left: 50%; transform: translateX(-50%);
      width: 8px; height: 40px; border-radius: 4px;
      background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), 0.9), rgba(var(--accent-rgb), 0.3) 40%, transparent 70%);
      filter: blur(2px);
      animation: lineGlow-maxine 7s ease-in-out infinite;
    }
    .maxine-text {
      width: 45%; display: flex; flex-direction: column; justify-content: center;
      padding: 3rem; position: relative; overflow: hidden;
    }
    .maxine-watermark {
      position: absolute; top: 5%; left: 50%; transform: translateX(-50%);
      font-family: 'Bebas Neue', cursive; font-size: min(15vw, 15rem);
      color: rgba(255,255,255,0.06);
      pointer-events: none; white-space: nowrap; line-height: 1; user-select: none;
    }
    .maxine-micro-label {
      display: flex; align-items: center; gap: 0.5rem;
      font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; font-weight: 600;
      text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-3); margin-bottom: 1.25rem;
    }
    .maxine-micro-label .pip {
      width: 3px; height: 14px; background: var(--accent); flex-shrink: 0;
    }
    .maxine-heading {
      font-family: var(--font); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.6rem);
      color: var(--text-1); letter-spacing: -0.04em; margin-bottom: 1.5rem; line-height: 1.1;
    }
    .maxine-body p {
      font-family: var(--font); font-weight: 400; font-size: 0.88rem; line-height: 1.82;
      color: var(--text-2);
    }
    .maxine-body p + p { margin-top: 1rem; }
    .maxine-tags {
      display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.75rem;
    }
    .maxine-tags span {
      border-radius: 0 !important; border: 1px solid #2a2a2a; font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; font-weight: 600; text-transform: uppercase; color: var(--text-3);
      padding: 0.35rem 0.8rem; cursor: default;
      transition: border-color 0.35s ease, color 0.35s ease;
    }
    .maxine-tags span.tag-active { border-color: var(--accent); color: var(--text-1); }
    .maxine-tags span:hover { border-color: var(--accent); color: var(--text-1); }
    .maxine-review-link {
      display: inline-block; margin-top: 1.5rem; font-family: var(--font); font-weight: 600;
      font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent);
      text-decoration: none; transition: text-decoration 0.2s;
    }
    .maxine-review-link:hover { text-decoration: underline; }
    .maxine-review-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

    /* ========== ABOUT ========== */

    /* Eyebrow label */
    .about-eyebrow {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 1.25rem;
    }

    .about-eyebrow .pip {
      width: 3px;
      height: 18px;
      background: var(--accent);
      animation: pipBreathe 2.5s ease-in-out infinite;
      flex-shrink: 0;
    }

    /* Ghost watermark */
    .about-ghost-mark {
      font-family: 'Bebas Neue', sans-serif;
      font-weight: 400;
      position: absolute;
      pointer-events: none;
      color: rgba(255,255,255,0.06);
      line-height: 1;
      user-select: none;
      letter-spacing: 0.02em;
      top: 5%; left: 50%; transform: translateX(-50%);
      font-size: min(15vw, 15rem);
      white-space: nowrap;
    }

    /* Main heading */
    .about-heading {
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      letter-spacing: -0.04em;
      line-height: 1.1;
      color: var(--text-1);
      margin-bottom: 1.5rem;
    }

    /* Body text */
    .about-body {
      font-family: 'DM Sans', sans-serif;
      font-size: clamp(0.9rem, 1.1vw, 1rem);
      line-height: 1.75;
      color: var(--text-2);
      margin-bottom: 1.25rem;
    }

    /* Pull-quote */
    .about-pull-quote {
      border-left: 3px solid var(--accent);
      background: rgba(var(--accent-rgb), 0.04);
      padding: 1rem 1.25rem;
      margin: 1.5rem 0;
      font-style: italic;
      font-size: clamp(0.88rem, 1.05vw, 0.95rem);
      line-height: 1.7;
      color: var(--text-1);
    }

    /* Accent line */
    .about-accent-line {
      width: 18px;
      height: 2px;
      background: var(--accent);
      margin-bottom: 1.5rem;
    }

    /* Vertical accent divider */
    .about-v-divider {
      width: 2px;
      background: rgba(var(--accent-rgb), 0.25);
      position: relative;
      flex-shrink: 0;
    }

    .about-v-divider::after {
      content: '';
      position: absolute;
      left: -1px;
      width: 4px;
      height: 20%;
      background: var(--accent);
      box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.8);
      animation: linePulse-about 3s ease-in-out infinite;
    }

    @keyframes linePulse-about {
      0%   { top: 100%; opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 1; }
      100% { top: -20%; opacity: 0; }
    }

    /* Section layout */
    .about-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 10vh 0;
      box-sizing: border-box;
    }

    .about-photo-col {
      width: 55%;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
      padding: 4rem 0 4rem 4rem;
    }

    /* Accent border frame offset from image edges */
    .about-photo-col::before {
      content: '';
      position: absolute;
      inset: 2.5rem;
      border: 2px solid rgba(var(--accent-rgb), 0.4);
      z-index: 2;
      pointer-events: none;
    }

    .about-photo-col img {
      width: 100%;
      height: 100%;
      max-height: 80vh;
      object-fit: cover;
      display: block;
      filter: grayscale(0.15);
      animation: kenBurns 12s ease-in-out infinite alternate;
    }

    .about-text-col {
      flex: 1;
      padding: 5rem 3.5rem 5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    /* Entrance animation states */
    .about-reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
                  transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .about-reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .about-cta-row {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    /* ========== TESTIMONIALS ========== */

    /* Desktop spotlight section */
    .spot-section {
      position: relative; overflow: hidden;
      min-height: 100vh;
      padding: 2rem 0;
      background: #0a0b0a;
    }

    /* Giant ghost watermark */
    .spot-watermark {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Bebas Neue', sans-serif;
      font-size: min(50vw, 50rem);
      line-height: 0.7;
      color: rgba(255,255,255,0.015);
      pointer-events: none;
      z-index: 0;
      user-select: none;
    }

    /* Grain overlay */
    .spot-grain {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      opacity: 0.07;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    .spot-stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

    .spot-center {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      z-index: 10; text-align: center; pointer-events: none;
      max-width: 520px; width: 90%;
    }
    .spot-center .section-label {
      margin-bottom: 0.5rem;
      justify-content: center;
    }
    .spot-center .section-label::before { display: none; }

    .spot-text-stack {
      position: relative; height: 14rem;
      display: flex; align-items: center; justify-content: center;
    }

    .spot-default {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 400;
      letter-spacing: 0.03em;
      color: rgba(255,255,255,0.06);
      line-height: 1.0;
      transition: opacity 0.4s ease;
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%); width: 100%;
    }
    .spot-section.active .spot-default { opacity: 0; }

    .spot-quote {
      opacity: 0;
      transition: opacity 0.4s ease 0.08s, transform 0.5s cubic-bezier(0.16,1,0.3,1) 0.08s;
      display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%) translateY(10px); width: 100%;
      text-align: left;
      border-left: 2px solid rgba(var(--accent-rgb), 0.4);
      padding-left: 1.25rem;
    }
    .spot-section.active .spot-quote {
      opacity: 1; transform: translate(-50%,-50%) translateY(0);
    }

    .spot-quote .sq-mark {
      font-size: 3.5rem;
      color: var(--accent);
      opacity: 0.6;
      line-height: 1; margin-bottom: 0.25rem;
    }
    .spot-quote .sq-text {
      font-size: 1.05rem; line-height: 1.8;
      color: var(--text-1); font-weight: 400;
      letter-spacing: -0.01em;
    }
    .spot-quote .sq-name {
      display: block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--accent);
      margin-top: 1.5rem;
    }
    .spot-quote .sq-dog {
      display: block;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-3); margin-top: 0.2rem;
    }

    .spot-canvas { position: absolute; inset: 0; z-index: 5; }

    /* Orb base */
    .spot-orb {
      position: absolute; cursor: pointer; z-index: 5;
      display: flex; flex-direction: column; align-items: center;
      will-change: transform;
    }

    .spot-photo-wrap {
      position: relative; width: 16px; height: 16px;
      display: flex; align-items: center; justify-content: center;
    }
    .spot-photo {
      width: 16px; height: 16px; border-radius: 50%; overflow: hidden;
      background: radial-gradient(circle, rgba(var(--accent-rgb),0.9) 0%, rgba(var(--accent-rgb),0.4) 40%, rgba(var(--accent-rgb),0) 70%);
      box-shadow: 0 0 6px rgba(var(--accent-rgb),0.5), 0 0 12px rgba(var(--accent-rgb),0.2);
      transition: transform 0.5s cubic-bezier(0.16,1,0.3,1),
                  filter 0.5s ease,
                  box-shadow 0.5s ease,
                  background 0.3s ease;
      transform-origin: center center;
      transform: scale(1);
      z-index: 2; position: relative;
    }
    .spot-photo img {
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0;
      transition: opacity 0.35s ease 0.18s;
    }
    .spot-orb:hover .spot-photo {
      transform: scale(11.4);
      background: var(--bg-card) !important;
      filter: saturate(0.85) brightness(0.9);
      box-shadow: none;
    }
    .spot-orb:hover .spot-photo img { opacity: 1; transition-delay: 0.12s; }
    .spot-canvas:has(.spot-orb:hover) .spot-orb:not(:hover) .spot-photo {
      opacity: 0.2; box-shadow: 0 0 3px rgba(var(--accent-rgb),0.08);
    }

    @keyframes photo-breathe {
      0%, 100% { transform: scale(11.4); }
      50% { transform: scale(11.7); }
    }
    .spot-orb:hover .spot-photo {
      animation: photo-breathe 4s ease-in-out infinite;
      animation-delay: 0.5s;
    }

    /* Labels */
    .spot-label {
      text-align: center; opacity: 0.75;
      transition: opacity 0.3s ease;
      margin-top: 0.7rem; white-space: nowrap;
    }
    .spot-orb:hover .spot-label { opacity: 1; }
    .spot-canvas:has(.spot-orb:hover) .spot-orb:not(:hover) .spot-label { opacity: 0.2; }
    .spot-label-name {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.75rem; font-weight: 500;
      color: var(--text-2); display: block;
      letter-spacing: 0.02em;
    }
    .spot-label-dog {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.58rem; font-weight: 500;
      color: var(--text-3); letter-spacing: 0.1em;
      text-transform: uppercase; display: block; margin-top: 0.2rem;
    }

    /* Saturn Rings */
    .spot-ring {
      position: absolute; top: 50%; left: 50%;
      width: 0; height: 0;
      border-radius: 50%;
      border: 1px solid rgba(var(--accent-rgb),0);
      transform: translate(-50%,-50%);
      pointer-events: none; opacity: 0;
      box-shadow: 0 0 15px rgba(var(--accent-rgb),0), 0 0 40px rgba(var(--accent-rgb),0);
      transition: width 0.6s cubic-bezier(0.16,1,0.3,1),
                  height 0.6s cubic-bezier(0.16,1,0.3,1),
                  border-color 0.4s ease,
                  box-shadow 0.5s ease,
                  opacity 0.4s ease;
    }
    .spot-ring-1 { transition-delay: 0.1s; }
    .spot-ring-2 { transition-delay: 0.18s; }
    .spot-ring-3 { transition-delay: 0.26s; }

    .spot-orb:hover .spot-ring { opacity: 1; }
    .spot-orb:hover .spot-ring-1 {
      border-color: rgba(var(--accent-rgb),0.2);
      box-shadow: 0 0 12px rgba(var(--accent-rgb),0.06), 0 0 30px rgba(var(--accent-rgb),0.03);
    }
    .spot-orb:hover .spot-ring-2 {
      border-color: rgba(var(--accent-rgb),0.1);
      box-shadow: 0 0 10px rgba(var(--accent-rgb),0.04);
    }
    .spot-orb:hover .spot-ring-3 {
      border-color: rgba(var(--accent-rgb),0.05);
      border-style: dashed;
    }

    @keyframes ring-spin { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(360deg); } }
    @keyframes ring-spin-rev { from { transform: translate(-50%,-50%) rotate(0deg); } to { transform: translate(-50%,-50%) rotate(-360deg); } }
    @keyframes ring-spin-tilted {
      from { transform: translate(-50%,-50%) rotateX(var(--tilt,55deg)) rotate(0deg); }
      to { transform: translate(-50%,-50%) rotateX(var(--tilt,55deg)) rotate(360deg); }
    }
    @keyframes ring-glow-pulse {
      0%, 100% { box-shadow: 0 0 12px rgba(var(--accent-rgb),0.06), 0 0 30px rgba(var(--accent-rgb),0.03); border-color: rgba(var(--accent-rgb),0.2); }
      50% { box-shadow: 0 0 20px rgba(var(--accent-rgb),0.12), 0 0 50px rgba(var(--accent-rgb),0.06); border-color: rgba(var(--accent-rgb),0.32); }
    }
    .spot-orb:hover .spot-ring-1 { animation: ring-spin 25s linear infinite, ring-glow-pulse 3s ease-in-out infinite; }
    .spot-orb:hover .spot-ring-2 { animation: ring-spin-rev 35s linear infinite; }
    .spot-orb:hover .spot-ring-3 { animation: ring-spin-tilted 45s linear infinite; }

    /* Orbit motes */
    .spot-mote {
      position: absolute; width: 3px; height: 3px;
      border-radius: 50%; background: var(--accent);
      box-shadow: 0 0 4px rgba(var(--accent-rgb),0.8), 0 0 8px rgba(var(--accent-rgb),0.3);
      top: 50%; left: 50%;
      pointer-events: none; z-index: 3;
      visibility: hidden; opacity: 0;
    }
    .spot-mote-sm { width: 2px; height: 2px; box-shadow: 0 0 3px rgba(var(--accent-rgb),0.5); }

    .spot-mote:nth-child(1) { transform: translate(-50%,-50%) rotate(0deg) translateX(var(--r1,90px)); }
    .spot-mote:nth-child(2) { transform: translate(-50%,-50%) rotate(180deg) translateX(var(--r1,90px)); }
    .spot-mote:nth-child(3) { transform: translate(-50%,-50%) rotate(90deg) translateX(var(--r2,115px)); }
    .spot-mote:nth-child(4) { transform: translate(-50%,-50%) rotate(270deg) translateX(var(--r2,115px)); }

    @keyframes mote-orbit-1 { from { transform: translate(-50%,-50%) rotate(0deg) translateX(var(--r1)); } to { transform: translate(-50%,-50%) rotate(360deg) translateX(var(--r1)); } }
    @keyframes mote-orbit-2 { from { transform: translate(-50%,-50%) rotate(180deg) translateX(var(--r1)); } to { transform: translate(-50%,-50%) rotate(540deg) translateX(var(--r1)); } }
    @keyframes mote-orbit-3 { from { transform: translate(-50%,-50%) rotate(90deg) translateX(var(--r2)); } to { transform: translate(-50%,-50%) rotate(450deg) translateX(var(--r2)); } }
    @keyframes mote-orbit-4 { from { transform: translate(-50%,-50%) rotate(270deg) translateX(var(--r2)); } to { transform: translate(-50%,-50%) rotate(-90deg) translateX(var(--r2)); } }

    .spot-orb:hover .spot-mote:nth-child(1) { animation: mote-orbit-1 10s linear infinite; visibility: visible; opacity: 1; transition: visibility 0s 0.4s, opacity 0.2s ease 0.4s; }
    .spot-orb:hover .spot-mote:nth-child(2) { animation: mote-orbit-2 10s linear infinite; visibility: visible; opacity: 1; transition: visibility 0s 0.4s, opacity 0.2s ease 0.4s; }
    .spot-orb:hover .spot-mote:nth-child(3) { animation: mote-orbit-3 14s linear infinite; visibility: visible; opacity: 1; transition: visibility 0s 0.4s, opacity 0.2s ease 0.4s; }
    .spot-orb:hover .spot-mote:nth-child(4) { animation: mote-orbit-4 14s linear reverse infinite; visibility: visible; opacity: 1; transition: visibility 0s 0.4s, opacity 0.2s ease 0.4s; }

    /* ── LIGHTBOX ─────────────────────────────────── */
    .lb-overlay {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.92);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .lb-overlay.open { opacity: 1; pointer-events: all; }
    .lb-inner {
      position: relative; max-width: 700px; width: 90%;
      display: flex; flex-direction: column; align-items: center;
      text-align: center;
    }
    .lb-photo {
      max-height: 70vh; max-width: 100%; width: auto; height: auto;
      border-radius: 0;
      object-fit: cover;
      box-shadow: 0 24px 80px rgba(0,0,0,0.7);
    }
    .lb-quote {
      font-size: 1rem; line-height: 1.8; color: var(--text-2);
      font-style: italic; margin-top: 1.75rem; max-width: 500px;
      border-left: 2px solid rgba(var(--accent-rgb), 0.3);
      padding-left: 1rem; text-align: left;
    }
    .lb-owner {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--accent); margin-top: 1rem;
      display: block; text-align: left; width: 100%; max-width: 500px;
    }
    .lb-dog {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-3); margin-top: 0.2rem;
      display: block; text-align: left; width: 100%; max-width: 500px;
    }
    .lb-close {
      position: fixed; top: 1.5rem; right: 1.5rem;
      background: none; border: 1px solid rgba(255,255,255,0.15); color: var(--text-2);
      width: 40px; height: 40px; border-radius: 0; cursor: pointer;
      font-size: 1rem; display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s ease, color 0.2s ease;
    }
    .lb-close:hover { border-color: var(--accent); color: var(--accent); }
    .lb-nav {
      position: fixed; top: 50%; transform: translateY(-50%);
      background: none; border: 1px solid rgba(255,255,255,0.12); color: var(--text-2);
      width: 44px; height: 44px; border-radius: 0; cursor: pointer;
      font-size: 1rem; display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s ease, color 0.2s ease;
    }
    .lb-nav:hover { border-color: var(--accent); color: var(--accent); }
    .lb-nav-prev { left: 1.5rem; }
    .lb-nav-next { right: 1.5rem; }
    .lb-counter {
      position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.12em; color: var(--text-3);
    }

    /* ── M7 MOBILE CAROUSEL ─────────────────────── */
    .m7-section {
      position: relative; overflow: hidden; height: 100%; width: 100%;
      display: none; flex-direction: column; justify-content: center;
      align-items: center; padding: 3rem 1.5rem 4.5rem;
      background: #0a0b0a;
    }
    .m7-stars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

    .m7-grain {
      position: absolute; inset: 0; z-index: 1; pointer-events: none;
      opacity: 0.07;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 200px 200px;
    }

    .m7-label {
      position: relative; z-index: 2;
      display: flex; align-items: center; gap: 0.5rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text-3); margin-bottom: 2rem;
    }
    .m7-label::before {
      content: ''; display: block; width: 16px; height: 1px;
      background: var(--accent); flex-shrink: 0;
    }
    .m7-arc-canvas {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 50%; pointer-events: none; z-index: 1;
    }
    .m7-stage {
      position: relative; z-index: 3;
      width: 100%; display: flex; flex-direction: column;
      align-items: center; overflow: hidden;
      height: 420px;
    }
    .m7-slide {
      display: flex; flex-direction: column; align-items: center;
      width: 100%; text-align: center;
    }
    .m7-photo-orbit {
      position: relative;
      width: 195px; height: 195px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.5rem; flex-shrink: 0;
    }
    .m7-photo-wrap {
      width: 170px; height: 170px; border-radius: 50%; overflow: hidden;
      position: relative; z-index: 3;
      box-shadow: 0 8px 40px rgba(0,0,0,0.6);
      filter: saturate(0.9) brightness(0.88);
    }
    .m7-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }

    @keyframes m7-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } }
    .m7-photo-wrap.breathing { animation: m7-breathe 7s ease-in-out infinite; }
    .m7-photo-wrap.settling { animation: m7-breathe 7s ease-in-out 0.5s infinite; }

    .m7-ring {
      position: absolute; top: 50%; left: 50%;
      border-radius: 50%; pointer-events: none; z-index: 2;
      border: 1px solid rgba(var(--accent-rgb),0.25);
      box-shadow: 0 0 12px rgba(var(--accent-rgb),0.08), 0 0 24px rgba(var(--accent-rgb),0.04);
      width: 120px; height: 120px; opacity: 0;
      transform: translate(-50%,-50%) rotateX(60deg);
    }
    @keyframes m7-ring-spin { from { transform: translate(-50%,-50%) rotateX(60deg) rotate(0deg); } to { transform: translate(-50%,-50%) rotateX(60deg) rotate(360deg); } }
    @keyframes m7-ring-expand { from { width: 120px; height: 120px; opacity: 0; } to { width: 195px; height: 195px; opacity: 1; } }
    @keyframes m7-ring-collapse { from { width: 195px; height: 195px; opacity: 1; } to { width: 120px; height: 120px; opacity: 0; } }
    .m7-ring.is-active { width: 195px; height: 195px; opacity: 1; animation: m7-ring-spin 18s linear infinite; }
    .m7-ring.is-entering { animation: m7-ring-expand 0.45s cubic-bezier(0.16,1,0.3,1) forwards, m7-ring-spin 18s linear 0.45s infinite; }
    .m7-ring.is-leaving { animation: m7-ring-collapse 0.3s ease-in forwards; }

    .m7-mote {
      position: absolute; width: 3px; height: 3px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 4px rgba(var(--accent-rgb),0.7), 0 0 8px rgba(var(--accent-rgb),0.3);
      top: 50%; left: 50%; pointer-events: none; z-index: 4; opacity: 0;
      transform: translate(-50%,-50%) rotate(0deg) translateX(97px);
    }
    @keyframes m7-mote-a { from { transform: translate(-50%,-50%) rotate(0deg) translateX(97px); } to { transform: translate(-50%,-50%) rotate(360deg) translateX(97px); } }
    @keyframes m7-mote-b { from { transform: translate(-50%,-50%) rotate(180deg) translateX(97px); } to { transform: translate(-50%,-50%) rotate(540deg) translateX(97px); } }
    .m7-mote.is-active { opacity: 1; }
    .m7-mote-a.is-active { animation: m7-mote-a 8s linear infinite; }
    .m7-mote-b.is-active { animation: m7-mote-b 12s linear infinite; }

    .m7-text-block { width: 100%; }

    .m7-quote-mark {
      font-size: 2rem;
      color: var(--accent);
      opacity: 0.5;
      line-height: 1; margin-bottom: 0.25rem;
    }

    .m7-quote-text {
      font-size: 0.85rem; line-height: 1.5; color: var(--text-2);
      max-width: 300px; margin: 0 auto 0 0;
      min-height: 4em; max-height: 9em;
      display: flex; align-items: flex-start; justify-content: flex-start;
      text-align: left;
      border-left: 2px solid rgba(var(--accent-rgb), 0.3);
      padding-left: 0.85rem;
      overflow-y: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
    .m7-quote-text::-webkit-scrollbar { display: none; }

    .m7-name {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase;
      color: var(--accent); margin-top: 0.75rem; display: block;
      text-align: left;
    }
    .m7-dog-role {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.55rem; font-weight: 500;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-3); margin-top: 0.15rem; display: block;
      text-align: left;
    }

    .m7-dots {
      position: relative; z-index: 3;
      display: flex; gap: 6px; margin-top: 1.5rem;
      align-items: center; justify-content: center;
    }
    .m7-dot-item {
      width: 5px; height: 5px; border-radius: 50%;
      background: rgba(255,255,255,0.12);
      transition: background 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
      cursor: pointer;
    }
    .m7-dot-item.active {
      background: var(--accent);
      transform: scale(1.4);
    }

    .m7-nav {
      position: relative; z-index: 3;
      display: flex; gap: 0.75rem; margin-top: 1rem;
      align-items: center; justify-content: center;
    }
    .m7-nav button {
      background: none; border: 1px solid rgba(255,255,255,0.1); color: var(--text-3);
      width: 32px; height: 32px; border-radius: 0; cursor: pointer;
      font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s ease, color 0.2s ease;
    }
    .m7-nav button:hover { border-color: var(--accent); color: var(--accent); }

    @keyframes m7-fade-out { from { opacity: 1; } to { opacity: 0; } }
    @keyframes m7-fade-in { from { opacity: 0; } to { opacity: 1; } }

    .m7-slide.exiting-left, .m7-slide.exiting-right {
      position: absolute; top: 0; left: 0; right: 0;
      animation: m7-fade-out 0.3s ease-out forwards;
    }
    .m7-slide.entering-right, .m7-slide.entering-left {
      opacity: 0;
      animation: m7-fade-in 0.35s ease-in forwards;
      animation-delay: 0.25s;
    }

    @keyframes m7-text-drift-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
    .m7-text-block.drifting-in { animation: m7-text-drift-in 0.4s ease 0.5s both; }

    .m7-photo-orbit.zoomed .m7-photo-wrap {
      transform: scale(2) !important; z-index: 50;
      transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
      filter: saturate(1) brightness(1) !important;
    }
    .m7-photo-orbit.zoomed .m7-ring,
    .m7-photo-orbit.zoomed .m7-mote { opacity: 0 !important; }
    .m7-zoom-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.7);
      z-index: 40; opacity: 0; pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .m7-zoom-overlay.active { opacity: 1; }

    /* ========== INTER-SECTION SPACING ========== */

    /* Breathing room between flush 100vh sections */
    .maxine-split    { margin-top: 5rem; }
    .about-section   { margin-top: 5rem; }
    .spot-section    { margin-top: 5rem; }
    .editorial-footer { margin-top: 5rem; }

    /* ========== NEIGHBOURHOODS ========== */

    /* ========== FOOTER ========== */

    /* ========== UTILITIES ========== */

    .mob-scroll-top {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 900;
      width: 2.5rem;
      height: 2.5rem;
      background: var(--bg-card);
      border: 1px solid var(--border-hi);
      color: var(--text-1);
      font-size: 1rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: translateY(12px);
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease, border-color 0.2s ease;
    }
    .mob-scroll-top.visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .mob-scroll-top:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.25);
    }
    .mob-scroll-top:active {
      transform: translateY(2px);
    }

    /* ========== KEYFRAMES ========== */

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes kenBurns {
      0%   { transform: scale(1); }
      100% { transform: scale(1.06); }
    }

    @keyframes linePulse-maxine {
      0%, 100% { box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.15); }
      50%       { box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.35); }
    }

    @keyframes lineGlow-maxine {
      0%   { top: 100%; opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 1; }
      100% { top: -40px; opacity: 0; }
    }

    /* ========== MOBILE ========== */

    @media (max-width: 800px) {
      .links-left, .links-right { display: none; }
      .hamburger { display: flex; }
      .nav-inner { padding: 0.7rem 1.25rem; }
      .v2-microbar { padding: 0 1.25rem; }
      #nav.scrolled .nav-inner { padding: 0.55rem 1.25rem; }

      /* ── Hero mobile overrides ── */
      .hero-scroll-zone { height: 450vh; }
      .hero-content { padding: 2.5rem 1.25rem 3rem; }
      .hero-left { max-width: 100%; }
      .hero-tagline { font-size: clamp(1.6rem, 6vw, 2.4rem); }
      .hero-actions { flex-direction: column; gap: 0; }
      .hero-actions .bp-primary,
      .hero-actions .bp-ghost { width: 100%; }

      /* Desktop-only elements hidden on mobile */
      .hero-est,
      .hero-hood-left,
      .hero-hood-right,
      .hero-annot { display: none; }

      /* Mobile: stacked title */
      .hero-title-wrap {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
      }

      /* Mobile: horizontal accent line (reconfigured by JS) */
      .hero-vline {
        width: 100%;
        height: 1px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        animation: hlinePulse 3s ease-in-out infinite;
      }
      @keyframes hlinePulse {
        0%, 100% { box-shadow: 0 0 6px 1px rgba(var(--accent-rgb), 0.08); }
        50%       { box-shadow: 0 0 10px 2px rgba(var(--accent-rgb), 0.15); }
      }

      /* Mobile scroll button */
      .scroll-btn {
        width: 38px;
        height: 38px;
        animation: floatDown 2.4s ease-in-out infinite;
      }
      @keyframes floatDown {
        0%, 100% { transform: translateY(0);   opacity: 0.7; }
        50%       { transform: translateY(5px); opacity: 1;   }
      }
      .scroll-btn-wrap.flying-out {
        animation: btnFlyOutDown 0.55s cubic-bezier(0.55, 0, 1, 0.45) forwards;
      }
      @keyframes btnFlyOutDown {
        0%   { opacity: 1;   transform: translateY(0)    scale(1);    }
        40%  { opacity: 0.6; transform: translateY(20px) scale(0.92); }
        100% { opacity: 0;   transform: translateY(60px) scale(0.72); }
      }

      /* Mobile-only annotation elements */
      .m-annot {
        position: absolute;
        z-index: 4;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.6rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--text-2);
        pointer-events: none;
        transition: color 0.6s ease;
        white-space: nowrap;
      }
      .m-annot.accent { color: var(--accent); }
      .m-est {
        position: absolute;
        z-index: 4;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.5rem;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--text-3);
        white-space: nowrap;
        pointer-events: none;
        left: 50%;
        transform: translateX(-50%);
      }
      .m-hood-left,
      .m-hood-right {
        position: absolute;
        z-index: 4;
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.5rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-3);
        white-space: nowrap;
        pointer-events: none;
      }

      /* ── Statement mobile overrides ── */
      .statement-sticky {
        grid-template-columns: 1fr;
        grid-template-rows: 40vh 1fr;
      }

      .stmt-right {
        grid-row: 1;
        grid-column: 1;
      }

      .stmt-left {
        grid-row: 2;
        grid-column: 1;
        padding: 2rem 1.25rem;
        align-items: flex-start;
      }

      .stmt-text {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
      }

      .stmt-eyebrow {
        margin-bottom: 1.5rem;
      }

      .stmt-watermark {
        font-size: clamp(3rem, 10vw, 5rem);
      }

      /* ── Services mobile overrides ── */
      /* Hide desktop grid on mobile */
      .hybrid-section-wrap { display: none; }
      /* Show mobile swipe section */
      .m1-services-mobile { display: flex !important; }

      .contact-xray-grid { grid-template-columns: 1fr; }
      .cx-card { border-right: 1px solid rgba(255,255,255,0.06); }
      .cx-card:not(:last-child) { border-bottom: none; }

      /* ── How It Works mobile overrides ── */
      .hiw-section {
        padding: 1.5rem 0 3rem;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
      }
      .hiw-header {
        padding: 0 1.25rem;
        margin-bottom: 1.75rem;
      }
      .hiw-cards-grid {
        display: flex !important;
        flex: 1;
        align-items: stretch;
        grid-template-columns: unset !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem !important;
        padding: 0 1.25rem;
        max-width: 100% !important;
        background: transparent !important;
        scrollbar-width: none;
      }
      .hiw-cards-grid::-webkit-scrollbar { display: none; }
      .hiw-card {
        flex: 0 0 85vw;
        min-height: 420px;
        scroll-snap-align: center;
      }
      .hiw-card-inner {
        min-height: 420px;
      }
      .hiw-dots {
        display: flex;
      }

      /* ── Maxine mobile overrides ── */
      .maxine-split {
        display: block; width: 100%; min-height: 100vh; position: relative;
        overflow-y: visible; overflow-x: hidden; height: auto;
      }
      .maxine-img-wrap {
        position: relative; width: 100%; height: 45vh; padding: 0; overflow: hidden;
      }
      .maxine-img-wrap::before { display: none; }
      .maxine-img-wrap img {
        animation: none !important;
        object-position: center 25%;
      }
      .maxine-img-wrap::after {
        content: ''; position: absolute; inset: 0; z-index: 1;
        background: linear-gradient(to top,
          var(--bg) 0%,
          rgba(18,19,18,0.8) 15%,
          transparent 40%
        );
      }
      .split-line { display: none; }
      .maxine-text {
        position: relative; width: 100%;
        padding: 0 1.25rem 2rem; z-index: 2; margin-top: -3rem;
        display: flex; flex-direction: column; justify-content: flex-start;
        background: none;
      }
      .maxine-heading {
        font-size: clamp(1.6rem, 6vw, 2rem); margin-bottom: 0.75rem;
      }
      .maxine-micro-label {
        margin-bottom: 0.75rem; color: var(--accent); opacity: 0.8;
      }
      .maxine-body p {
        font-size: 0.78rem; line-height: 1.65;
      }
      .maxine-tags {
        margin-top: 1rem; gap: 0.35rem;
      }
      .maxine-tags span {
        font-size: 0.5rem; padding: 0.2rem 0.5rem;
      }
      .maxine-review-link { margin-top: 1rem; font-size: 0.7rem; }
      .maxine-watermark { display: none; }

      /* ── About mobile overrides ── */
      .about-section {
        flex-direction: column;
        min-height: unset;
      }
      .about-photo-col {
        width: 100%;
        min-height: 55vw;
        max-height: 60vh;
      }
      .about-photo-col::before {
        inset: 1.5rem;
      }
      .about-v-divider { display: none; }
      .about-text-col {
        padding: 2.5rem 1.25rem 3rem;
      }
      .about-ghost-mark { font-size: 25vw; }

      /* ── Testimonials mobile overrides ── */
      .spot-section {
        height: 100vh; min-height: 100vh; max-height: none;
        padding: 0; display: flex; flex-direction: column;
      }
      .spot-center { display: none; }
      .spot-canvas { display: none; }
      .spot-stars { display: none; }
      .m7-section { display: flex; }
    }

    /* Hide mobile-only elements on desktop */
    @media (min-width: 801px) {
      .m-annot,
      .m-est,
      .m-hood-left,
      .m-hood-right { display: none; }
    }

    /* ========== NEIGHBOURHOODS ========== */

    /* Grain keyframe — targets footer ::before only, no collision with body .grain */
    @keyframes grain {
      0%, 100% { transform: translate(0,0); }
      10% { transform: translate(-2%,-3%); }
      20% { transform: translate(3%,2%); }
      30% { transform: translate(-1%,4%); }
      40% { transform: translate(4%,-1%); }
      50% { transform: translate(-3%,1%); }
      60% { transform: translate(2%,3%); }
      70% { transform: translate(-4%,-2%); }
      80% { transform: translate(1%,-4%); }
      90% { transform: translate(-2%,2%); }
    }

    @keyframes pip-pulse {
      0%, 100% { transform: scaleY(1); opacity: 1; }
      50% { transform: scaleY(0.6); opacity: 0.5; }
    }

    @keyframes status-blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.25; }
    }

    .hoods-scroll {
      position: relative; z-index: 1;
      border-bottom: 1px solid rgba(var(--accent-rgb), 0.2);
      overflow: hidden;
      height: clamp(5rem, 7vw, 7rem);
      cursor: default;
      user-select: none;
    }

    /* Fade edges */
    .hoods-scroll::after {
      content: '';
      position: absolute; inset: 0; z-index: 3; pointer-events: none;
      background: linear-gradient(
        to right,
        #0a0b0a 0%,
        transparent 5%,
        transparent 95%,
        #0a0b0a 100%
      );
    }

    /* Default state (walks in / boards in labels + primary names) */
    .hoods-default {
      position: absolute; inset: 0; z-index: 2;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 max(1.75rem, calc(50% - 800px));
      opacity: 1;
      transition: opacity 350ms ease;
      pointer-events: none;
    }
    .hoods-scroll:hover .hoods-default {
      opacity: 0;
    }
    .hoods-default-side {
      display: flex; flex-direction: column; gap: 0.2rem;
    }
    .hoods-default-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--text-3);
    }
    .hoods-default-names {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      letter-spacing: 0.04em;
      color: var(--text-1);
      line-height: 1;
    }
    .hoods-default-names .sep {
      color: var(--text-3);
      margin: 0 0.25em;
    }

    /* Scrollable track */
    .hoods-track-wrap {
      position: absolute; inset: 0; z-index: 1;
      overflow: hidden;
      display: flex; align-items: center;
      opacity: 0;
      transition: opacity 350ms ease;
      pointer-events: none;
    }
    .hoods-scroll:hover .hoods-track-wrap {
      opacity: 1;
      pointer-events: auto;
    }
    .hoods-track {
      display: flex; align-items: center;
      white-space: nowrap;
      will-change: transform;
    }
    .hood-item {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      letter-spacing: 0.04em;
      color: var(--text-3);
      padding: 0 0.9rem;
      display: flex; align-items: center; gap: 0.9rem;
      transition: color 0.2s ease, text-shadow 0.2s ease;
      flex-shrink: 0;
      cursor: default;
    }
    .hood-item::after {
      content: '·';
      color: var(--accent);
      font-size: 0.7em;
      opacity: 0.7;
      flex-shrink: 0;
    }
    .hood-item:last-child::after { display: none; }
    .hood-item.primary {
      color: var(--accent);
    }
    .hood-item:hover {
      color: var(--text-1);
      text-shadow: 0 0 20px rgba(var(--accent-rgb), 0.3);
    }
    .hood-item.primary:hover {
      text-shadow: 0 0 28px rgba(var(--accent-rgb), 0.5);
    }

    /* Touch active */
    .hoods-scroll.touch-active .hoods-default {
      opacity: 0;
      transition: opacity 200ms ease;
    }
    .hoods-scroll.touch-active .hoods-track-wrap {
      opacity: 1;
      pointer-events: auto;
      transition: opacity 200ms ease;
    }

    /* ========== FOOTER ========== */

    .editorial-footer {
      position: relative;
      background: #0a0b0a;
      overflow: hidden;
      width: 100vw;
      margin-left: calc(50% - 50vw);
    }

    /* Grain overlay — animated via @keyframes grain above */
    .editorial-footer::before {
      content: '';
      position: absolute; inset: -200%;
      width: 400%; height: 400%;
      opacity: 0.04;
      pointer-events: none; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      background-size: 90px 90px;
      animation: grain 8s steps(10) infinite;
    }

    .footer-main-outer {
      position: relative; z-index: 1;
    }
    .footer-main {
      position: relative;
      display: grid;
      grid-template-columns: 3fr 2fr;
      gap: 0;
      max-width: 1600px;
      margin: 0 auto;
      width: 100%;
    }

    /* Left column */
    .footer-left {
      position: relative; z-index: 1;
      padding: 2.5rem 2.5rem 2.5rem max(1.75rem, calc(50% - 800px));
      border-right: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 1.75rem;
    }

    /* IG strip */
    .footer-ig-strip {
      display: flex; gap: 2px;
      overflow-x: auto; scrollbar-width: none;
    }
    .footer-ig-strip::-webkit-scrollbar { display: none; }

    .ig-cell {
      flex: 0 0 160px; height: 160px;
      background: var(--bg-card);
      overflow: hidden;
      position: relative;
      cursor: pointer;
      border-radius: 0;
    }
    .ig-cell img {
      width: 100%; height: 100%; object-fit: cover;
      display: block;
      filter: grayscale(0.7) brightness(0.7);
      transition: filter 0.35s ease, transform 0.35s ease;
    }
    .ig-cell::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--accent);
      z-index: 2;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.35s ease;
    }
    .ig-cell:hover img {
      filter: grayscale(0) brightness(1);
      transform: scale(1.03);
    }
    .ig-cell:hover::before {
      transform: scaleX(1);
    }

    /* Hours + status */
    .footer-hours-block { display: flex; flex-direction: column; gap: 0.6rem; }

    .footer-status {
      display: flex; align-items: center; gap: 0.5rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem; color: var(--text-3);
    }
    .footer-status-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: #ff4444;
      flex-shrink: 0;
    }
    .footer-status.available .footer-status-dot {
      background: var(--accent);
      animation: status-blink 2.5s ease-in-out infinite;
    }
    .footer-status strong { color: var(--text-2); font-weight: 500; }

    .footer-hours-list {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.7rem; line-height: 2;
      color: var(--text-2);
    }
    .footer-hours-list span { display: block; }
    .footer-hours-list .hours-label {
      color: var(--text-3);
      padding-right: 0.75rem;
      display: inline-block;
      min-width: 6rem;
    }

    /* Right column */
    .footer-right {
      position: relative; z-index: 1;
      padding: 2.5rem 2.5rem 2.5rem 2.75rem;
      display: flex; flex-direction: column; justify-content: flex-start;
      gap: 0;
    }

    .footer-location-block {
      display: flex; flex-direction: column; gap: 0.4rem;
      border-left: 2px solid var(--accent);
      padding-left: 1rem;
    }

    .footer-location-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--text-3);
    }

    .footer-location-name {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      color: var(--text-2);
      line-height: 1.6;
      font-weight: 400;
    }

    .footer-coords {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--accent);
      margin-top: 0.15rem;
    }

    .footer-divider {
      width: 100%; height: 1px;
      background: var(--border);
      margin: 1.75rem 0;
    }

    .footer-contact-block { display: flex; flex-direction: column; gap: 0.75rem; }

    .footer-contact-eyebrow {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 0.25rem;
    }

    /* Contact links with pulsing pips */
    .footer-cl {
      display: flex; align-items: center; gap: 0.65rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem; color: var(--text-2);
      text-decoration: none;
      transition: color 0.2s ease, transform 0.2s ease;
      transform-origin: left center;
      padding: 0.15rem 0;
    }
    .footer-cl:hover { color: var(--accent); transform: translateX(3px); }
    .footer-cl svg { width: 14px; height: 14px; flex-shrink: 0; }
    .footer-cl-ig { color: var(--accent); }
    .footer-cl-ig svg { color: var(--accent); }

    /* Pulsing accent pip before each link */
    .footer-cl::before {
      content: '';
      display: block;
      width: 2px; height: 14px;
      background: var(--accent);
      flex-shrink: 0;
      animation: pip-pulse 2.5s ease-in-out infinite;
    }
    .footer-cl:nth-child(1)::before { animation-delay: 0s; }
    .footer-cl:nth-child(2)::before { animation-delay: 0.8s; }
    .footer-cl:nth-child(3)::before { animation-delay: 1.6s; }

    .footer-copyright-line {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-3);
      padding-top: 0.5rem;
      border-top: 1px solid rgba(255,255,255,0.04);
    }

    /* Mobile overrides */
    @media (max-width: 800px) {
      .hoods-scroll {
        height: 8rem;
      }
      .hoods-default {
        flex-direction: column; align-items: flex-start;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
      }
      .footer-main {
        grid-template-columns: 1fr;
      }
      .footer-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 2rem 1.25rem;
      }
      .footer-right {
        padding: 2rem 1.25rem;
      }
      .ig-cell { flex: 0 0 120px; height: 120px; }
    }

