    /* =============================================
       DESIGN TOKENS
    ============================================= */
    :root {
      --bg:           #0A0A0A;
      --surface:      #121212;
      --surface-2:    #1A1A1A;
      --text:         #F0EBE1;
      --text-muted:   #706A62;
      --accent:       #E5A500;
      --accent-dim:   rgba(229,165,0,0.09);
      --accent-border:rgba(229,165,0,0.28);
      --border:       rgba(240,235,225,0.07);
      --border-mid:   rgba(240,235,225,0.12);
      --white:        #FFFFFF;

      --ff-display: 'Barlow Condensed', sans-serif;
      --ff-serif:   'Cormorant Garamond', serif;
      --ff-body:    'Inter', sans-serif;

      --max-w: 1300px;
      --pad-x: clamp(1.25rem, 5vw, 4.5rem);
    }

    /* =============================================
       RESET
    ============================================= */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--ff-body);
      font-size: clamp(1rem, 1.05vw, 1.1rem);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font-family: inherit; }
    button { cursor: pointer; }
    ul { list-style: none; }

    /* Film grain overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
      opacity: 0.022;
      pointer-events: none;
      z-index: 9998;
    }

    /* =============================================
       UTILITIES
    ============================================= */
    .container {
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 var(--pad-x);
    }
    .eyebrow {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .eyebrow-line::before {
      content: '';
      display: inline-block;
      width: 2rem;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }
    .eyebrow-accent { color: var(--accent); }
    .accent-dot { color: var(--accent); }

    /* Scroll reveal */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.72s cubic-bezier(.16,1,.3,1),
                  transform 0.72s cubic-bezier(.16,1,.3,1);
    }
    .reveal.visible { opacity: 1; transform: none; }
    .r1 { transition-delay: 0.08s; }
    .r2 { transition-delay: 0.18s; }
    .r3 { transition-delay: 0.28s; }
    .r4 { transition-delay: 0.38s; }

    /* =============================================
       SKIP LINK
    ============================================= */
    .skip-link {
      position: fixed;
      top: -100%;
      left: 1rem;
      background: var(--accent);
      color: var(--bg);
      padding: 0.5rem 1rem;
      font-weight: 600;
      font-size: 0.85rem;
      z-index: 9999;
      border-radius: 0 0 4px 4px;
    }
    .skip-link:focus { top: 0; }

    /* =============================================
       MOBILE MENU
    ============================================= */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: var(--bg);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.75rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--ff-display);
      font-size: clamp(2.5rem, 10vw, 5rem);
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--accent); }
    .mobile-close {
      position: absolute;
      top: 1.5rem;
      right: var(--pad-x);
      background: none;
      border: none;
      color: var(--text-muted);
      font-size: 1.75rem;
      line-height: 1;
      padding: 0.5rem;
      min-width: 44px;
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* =============================================
       NAV
    ============================================= */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 72px;
      transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
      border-bottom: 1px solid transparent;
    }
    #nav.scrolled {
      background: rgba(10,10,10,0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-color: var(--border);
    }
    .nav-brand {
      position: absolute;
      left: var(--pad-x);
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
    }
    .nav-brand img {
      height: 46px;
      width: auto;
      display: block;
    }
    .nav-links {
      position: absolute;
      right: var(--pad-x);
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .soon-chip {
      font-size: 0.55rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--accent);
      background: var(--accent-dim);
      border: 1px solid var(--accent-border);
      padding: 0.1rem 0.4rem;
      border-radius: 2px;
      margin-left: 0.35rem;
      vertical-align: middle;
      line-height: 1;
    }
    .nav-links a {
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.2s;
      min-height: 44px;
      display: flex;
      align-items: center;
      white-space: nowrap;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
      background: var(--accent) !important;
      color: var(--bg) !important;
      padding: 0.6rem 1.25rem !important;
      border-radius: 2px;
      transition: opacity 0.2s !important;
    }
    .nav-cta:hover { opacity: 0.82 !important; }
    .hamburger {
      display: none;
      position: absolute;
      right: var(--pad-x);
      top: 50%;
      transform: translateY(-50%);
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      padding: 8px;
      min-width: 44px;
      min-height: 44px;
      align-items: center;
      justify-content: center;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text);
      border-radius: 1px;
    }

    /* =============================================
       HERO
    ============================================= */
    #hero {
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: calc(72px + clamp(2rem, 5vh, 4rem)) var(--pad-x) clamp(3.5rem, 9vh, 6.5rem);
      position: relative;
      overflow: hidden;
    }
    .hero-glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        radial-gradient(ellipse 70% 50% at 65% 35%, rgba(229,165,0,0.06) 0%, transparent 55%),
        radial-gradient(ellipse 40% 70% at 10% 85%, rgba(229,165,0,0.03) 0%, transparent 50%);
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 1100px;
    }
    .hero-eyebrow {
      margin-bottom: clamp(1.5rem, 3.5vh, 2.5rem);
    }
    .hero-hl {
      font-family: var(--ff-display);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.86;
      letter-spacing: -0.015em;
      color: var(--text);
    }
    .hero-hl .line-1 {
      display: block;
      font-size: clamp(6rem, 18vw, 21rem);
    }
    .hero-hl .line-2 {
      display: flex;
      align-items: baseline;
      gap: 0.25em;
      margin-top: 0.06em;
    }
    .hero-hl .line-2-on {
      font-size: clamp(2rem, 5vw, 5.5rem);
      font-weight: 300;
      color: var(--text-muted);
      letter-spacing: 0.05em;
      text-transform: lowercase;
    }
    .hero-hl .line-2-word {
      font-family: var(--ff-serif);
      font-style: italic;
      font-weight: 300;
      font-size: clamp(3.5rem, 9.5vw, 11rem);
      text-transform: none;
      letter-spacing: -0.02em;
      line-height: 1;
    }
    .hero-sub {
      margin-top: clamp(1.5rem, 3.5vh, 2.75rem);
      max-width: 480px;
      color: var(--text-muted);
      font-size: clamp(0.95rem, 1.2vw, 1.05rem);
      line-height: 1.75;
    }
    .hero-actions {
      margin-top: clamp(2rem, 4.5vh, 3.25rem);
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--accent);
      color: var(--bg);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 1rem 1.75rem;
      border: none;
      border-radius: 2px;
      transition: opacity 0.2s, transform 0.2s;
      touch-action: manipulation;
      min-height: 48px;
    }
    .btn-primary:hover { opacity: 0.82; transform: translateY(-2px); }
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid var(--border-mid);
      color: var(--text-muted);
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 1rem 1.75rem;
      border-radius: 2px;
      transition: color 0.2s, border-color 0.2s;
      min-height: 48px;
    }
    .btn-ghost:hover { color: var(--text); border-color: var(--border-mid); }
    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      right: var(--pad-x);
      writing-mode: vertical-rl;
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    .hero-scroll::after {
      content: '';
      display: block;
      width: 1px;
      height: 3rem;
      background: var(--text-muted);
    }

    /* =============================================
       TICKER
    ============================================= */
    .ticker {
      background: var(--accent);
      padding: 0.85rem 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .ticker-track {
      display: inline-flex;
      animation: run-ticker 30s linear infinite;
    }
    .ticker-item {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--bg);
      padding-right: 2.5rem;
    }
    .ticker-sep {
      color: rgba(0,0,0,0.3);
      padding-right: 2.5rem;
    }
    @keyframes run-ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* =============================================
       SECTION BASE
    ============================================= */
    section {
      padding: clamp(5rem, 12vh, 10rem) 0;
    }

    /* =============================================
       STATEMENT SECTION
    ============================================= */
    #statement {
      background:
        linear-gradient(rgba(10,10,10,0.82), rgba(10,10,10,0.82)),
        url('me%20on%20stage%20copy.png') center 25% / cover no-repeat;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .statement-inner {
      padding: 0 var(--pad-x);
    }
    .statement-hl {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: clamp(3.5rem, 9.5vw, 11rem);
      text-transform: uppercase;
      line-height: 0.9;
      letter-spacing: -0.015em;
      max-width: 1000px;
    }
    .statement-hl em {
      font-style: italic;
      font-family: var(--ff-serif);
      font-weight: 300;
      font-size: 0.82em;
      text-transform: none;
      color: var(--text-muted);
      display: block;
    }
    .statement-body {
      margin-top: clamp(2.5rem, 5vh, 4rem);
      max-width: 720px;
    }
    .statement-body p {
      color: var(--text-muted);
      line-height: 1.8;
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }
    .statement-body strong { color: var(--text); font-weight: 500; }
    .statement-list {
      list-style: none;
      margin: 1.5rem 0 2rem;
    }
    .statement-list li {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.75;
      padding: 0.75rem 0 0.75rem 1.5rem;
      border-bottom: 1px solid var(--border);
      position: relative;
    }
    .statement-list li::before {
      content: '·';
      color: var(--accent);
      position: absolute;
      left: 0;
      font-size: 1.4em;
      line-height: 1.3;
    }
    .statement-kicker {
      font-family: var(--ff-display);
      font-weight: 800;
      font-size: clamp(1.4rem, 2.8vw, 2.5rem);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      color: var(--text);
      margin-top: 2rem;
    }
    .statement-kicker strong { color: var(--accent); font-weight: 800; }

    /* =============================================
       ABOUT
    ============================================= */
    #about {
      background: var(--bg);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: clamp(3rem, 7vw, 8rem);
      align-items: center;
      padding: 0 var(--pad-x);
    }
    .about-img-wrap {
      position: relative;
    }
    .about-img {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--surface-2);
      position: relative;
      overflow: hidden;
    }
    .about-img-inner {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      color: var(--text-muted);
    }
    .about-img-inner svg { opacity: 0.2; }
    .about-img-inner span {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }
    /* To use a real photo: replace <div class="about-img-inner"> with <img src="your-photo.jpg" alt="Gregg Sugerman"> */
    .about-img-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2rem 1.5rem 1.5rem;
      background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 100%);
    }
    .about-img-caption p {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .about-label {
      position: absolute;
      top: 1.5rem;
      right: -1rem;
      background: var(--accent);
      color: var(--bg);
      padding: 0.5rem 1rem;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
      transform: rotate(180deg);
    }
    .about-text { }
    .about-hl {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: clamp(2.75rem, 5.5vw, 6.5rem);
      text-transform: uppercase;
      line-height: 0.9;
      letter-spacing: -0.01em;
      margin-top: 1.25rem;
      margin-bottom: 2rem;
    }
    .about-hl em {
      font-style: italic;
      font-family: var(--ff-serif);
      font-weight: 300;
      text-transform: none;
      color: var(--text-muted);
    }
    .about-copy {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.8;
      max-width: 520px;
    }
    .about-copy strong { color: var(--text); font-weight: 500; }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }
    .stat-val {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: clamp(2.25rem, 4.5vw, 3.75rem);
      line-height: 1;
      color: var(--text);
    }
    .stat-val sup { color: var(--accent); font-size: 0.55em; vertical-align: super; }
    .stat-lbl {
      margin-top: 0.4rem;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      line-height: 1.4;
    }

    /* =============================================
       SERVICES: "THE WORK"
    ============================================= */
    #services {
      background: var(--surface);
      border-top: 1px solid var(--border);
    }
    .services-inner { padding: 0 var(--pad-x); }
    .services-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 2rem;
      margin-bottom: clamp(3.5rem, 7vh, 5.5rem);
      flex-wrap: wrap;
    }
    .services-title {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: clamp(4rem, 11vw, 13rem);
      text-transform: uppercase;
      line-height: 0.85;
      letter-spacing: -0.015em;
      margin-top: 1rem;
    }
    .services-sub {
      max-width: 280px;
      color: var(--text-muted);
      font-size: 0.9rem;
      line-height: 1.7;
      padding-bottom: 0.75rem;
    }
    .setlist { border-top: 1px solid var(--border); }
    .setlist-item {
      display: grid;
      grid-template-columns: 3.5rem 1fr auto;
      align-items: center;
      gap: 1.5rem;
      padding: 2.25rem 0;
      border-bottom: 1px solid var(--border);
      transition: padding-left 0.25s ease;
      cursor: default;
    }
    .setlist-item:hover { padding-left: 0.75rem; }
    .s-num {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      color: var(--text-muted);
    }
    .s-body { }
    .s-name {
      font-family: var(--ff-display);
      font-weight: 800;
      font-size: clamp(1.75rem, 4vw, 4rem);
      text-transform: uppercase;
      line-height: 1;
      letter-spacing: -0.01em;
      transition: color 0.2s;
    }
    .setlist-item:hover .s-name { color: var(--accent); }
    .s-name-link { text-decoration: none; color: inherit; display: block; }
    .s-pill-link { text-decoration: none; cursor: pointer; }
    button.s-pill { background: none; font-family: inherit; border-width: 1px; }
    .s-desc {
      margin-top: 0.6rem;
      color: var(--text-muted);
      font-size: 0.875rem;
      line-height: 1.65;
      max-width: 500px;
    }
    .s-pill {
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: 1px solid var(--border-mid);
      color: var(--text-muted);
      padding: 0.35rem 0.85rem;
      border-radius: 100px;
      white-space: nowrap;
      transition: border-color 0.2s, color 0.2s;
    }
    .setlist-item:hover .s-pill {
      border-color: var(--accent-border);
      color: var(--accent);
    }

    /* =============================================
       RESULTS / TESTIMONIALS
    ============================================= */
    #results {
      background: var(--bg);
      border-top: 1px solid var(--border);
    }
    .results-inner { padding: 0 var(--pad-x); }
    .results-hdr {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: clamp(3rem, 6vh, 5rem);
    }
    .results-title {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: clamp(3rem, 8vw, 9.5rem);
      text-transform: uppercase;
      line-height: 0.87;
      letter-spacing: -0.015em;
      margin-top: 1rem;
    }
    .results-title em {
      display: block;
      font-style: italic;
      font-family: var(--ff-serif);
      font-weight: 300;
      text-transform: none;
      color: var(--accent);
      font-size: 0.9em;
    }
    .results-note {
      max-width: 260px;
      color: var(--text-muted);
      font-size: 0.85rem;
      line-height: 1.65;
      padding-bottom: 0.5rem;
    }
    .tgrid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.25rem;
    }
    .tcard {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 1.75rem;
      position: relative;
      transition: border-color 0.2s;
    }
    .tcard:hover { border-color: var(--border-mid); }
    .tcard:nth-child(2) { transform: translateY(1.5rem); }
    .tcard:nth-child(4) { transform: translateY(-1.5rem); }
    .tgrid-footer {
      margin-top: 2.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .tgrid-count {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .tcard-badge {
      position: absolute;
      top: 1.25rem;
      right: 1.25rem;
      background: var(--accent-dim);
      border: 1px solid var(--accent-border);
      padding: 0.22rem 0.65rem;
      border-radius: 2px;
    }
    .tcard-badge span {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--accent);
    }
    .tcard-quote {
      color: var(--text);
      font-size: 0.925rem;
      line-height: 1.72;
      margin-bottom: 1.5rem;
      padding-top: 1.5rem;
    }
    .tcard-quote strong { color: var(--accent); font-weight: 500; }
    .tcard-divider {
      width: 2rem;
      height: 1px;
      background: var(--border-mid);
      margin-bottom: 1rem;
    }
    .tcard-name {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      color: var(--text);
    }
    .tcard-role {
      font-size: 0.68rem;
      color: var(--text-muted);
      letter-spacing: 0.04em;
      margin-top: 0.2rem;
    }

    /* =============================================
       CONTACT / BOOK
    ============================================= */
    #contact {
      background: var(--surface);
      border-top: 1px solid var(--border);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: clamp(2rem, 5vw, 6rem);
      align-items: center;
      padding: 0 var(--pad-x);
    }
    .contact-hl {
      font-family: var(--ff-display);
      font-weight: 900;
      font-size: clamp(2.5rem, 5vw, 5.5rem);
      text-transform: uppercase;
      line-height: 0.87;
      letter-spacing: -0.015em;
      margin-top: 1.25rem;
      margin-bottom: 1.25rem;
    }
    .contact-hl em {
      display: block;
      font-style: italic;
      font-family: var(--ff-serif);
      font-weight: 300;
      text-transform: none;
      font-size: 0.78em;
      color: var(--text-muted);
      line-height: 1.15;
    }
    .contact-sub {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.75;
      max-width: 420px;
    }
    .contact-aside {
      margin-top: 2.5rem;
      padding: 1.25rem 1.5rem;
      border-left: 2px solid var(--accent);
      background: var(--accent-dim);
    }
    .contact-aside p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.65;
    }
    .contact-aside strong { color: var(--text); }
    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.1rem;
    }
    .form-row-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem;
    }
    .fg {
      display: flex;
      flex-direction: column;
      gap: 0.45rem;
    }
    .fg label {
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
    }
    .fg input,
    .fg textarea,
    .fg select {
      background: var(--surface-2);
      border: 1px solid var(--border);
      color: var(--text);
      font-size: 0.95rem;
      padding: 0.85rem 1rem;
      border-radius: 2px;
      outline: none;
      transition: border-color 0.2s;
      width: 100%;
      min-height: 48px;
      appearance: none;
      -webkit-appearance: none;
    }
    .fg select {
      background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23706A62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      padding-right: 2.5rem;
    }
    .fg input:focus,
    .fg textarea:focus,
    .fg select:focus { border-color: rgba(229,165,0,0.5); }
    .fg textarea { min-height: 120px; resize: vertical; }
    .fg input::placeholder,
    .fg textarea::placeholder { color: #3A3730; }
    .btn-submit {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      background: var(--accent);
      color: var(--bg);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 1.1rem 2rem;
      border: none;
      border-radius: 2px;
      transition: opacity 0.2s, transform 0.2s;
      touch-action: manipulation;
      min-height: 52px;
    }
    .btn-submit:hover { opacity: 0.82; transform: translateY(-2px); }
    .btn-submit:disabled { opacity: 0.5; transform: none; cursor: default; }

    /* =============================================
       FOOTER
    ============================================= */
    footer {
      background: var(--bg);
      border-top: 1px solid var(--border);
      padding: 2.5rem var(--pad-x);
    }
    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .footer-brand {
      font-family: var(--ff-display);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .footer-nav {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
    .footer-nav a {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color 0.2s;
      min-height: 44px;
      display: flex;
      align-items: center;
    }
    .footer-nav a:hover { color: var(--text); }
    .footer-copy {
      font-size: 0.65rem;
      color: var(--text-muted);
      letter-spacing: 0.05em;
    }

    /* =============================================
       RESPONSIVE
    ============================================= */
    .nav-desktop-links {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 2rem;
    }
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .nav-desktop-links { display: none; }
      .hamburger { display: flex; }
      .about-grid { grid-template-columns: 1fr; max-width: 660px; }
      .about-img { aspect-ratio: 4/3; max-height: 460px; }
      .about-label { display: none; }
      .tgrid { grid-template-columns: 1fr 1fr; }
      .tcard:nth-child(2),
      .tcard:nth-child(4) { transform: none; }
      .contact-grid { grid-template-columns: 1fr; max-width: 660px; }
    }
    @media (max-width: 768px) {
      .hero-scroll { display: none; }
      .tgrid { grid-template-columns: 1fr; }
      .tcard { opacity: 1 !important; transform: none !important; }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .setlist-item { grid-template-columns: 2.5rem 1fr; }
      .s-pill { display: none; }
      .services-hdr { flex-direction: column; align-items: flex-start; }
      .services-sub { max-width: 100%; }
      .results-hdr { flex-direction: column; align-items: flex-start; }
      .results-note { max-width: 100%; }
      .form-row-2 { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
    }
    @media (max-width: 480px) {
      .about-stats { grid-template-columns: 1fr; }
    }

    /* =============================================
       REDUCED MOTION
    ============================================= */
    @media (prefers-reduced-motion: reduce) {
      .ticker-track { animation: none; }
      .reveal { opacity: 1; transform: none; transition: none; }
      * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }
  /* ── SIGNUP PANEL ── */
  .signup-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
    z-index: 150; opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
  }
  .signup-overlay.open { opacity: 1; pointer-events: all; }
  .signup-panel {
    position: fixed; top: 0; right: 0; height: 100%; width: 420px; max-width: 100vw;
    background: #111; border-left: 1px solid var(--border);
    z-index: 151; display: flex; flex-direction: column; justify-content: center;
    padding: 3rem 2.5rem;
    transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
  }
  .signup-panel.open { transform: translateX(0); }
  .signup-close {
    position: absolute; top: 1.25rem; right: 1.25rem;
    background: none; border: none; color: var(--text-muted); font-size: 1.25rem;
    cursor: pointer; padding: 8px; min-width: 44px; min-height: 44px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.2s;
  }
  .signup-close:hover { color: var(--text); }
  .signup-eyebrow {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem;
  }
  .signup-title {
    font-family: var(--ff-display); font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800; text-transform: uppercase; line-height: 1;
    letter-spacing: -0.01em; color: var(--text); margin-bottom: 1rem;
  }
  .signup-sub {
    font-size: 0.875rem; color: var(--text-muted); line-height: 1.65;
    margin-bottom: 2rem;
  }
  .signup-field { margin-bottom: 1rem; }
  .signup-field label {
    display: block; font-size: 0.65rem; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 0.4rem;
  }
  .signup-field input {
    width: 100%; background: rgba(255,255,255,0.04); border: 1px solid var(--border-mid);
    color: var(--text); padding: 0.75rem 1rem; font-size: 0.95rem;
    border-radius: 2px; outline: none; transition: border-color 0.2s;
    font-family: var(--ff-body);
  }
  .signup-field input::placeholder { color: var(--text-muted); opacity: 0.5; }
  .signup-field input:focus { border-color: var(--accent); }
  .signup-submit {
    width: 100%; background: var(--accent); color: var(--bg);
    border: none; padding: 0.85rem 1.5rem; font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
    border-radius: 2px; margin-top: 0.5rem; display: flex; align-items: center;
    justify-content: center; gap: 0.5rem; transition: opacity 0.2s;
  }
  .signup-submit:hover { opacity: 0.85; }
  .signup-submit:disabled { opacity: 0.5; cursor: not-allowed; }
  .signup-terms {
    font-size: 0.65rem; color: var(--text-muted); text-align: center;
    margin-top: 0.85rem; opacity: 0.6;
  }
  .signup-success {
    text-align: center; padding: 1rem 0;
    font-size: 0.9rem; color: var(--text); line-height: 1.6;
  }
  .signup-success strong { color: var(--accent); }
  .signup-error { font-size: 0.8rem; color: #c0392b; margin-top: 0.5rem; }
  .signup-error a { color: inherit; }

