/*
Theme Name: Rivoq Labs Theme
Theme URI: https://rivoqlabs.com
Author: Rivoq Studio
Description: Custom WordPress theme for Rivoq Labs featuring cinematic animations and WPBakery compatibility.
Version: 1.0
*/

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

    :root {
      --black:  #000000;
      --white:  #FCF8F9;
      --red:    #A21621;
      --gray:   #D1D5DB;
      --border: rgba(255,255,255,0.1);
    }

    html { font-size: 16px; scroll-behavior: smooth; }

    body {
      background: var(--black);
      color: var(--white);
      font-family: 'Instrument Sans', Helvetica, Arial, sans-serif;
      line-height: 1.5;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    body.menu-open {
      overflow: hidden;
    }

    body.menu-open nav {
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
    }

    a { color: inherit; text-decoration: none; }

    /* ─────────────────────────────────────────
       NAV
    ───────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 48px;
      border-bottom: 1px solid var(--border);
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .nav-logo img {
      height: 42px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 40px;
      list-style: none;
    }

    .nav-links a {
      font-size: 13px;
      color: var(--gray);
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }

    .nav-links a:hover { color: var(--white); }

    .nav-cta {
      color: var(--black) !important;
      background: var(--white);
      padding: 10px 22px;
      border-radius: 2px;
      font-weight: 600;
      letter-spacing: 0.04em;
      transition: background 0.2s, color 0.2s !important;
    }

    .nav-cta:hover {
      background: var(--red) !important;
      color: var(--white) !important;
    }

    .nav-toggle {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      width: 44px;
      height: 44px;
      padding: 0;
      background: none;
      border: none;
      position: relative;
      z-index: 102;
    }

    .nav-toggle span {
      width: 22px;
      height: 1.5px;
      background: var(--white);
      display: block;
      transition: opacity 0.2s, transform 0.2s;
      transform-origin: center;
    }

    .nav-toggle.active span:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: stretch;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      isolation: isolate;
      background: var(--black);
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background-repeat: no-repeat;
      background-size: cover, cover, 102%;
      background-position: center, center, 55% 76%;
      transform: scale(1.01);
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(circle at 73% 30%, rgba(162,22,33,0.16) 0%, rgba(162,22,33,0.04) 18%, transparent 42%),
        linear-gradient(to right, rgba(0,0,0,0.2) 0%, transparent 32%);
    }

    /* Left — content */
    .hero-content {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 160px 64px 100px 48px;
      max-width: 720px;
      position: relative;
      z-index: 3;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 600;
      color: var(--red);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .hero-tag::before {
      content: '';
      width: 24px;
      height: 1.5px;
      background: var(--red);
      flex-shrink: 0;
    }

    .hero-headline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(44px, 5.4vw, 80px);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.03em;
      max-width: 11ch;
      margin-bottom: 28px;
    }

    .hero-headline-line {
      display: block;
      white-space: nowrap;
    }

    .hero-headline em {
      font-style: normal;
      color: var(--red);
    }

    .hero-desc {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.8;
      max-width: 400px;
      margin-bottom: 48px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      align-self: flex-start;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--white);
      background: var(--red);
      padding: 14px 28px;
      border-radius: 2px;
      transition: opacity 0.2s;
    }

    .hero-cta:hover { opacity: 0.82; }

    .hero-cta svg { flex-shrink: 0; transition: transform 0.2s; }
    .hero-cta:hover svg { transform: translate(3px, -3px); }

    /* Right — model image */
    .hero-image {
      display: none;
    }

    /* Actual model photo — swap src when ready */
    .hero-image img {
      display: none;
    }

    /* Placeholder text — visible only when no image loaded */
    .hero-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 0;
    }

    .hero-placeholder span {
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.12);
    }

    /* Fade overlay — left edge blends into black */
    .hero-fade {
      display: none;
    }

    /* ── Effect: mouse parallax on model ── */
    .hero-image img {
      transform: none;
    }

    /* ── Effect: red ambient glow pulse ── */
    .hero-glow {
      display: none;
    }

    @keyframes glowPulse {
      0%, 100% { opacity: 0.5; transform: scale(1);    }
      50%       { opacity: 1.0; transform: scale(1.25); }
    }

    /* ── Effect: film grain overlay ── */
    .hero-grain {
      position: absolute;
      inset: -50%;
      width: 200%;
      height: 200%;
      opacity: 0.055;
      pointer-events: none;
      z-index: 10;
      will-change: transform;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 256px 256px;
      mix-blend-mode: screen;
      animation: grainShift 0.12s steps(1) infinite;
    }

    @keyframes grainShift {
      0%   { transform: translate(0,    0);    }
      20%  { transform: translate(-3%,  2%);   }
      40%  { transform: translate(2%,  -3%);   }
      60%  { transform: translate(-2%,  3%);   }
      80%  { transform: translate(3%,  -1%);   }
      100% { transform: translate(-1%,  2%);   }
    }

    /* ─────────────────────────────────────────
       MARQUEE
    ───────────────────────────────────────── */
    .marquee-wrap {
      overflow: hidden;
      border-bottom: 1px solid var(--border);
      padding: 18px 0;
    }

    .marquee-track {
      display: flex;
      white-space: nowrap;
      animation: marquee 30s linear infinite;
    }

    .marquee-item {
      display: inline-flex;
      align-items: center;
      gap: 44px;
      font-size: 11px;
      font-weight: 600;
      color: var(--gray);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding-right: 44px;
      flex-shrink: 0;
    }

    .marquee-dot {
      width: 3px;
      height: 3px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─────────────────────────────────────────
       SHARED SECTION STYLES
    ───────────────────────────────────────── */
    .section-label {
      font-size: 11px;
      font-weight: 600;
      color: var(--red);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-title {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(28px, 3.2vw, 46px);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 64px;
    }

    .section-link {
      font-size: 13px;
      color: var(--gray);
      letter-spacing: 0.02em;
      flex-shrink: 0;
      transition: color 0.2s;
    }

    .section-link:hover { color: var(--white); }

    /* ─────────────────────────────────────────
       SERVICES
    ───────────────────────────────────────── */
    .services {
      padding: 120px 48px;
      border-bottom: 1px solid var(--border);
    }

    .services,
    .work,
    .insights,
    .manifesto,
    .cta-section,
    footer {
      content-visibility: auto;
      contain-intrinsic-size: 1px 900px;
    }

    .services-list { list-style: none; }

    .service-item {
      display: grid;
      grid-template-columns: 64px 1fr 1fr;
      align-items: start;
      gap: 32px;
      padding: 36px 0;
      border-top: 1px solid var(--border);
      cursor: default;
      transition: padding-left 0.25s;
    }

    .service-item:last-child { border-bottom: 1px solid var(--border); }

    .service-item:hover { padding-left: 8px; }
    .service-item:hover .service-name { color: var(--red); }

    .service-number {
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      color: rgba(255,255,255,0.22);
      letter-spacing: 0.06em;
      padding-top: 6px;
    }

    .service-name {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(18px, 2.1vw, 28px);
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.15;
      transition: color 0.25s;
    }

    .service-sub {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.8;
      padding-top: 4px;
    }

    /* ─────────────────────────────────────────
       WORK / REELS
    ───────────────────────────────────────── */
    .work {
      padding: 120px 48px;
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 70% 24%, rgba(162,22,33,0.08) 0%, transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0) 18%),
        var(--black);
    }

    .reels-row {
      display: flex;
      gap: 10px;
      perspective: 1400px;
    }

    .reel-item {
      flex: 1 1 0;
      aspect-ratio: 9 / 16;
      border-radius: 4px;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 18%, rgba(162,22,33,0.18) 0%, rgba(162,22,33,0.04) 24%, transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 18%),
        #0d0d0d;
      position: relative;
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: 0 24px 60px rgba(0,0,0,0.34);
      transform: translate3d(0, 0, 0);
      transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    }

    .reel-card {
      appearance: none;
      padding: 0;
      text-align: left;
      cursor: pointer;
    }

    .reel-media,
    .reel-poster {
      position: absolute;
      inset: 0;
    }

    .reel-media {
      z-index: 0;
      overflow: hidden;
    }

    .reel-poster {
      z-index: 3;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 16px;
      background:
        radial-gradient(circle at 50% 18%, rgba(162,22,33,0.18) 0%, rgba(162,22,33,0.03) 24%, transparent 52%),
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 18%, rgba(0,0,0,0.22) 100%),
        linear-gradient(160deg, #1a1a1a 0%, #070707 85%);
      transition: opacity 0.35s ease, transform 0.6s ease, filter 0.6s ease;
    }

    .reel-card.is-loaded .reel-poster {
      opacity: 0;
      pointer-events: none;
    }

    .reel-badge,
    .reel-kicker {
      display: inline-flex;
      align-self: flex-start;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .reel-badge {
      padding: 8px 10px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(0,0,0,0.28);
      color: rgba(255,255,255,0.82);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .reel-play {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 64px;
      height: 64px;
      margin-top: -32px;
      margin-left: -32px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      background: rgba(162,22,33,0.92);
      box-shadow: 0 14px 36px rgba(0,0,0,0.34);
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .reel-meta {
      display: flex;
      flex-direction: column;
      gap: 8px;
      position: relative;
      z-index: 1;
    }

    .reel-kicker {
      color: rgba(255,255,255,0.5);
    }

    .reel-title {
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: -0.02em;
      color: var(--white);
      max-width: 12ch;
    }

    .reel-item::before {
      content: '';
      position: absolute;
      inset: -18%;
      background: linear-gradient(115deg, transparent 28%, rgba(255,255,255,0.14) 48%, transparent 66%);
      opacity: 0.28;
      transform: translateX(-62%) rotate(8deg);
      animation: reelSweep 7s ease-in-out infinite;
      pointer-events: none;
      z-index: 2;
    }

    .reel-item::after {
      content: '';
      position: absolute;
      inset: auto 0 0;
      height: 34%;
      background: linear-gradient(to top, rgba(0,0,0,0.72), transparent);
      opacity: 0.9;
      pointer-events: none;
      z-index: 1;
    }

    .reel-item video,
    .reel-item iframe,
    .reel-poster {
      width: 100%;
      height: 100%;
      display: block;
      transform: scale(1.03);
      opacity: 0.92;
      filter: saturate(1.06) contrast(1.04);
      transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
      animation: reelFloat 5.5s ease-in-out infinite;
    }

    .reel-item video,
    .reel-item iframe {
      object-fit: cover;
      border: none;
    }

    .reel-item:hover {
      transform: translate3d(0, -12px, 0) rotateX(2deg) rotateY(-2deg);
      border-color: rgba(162,22,33,0.28);
      box-shadow: 0 30px 80px rgba(0,0,0,0.42), 0 0 0 1px rgba(162,22,33,0.1);
    }

    .reel-item:hover::before {
      opacity: 0.38;
    }

    .reel-item:hover video,
    .reel-item:hover iframe,
    .reel-item:hover .reel-poster {
      animation-play-state: paused;
      transform: scale(1.08);
      opacity: 1;
      filter: saturate(1.12) contrast(1.08);
    }

    .reel-item:hover .reel-play {
      transform: scale(1.08);
      background: rgba(178,31,43,0.96);
    }

    .reel-item:nth-child(2) video, .reel-item:nth-child(2) iframe, .reel-item:nth-child(2) .reel-poster { animation-delay: -1.2s; }
    .reel-item:nth-child(3) video, .reel-item:nth-child(3) iframe, .reel-item:nth-child(3) .reel-poster { animation-delay: -2.4s; }
    .reel-item:nth-child(4) video, .reel-item:nth-child(4) iframe, .reel-item:nth-child(4) .reel-poster { animation-delay: -3.1s; }
    .reel-item:nth-child(5) video, .reel-item:nth-child(5) iframe, .reel-item:nth-child(5) .reel-poster { animation-delay: -4.2s; }

    @keyframes reelFloat {
      0%, 100% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(0, -10px, 0); }
    }

    @keyframes reelSweep {
      0%, 14% { transform: translateX(-70%) rotate(8deg); opacity: 0; }
      24%, 70% { opacity: 0.3; }
      100% { transform: translateX(84%) rotate(8deg); opacity: 0; }
    }

    @media (prefers-reduced-motion: reduce) {
      .reel-item,
      .reel-item::before,
      .reel-item video,
      .reel-item iframe,
      .reel-poster {
        animation: none;
        transition: none;
      }
    }

    /* ─────────────────────────────────────────
       INSIGHTS
    ───────────────────────────────────────── */
    .insights {
      position: relative;
      padding: 120px 48px;
      border-bottom: 1px solid var(--border);
      background-color: var(--black);
      background-image: 
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .insights-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background: var(--border);
    }

    .insight-card {
      background: var(--black);
      padding: 40px 36px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      transition: background 0.2s;
      cursor: pointer;
    }

    .insight-card:hover { background: #0b0b0b; }

    .insight-thumb {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      border-radius: 2px;
    }

    .insight-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .insight-card:hover .insight-thumb img {
      transform: scale(1.04);
    }

    .insight-date {
      font-size: 11px;
      color: var(--red);
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .insight-title {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.35;
      flex: 1;
    }

    .insight-arrow {
      font-size: 18px;
      color: var(--gray);
      transition: color 0.2s, transform 0.2s;
      display: inline-block;
      align-self: flex-start;
      line-height: 1;
    }

    .insight-card:hover .insight-arrow {
      color: var(--white);
      transform: translate(3px, -3px);
    }

    /* ─────────────────────────────────────────
       MANIFESTO — WHY RIVOQ LABS
    ───────────────────────────────────────── */
    .manifesto {
      position: relative;
      padding: 120px 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      border-bottom: 1px solid var(--border);
      background-color: var(--black);
      background-image: 
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .manifesto-left { position: sticky; top: 96px; }

    .manifesto-body {
      font-size: clamp(16px, 1.8vw, 22px);
      font-weight: 400;
      line-height: 1.65;
      letter-spacing: -0.01em;
      color: var(--gray);
      margin-top: 20px;
    }

    .manifesto-body strong {
      color: var(--white);
      font-weight: 600;
    }

    .manifesto-points { list-style: none; }

    .manifesto-point {
      padding: 36px 0;
      border-top: 1px solid var(--border);
    }

    .manifesto-point:first-child {
      padding-top: 0;
      border-top: none;
    }

    .point-title {
      font-family: 'Poppins', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: -0.01em;
      margin-bottom: 10px;
    }

    .point-body {
      font-size: 14px;
      color: var(--gray);
      line-height: 1.85;
    }

    /* ─────────────────────────────────────────
       CTA
    ───────────────────────────────────────── */
    .cta-section {
      position: relative;
      padding: 160px 48px;
      text-align: center;
      border-bottom: 1px solid var(--border);
      background-image:
        linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 30%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,1) 100%);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .cta-eyebrow {
      font-size: 11px;
      font-weight: 600;
      color: var(--red);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      margin-bottom: 24px;
    }

    .cta-headline {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(44px, 7vw, 96px);
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 1.0;
      margin-bottom: 20px;
    }

    .cta-sub {
      font-size: 16px;
      color: var(--gray);
      margin-bottom: 48px;
    }

    .cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--white);
      background: var(--red);
      padding: 16px 32px;
      border-radius: 2px;
      transition: opacity 0.2s;
    }

    .btn-primary:hover { opacity: 0.82; }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      font-family: 'Instrument Sans', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.03em;
      color: var(--gray);
      padding: 16px 24px;
      border: 1px solid var(--border);
      border-radius: 2px;
      transition: color 0.2s, border-color 0.2s;
    }

    .btn-secondary:hover {
      color: var(--white);
      border-color: rgba(255,255,255,0.22);
    }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    footer {
      padding: 36px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .footer-logo img {
      height: 32px;
      width: auto;
      display: block;
      opacity: 0.75;
    }

    .footer-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }

    .footer-links a {
      font-size: 12px;
      color: var(--gray);
      letter-spacing: 0.04em;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--white); }

    .footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 4px;
    }

    .footer-email {
      font-size: 12px;
      color: var(--gray);
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }

    .footer-email:hover { color: var(--white); }

    .footer-copy {
      font-size: 11px;
      color: rgba(255,255,255,0.22);
      letter-spacing: 0.03em;
    }

    /* ─────────────────────────────────────────
       RESPONSIVE — TABLET
    ───────────────────────────────────────── */
    @media (max-width: 1024px) {
      /* Show 3 reels on tablet */
      .reel-item:nth-child(4),
      .reel-item:nth-child(5) { display: none; }
    }

    /* ─────────────────────────────────────────
       RESPONSIVE — TABLET (portrait + landscape)
    ───────────────────────────────────────── */
    @media (max-width: 1024px) and (min-width: 769px) {
      .hero::before {
        background-size: cover, cover, 104%;
        background-position: center, center, 62% 72%;
      }
      .hero-content { padding: 140px 40px 80px; max-width: 620px; }
      .hero-headline { font-size: clamp(48px, 6vw, 68px); }
      .hero-desc { max-width: 360px; }

      .reel-item:nth-child(4),
      .reel-item:nth-child(5) { display: none; }

      .services,
      .work,
      .insights,
      .manifesto,
      .cta-section { padding: 90px 40px; }
    }

    /* ─────────────────────────────────────────
       RESPONSIVE — MOBILE
    ───────────────────────────────────────── */
    @media (max-width: 768px) {

      /* Nav */
      nav { padding: 0 24px; }
      .nav-toggle { display: flex; }

      .nav-links {
        display: flex;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #000000;
        background-image: radial-gradient(circle at 78% 18%, rgba(162,22,33,0.18) 0%, transparent 28%);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 24px;
        padding: 56px 24px 32px;
        overflow-y: auto;
        border-top: 1px solid var(--border);
        z-index: 101;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-16px);
        transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
      }

      .nav-links.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links li {
        opacity: 0;
        transform: translateY(18px);
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

      .nav-links.open li {
        opacity: 1;
        transform: translateY(0);
      }

      .nav-links.open li:nth-child(1) { transition-delay: 0.06s; }
      .nav-links.open li:nth-child(2) { transition-delay: 0.1s; }
      .nav-links.open li:nth-child(3) { transition-delay: 0.14s; }
      .nav-links.open li:nth-child(4) { transition-delay: 0.18s; }

      .nav-links a {
        font-size: 32px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: -0.02em;
        line-height: 1.1;
      }

      .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
        margin-top: 10px;
        font-size: 16px !important;
        padding: 16px 28px !important;
      }

      /* ── Hero — overlay layout ──
         Text on top-left, model absolute bottom-right
         Her head lands near "No studio required" line
      ── */
      .hero {
        min-height: max(760px, 100svh);
      }

      .hero::before {
        background-size: cover, cover, auto 92%;
        background-position: center, center, right bottom;
      }

      .hero-content {
        position: relative;
        z-index: 3;
        width: min(100%, 36rem);
        max-width: calc(100% - 24px);
        min-height: max(760px, 100svh);
        padding: 168px 24px 96px;
        justify-content: center;
      }

      .hero-tag {
        margin-bottom: 24px;
        font-size: 11px;
        letter-spacing: 0.14em;
      }

      .hero-tag::before {
        width: 18px;
      }

      .hero-headline {
        font-size: clamp(34px, 9vw, 52px);
        line-height: 1;
        max-width: none;
        margin-bottom: 20px;
      }

      .hero-desc {
        max-width: min(30ch, 100%);
        font-size: clamp(14px, 3.8vw, 16px);
        line-height: 1.7;
        margin-bottom: 32px;
        text-shadow: 0px 2px 12px rgba(0,0,0,0.8);
      }

      .hero-cta {
        padding: 14px 22px;
      }

      /* Sections */
      .services,
      .insights,
      .manifesto,
      .cta-section { padding: 72px 24px; }

      .work { padding: 72px 0 72px 24px; }

      .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 44px;
        padding-right: 24px;
      }

      /* Services */
      .service-item {
        grid-template-columns: 36px 1fr;
        grid-template-rows: auto auto;
        gap: 6px 14px;
        padding: 24px 0;
      }

      .service-sub {
        grid-column: 2;
        grid-row: 2;
      }

      /* Reels — auto pan slider */
      .reels-row {
        width: max-content;
        padding-right: 24px;
        will-change: transform;
        animation: reelPanMobile 18s ease-in-out infinite alternate;
      }

      @keyframes reelPanMobile {
        0%, 5% { transform: translateX(0); }
        95%, 100% { transform: translateX(calc(-100% + 100vw - 24px)); }
      }

      .reels-row::-webkit-scrollbar { display: none; }

      .reel-item {
        flex: 0 0 62vw;
        display: block !important;
      }

      .reel-play {
        width: 56px;
        height: 56px;
        margin-top: -28px;
        margin-left: -28px;
      }

      .reel-title {
        font-size: 15px;
      }

      /* Insights */
      .insights-grid { grid-template-columns: 1fr; }

      /* Manifesto */
      .manifesto {
        grid-template-columns: 1fr;
        gap: 44px;
      }

      .manifesto-left { position: static; }

      /* CTA */
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .btn-primary,
      .btn-secondary {
        justify-content: center;
        padding: 16px 24px;
      }

      /* Footer */
      footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 36px 24px;
      }

      .footer-links { flex-wrap: wrap; gap: 14px 22px; }
      .footer-right { align-items: flex-start; }
    }

    /* ─────────────────────────────────────────
       RESPONSIVE — SMALL PHONES (≤ 390px)
    ───────────────────────────────────────── */
    @media (max-width: 390px) {
      .hero { min-height: max(700px, 100svh); }
      .hero::before {
        background-size: cover, cover, auto 82%;
        background-position: center, center, right bottom;
      }
      .hero-content  { min-height: max(700px, 100svh); padding: 148px 20px 72px; max-width: calc(100% - 16px); }
      .hero-headline { font-size: clamp(31px, 10.6vw, 40px); }
      .hero-desc     { max-width: 24ch; font-size: 14px; }
      .cta-headline  { font-size: 38px; }
    }
