/* ═══════════════════════════════════════════════════════════
   STUDIO PORTFOLIO — CINEMATIC CSS
   Dark, High-end, Cinematic Design System
   ═══════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:          #080808;
  --c-bg-2:        #0e0e0e;
  --c-bg-3:        #141414;
  --c-surface:     #1a1a1a;
  --c-surface-2:   #222222;
  --c-border:      rgba(255,255,255,0.08);
  --c-text:        #f0ede8;
  --c-text-muted:  rgba(240,237,232,0.5);
  --c-text-dim:    rgba(240,237,232,0.25);
  --c-accent:      #c8a96e;     /* warm gold */
  --c-accent-dim:  rgba(200,169,110,0.15);
  --c-accent-2:    #e8e0d4;     /* off-white */
  --c-white:       #ffffff;

  /* Typography */
  --font-sans:    'Space Grotesk', 'Inter', sans-serif;
  --font-serif:   'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs:   0.5rem;
  --space-sm:   1rem;
  --space-md:   2rem;
  --space-lg:   4rem;
  --space-xl:   8rem;
  --space-xxl:  12rem;

  /* Layout */
  --max-width:  1400px;
  --gutter:     clamp(1.5rem, 4vw, 4rem);

  /* Animation */
  --ease-smooth:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-expo:  cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-elastic:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:  0.3s;
  --dur-med:   0.6s;
  --dur-slow:  1s;
  --dur-xslow: 1.4s;

  /* Border radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none; /* custom cursor active */
}

body.loading {
  overflow: hidden;
}

img, video {
  display: block;
  max-width: 100%;
}

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

ul { list-style: none; }

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ─── CUSTOM CURSOR ─────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--c-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease-smooth),
              width 0.3s var(--ease-smooth),
              height 0.3s var(--ease-smooth),
              opacity 0.3s;
}

body.cursor-hovering .cursor { width: 14px; height: 14px; }
body.cursor-hovering .cursor-follower {
  width: 60px;
  height: 60px;
  opacity: 0.6;
}

/* ─── ENTER SCREEN ───────────────────────────────────────── */
.enter-screen {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 1s cubic-bezier(0.19,1,0.22,1), visibility 1s;
}

.enter-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.enter-screen__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.enter-screen__logo {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  color: white;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}

.enter-screen__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  opacity: 0;
  animation: fadeIn 1s ease 0.7s forwards;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}

.enter-screen__btn:hover { transform: scale(1.08); }

.enter-screen__btn svg {
  width: clamp(70px, 10vw, 100px);
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.2));
  transition: filter 0.3s;
}

.enter-screen__btn:hover svg {
  filter: drop-shadow(0 0 50px rgba(255,255,255,0.5));
}

.enter-screen__btn span {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.enter-screen__sub {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}

/* ─── LOADER ─────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s var(--ease-smooth), visibility 0.8s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.loader__logo {
  display: flex;
  gap: 0.15em;
  overflow: hidden;
}

.loader__letter {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--c-text);
  transform: translateY(100%);
  opacity: 0;
  animation: letterReveal 0.6s var(--ease-out-expo) forwards;
}

.loader__letter:nth-child(1) { animation-delay: 0.05s; }
.loader__letter:nth-child(2) { animation-delay: 0.10s; }
.loader__letter:nth-child(3) { animation-delay: 0.15s; }
.loader__letter:nth-child(4) { animation-delay: 0.20s; }
.loader__letter:nth-child(5) { animation-delay: 0.25s; }
.loader__letter:nth-child(6) { animation-delay: 0.30s; }

@keyframes letterReveal {
  to { transform: translateY(0); opacity: 1; }
}

.loader__bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.loader__bar-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: var(--c-accent);
  transition: width 0.1s linear;
}

.loader__tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--c-text-muted);
  text-transform: uppercase;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--gutter);
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem var(--gutter);
  border-bottom: 1px solid var(--c-border);
}

.nav__logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-text);
  transition: opacity var(--dur-fast);
}

.nav__logo-link:hover { opacity: 0.8; }

.nav__logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__brand {
  direction: ltr;
  unicode-bidi: isolate;
}

.nav__logo-accent {
  color: var(--c-accent);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  transition: color var(--dur-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--c-accent);
  transition: width var(--dur-fast) var(--ease-smooth);
}

.nav__link:hover,
.nav__link.active {
  color: var(--c-text);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link--cta {
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text) !important;
  transition: border-color var(--dur-fast), background var(--dur-fast), color var(--dur-fast) !important;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: #000 !important;
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-text);
  transition: transform var(--dur-fast), opacity var(--dur-fast);
}

.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: circle(0% at calc(100% - 2rem) 2rem);
  transition: clip-path 0.7s var(--ease-out-expo);
  pointer-events: none;
}

.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 2rem) 2rem);
  pointer-events: all;
}

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu__link {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-text-muted);
  transition: color var(--dur-fast);
}

.mobile-menu__link:hover { color: var(--c-accent); }

/* ─── HERO SECTION ───────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
}

/* Cinematic letterbox bars */
.hero__bar {
  position: absolute;
  left: 0; right: 0;
  height: clamp(50px, 8vh, 90px);
  background: #000;
  z-index: 20;
  transform: scaleY(0);
}

.hero__bar--top {
  top: 0;
  transform-origin: top;
  animation: barReveal 1.2s cubic-bezier(0.19,1,0.22,1) 1.5s forwards;
}

.hero__bar--bottom {
  bottom: 0;
  transform-origin: bottom;
  animation: barReveal 1.2s cubic-bezier(0.19,1,0.22,1) 1.5s forwards;
}

@keyframes barReveal {
  to { transform: scaleY(1); }
}

/* Overlays */
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25) 0%,
      rgba(0,0,0,0.1) 40%,
      rgba(0,0,0,0.65) 85%,
      rgba(8,8,8,1) 100%
    );
  z-index: 2;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
  z-index: 2;
}

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

@keyframes grainShift {
  0%   { transform: translate(0,0); }
  10%  { transform: translate(-3%,-3%); }
  20%  { transform: translate(3%,3%); }
  30%  { transform: translate(-3%,3%); }
  40%  { transform: translate(3%,-3%); }
  50%  { transform: translate(-5%,2%); }
  60%  { transform: translate(5%,-2%); }
  70%  { transform: translate(-2%,5%); }
  80%  { transform: translate(2%,-5%); }
  90%  { transform: translate(-4%,1%); }
  100% { transform: translate(4%,-1%); }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: var(--gutter);
  max-width: 900px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  opacity: 0;
  animation: fadeIn 1s var(--ease-smooth) 1.8s forwards;
}

.hero__eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-accent);
  opacity: 0.6;
}

.hero__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  overflow: hidden;
}

.hero__title-line--accent {
  color: var(--c-accent);
  font-style: italic;
  font-family: var(--font-serif);
}

/* Animated reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-fade {
  opacity: 0;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
  transition: opacity var(--dur-slow) var(--ease-smooth),
              transform var(--dur-slow) var(--ease-smooth);
}

/* Hero title own animation */
.hero__title-line {
  opacity: 0;
  transform: translateY(100%);
  animation: heroLineReveal 1.1s var(--ease-out-expo) forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 1.2s; }
.hero__title-line:nth-child(2) { animation-delay: 1.45s; }

@keyframes heroLineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero__sub {
  font-size: clamp(0.875rem, 2vw, 1.1rem);
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-smooth) 2s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 1s var(--ease-smooth) 2.2s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* Mute button */
.hero__mute-btn {
  position: absolute;
  bottom: clamp(4rem, 8vh, 6rem);
  right: var(--gutter);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem 0.6rem 0.8rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
}

.hero__mute-btn:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.8);
  transform: scale(1.05);
}

.hero__mute-btn .hero__mute-label {
  pointer-events: none;
}

.hero__mute-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── WATCH FULL VIDEO BUTTON ────────────────────────────── */
.hero__watch-btn {
  position: absolute;
  bottom: clamp(4.5rem, 10vh, 7rem);
  left: var(--gutter);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  cursor: none;
  color: white;
  font-family: var(--font-sans);
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast) var(--ease-elastic);
  opacity: 0;
  animation: fadeIn 1s var(--ease-smooth) 2.6s forwards;
}

.hero__watch-btn:hover {
  background: rgba(0,0,0,0.65);
  border-color: rgba(200,169,110,0.5);
  transform: scale(1.03);
}

.hero__watch-btn__play svg {
  width: 36px;
  height: 36px;
  transition: transform var(--dur-fast) var(--ease-elastic);
}

.hero__watch-btn:hover .hero__watch-btn__play svg {
  transform: scale(1.12);
}

.hero__watch-btn__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1;
}

.hero__watch-btn__label {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
}

.hero__watch-btn__sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-accent);
  font-weight: 400;
}

/* ─── YOUTUBE MODAL ──────────────────────────────────────── */
.yt-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.yt-modal.open {
  pointer-events: all;
  opacity: 1;
}

.yt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.yt-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  transform: scale(0.92) translateY(24px);
  transition: transform 0.45s var(--ease-out-expo);
}

.yt-modal.open .yt-modal__box {
  transform: scale(1) translateY(0);
}

.yt-modal__close {
  position: absolute;
  top: -3rem;
  left: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  cursor: none;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}

.yt-modal__close:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  transform: rotate(90deg);
}

.yt-modal__close svg { width: 18px; }

.yt-modal__player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}

.yt-modal__player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(4rem, 8vh, 6rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease-smooth) 2.8s forwards;
}

.hero__scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.hero__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--c-accent);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--r-sm);
  transition: all var(--dur-fast) var(--ease-smooth);
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.btn:hover::before { opacity: 0.1; }

.btn--primary {
  background: var(--c-accent);
  color: #0a0804;
  border: 1px solid var(--c-accent);
}

.btn--primary:hover {
  background: #d9ba7f;
  border-color: #d9ba7f;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,169,110,0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}

.btn--ghost:hover {
  border-color: var(--c-text-muted);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

.btn__arrow { display: flex; align-items: center; }
.btn__arrow svg { width: 18px; transition: transform var(--dur-fast) var(--ease-smooth); }
.btn:hover .btn__arrow svg { transform: translateX(4px); }

/* ─── CONTAINER & LAYOUT ─────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--space-xl) 0;
}

.section__header {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.5rem;
}

.section__label-line {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--c-accent);
}

.section__title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-text);
}

.section__title em {
  font-style: italic;
  color: var(--c-accent);
  font-family: var(--font-serif);
}

.section__sub {
  margin-top: 1.5rem;
  max-width: 600px;
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* ─── FEATURED VIDEO SECTION ────────────────────────────── */
.featured-video {
  position: relative;
  background: #000;
}

.featured-video__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  cursor: pointer;
}

@media (max-width: 768px) {
  .featured-video__stage { aspect-ratio: 16/9; }
}

.featured-video__poster {
  position: absolute;
  inset: 0;
}

.featured-video__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
  filter: brightness(0.6);
}

.featured-video__stage:hover .featured-video__bg {
  transform: scale(1.08);
}

.featured-video__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 50%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.6) 100%);
}

.featured-video__center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.featured-video__play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  transition: transform 0.4s var(--ease-elastic);
}

.featured-video__play-btn:hover {
  transform: scale(1.06);
}

.featured-video__play-ring {
  position: relative;
}

.featured-video__play-ring svg {
  width: clamp(70px, 9vw, 100px);
  filter: drop-shadow(0 0 30px rgba(200,169,110,0.3));
  transition: filter 0.3s;
}

.featured-video__play-btn:hover .featured-video__play-ring svg {
  filter: drop-shadow(0 0 50px rgba(200,169,110,0.6));
}

/* Animated pulse ring */
.featured-video__play-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
  0%   { transform: scale(1); opacity: 0.4; }
  80%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

.featured-video__play-label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.featured-video__play-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
}

.featured-video__meta {
  position: absolute;
  bottom: 2.5rem;
  right: var(--gutter);
  z-index: 5;
  text-align: right;
}

.featured-video__tag {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: 0.4rem;
}

.featured-video__title {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--c-white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
}

.video-modal.open {
  pointer-events: all;
  opacity: 1;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
}

.video-modal__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  transform: scale(0.93) translateY(20px);
  transition: transform 0.45s var(--ease-out-expo);
}

.video-modal.open .video-modal__box {
  transform: scale(1) translateY(0);
}

.video-modal__close {
  position: absolute;
  top: -3rem;
  left: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast);
}

.video-modal__close:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.5);
  transform: rotate(90deg);
}

.video-modal__close svg { width: 18px; }

.video-modal__player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,0.9);
}

.video-modal__video {
  width: 100%;
  height: 100%;
  display: block;
  outline: none;
}

/* ─── MARQUEE STRIP ──────────────────────────────────────── */
.marquee-strip {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  overflow: hidden;
  padding: 1rem 0;
}

.marquee-strip__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-strip__track span {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  flex-shrink: 0;
}

.marquee-strip__dot {
  color: var(--c-accent) !important;
}

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

/* ─── ABOUT SECTION ──────────────────────────────────────── */
.about {
  background: var(--c-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
}

.about__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-md);
}

.about__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.about__image-wrap:hover .about__image {
  transform: scale(1.04);
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4) 100%);
}

.about__badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--c-accent);
  color: #0a0804;
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  min-width: 80px;
  text-align: center;
}

.about__badge-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about__content {
  padding: 2rem 0;
}

.about__text {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--c-border);
}

.about__stat-num {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1;
}

.about__stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--c-text-dim);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ─── WORK / SHOWREEL SECTION ─────────────────────────────── */
.work {
  background: var(--c-bg-2);
}

/* Reel player */
.reel {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.reel__wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--c-surface);
}

.reel__poster {
  position: absolute;
  inset: 0;
  cursor: none;
}

.reel__poster-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.reel__poster:hover .reel__poster-img {
  transform: scale(1.03);
}

.reel__play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(0,0,0,0.35);
  transition: background var(--dur-fast);
}

.reel__play-btn:hover { background: rgba(0,0,0,0.2); }

.reel__play-btn svg {
  width: clamp(60px, 8vw, 90px);
  transition: transform var(--dur-fast) var(--ease-elastic);
}

.reel__play-btn:hover svg { transform: scale(1.1); }

.reel__play-btn span {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.reel__player {
  position: absolute;
  inset: 0;
}

.reel__player iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* 5th item (last in row of 3) — sit in the middle column */
.portfolio-grid .portfolio-item:last-child:nth-child(3n+2) {
  grid-column: 2;
}

.portfolio-item {
  position: relative;
  cursor: none;
}

.portfolio-item__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--c-surface);
}

.portfolio-item__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}

.portfolio-item:hover .portfolio-item__img {
  transform: scale(1.06);
}

.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast);
}

.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }

/* Play button for YouTube portfolio items */
.portfolio-item__play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-smooth);
}
.portfolio-item:hover .portfolio-item__play {
  background: rgba(255,255,255,0.95);
  transform: scale(1.12);
}
.portfolio-item:hover .portfolio-item__play svg path { fill: #000; }
.portfolio-item__play svg { width: 22px; height: 22px; margin-right: -2px; }

.portfolio-item__view {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast) var(--ease-smooth);
}

.portfolio-item__view:hover {
  background: white;
  transform: scale(1.1);
}

.portfolio-item__view svg { width: 20px; }

.portfolio-item__view:hover svg path { stroke: #000; }

.portfolio-item__info {
  padding: 1rem 0.5rem 0;
}

.portfolio-item__cat {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  display: block;
  margin-bottom: 0.3rem;
}

.portfolio-item__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-text);
}

/* ─── CHANNELS SECTION ───────────────────────────────────── */
.channels {
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}

.channels::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.channels__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.channel-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  overflow: hidden;
  transition: border-color var(--dur-fast), transform var(--dur-fast) var(--ease-smooth);
  cursor: none;
}

.channel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-accent-dim), transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-med);
}

.channel-card:hover {
  border-color: rgba(200,169,110,0.3);
  transform: translateY(-4px);
}

.channel-card:hover::before { opacity: 1; }

.channel-card__icon {
  color: var(--c-accent);
  flex-shrink: 0;
}

.channel-card__icon svg { width: 48px; height: 48px; }

.channel-card__content { min-width: 0; }

.channel-card__tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}

.channel-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.channel-card__desc {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

.channel-card__num {
  position: absolute;
  bottom: 1.5rem; right: 2rem;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ─── SERVICES SECTION ───────────────────────────────────── */
.services {
  background: var(--c-bg-2);
}

.services__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-border);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--dur-fast);
  cursor: none;
}

.service-row:hover {
  background: var(--c-surface);
  padding-left: 1rem;
  padding-right: 1rem;
  margin: 0 -1rem;
  border-radius: var(--r-md);
}

.service-row__num {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  font-weight: 500;
}

.service-row__title {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 0.25rem;
  transition: color var(--dur-fast);
}

.service-row:hover .service-row__title { color: var(--c-accent); }

.service-row__desc {
  font-size: 0.875rem;
  color: var(--c-text-muted);
}

.service-row__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 300px;
}

.service-row__tags span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  border: 1px solid var(--c-border);
  border-radius: 3px;
  padding: 0.25rem 0.6rem;
  transition: border-color var(--dur-fast), color var(--dur-fast);
}

.service-row:hover .service-row__tags span {
  border-color: rgba(200,169,110,0.3);
  color: var(--c-text-muted);
}

/* ─── QUOTE SECTION ──────────────────────────────────────── */
.quote-section {
  background: var(--c-surface);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.quote-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.quote-block__icon {
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--c-accent);
  opacity: 0.5;
  margin-bottom: 2rem;
  display: block;
}

.quote-block__text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--c-text);
  line-height: 1.6;
  font-weight: 400;
}

.quote-block__author {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  font-style: normal;
}

/* ─── CONTACT SECTION ────────────────────────────────────── */
.contact {
  background: var(--c-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 8rem);
  align-items: start;
}

.contact__left { padding-top: 1rem; }

.contact__sub {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-top: 1.5rem;
  max-width: 400px;
}

.contact__info { margin-top: 2.5rem; }

.contact__email {
  font-size: 1.2rem;
  color: var(--c-accent);
  font-weight: 500;
  display: inline-block;
  position: relative;
}

.contact__email::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--c-accent);
  transition: width var(--dur-fast) var(--ease-smooth);
}

.contact__email:hover::after { width: 100%; }

/* Contact form */
.contact-form {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  padding: 0.875rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--c-text);
  outline: none;
  transition: border-color var(--dur-fast);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  direction: rtl;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text-dim);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-accent);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-select option { background: var(--c-bg-3); }

.form-success {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #4ade80;
  padding: 1rem;
  border-radius: var(--r-sm);
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
}

.form-success svg { width: 20px; flex-shrink: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: 3rem 0;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.footer__logo {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--c-text);
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--c-text-dim);
  letter-spacing: 0.1em;
}

.footer__domain {
  margin-top: auto;
}

.footer__domain a {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  letter-spacing: 0.12em;
  transition: color var(--dur-fast);
}

.footer__domain a:hover {
  color: var(--c-accent);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--c-text-dim);
}

.footer__nav {
  display: flex;
  gap: 2rem;
}

.footer__nav a {
  font-size: 0.8rem;
  color: var(--c-text-dim);
  transition: color var(--dur-fast);
}

.footer__nav a:hover { color: var(--c-text-muted); }

/* ─── EXPERTISE GRID (About section) ─────────────────────── */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.expertise-card {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.1rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast), background var(--dur-fast);
  cursor: pointer;
  user-select: none;
}

.expertise-card:hover,
.expertise-card--open {
  border-color: rgba(200,169,110,0.35);
  background: var(--c-surface-2);
}

.expertise-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.expertise-card__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  opacity: 0.9;
}

.expertise-card__icon svg {
  width: 16px;
  height: 16px;
}

.expertise-card__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1.3;
  flex: 1;
}

.expertise-card__chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--c-text-dim);
  transition: transform var(--dur-fast) var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expertise-card__chevron svg {
  width: 16px;
  height: 16px;
}

.expertise-card--open .expertise-card__chevron {
  transform: rotate(180deg);
  color: var(--c-accent);
}

.expertise-card__tools {
  display: none;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding-top: 0.75rem;
  margin-top: 0.65rem;
  border-top: 1px solid var(--c-border);
}

.expertise-card--open .expertise-card__tools {
  display: flex;
}

.expertise-card__tools span {
  font-size: 0.68rem;
  padding: 0.2rem 0.6rem;
  background: var(--c-accent-dim);
  color: var(--c-accent);
  border: 1px solid rgba(200,169,110,0.25);
  border-radius: 100px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ─── CINEMATIC BACKGROUND REEL ─────────────────────────── */
.cinematic-reel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.cinematic-reel__bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  height: calc(100% * 9 / 7);
  transform: translateX(-50%);
  border: none;
  pointer-events: none;
}

.cinematic-reel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.5) 60%,
    rgba(0,0,0,0.75) 100%
  );
}

.cinematic-reel__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  text-align: center;
}

.cinematic-reel__line {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--c-text);
  line-height: 1.5;
  max-width: 700px;
  opacity: 1;
  transition: opacity 0.8s ease;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* ─── GENRE STRIP (Channels section redesign) ────────────── */
.channels {
  background: var(--c-bg-2);
}

.genre-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.genre-header__sub {
  font-size: 0.9rem;
  color: var(--c-text-dim);
  letter-spacing: 0.03em;
}

.genre-strip {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.genre-item {
  display: grid;
  grid-template-columns: 3rem 1px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--dur-fast);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.genre-item:last-child {
  border-bottom: none;
}

.genre-item:hover {
  background: var(--c-surface);
}

.genre-item__num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-text-dim);
  font-family: var(--font-sans);
}

.genre-item__bar {
  width: 1px;
  height: 2rem;
  background: var(--c-border);
  flex-shrink: 0;
}

.genre-item__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.genre-item__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  line-height: 1;
}

.genre-item__desc {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  line-height: 1.4;
}

.genre-item__tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  white-space: nowrap;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 100px;
}

/* ─── SOCIAL SECTION ─────────────────────────────────────── */
.social-section {
  background: var(--c-bg-3);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.social-section__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.social-section__label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  white-space: nowrap;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.social-links__divider {
  width: 1px;
  height: 2.5rem;
  background: var(--c-border);
  flex-shrink: 0;
  margin: 0 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  text-decoration: none;
  color: var(--c-text);
  transition: border-color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast) var(--ease-elastic);
  flex: 1;
  min-width: 0;
  max-width: 300px;
}

.social-link:hover {
  border-color: rgba(200,169,110,0.4);
  background: var(--c-surface);
  transform: translateY(-2px);
}

.social-link__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-surface-2);
  border-radius: var(--r-sm);
  color: var(--c-accent);
}

.social-link__icon svg {
  width: 18px;
  height: 18px;
}

.social-link__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.social-link__platform {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}

.social-link__handle {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  direction: ltr;
  unicode-bidi: bidi-override;
}

.social-link__arrow {
  flex-shrink: 0;
  color: var(--c-accent);
  opacity: 0;
  transform: translateX(4px);
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}

.social-link__arrow svg { width: 14px; }

.social-link:hover .social-link__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── FOOTER MIDDLE (social row) ─────────────────────────── */
.footer__middle {
  display: flex;
  justify-content: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--c-border);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
  border-radius: var(--r-sm);
  color: var(--c-text-dim);
  transition: color var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
}

.footer__social-link:hover {
  color: var(--c-accent);
  border-color: rgba(200,169,110,0.4);
  background: var(--c-surface);
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

/* ─── SCROLL PROGRESS ────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: var(--c-accent);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-row__tags { display: none; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(2.5rem, 12vw, 5rem); }

  .about__grid { grid-template-columns: 1fr; }
  .about__image-wrap { aspect-ratio: 3/4; max-width: 360px; margin: 0 auto; }
  .about__stats { gap: 1.5rem; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .portfolio-item:last-child:nth-child(3n+2) { grid-column: auto; }

  .channels__grid { grid-template-columns: 1fr; }
  .genre-item { grid-template-columns: 2.5rem 1px 1fr; padding: 1.25rem 1.25rem; }
  .genre-item__tag { display: none; }
  .expertise-grid { grid-template-columns: 1fr; }
  .social-section__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .social-links { flex-direction: column; gap: 0.75rem; width: 100%; }
  .social-links__divider { display: none; }
  .social-link { max-width: none; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__top,
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer__nav { justify-content: center; flex-wrap: wrap; gap: 1rem; }

  .service-row { grid-template-columns: 50px 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .about__stats { flex-wrap: wrap; gap: 1.5rem; }
}

/* ─── UTILITY ─────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Selection */
::selection {
  background: var(--c-accent);
  color: #0a0804;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-text-dim); }
