*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    /* ── CUSTOM SCROLLBAR ── */
    ::-webkit-scrollbar { width: 10px; height: 10px; }
    ::-webkit-scrollbar-track { background: #060606; }
    ::-webkit-scrollbar-thumb {
      background: linear-gradient(180deg, var(--gold-d) 0%, var(--gold) 100%);
      border: 2px solid #060606;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: linear-gradient(180deg, var(--gold) 0%, var(--gold-h) 100%);
    }
    html { scrollbar-color: var(--gold) #060606; scrollbar-width: thin; }

    /* ── SKIP LINK (a11y) ── */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 1rem;
      background: var(--gold);
      color: var(--black);
      padding: 0.75rem 1.5rem;
      z-index: 999;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      text-decoration: none;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-size: 0.85rem;
      transition: top 0.2s ease;
    }
    .skip-link:focus {
      top: 1rem;
      outline: 2px solid var(--white);
      outline-offset: 2px;
    }

    :root {
      /* Channel tokens — drive every accent so a page can be re-themed by
         overriding these alone. Defaults are the Laurent Horizon palette. */
      --gold-rgb:   201,168,76;
      --gold-h-rgb: 219,181,94;
      --gold-d-rgb: 184,150,74;
      --navy-rgb:   13,27,62;
      --soft-rgb:   201,168,76;   /* small-text accent; overridden per theme */

      --black:  #0a0a0a;
      --navy:   rgb(var(--navy-rgb));
      --gold:   rgb(var(--gold-rgb));
      --gold-h: rgb(var(--gold-h-rgb));
      --gold-d: rgb(var(--gold-d-rgb));
      --white:  #ffffff;
      --grey:   #aaaaaa;
      --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      line-height: 1.6;
    }

    .heading {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.88;
      letter-spacing: -0.01em;
    }

    .gold { color: var(--gold); }

    .wrap {
      max-width: 1280px;
      margin: 0 auto;
      width: 100%;
    }

    /* ── SCROLL PROGRESS ── */
    #progress {
      position: fixed;
      top: 0; left: 0;
      height: 2px;
      width: 0%;
      background: var(--gold);
      z-index: 300;
      transition: width 0.1s linear;
    }

    /* ── FADE-IN ── */
    .fi {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s cubic-bezier(0.34, 1.56, 0.64, 1),
                  transform 0.75s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .fi.vis { opacity: 1; transform: none; }
    .fi.d1 { transition-delay: 0.10s; }
    .fi.d2 { transition-delay: 0.20s; }
    .fi.d3 { transition-delay: 0.32s; }
    .fi.d4 { transition-delay: 0.44s; }
    .fi.d5 { transition-delay: 0.56s; }

    @media (prefers-reduced-motion: reduce) {
      .fi { transition: opacity 0.2s ease; }
      .fi.d1,.fi.d2,.fi.d3,.fi.d4,.fi.d5 { transition-delay: 0s; }
      .marquee-track { animation: none; }
    }

    /* ── NAVIGATION ── */
    #nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 200;
      background: rgba(10,10,10,0.65);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.35rem 3rem;
      transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
      border-bottom: 1px solid rgba(var(--gold-rgb),0.07);
    }
    #nav.scrolled {
      padding: 0.8rem 3rem;
      background: rgba(10,10,10,0.95);
      box-shadow: 0 1px 0 rgba(var(--gold-rgb),0.12), 0 4px 40px rgba(0,0,0,0.9);
    }

    .nav-logo {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.05rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .nav-center {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .nav-center a {
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s ease;
      cursor: pointer;
      position: relative;
    }
    .nav-center a::after {
      content: '';
      position: absolute;
      bottom: -3px; left: 0; right: 0;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.2s ease;
      transform-origin: left;
    }
    .nav-center a:hover { color: var(--white); }
    .nav-center a:hover::after { transform: scaleX(1); }
    .nav-center a:focus { outline: 2px solid var(--gold); outline-offset: 2px; }

    .nav-cta {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--black);
      padding: 0.55rem 1.4rem;
      text-decoration: none;
      white-space: nowrap;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
      cursor: pointer;
    }
    .nav-cta:hover {
      background: var(--gold-h);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(var(--gold-rgb),0.35);
    }
    .nav-cta:focus { outline: 2px solid var(--white); outline-offset: 2px; }

    .hbg {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 5px;
      z-index: 201;
      transition: opacity 0.2s ease;
    }
    .hbg:hover { opacity: 0.7; }
    .hbg:focus { outline: 2px solid var(--gold); outline-offset: 2px; }
    .hbg span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      transition: all 0.25s ease;
      transform-origin: center;
    }
    .hbg.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hbg.on span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hbg.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    #mob {
      position: fixed;
      inset: 0;
      background: var(--black);
      z-index: 199;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      padding: 3rem 2.5rem;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.77,0,0.175,1);
    }
    #mob.on { transform: translateX(0); }
    #mob ul { list-style: none; margin-bottom: 2.5rem; }
    #mob ul li { margin-bottom: 1.1rem; }
    #mob ul a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(2.5rem, 8vw, 3.5rem);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      text-decoration: none;
      line-height: 1;
      transition: color 0.3s ease;
    }
    #mob ul a:hover { color: var(--gold); }
    .mob-cta { font-size: 1.1rem !important; padding: 0.9rem 2.5rem !important; }

    /* ── SECTION LABEL ── */
    .sec-label {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }
    .sec-label::before {
      content: '';
      display: block;
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
      animation: pulse 2.5s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.35; } }
    .sec-label span {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 9rem 3rem 6rem;
      position: relative;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 85% 70% at 72% 32%, rgba(var(--navy-rgb),0.78) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 8% 90%, rgba(var(--gold-rgb),0.06) 0%, transparent 58%),
        radial-gradient(ellipse 35% 35% at 92% 78%, rgba(var(--gold-rgb),0.04) 0%, transparent 50%);
      animation: heroGlow 12s ease-in-out infinite alternate;
    }
    @keyframes heroGlow { 0% { opacity:0.8; } 100% { opacity:1; } }

    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.22;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
    }

    /* Subtle grid lines */
    .hero-grid {
      position: absolute;
      inset: 0;
      opacity: 0.03;
      background-image:
        linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
      background-size: 80px 80px;
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    .hero-est {
      font-size: 0.65rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.25);
    }

    .hero-h1 {
      font-size: clamp(4.5rem, 11.5vw, 13rem);
      line-height: 0.86;
      margin-bottom: 1.75rem;
      letter-spacing: -0.02em;
      background: linear-gradient(175deg, #fff 0%, rgba(255,255,255,0.82) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-h1 .gold {
      background: linear-gradient(175deg, var(--gold) 0%, var(--gold-d) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-p {
      font-size: 1rem;
      color: rgba(255,255,255,0.5);
      max-width: 500px;
      line-height: 1.85;
      margin-bottom: 2.5rem;
      font-weight: 300;
    }

    .btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 5rem; }

    .btn-g {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.9rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--black);
      padding: 0.85rem 2rem;
      text-decoration: none;
      display: inline-block;
      transition: background 0.22s ease, transform 0.3s var(--bounce), box-shadow 0.22s ease;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      border: none;
    }
    .btn-g::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.22) 0%, transparent 55%);
      opacity: 0;
      transition: opacity 0.22s ease;
    }
    .btn-g:hover { background: var(--gold-h); transform: translateY(-3px); box-shadow: 0 14px 36px rgba(var(--gold-rgb),0.42); }
    .btn-g:hover::before { opacity: 1; }

    .btn-o {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.9rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: 1.5px solid rgba(var(--gold-rgb),0.38);
      color: rgba(255,255,255,0.78);
      padding: 0.85rem 2rem;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s var(--bounce);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .btn-o::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gold);
      z-index: -1;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    .btn-o:hover { border-color: var(--gold); color: var(--black); transform: translateY(-3px); }
    .btn-o:hover::before { transform: scaleX(1); }

    .stats-bar {
      display: flex;
      align-items: center;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 2.5rem;
    }
    .stat { padding: 0 2.5rem; }
    .stat:first-child { padding-left: 0; }
    .stat-div { width: 1px; height: 38px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
    .stat-val {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.6rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--gold);
      line-height: 1;
    }
    .stat-lbl {
      font-size: 0.63rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.3);
      margin-top: 0.3rem;
    }

    /* ── CAPABILITIES MARQUEE ── */
    .marquee-section {
      background: var(--gold);
      overflow: hidden;
      position: relative;
    }
    .marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      animation: marquee 28s linear infinite;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .marquee-item {
      display: flex;
      align-items: center;
      white-space: nowrap;
    }
    .marquee-item span {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.78rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--black);
      padding: 0.9rem 1.75rem;
    }
    .marquee-item .sep {
      color: rgba(10,10,10,0.3);
      font-size: 0.45rem;
      padding: 0.9rem 0;
    }

    /* ── SERVICES ── */
    #services {
      background: linear-gradient(180deg, var(--navy) 0%, rgba(var(--navy-rgb),0.65) 100%);
      padding: 7rem 3rem;
      position: relative;
    }
    #services::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.38;
    }

    .svc-heading {
      font-size: clamp(3rem, 7.5vw, 8rem);
      line-height: 0.87;
      margin-bottom: 1.25rem;
    }
    .svc-intro {
      font-size: 1rem;
      color: rgba(255,255,255,0.5);
      max-width: 560px;
      line-height: 1.85;
      font-weight: 300;
      margin-bottom: 3rem;
    }

    /* Bento grid — 7 cards, no gaps:
         row 1  [ 01 featured ][ 02 ][ 03 ]
         row 2  [ 01 featured ][ 04 ][ 05 ]
         row 3  [ 06         ][ 07 wide  ]                        */
    .svc-bento {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 1.25rem;
    }

    .svc-card {
      display: flex;
      flex-direction: column;
      text-decoration: none;
      background: linear-gradient(135deg, rgba(0,0,0,0.42) 0%, rgba(var(--navy-rgb),0.22) 100%);
      border: 1px solid rgba(var(--gold-rgb),0.14);
      border-bottom: 3px solid rgba(var(--gold-rgb),0.35);
      padding: 2.25rem 2rem;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.32s ease, border-color 0.32s ease,
                  box-shadow 0.32s ease, background 0.32s ease;
    }
    .svc-card:nth-child(1) { grid-row: span 2; padding: 3rem 2.5rem; }
    .svc-card:nth-child(7) { grid-column: span 2; }

    /* Corner wash on hover */
    .svc-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(var(--gold-rgb),0.1) 0%, transparent 65%);
      opacity: 0;
      transition: opacity 0.32s ease;
      pointer-events: none;
    }
    /* Accent rule that draws itself across the foot of the card */
    .svc-card::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -3px;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    }
    .svc-card:hover, .svc-card:focus-visible {
      transform: translateY(-6px);
      border-color: rgba(var(--gold-rgb),0.45);
      box-shadow: 0 22px 55px rgba(0,0,0,0.5), 0 0 32px rgba(var(--gold-rgb),0.09);
      background: linear-gradient(135deg, rgba(0,0,0,0.52) 0%, rgba(var(--navy-rgb),0.38) 100%);
    }
    .svc-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
    .svc-card:hover::before, .svc-card:focus-visible::before { opacity: 1; }
    .svc-card:hover::after, .svc-card:focus-visible::after { transform: scaleX(1); }

    .svc-icon-svg {
      width: 2.4rem;
      height: 2.4rem;
      color: var(--gold);
      margin-bottom: 1.4rem;
      display: block;
      transition: transform 0.42s var(--bounce);
    }
    .svc-card:nth-child(1) .svc-icon-svg { width: 3.1rem; height: 3.1rem; }
    .svc-card:hover .svc-icon-svg { transform: translateY(-3px) scale(1.1) rotate(-5deg); }

    .svc-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.15rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 0.75rem;
      color: var(--white);
      transition: color 0.32s ease;
    }
    .svc-card:nth-child(1) .svc-title { font-size: 1.6rem; margin-bottom: 1rem; }
    .svc-card:hover .svc-title { color: var(--gold); }

    .svc-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      color: rgba(var(--gold-rgb),0.22);
      text-transform: uppercase;
      margin-bottom: 1.25rem;
      display: block;
      transition: color 0.32s ease;
    }
    .svc-card:hover .svc-num { color: rgba(var(--gold-rgb),0.5); }

    .svc-desc {
      font-size: 0.86rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.88;
      transition: color 0.32s ease;
    }
    .svc-card:nth-child(1) .svc-desc { font-size: 0.92rem; }
    .svc-card:hover .svc-desc { color: rgba(255,255,255,0.82); }

    /* Capability chips — what you actually get, scannable at a glance */
    .svc-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 1.15rem;
    }
    .svc-tags span {
      font-size: 0.6rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.42);
      border: 1px solid rgba(255,255,255,0.1);
      padding: 0.3rem 0.6rem;
      white-space: nowrap;
      transition: color 0.32s ease, border-color 0.32s ease, background 0.32s ease;
    }
    .svc-card:hover .svc-tags span {
      color: rgba(var(--gold-rgb),0.85);
      border-color: rgba(var(--gold-rgb),0.3);
      background: rgba(var(--gold-rgb),0.05);
    }

    /* Footer link, pinned to the bottom so every card lines up */
    .svc-go {
      margin-top: auto;
      padding-top: 1.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .svc-go svg {
      width: 14px; height: 14px;
      transition: transform 0.32s var(--bounce);
    }
    .svc-card:hover .svc-go svg { transform: translateX(5px); }

    /* "New" flag */
    .svc-flag {
      position: absolute;
      top: 0; right: 0;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.6rem;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--gold);
      padding: 0.34rem 0.8rem;
      z-index: 2;
    }

    /* ── PROCESS ── */
    .process-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
      gap: 0;
      align-items: start;
    }
    .process-step {
      padding: 2rem 1.5rem;
      border: 1px solid rgba(var(--gold-rgb),0.1);
      transition: border-color 0.3s ease, background 0.3s ease;
    }
    .process-step:hover {
      border-color: rgba(var(--gold-rgb),0.3);
      background: rgba(var(--gold-rgb),0.04);
    }
    .ps-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.58rem;
      letter-spacing: 0.3em;
      color: rgba(var(--gold-rgb),0.3);
      text-transform: uppercase;
      margin-bottom: 1rem;
    }
    .ps-icon {
      width: 2rem; height: 2rem;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .ps-icon svg { width: 100%; height: 100%; }
    .ps-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--white);
      margin-bottom: 0.5rem;
    }
    .ps-desc {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.75;
    }
    .process-arrow {
      display: flex;
      align-items: flex-start;
      padding-top: 3.5rem;
      padding-left: 0.5rem;
      padding-right: 0.5rem;
      color: rgba(var(--gold-rgb),0.25);
    }
    .process-arrow svg { width: 1.25rem; height: 1.25rem; }

    @media (max-width: 900px) {
      #process { padding: 4rem 1.75rem; }
      .process-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .process-arrow { display: none; }
    }
    @media (max-width: 600px) {
      .process-grid { grid-template-columns: 1fr; }
    }

    /* ── PORTFOLIO ── */
    #portfolio { padding: 7rem 3rem; background: var(--black); }

    .portfolio-h {
      font-size: clamp(3rem, 7.5vw, 8rem);
      line-height: 0.87;
      margin-bottom: 3rem;
    }

    .port-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.75rem;
    }

    .port-card {
      display: block;
      text-decoration: none;
      transition: transform 0.32s var(--bounce), box-shadow 0.32s ease;
      position: relative;
      cursor: pointer;
    }
    .port-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 40px rgba(var(--gold-rgb),0.07);
    }

    .port-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(var(--gold-rgb),0.18);
      border-bottom: 3px solid rgba(var(--gold-rgb),0.35);
      margin-bottom: 1.2rem;
      overflow: hidden;
      transition: border-color 0.32s ease;
    }
    .port-card:hover .port-thumb { border-color: rgba(var(--gold-rgb),0.55); border-bottom-color: var(--gold); }

    /* Cinematic vignette */
    .port-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, transparent 30%, transparent 65%, rgba(0,0,0,0.45) 100%);
      z-index: 1;
      pointer-events: none;
    }

    /* Play button */
    .port-play {
      position: absolute;
      z-index: 2;
      width: 52px; height: 52px;
      border-radius: 50%;
      border: 1.5px solid rgba(var(--gold-rgb),0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10,10,10,0.55);
      backdrop-filter: blur(8px);
      transition: border-color 0.28s ease, transform 0.32s var(--bounce), background 0.28s ease;
    }
    .port-play svg {
      width: 18px; height: 18px;
      color: var(--gold);
      margin-left: 3px;
    }
    .port-card:hover .port-play {
      border-color: var(--gold);
      transform: scale(1.18);
      background: rgba(var(--gold-rgb),0.18);
    }

    /* Tag badge */
    .port-tag {
      position: absolute;
      top: 10px; left: 10px;
      z-index: 3;
      font-size: 0.58rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(10,10,10,0.82);
      padding: 0.22rem 0.55rem;
      border: 1px solid rgba(var(--gold-rgb),0.28);
    }

    .port-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.2rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      margin-bottom: 0.6rem;
      line-height: 1.1;
      transition: color 0.28s ease;
    }
    .port-card:hover .port-title { color: var(--gold); }

    .port-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding-top: 0.8rem;
      border-top: 1px solid rgba(255,255,255,0.07);
      transition: border-color 0.28s ease;
    }
    .port-card:hover .port-meta { border-color: rgba(var(--gold-rgb),0.22); }
    .port-client { color: rgba(255,255,255,0.38); transition: color 0.28s ease; }
    .port-card:hover .port-client { color: rgba(255,255,255,0.65); }
    .port-type { color: var(--gold); font-weight: 600; }

    /* ── ABOUT ── */
    #about { background: var(--black); padding: 7rem 3rem; }

    .about-h {
      font-size: clamp(2.5rem, 6.5vw, 7rem);
      line-height: 0.87;
      margin-bottom: 3.5rem;
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
      align-items: center;
    }
    .about-text { max-width: 550px; }
    .about-p {
      font-size: 1rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.88;
      margin-bottom: 1.5rem;
    }
    .about-p:last-child { margin-bottom: 0; }

    .about-stats { display: grid; grid-template-rows: repeat(3,1fr); gap: 1.25rem; }

    .stat-item {
      padding: 1.65rem 1.75rem;
      background: linear-gradient(135deg, rgba(var(--gold-rgb),0.07) 0%, rgba(var(--gold-rgb),0.02) 100%);
      border: 1px solid rgba(var(--gold-rgb),0.12);
      border-left: 4px solid var(--gold);
      transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    }
    .stat-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 36px rgba(var(--gold-rgb),0.12);
      border-color: rgba(var(--gold-rgb),0.3);
    }

    .stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 2rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.35rem;
    }
    .stat-label {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.38);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .about-cta {
      text-align: center;
      padding: 4rem 2rem;
      background: linear-gradient(135deg, rgba(var(--gold-rgb),0.09) 0%, rgba(var(--gold-rgb),0.03) 100%);
      border: 1px solid rgba(var(--gold-rgb),0.15);
      position: relative;
      overflow: hidden;
    }
    .about-cta::before {
      content: '"';
      position: absolute;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 18rem;
      color: rgba(var(--gold-rgb),0.04);
      top: -4rem;
      left: 50%;
      transform: translateX(-50%);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
    .about-cta p {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 1.75rem;
      font-style: italic;
      position: relative;
      z-index: 1;
    }

    /* ── CLIENTS ── */
    #clients { background: var(--navy); padding: 7rem 3rem; }

    .clients-h {
      font-size: clamp(2.5rem, 6.5vw, 7rem);
      line-height: 0.87;
      margin-bottom: 3.5rem;
    }

    .cli-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }

    .cli-card {
      background: linear-gradient(135deg, rgba(var(--navy-rgb),0.4) 0%, rgba(0,0,0,0.15) 100%);
      border: 1px solid rgba(var(--gold-rgb),0.1);
      border-bottom: 3px solid rgba(var(--gold-rgb),0.25);
      padding: 2.5rem 1.75rem;
      text-align: center;
      transition: transform 0.32s var(--bounce), box-shadow 0.32s ease, border-color 0.32s ease, background 0.32s ease;
      cursor: pointer;
      display: block;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }
    .cli-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, rgba(var(--gold-rgb),0.1) 0%, transparent 72%);
      opacity: 0;
      transition: opacity 0.32s ease;
      pointer-events: none;
    }
    .cli-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 22px 55px rgba(0,0,0,0.45), 0 0 28px rgba(var(--gold-rgb),0.07);
      border-color: rgba(var(--gold-rgb),0.32);
      border-bottom-color: var(--gold);
      background: linear-gradient(135deg, rgba(var(--navy-rgb),0.55) 0%, rgba(var(--gold-rgb),0.05) 100%);
    }
    .cli-card:hover::before { opacity: 1; }

    .cli-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: clamp(1.1rem, 2.1vw, 1.75rem);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--white);
      line-height: 1;
      margin-bottom: 0.5rem;
      transition: color 0.32s ease;
      position: relative;
      z-index: 1;
    }
    .cli-card:hover .cli-name { color: var(--gold); }

    .cli-tag {
      font-size: 0.63rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.32);
      transition: color 0.32s ease;
      position: relative;
      z-index: 1;
    }
    .cli-card:hover .cli-tag { color: rgba(var(--gold-rgb),0.65); }

    /* ── FAQ ── */
    #faq {
      background: var(--black);
      padding: 7rem 3rem;
      position: relative;
    }
    #faq::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb),0.3), transparent);
    }
    .faq-h {
      font-size: clamp(2.5rem, 6.5vw, 7rem);
      line-height: 0.87;
      margin-bottom: 3rem;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .faq-item {
      background: linear-gradient(135deg, rgba(var(--navy-rgb),0.28) 0%, rgba(0,0,0,0.35) 100%);
      border: 1px solid rgba(var(--gold-rgb),0.1);
      border-left: 3px solid rgba(var(--gold-rgb),0.3);
      padding: 1.4rem 1.75rem;
      transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    }
    .faq-item:hover {
      border-color: rgba(var(--gold-rgb),0.25);
      border-left-color: var(--gold);
      transform: translateX(2px);
    }
    .faq-item[open] {
      border-left-color: var(--gold);
      background: linear-gradient(135deg, rgba(var(--navy-rgb),0.45) 0%, rgba(var(--gold-rgb),0.05) 100%);
    }
    .faq-item summary {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 700;
      font-size: 1.02rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--white);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      list-style: none;
      transition: color 0.25s ease;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '';
      width: 14px;
      height: 14px;
      background-image:
        linear-gradient(var(--gold), var(--gold)),
        linear-gradient(var(--gold), var(--gold));
      background-size: 14px 2px, 2px 14px;
      background-position: center;
      background-repeat: no-repeat;
      flex-shrink: 0;
      transition: transform 0.3s ease;
    }
    .faq-item[open] summary::after {
      background-size: 14px 2px, 0 0;
      transform: rotate(180deg);
    }
    .faq-item summary:hover { color: var(--gold); }
    .faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
    .faq-item p {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.6);
      line-height: 1.85;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    @media (max-width: 900px) {
      #faq { padding: 5rem 1.75rem; }
      .faq-grid { grid-template-columns: 1fr; }
      .faq-h { font-size: clamp(2.5rem, 7vw, 5rem); }
    }

    /* ── VIDEO LIGHTBOX MODAL ── */
    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    .video-modal[hidden] { display: none; }
    .video-modal-overlay {
      position: absolute;
      inset: 0;
      background: rgba(6,6,6,0.94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      animation: vmodalFade 0.25s ease;
      cursor: pointer;
    }
    .video-modal-content {
      position: relative;
      width: 100%;
      max-width: 1100px;
      z-index: 1;
      animation: vmodalScale 0.4s var(--bounce);
    }
    .video-modal-close {
      position: absolute;
      top: -3.25rem;
      right: 0;
      width: 42px;
      height: 42px;
      background: transparent;
      border: 1px solid rgba(var(--gold-rgb),0.5);
      color: var(--white);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
      padding: 0;
    }
    .video-modal-close:hover {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
      transform: rotate(90deg);
    }
    .video-modal-close:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }
    .video-modal-close svg { width: 18px; height: 18px; }
    .video-modal-frame {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      border: 1px solid rgba(var(--gold-rgb),0.3);
      box-shadow: 0 30px 120px rgba(0,0,0,0.7), 0 0 80px rgba(var(--gold-rgb),0.12);
      background: #000;
    }
    /* Tour mode: larger near-fullscreen */
    .video-modal[data-mode="tour"] .video-modal-content {
      max-width: 1500px;
      width: 96%;
    }
    .video-modal[data-mode="tour"] .video-modal-frame {
      aspect-ratio: auto;
      height: min(86vh, 920px);
    }
    /* Shorts mode: vertical 9:16 for YouTube Shorts / Reels */
    .video-modal[data-mode="shorts"] .video-modal-content {
      max-width: 430px;
      width: min(95%, 430px);
    }
    .video-modal[data-mode="shorts"] .video-modal-frame {
      aspect-ratio: 9 / 16;
      max-height: 86vh;
    }
    .video-modal-frame iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
    @keyframes vmodalFade { from { opacity: 0; } to { opacity: 1; } }
    @keyframes vmodalScale {
      from { opacity: 0; transform: scale(0.94); }
      to { opacity: 1; transform: none; }
    }
    body.modal-open { overflow: hidden; }
    @media (max-width: 700px) {
      .video-modal { padding: 1rem; }
      .video-modal-close { top: -3rem; width: 38px; height: 38px; }
    }

    /* ── FOOTER SOCIAL ── */
    .ft-social {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.25rem;
    }
    .ft-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(var(--gold-rgb),0.25);
      color: var(--gold);
      transition: all 0.2s ease;
    }
    .ft-social a:hover {
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
      transform: translateY(-2px);
    }
    .ft-social svg { width: 16px; height: 16px; }
    .ft-social a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

    /* ── CTA BANNER ── */
    .cta-inner .sec-label::before { background: rgba(0,0,0,0.4); animation: none; }
    .cta-inner .sec-label span { color: rgba(0,0,0,0.45); }

    #cta {
      background: var(--gold);
      padding: 7rem 3rem;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 55%);
      pointer-events: none;
    }
    #cta::after {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.06;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(0,0,0,1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,1) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .cta-inner { position: relative; z-index: 1; }
    .cta-h {
      font-size: clamp(3rem, 7.5vw, 8rem);
      line-height: 0.87;
      color: var(--black);
      margin-bottom: 1.4rem;
    }
    .cta-sub {
      font-size: 1rem;
      color: rgba(10,10,10,0.55);
      max-width: 460px;
      line-height: 1.82;
      margin-bottom: 2.5rem;
    }
    .cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

    .btn-dk {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.9rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--black);
      color: var(--white);
      padding: 0.85rem 2rem;
      text-decoration: none;
      display: inline-block;
      transition: background 0.22s ease, transform 0.28s ease, box-shadow 0.22s ease;
      cursor: pointer;
    }
    .btn-dk:hover { background: #1a1a1a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }

    .btn-odk {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.9rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: 1.5px solid rgba(10,10,10,0.35);
      color: var(--black);
      padding: 0.85rem 2rem;
      text-decoration: none;
      display: inline-block;
      transition: all 0.22s ease;
      cursor: pointer;
    }
    .btn-odk:hover { background: rgba(0,0,0,0.08); transform: translateY(-2px); }

    /* ── CONTACT ── */
    #contact { background: var(--navy); padding: 7rem 3rem; }

    .contact-h {
      font-size: clamp(2.5rem, 6.5vw, 7rem);
      line-height: 0.87;
      margin-bottom: 3.5rem;
    }
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .contact-left { display: flex; flex-direction: column; gap: 2.5rem; }
    .contact-left > p { font-size: 1rem; line-height: 1.85; color: rgba(255,255,255,0.5); }
    .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
    .info-item { display: flex; flex-direction: column; gap: 0.3rem; }
    .info-label {
      font-size: 0.63rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
    }
    .info-value {
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    a.info-value:hover { color: var(--gold); }

    .contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-group label {
      font-size: 0.68rem;
      font-weight: 600;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .form-group input,
    .form-group textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(var(--gold-rgb),0.18);
      color: var(--white);
      padding: 0.85rem 1.1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem;
      transition: all 0.2s ease;
      border-radius: 0;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: rgba(255,255,255,0.28); }
    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      background: rgba(255,255,255,0.06);
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.1);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }

    .project-grid {
      display: grid;
      /* Eight options sit as a tidy 4 x 2 block (2 x 4 on narrow screens) */
      grid-template-columns: repeat(4, 1fr);
      gap: 0.65rem;
      margin-bottom: 0.65rem;
    }
    .project-card {
      background: rgba(var(--gold-rgb),0.05);
      border: 1px solid rgba(var(--gold-rgb),0.18);
      padding: 1rem 0.5rem;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.2s ease;
    }
    .project-card:hover {
      border-color: rgba(var(--gold-rgb),0.42);
      background: rgba(var(--gold-rgb),0.1);
      transform: translateY(-3px);
    }
    .project-card.active {
      background: rgba(var(--gold-rgb),0.18);
      border-color: var(--gold);
      box-shadow: 0 0 18px rgba(var(--gold-rgb),0.18);
    }

    .proj-icon-svg {
      width: 1.4rem; height: 1.4rem;
      color: var(--gold);
      transition: transform 0.2s ease;
    }
    .project-card:hover .proj-icon-svg { transform: scale(1.15); }
    .project-card.active .proj-icon-svg { filter: drop-shadow(0 0 6px rgba(var(--gold-rgb),0.4)); }

    .proj-name {
      font-size: 0.68rem;
      font-weight: 600;
      color: rgba(255,255,255,0.65);
      text-align: center;
      line-height: 1.2;
      transition: color 0.2s ease;
    }
    .project-card:hover .proj-name,
    .project-card.active .proj-name { color: var(--gold); }

    .other-input-wrapper { margin-top: 0.65rem; }
    .other-input-wrapper input {
      width: 100%;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(var(--gold-rgb),0.18);
      color: var(--white);
      padding: 0.85rem 1.1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.92rem;
      transition: all 0.2s ease;
      border-radius: 0;
    }
    .other-input-wrapper input:focus {
      outline: none;
      background: rgba(255,255,255,0.06);
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.1);
    }

    .contact-form .btn-g { width: 100%; text-align: center; margin-top: 0.5rem; }
    .contact-form button[disabled] { opacity: 0.7; cursor: not-allowed; pointer-events: none; }

    /* Form success state */
    .form-success {
      text-align: center;
      padding: 3.5rem 2rem;
      background: linear-gradient(135deg, rgba(var(--gold-rgb),0.1) 0%, rgba(var(--gold-rgb),0.02) 100%);
      border: 1px solid rgba(var(--gold-rgb),0.25);
      border-left: 3px solid var(--gold);
      animation: successIn 0.5s var(--bounce);
    }
    .form-success svg {
      width: 64px;
      height: 64px;
      color: var(--gold);
      margin-bottom: 1.4rem;
    }
    .form-success h3 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.8rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--white);
      margin-bottom: 0.75rem;
    }
    .form-success p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 1.75rem;
    }
    .form-reset-btn {
      background: transparent;
      border: 1px solid var(--gold);
      color: var(--gold);
      padding: 0.75rem 1.75rem;
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 0.82rem;
      cursor: pointer;
      transition: background 0.2s ease, color 0.2s ease;
    }
    .form-reset-btn:hover {
      background: var(--gold);
      color: var(--black);
    }
    .form-reset-btn:focus-visible {
      outline: 2px solid var(--white);
      outline-offset: 2px;
    }
    @keyframes successIn {
      from { opacity: 0; transform: translateY(12px); }
      to { opacity: 1; transform: none; }
    }

    /* Form error state */
    .form-error {
      background: rgba(255,107,107,0.08);
      border: 1px solid rgba(255,107,107,0.3);
      border-left: 3px solid #ff6b6b;
      padding: 0.85rem 1.1rem;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.85);
      margin-top: 0.5rem;
    }
    .form-error a {
      color: var(--gold);
      text-decoration: underline;
    }

    /* ── FOOTER ── */
    footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.04); }
    .footer-main {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.6fr;
      gap: 3rem;
      padding: 5.5rem 3rem 3rem;
      max-width: 1280px;
      margin: 0 auto;
      border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .ft-brand {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 1.1rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.4rem;
    }
    .ft-tag { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-bottom: 0.75rem; }
    .ft-url {
      font-size: 0.78rem;
      color: var(--gold);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .ft-url:hover { color: var(--gold-h); }
    .ft-col h4 {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 900;
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      color: var(--gold);
      margin-bottom: 1.25rem;
    }
    .ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .ft-col ul a {
      font-size: 0.83rem;
      color: rgba(255,255,255,0.38);
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .ft-col ul a:hover { color: var(--white); }
    .ct-item { margin-bottom: 1rem; }
    .ct-lbl { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
    .ct-val { font-size: 0.83rem; color: rgba(255,255,255,0.38); text-decoration: none; display: block; transition: color 0.2s ease; }
    a.ct-val:hover { color: var(--white); }
    .footer-bar {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1.5rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer-bar p { font-size: 0.73rem; color: rgba(255,255,255,0.22); }
    .footer-bar span { color: var(--gold); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1100px) {
      .svc-bento { grid-template-columns: 1fr 1fr; }
      .svc-card:nth-child(1) { grid-row: auto; grid-column: span 2; }
      .svc-card:nth-child(7) { grid-column: span 2; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    }

    @media (max-width: 900px) {
      .nav-center, #nav > .nav-cta { display: none; }
      #mob .nav-cta { display: inline-block; }
      .hbg { display: flex; }
      #nav { padding: 1.1rem 1.75rem; }
      #nav.scrolled { padding: 0.75rem 1.75rem; }

      #hero { padding: 8rem 1.75rem 4rem; }
      #services, #portfolio, #about, #clients, #cta, #contact { padding: 5rem 1.75rem; }

      .svc-heading, .portfolio-h, .about-h, .clients-h { font-size: clamp(2.5rem, 7vw, 5rem); }
      .svc-bento { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .svc-card:nth-child(1) { grid-row: auto; grid-column: span 2; }
      .svc-card:nth-child(7) { grid-column: span 2; }
      .port-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
      .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
      .cli-grid { grid-template-columns: repeat(2, 1fr); }
      .hero-h1 { font-size: clamp(3.5rem, 13.5vw, 7rem); }
      .contact-container { grid-template-columns: 1fr; gap: 3rem; }
    }

    @media (max-width: 600px) {
      .hero-h1 { font-size: clamp(3rem, 16vw, 5.5rem); }
      .svc-heading,.portfolio-h,.about-h,.clients-h,.cta-h { font-size: clamp(2.5rem, 10vw, 4.5rem); }
      .stats-bar { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
      .stat-div { display: none; }
      .stat { padding-left: 0; }
      .svc-bento { grid-template-columns: 1fr; }
      .svc-card:nth-child(1), .svc-card:nth-child(7) { grid-column: span 1; }
      .svc-card:nth-child(1) { padding: 2.25rem 2rem; }
      .port-grid { grid-template-columns: 1fr; }
      .about-stats { grid-template-rows: auto; }
      .about-cta { padding: 2rem 1.5rem; }
      .cli-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
      .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.75rem 2rem; }
      .footer-bar { padding: 1.25rem 1.75rem; flex-direction: column; align-items: flex-start; }
    }

/* ── SUBPAGES ── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 10.5rem 3rem 4.5rem;
  background: var(--black);
}
.page-hero .hero-bg, .page-hero .hero-grid { position: absolute; inset: 0; }
.page-hero-inner { position: relative; z-index: 1; }
.page-h1 {
  font-size: clamp(3rem, 8vw, 8.5rem);
  line-height: 0.88;
  margin: 1.5rem 0 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(175deg, #fff 0%, rgba(255,255,255,0.82) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-h1 .gold {
  background: linear-gradient(175deg, var(--gold) 0%, var(--gold-d) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  line-height: 1.85;
  font-weight: 300;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.35); }
.breadcrumbs li:not(:last-child)::after { content: '/'; color: rgba(var(--gold-rgb),0.4); }
.breadcrumbs a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s ease; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs [aria-current] { color: var(--gold); }

.content-section { background: var(--black); padding: 5.5rem 3rem; }
.content-section.alt { background: linear-gradient(180deg, var(--navy) 0%, rgba(var(--navy-rgb),0.65) 100%); }
.content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.prose h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.prose h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.2rem;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}
.prose p {
  font-size: 0.96rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 1.25rem;
}
.prose strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.prose a { color: var(--gold); text-decoration: none; border-bottom: 1px solid rgba(var(--gold-rgb),0.35); transition: border-color 0.2s ease; }
.prose a:hover { border-color: var(--gold); }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin: 1.5rem 0; }
.check-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px; height: 18px;
  margin-top: 0.2rem;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 62%, 40% 100%, 100% 16%, 84% 4%, 38% 71%);
}
.check-list li strong { color: var(--white); font-weight: 600; }

.side-card {
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.08) 0%, rgba(var(--gold-rgb),0.02) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.15);
  border-left: 4px solid var(--gold);
  padding: 2rem 1.9rem;
  margin-bottom: 1.5rem;
}
.side-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.side-card p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; margin-bottom: 1.25rem; }
.side-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.side-card ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}
.side-card ul a:hover { color: var(--gold); }
.side-card ul [aria-current] { color: var(--gold); }

.svc-link {
  display: inline-block;
  margin-top: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--gold-rgb),0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.svc-link:hover { color: var(--gold-h); border-color: var(--gold); }

.port-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

@media (max-width: 900px) {
  .page-hero { padding: 8.5rem 1.75rem 3.5rem; }
  .content-section { padding: 4rem 1.75rem; }
  .content-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── SERVICES HUB GRID ── */
.svc-bento--hub { grid-template-columns: repeat(3, 1fr); }
.svc-bento--hub .svc-card:nth-child(1) { grid-row: auto; grid-column: auto; padding: 2.25rem 2rem; }
.svc-bento--hub .svc-card:nth-child(1) .svc-title { font-size: 1.15rem; }
.svc-bento--hub .svc-card:nth-child(1) .svc-icon-svg { width: 2.4rem; height: 2.4rem; }
.svc-bento--hub .svc-card:nth-child(1) .svc-desc { font-size: 0.86rem; }
/* 7th (Podcast) runs the full width as the newest service */
.svc-bento--hub .svc-card:nth-child(7) { grid-column: span 3; }
@media (max-width: 900px) {
  .svc-bento--hub { grid-template-columns: repeat(2, 1fr); }
  .svc-bento--hub .svc-card:nth-child(7) { grid-column: span 2; }
}
@media (max-width: 600px) {
  .svc-bento--hub { grid-template-columns: 1fr; }
  .svc-bento--hub .svc-card:nth-child(7) { grid-column: span 1; }
}

/* ── INSTAGRAM FEED ── */
#instagram { background: var(--black); padding: 7rem 3rem; position: relative; }
#instagram::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb),0.3), transparent);
}
.ig-h { font-size: clamp(2.5rem, 6.5vw, 7rem); line-height: 0.87; margin-bottom: 3rem; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.ig-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb),0.14);
  border-bottom: 3px solid rgba(var(--gold-rgb),0.3);
  background: linear-gradient(135deg, rgba(var(--navy-rgb),0.4) 0%, rgba(0,0,0,0.2) 100%);
  transition: transform 0.32s var(--bounce), border-color 0.32s ease, box-shadow 0.32s ease;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ig-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,0.65) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.ig-tile:hover { transform: translateY(-5px); border-color: rgba(var(--gold-rgb),0.5); border-bottom-color: var(--gold); box-shadow: 0 16px 44px rgba(0,0,0,0.5); }
.ig-tile:hover img { transform: scale(1.06); }
.ig-tile:hover::after { opacity: 1; }
.ig-tile:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.ig-fallback {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.09) 0%, rgba(var(--gold-rgb),0.03) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.15);
}
.ig-fallback p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.75rem;
}
@media (max-width: 900px) {
  #instagram { padding: 5rem 1.75rem; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* ── CONTENT DAY CASE STUDY ── */
.case-strip {
  margin-top: 4.5rem;
  padding: 3rem 2.75rem;
  background: linear-gradient(135deg, rgba(var(--navy-rgb),0.5) 0%, rgba(var(--gold-rgb),0.05) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.16);
  border-left: 4px solid var(--gold);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.case-copy h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 0.95;
  margin-bottom: 1.1rem;
}
.case-copy p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.case-copy strong { color: var(--gold); font-weight: 600; }
.case-stat-row { display: flex; gap: 2rem; margin: 1.5rem 0 1.75rem; }
.case-stat .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.case-stat .stat-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.case-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.case-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb),0.2);
  border-bottom: 3px solid rgba(var(--gold-rgb),0.35);
  cursor: pointer;
  transition: transform 0.32s var(--bounce), border-color 0.32s ease, box-shadow 0.32s ease;
}
.case-tile img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.case-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 40%, rgba(0,0,0,0.5) 100%);
}
.case-tile .port-play { position: relative; z-index: 2; width: 44px; height: 44px; }
.case-tile .port-play svg { width: 15px; height: 15px; }
.case-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb),0.55);
  border-bottom-color: var(--gold);
  box-shadow: 0 18px 45px rgba(0,0,0,0.5);
}
.case-tile:hover .port-play {
  border-color: var(--gold);
  transform: scale(1.15);
  background: rgba(var(--gold-rgb),0.18);
}
.case-tile:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 900px) {
  .case-strip { grid-template-columns: 1fr; padding: 2rem 1.5rem; gap: 2rem; }
}

/* ── CLIENT SHOWCASE PAGE ── */
.rm-badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.42rem 0.95rem;
}
.rm-note {
  border: 2px dashed rgba(255,107,107,0.55);
  background: rgba(255,107,107,0.07);
  padding: 1.4rem 1.6rem;
  margin-bottom: 2.5rem;
}
.rm-note strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ff8f8f;
  margin-bottom: 0.45rem;
}
.rm-note p { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.75; }

.rm-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.rm-video-grid.is-vertical { grid-template-columns: repeat(4, 1fr); }

.rm-stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.75rem;
}
.rm-stat {
  padding: 1.9rem 1.7rem;
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.08) 0%, rgba(var(--gold-rgb),0.02) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.14);
  border-top: 3px solid var(--gold);
}
.rm-stat .n {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.rm-stat .l { font-size: 0.87rem; color: rgba(255,255,255,0.6); line-height: 1.7; }
.rm-stat .src {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.26);
}

.rm-opp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin-top: 2.5rem;
}
.rm-opp {
  padding: 1.85rem 1.65rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.42) 0%, rgba(var(--navy-rgb),0.22) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.14);
  border-bottom: 3px solid rgba(var(--gold-rgb),0.3);
  transition: transform 0.3s ease, border-bottom-color 0.3s ease;
}
.rm-opp:hover { transform: translateY(-4px); border-bottom-color: var(--gold); }
.rm-opp h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
  color: var(--white);
}
.rm-opp p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.8; }

.rm-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 2.6rem;
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.1) 0%, rgba(var(--gold-rgb),0.03) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.2);
  border-left: 4px solid var(--gold);
  margin-top: 3rem;
}
.rm-contact .who {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
  color: var(--white);
}
.rm-contact .role {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.rm-contact a.line {
  display: block;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  margin-bottom: 0.3rem;
  transition: color 0.2s ease;
}
.rm-contact a.line:hover { color: var(--gold); }

@media (max-width: 900px) {
  .rm-video-grid, .rm-video-grid.is-vertical { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .rm-stat-band, .rm-opp-grid { grid-template-columns: 1fr; }
  .rm-contact { padding: 1.75rem 1.5rem; gap: 1.5rem; }
}

/* ── CLIENT SHOWCASE: VERTICAL VIDEO TILES ── */
.rm-video-grid.is-vertical {
  grid-template-columns: repeat(3, 1fr);
  max-width: 840px;
}
.rm-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(var(--gold-rgb),0.2);
  border-bottom: 3px solid rgba(var(--gold-rgb),0.35);
  background: linear-gradient(145deg, #1e4060 0%, #0d1b3e 50%, #0a0a0a 100%);
  transition: transform 0.32s var(--bounce), border-color 0.32s ease, box-shadow 0.32s ease;
}
.rm-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rm-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 38%, rgba(0,0,0,0.5) 100%);
}
.rm-tile .port-play { position: relative; z-index: 2; }
.rm-tile .port-tag { z-index: 3; }
.rm-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb),0.55);
  border-bottom-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55), 0 0 34px rgba(var(--gold-rgb),0.08);
}
.rm-tile:hover .port-play {
  border-color: var(--gold);
  transform: scale(1.15);
  background: rgba(var(--gold-rgb),0.18);
}
.rm-tile:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (max-width: 700px) {
  .rm-video-grid.is-vertical { grid-template-columns: repeat(2, 1fr); max-width: none; }
}

/* ── CLIENT SHOWCASE: REVIEW ── */
.rm-review {
  position: relative;
  padding: 2.6rem 2.8rem;
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.1) 0%, rgba(var(--gold-rgb),0.03) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.2);
  border-left: 4px solid var(--gold);
  overflow: hidden;
}
.rm-review::before {
  content: '"';
  position: absolute;
  top: -3.2rem;
  right: 1.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 14rem;
  line-height: 1;
  color: rgba(var(--gold-rgb),0.06);
  pointer-events: none;
  user-select: none;
}
.rm-stars { display: flex; gap: 0.3rem; margin-bottom: 1.25rem; }
.rm-stars svg { width: 20px; height: 20px; color: var(--gold); }
.rm-review blockquote {
  position: relative;
  font-size: 1.12rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.6rem;
}
.rm-review figcaption { position: relative; }
.rm-review .name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}
.rm-review .title {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}

/* ── CLIENT SHOWCASE: PRICING TIERS ── */
.rm-tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.75rem;
}
.rm-tier {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.2rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.42) 0%, rgba(var(--navy-rgb),0.22) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.16);
  border-top: 3px solid rgba(var(--gold-rgb),0.35);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}
.rm-tier:hover {
  transform: translateY(-5px);
  border-color: rgba(var(--gold-rgb),0.4);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
}
.rm-tier.featured {
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.1) 0%, rgba(var(--gold-rgb),0.03) 100%);
  border-color: rgba(var(--gold-rgb),0.3);
  border-top-color: var(--gold);
}
.rm-tier-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.rm-tier-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.rm-tier-price sup { font-size: 1.5rem; vertical-align: super; margin-right: 0.1rem; }
.rm-tier-terms {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42);
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rm-tier ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; flex-grow: 1; }
.rm-tier ul li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
}
.rm-tier ul li::before {
  content: '';
  flex-shrink: 0;
  width: 15px; height: 15px;
  margin-top: 0.22rem;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 62%, 40% 100%, 100% 16%, 84% 4%, 38% 71%);
}
.rm-tier ul li.inherit { color: rgba(255,255,255,0.85); font-weight: 600; }
.rm-price-foot {
  margin-top: 1.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
}

@media (max-width: 900px) {
  .rm-tier-grid { grid-template-columns: 1fr; }
  .rm-review { padding: 1.9rem 1.6rem; }
  .rm-tier { padding: 2rem 1.6rem; }
}

/* Second case study alternates sides for rhythm.
   The column ratios flip too, so the copy keeps the wide column and the
   video tiles stay the same size as the first case study. */
.case-strip--reverse { grid-template-columns: 1fr 1.1fr; }
.case-strip--reverse .case-copy { order: 2; }
.case-strip--reverse .case-videos { order: 1; }
@media (max-width: 900px) {
  .case-strip--reverse { grid-template-columns: 1fr; }
  .case-strip--reverse .case-copy { order: 1; }
  .case-strip--reverse .case-videos { order: 2; }
}

/* ── CONTACT: project type selector ──
   Cards are <label>s wrapping a real radio, so the control is keyboard
   navigable and announced properly. The radio itself is visually hidden
   but stays focusable. */
.project-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  margin: 0;
  pointer-events: none;
}
.project-card:has(input:checked) {
  background: rgba(var(--gold-rgb),0.18);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(var(--gold-rgb),0.18);
}
.project-card:has(input:checked) .proj-icon-svg {
  filter: drop-shadow(0 0 6px rgba(var(--gold-rgb),0.4));
}
.project-card:has(input:checked) .proj-name { color: var(--gold); }
.project-card:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
/* Fallback for engines without :has() — JS mirrors state onto .active */
.project-card.active {
  background: rgba(var(--gold-rgb),0.18);
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(var(--gold-rgb),0.18);
}

.project-fieldset { border: 0; padding: 0; margin: 0; }
.project-fieldset > legend {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0;
  margin-bottom: 0.4rem;
}
.label-optional {
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
  text-transform: none;
  font-weight: 400;
}

/* ── CONTACT: reassurance list ── */
.contact-promises {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.contact-promises li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  list-style: none;
}
.contact-promises li::before {
  content: '';
  flex-shrink: 0;
  width: 17px; height: 17px;
  margin-top: 0.15rem;
  background: var(--gold);
  clip-path: polygon(14% 44%, 0 62%, 40% 100%, 100% 16%, 84% 4%, 38% 71%);
}
.contact-promises strong { color: var(--white); font-weight: 600; }

/* ── CONTACT: call-direct panel ── */
.contact-call {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.09) 0%, rgba(var(--gold-rgb),0.02) 100%);
  border: 1px solid rgba(var(--gold-rgb),0.16);
  border-left: 3px solid var(--gold);
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.contact-call:hover {
  background: linear-gradient(135deg, rgba(var(--gold-rgb),0.15) 0%, rgba(var(--gold-rgb),0.04) 100%);
  transform: translateY(-2px);
}
.contact-call:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.contact-call svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.contact-call .lbl {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 0.15rem;
}
.contact-call .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

/* Note under the submit button */
.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
  margin-top: 0.85rem;
  line-height: 1.7;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 520px) {
  .project-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── HERO SHOWREEL BACKGROUND ──
   Muted loop behind the headline. The poster shows instantly and is all
   that loads on small screens, where the video is skipped entirely. */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-video.ready { opacity: 1; }
#hero.has-video .hero-bg {
  /* Darken so the headline keeps its contrast over moving footage */
  background:
    linear-gradient(180deg, rgba(10,10,10,0.58) 0%, rgba(10,10,10,0.42) 45%, rgba(10,10,10,0.86) 100%),
    radial-gradient(ellipse 70% 60% at 20% 45%, rgba(10,10,10,0.55) 0%, transparent 70%);
  animation: none;
  z-index: 1;
}
#hero.has-video .hero-grid { z-index: 1; opacity: 0.04; }
#hero.has-video .hero-inner { z-index: 2; }

/* Small screens: poster only, never fetch the video */
@media (max-width: 820px) {
  .hero-video { display: none; }
  #hero.has-video .hero-bg {
    background:
      linear-gradient(180deg, rgba(10,10,10,0.74) 0%, rgba(10,10,10,0.66) 45%, rgba(10,10,10,0.9) 100%),
      var(--hero-poster) center/cover;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}

/* Watch-showreel button */
.btn-reel {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.btn-reel .reel-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  flex-shrink: 0;
}
.btn-reel .reel-play svg { width: 9px; height: 9px; margin-left: 1px; }

/* Native video inside the existing lightbox */
.video-modal-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
}
