/* ================================================================
   BRAMHNAD PRODUCTIONS - Production Styles
   Peacock palette · Light/Dark · Mobile to TV
   ================================================================ */

/* ── ROOT TOKENS ── */
:root {
  --bg: #06141A;
  --surface: #0F2329;
  --surface-2: #163138;
  --border: #1F3A42;
  --text: #F0E9D9;
  --text-muted: #7A8B92;
  --gold: #E5C547;
  --gold-hover: #F2D55F;
  --teal: #1FA791;
  --teal-hover: #2BBFA8;
  --blue: #2D6BB8;
  --blue-hover: #3D7BC8;
  --iridescent: linear-gradient(135deg, #E5C547 0%, #1FA791 50%, #2D6BB8 100%);
  --iridescent-soft: linear-gradient(135deg, rgba(229,197,71,0.15) 0%, rgba(31,167,145,0.15) 50%, rgba(45,107,184,0.15) 100%);
  --grain: 0.04;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.25);
  --container: 1280px;
}

[data-theme="light"] {
  --bg: #FAF7EE;
  --surface: #FFFFFF;
  --surface-2: #F0EBD9;
  --border: #E0DBC9;
  --text: #06141A;
  --text-muted: #3D5059;
  --gold: #B89220;
  --gold-hover: #9C7B19;
  --teal: #0E7563;
  --teal-hover: #0A5E50;
  --blue: #1F4D8A;
  --blue-hover: #163E72;
  --iridescent: linear-gradient(135deg, #B89220 0%, #0E7563 50%, #1F4D8A 100%);
  --grain: 0.025;
  --shadow-sm: 0 4px 12px rgba(6,20,26,0.06);
  --shadow-md: 0 8px 24px rgba(6,20,26,0.1);
}

/* ── LIGHT THEME: bolder text ── */
[data-theme="light"] body { font-weight: 500; }
[data-theme="light"] p,
[data-theme="light"] li,
[data-theme="light"] .section-intro { font-weight: 500; }

/* ── LIGHT THEME: card shadows (mirrors dark theme gold/teal glow) ── */
/* NOTE: service-card & benefit-card sit inside overflow:hidden grids - keep them out */
/* NOTE: faq-item uses border-bottom dividers only, not full card borders - shadow looks wrong there */
[data-theme="light"] .video-card,
[data-theme="light"] .stat-card,
[data-theme="light"] .client-card,
[data-theme="light"] .stream-card,
[data-theme="light"] .proof-card,
[data-theme="light"] .form-cta-block,
[data-theme="light"] .info-block,
[data-theme="light"] .trust-item {
  box-shadow: 0 2px 14px rgba(6,20,26,0.07), 0 1px 3px rgba(6,20,26,0.04);
}
/* inside overflow:hidden grid - outline is not clipped by parent */
[data-theme="light"] .service-card:hover,
[data-theme="light"] .benefit-card:hover {
  outline: 1px solid rgba(184,146,32,0.45);
  outline-offset: -1px;
}
[data-theme="light"] .video-card:hover {
  box-shadow: 0 8px 28px rgba(6,20,26,0.1), 0 0 28px rgba(184,146,32,0.2);
}
[data-theme="light"] .stat-card:hover { box-shadow: 0 6px 22px rgba(6,20,26,0.08), 0 0 22px rgba(14,117,99,0.18); }
[data-theme="light"] .stream-card:hover { box-shadow: 0 6px 22px rgba(6,20,26,0.08), 0 0 22px rgba(31,77,138,0.18); }

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  transition: background 0.4s var(--ease), color 0.4s var(--ease);
}
img, video, iframe { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* ── ACCESSIBILITY ── */
.skip-link {
  position: absolute;
  top: -100px; left: 16px;
  background: var(--gold);
  color: #06141A;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── GRAIN ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: var(--grain);
  pointer-events: none;
  z-index: 1000;
  mix-blend-mode: overlay;
}

/* ── LAYOUT ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }
@media (min-width: 1920px) { :root { --container: 1440px; } }

main { display: block; min-height: 60vh; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 100;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 50%, transparent);
}
@media (max-width: 640px) { .site-nav { padding: 12px 20px; } }

.logo {
  text-decoration: none;
  display: flex; align-items: center; gap: 0;
  flex-shrink: 0;
}
/* keep pulse keyframes in case used elsewhere */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.85); }
}

.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 1.5px;
  background: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: #06141A !important;
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid var(--gold);
}
.nav-cta:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(229,197,71,0.3); }

.theme-toggle {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); transform: rotate(15deg); }
.theme-toggle svg { width: 16px; height: 16px; }

.menu-btn {
  display: none;
  background: none; border: none;
  color: var(--text);
  padding: 8px;
  min-width: 44px; min-height: 44px;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .menu-btn { display: block; }
  .nav-links a.active::after { display: none; }
  .nav-links a { font-size: 16px; padding: 8px 0; min-height: 44px; display: flex; align-items: center; }
  .nav-links .nav-cta { width: 100%; text-align: center; padding: 14px; justify-content: center; }
}

/* ── BUTTONS ── */
.btn {
  padding: 16px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent;
  min-height: 48px;
  justify-content: center;
}
.btn-primary { background: var(--gold); color: #06141A; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(229,197,71,0.25); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── SECTIONS ── */
section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { section { padding: 72px 0; } }
@media (min-width: 1600px) { section { padding: 140px 0; } }

.section-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: attr(data-num); color: var(--text-muted); }
.section-label::after { content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--border); }
.section-label.center { justify-content: center; }
.section-label.center::after { display: none; }
.section-label.center::before { content: ''; display: none; }

.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 64px;
}
.section-intro.center { margin-left: auto; margin-right: auto; text-align: center; }

@media (max-width: 640px) {
  .section-intro { margin-bottom: 48px; font-size: 16px; }
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 180px 0 80px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 200px;
  height: 1px;
  background: var(--iridescent);
}
.page-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 1000px;
  margin-bottom: 28px;
}
.page-header h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.page-header p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 680px;
}
.page-header .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: inline-block;
}
@media (max-width: 640px) { .page-header { padding: 140px 0 60px; } }

/* ── HERO (home) ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
  background: radial-gradient(ellipse at 60% 40%, rgba(31,167,145,0.18) 0%, rgba(45,107,184,0.12) 35%, rgba(6,20,26,0) 65%),
              radial-gradient(ellipse at 20% 80%, rgba(229,197,71,0.1) 0%, rgba(6,20,26,0) 50%),
              var(--bg);
  isolation: isolate;
  overflow: hidden;
}
[data-theme="light"] .hero {
  background: radial-gradient(ellipse at 60% 40%, rgba(31,167,145,0.1) 0%, rgba(45,107,184,0.07) 35%, rgba(250,247,238,0) 65%),
              radial-gradient(ellipse at 20% 80%, rgba(180,146,32,0.08) 0%, rgba(250,247,238,0) 50%),
              var(--bg);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.hero .container { position: relative; z-index: 1; }
.hero-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s var(--ease) 0.1s forwards;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 1100px;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(30px);
  animation: rise 1.2s var(--ease) 0.25s forwards;
}
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-mini-wave {
  display: flex; align-items: end; gap: 3px; height: 28px;
  margin-bottom: 36px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s var(--ease) 0.4s forwards;
}
.hero-mini-wave span {
  width: 3px;
  border-radius: 2px;
  animation: minibar 1.6s ease-in-out infinite;
}
.hero-mini-wave span:nth-child(1) { height: 40%; animation-delay: 0s; background: var(--gold); }
.hero-mini-wave span:nth-child(2) { height: 70%; animation-delay: 0.1s; background: var(--gold); }
.hero-mini-wave span:nth-child(3) { height: 100%; animation-delay: 0.2s; background: var(--teal); }
.hero-mini-wave span:nth-child(4) { height: 60%; animation-delay: 0.3s; background: var(--teal); }
.hero-mini-wave span:nth-child(5) { height: 85%; animation-delay: 0.4s; background: var(--blue); }
.hero-mini-wave span:nth-child(6) { height: 30%; animation-delay: 0.5s; background: var(--blue); }
@keyframes minibar {
  0%, 100% { transform: scaleY(0.6); }
  50% { transform: scaleY(1); }
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s var(--ease) 0.55s forwards;
}
.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: rise 1s var(--ease) 0.75s forwards;
}
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

.waveform-bg {
  position: absolute;
  bottom: 60px; left: 32px; right: 32px;
  height: 60px;
  display: flex; align-items: center; gap: 3px;
  opacity: 0;
  animation: rise 1.5s var(--ease) 0.9s forwards;
  pointer-events: none;
}
/* bars animate transform (composited) instead of height (layout) */
.waveform-bg .bar {
  flex: 1;
  border-radius: 2px;
  opacity: 0.4;
  height: var(--h, 30px);
  transform: scaleY(0.2);
  transform-origin: center;
  animation: wave 1.8s ease-in-out infinite;
}
@keyframes wave {
  0%, 100% { transform: scaleY(0.2); }
  50% { transform: scaleY(1); }
}

/* ── SERVICES GRID (3x2 fixed) ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg);
  padding: 40px 32px;
  position: relative;
  min-height: 220px;
  display: flex; flex-direction: column;
  transition: background 0.4s var(--ease);
}
.service-card:hover { background: var(--surface); }
.service-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.service-icon {
  position: absolute;
  top: 38px; right: 28px;
  width: 22px; height: 22px;
  color: var(--text-muted);
  opacity: 0.4;
  transition: all 0.3s var(--ease);
}
.service-card:hover .service-icon { color: var(--gold); opacity: 1; transform: rotate(45deg); }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--surface);
  border-radius: 32px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
@media (max-width: 768px) { .manifesto { padding: 48px 28px; border-radius: 20px; } }
.manifesto::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(229,197,71,0.18) 0%, rgba(31,167,145,0.12) 35%, rgba(45,107,184,0.08) 60%, transparent 75%);
  pointer-events: none;
}
.manifesto-content { position: relative; max-width: 780px; }
.manifesto h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifesto h2 em { font-style: italic; color: var(--gold); }
.manifesto p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 640px;
}
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
@media (max-width: 700px) { .manifesto-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.stat-num em { font-style: italic; color: var(--gold); }
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }
.step {
  padding: 32px 24px 32px 0;
  border-top: 1px solid var(--border);
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 1px;
  background: var(--gold);
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ── BTS STRIP ── */
.bts-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.bts-item {
  aspect-ratio: 4 / 5;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }
.about-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about-text strong { color: var(--text); font-weight: 500; }
.credits {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-top: 16px;
}
.credits-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.credit-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.credit-list li {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--text);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* ── CONTACT ── */
.contact-wrap {
  text-align: center;
  padding: 80px 0;
}
.contact-wrap h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}
.contact-wrap h2 em { font-style: italic; color: var(--gold); }
.contact-wrap p { color: var(--text-muted); font-size: 18px; max-width: 540px; margin: 0 auto 48px; }
.contact-channels { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.channel {
  padding: 16px 28px;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 14.5px;
  transition: all 0.3s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 48px;
}
.channel:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── SERVICE DETAIL BLOCKS ── */
.service-detail {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 60px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
@media (max-width: 900px) { .service-detail { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; } }
.service-detail:last-of-type { border-bottom: none; }
.service-num-lg {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  letter-spacing: 0.15em;
}
.service-detail-left h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.service-detail-left h2 em { font-style: italic; color: var(--gold); }
.service-detail-left .tagline {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 360px;
}
.service-detail-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 640px) { .service-detail-right { grid-template-columns: 1fr; gap: 20px; } }
.info-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}
@media (max-width: 640px) { .info-block { padding: 22px 18px; } }
.info-block h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.info-block ul { list-style: none; }
.info-block li {
  color: var(--text);
  font-size: 15px;
  padding: 8px 0;
  display: flex; align-items: flex-start; gap: 12px;
  line-height: 1.5;
}
.info-block li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}
.info-block.deliver li::before { background: var(--teal); }
.info-block.need li::before { background: var(--blue); }

/* ── STATS GRID (4 cards) ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}
.stat-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--text);
}
.stat-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ── PROBLEM/PROOF GRID ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .grid-2 { grid-template-columns: 1fr; gap: 40px; } }
.problem-text p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 540px;
}
.problem-text p em { color: var(--gold); font-style: italic; }
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.proof-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--iridescent-soft);
  pointer-events: none;
  opacity: 0.7;
}
.proof-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  letter-spacing: -0.02em;
}
.proof-card p {
  color: var(--text-muted);
  max-width: 280px;
  margin: 0 auto;
  position: relative;
  font-size: 14.5px;
}

/* ── BENEFITS GRID (6 cards, 3x2) ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex; flex-direction: column;
  min-height: 240px;
  transition: background 0.4s var(--ease);
}
.benefit-card:hover { background: var(--surface); }
.benefit-num {
  font-family: 'Fraunces', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.85;
}
.benefit-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.benefit-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}

/* ── REACH EXPLORER ── */
.reach-tool {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 28px;
  padding: 52px; position: relative; overflow: hidden; margin-top: 64px;
}
.reach-tool::before {
  content: ''; position: absolute; bottom: -40%; left: -10%; width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(31,167,145,0.12) 0%, rgba(45,107,184,0.08) 45%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 860px) { .reach-tool { grid-template-columns: 1fr; gap: 40px; padding: 32px 22px; } }
.reach-left { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 1; }
.reach-field { display: flex; flex-direction: column; gap: 8px; }
.reach-field-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.reach-field-row { display: flex; justify-content: space-between; align-items: center; }
.reach-field-val { font-family: 'Fraunces', serif; font-size: 16px; color: var(--gold); font-weight: 500; letter-spacing: -0.02em; }
.reach-field-input { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; color: var(--text); font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; width: 100%; transition: border-color 0.2s; -moz-appearance: textfield; }
.reach-field-input::-webkit-outer-spin-button, .reach-field-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.reach-field-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(229,197,71,0.12); }
.reach-slider { width: 100%; -webkit-appearance: none; appearance: none; height: 4px; border-radius: 2px; background: var(--border); outline: none; cursor: pointer; }
.reach-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); cursor: pointer; box-shadow: 0 2px 8px rgba(229,197,71,0.35); }
.reach-slider::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); cursor: pointer; border: none; box-shadow: 0 2px 8px rgba(229,197,71,0.35); }
.reach-field-hint { font-size: 10.5px; color: var(--text-muted); line-height: 1.5; }
.reach-chips { display: flex; flex-wrap: wrap; gap: 10px; align-content: flex-start; }
.reach-chip {
  padding: 13px 20px; border-radius: 100px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text-muted); font-family: 'DM Sans', sans-serif;
  font-size: 14.5px; font-weight: 500; transition: all 0.25s var(--ease); cursor: pointer;
}
.reach-chip:hover { color: var(--text); border-color: var(--text-muted); transform: translateY(-2px); }
.reach-chip.active { background: var(--gold); color: #06141A; border-color: var(--gold); box-shadow: 0 6px 18px rgba(229,197,71,0.22); }
.reach-readout { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.reach-orb {
  position: relative; width: 230px; height: 230px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
}
.reach-orb-fill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 14%;
  background: linear-gradient(180deg, rgba(229,197,71,0.55) 0%, rgba(31,167,145,0.5) 50%, rgba(45,107,184,0.55) 100%);
  transition: height 0.7s var(--ease);
}
.reach-orb-fill::after {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 16px;
  background: rgba(240,233,217,0.18); filter: blur(3px);
}
.reach-orb-label { position: relative; z-index: 2; text-align: center; }
.reach-orb-num { display: block; font-family: 'Fraunces', serif; font-size: 46px; font-weight: 500; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.reach-orb-cap { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; display: block; }
.reach-meta { width: 100%; max-width: 340px; display: flex; flex-direction: column; gap: 14px; }
.reach-meta-row { display: flex; justify-content: space-between; align-items: baseline; }
.reach-meta-k { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.reach-meta-v { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 500; color: var(--text); letter-spacing: -0.01em; }
.reach-meta-v.up { color: var(--teal); }
.reach-world-track { height: 6px; background: var(--surface-2); border-radius: 3px; overflow: hidden; margin-top: -4px; }
.reach-world-fill { display: block; height: 100%; width: 14%; background: var(--iridescent); border-radius: 3px; transition: width 0.7s var(--ease); }
.reach-note { font-size: 11.5px; color: var(--text-muted); line-height: 1.55; margin-top: 4px; }
.reach-cta { margin-top: 8px; align-self: flex-start; }
@media (max-width: 860px) { .reach-cta { align-self: stretch; justify-content: center; } .reach-meta { max-width: none; } }

/* ── VIDEO CARDS (showcase) ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.video-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-md); }
.video-frame {
  aspect-ratio: 16 / 9;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  cursor: pointer;
  border: none;
  width: 100%;
  color: var(--text);
}
.play-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #06141A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 4px;
  transition: transform 0.3s var(--ease);
}
.video-card:hover .play-icon, .video-placeholder:focus-visible .play-icon { transform: scale(1.1); }
.video-placeholder span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.video-info { padding: 20px 24px 24px; }
.work-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 8px;
}
.video-info h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.video-info .context { color: var(--text-muted); font-size: 13.5px; }
.lang-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 12px;
  background: rgba(31,167,145,0.15);
  color: var(--teal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
}

/* ── TRUST GRID (2x2) ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 700px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-item {
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}
.trust-item:hover { border-color: var(--teal); }
.trust-item h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.trust-item p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--text);
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'DM Sans', sans-serif;
  font-size: 24px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
  font-weight: 300;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 720px;
}

/* ── LOGO MARQUEE (Trusted By) ── */
.trusted-by {
  padding: 72px 0 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
}
.trusted-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}
.logo-track {
  display: flex;
  width: max-content;
  gap: 72px;
  align-items: center;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-slot {
  flex-shrink: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}
.logo-slot img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}
.logo-slot:hover img {
  opacity: 1;
  filter: grayscale(0);
}
.logo-slot.text-logo {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  opacity: 0.5;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
}
.logo-slot.text-logo:hover { opacity: 1; color: var(--gold); }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .trusted-by { padding: 56px 0 48px; }
  .logo-track { gap: 56px; animation-duration: 30s; }
  .logo-slot { height: 36px; }
  .logo-slot.text-logo { font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}

/* ── IMAGE MARQUEE (Work showcase, two-row counter-scroll) ── */
.image-revolve { padding: 120px 0; }
@media (max-width: 768px) { .image-revolve { padding: 72px 0; } }
.image-revolve .container { margin-bottom: 56px; }
.image-revolve .section-intro a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.image-revolve .section-intro a:hover { opacity: 0.8; }

.image-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 4%, black 96%, transparent 100%);
}
.image-track {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
}
.image-track.ltr { animation: scroll-ltr 55s linear infinite; }
.image-track.rtl { animation: scroll-rtl 55s linear infinite; }
.image-marquee:hover .image-track { animation-play-state: paused; }
.image-tile {
  flex-shrink: 0;
  width: 340px;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}
.image-tile:hover { transform: scale(1.03); border-color: var(--gold); }
.image-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.image-tile:hover img { transform: scale(1.06); }
.image-tile .tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 18px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(6,20,26,0.92) 80%);
  color: #F0E9D9;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.image-tile:hover .tile-label { opacity: 1; }
/* placeholder tiles for missing images */
.image-tile.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  color: var(--text-muted);
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 20px;
}
@keyframes scroll-ltr {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scroll-rtl {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (max-width: 640px) {
  .image-tile { width: 240px; border-radius: 12px; }
  .image-marquee { gap: 12px; }
  .image-track { gap: 12px; animation-duration: 42s; }
}
@media (prefers-reduced-motion: reduce) {
  .image-track { animation: none; }
}

/* ── BTS VERTICAL VIDEO GRID ── */
.bts-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 768px) { .bts-video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .bts-video-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }
.bts-video-grid .video-card { border-radius: 14px; }
.bts-video-grid .video-frame { aspect-ratio: 9 / 16; }

/* ── WORK PAGE: category sections ── */
.work-category {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.work-category:last-of-type { border-bottom: none; }
.work-category-header {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 60px;
  margin-bottom: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .work-category-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
}
.work-category-header h2 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.work-category-header h2 em { font-style: italic; color: var(--gold); }
.work-category-header p {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 560px;
}
.work-category-header p + p { margin-top: 14px; }

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 900px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .client-grid { grid-template-columns: 1fr; } }
.client-card {
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.3s var(--ease);
}
.client-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.client-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.client-card .work-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}
.client-card p { color: var(--text-muted); font-size: 13.5px; line-height: 1.55; }

/* ── QUOTE FORM EMBED ── */
.quote-form-wrap {
  max-width: 900px;
  margin: 64px auto 0;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.quote-form-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 32px;
  color: var(--text);
}
.form-cta-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
}
.form-cta-desc {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 28px;
}
.form-open-btn {
  font-size: 17px;
  padding: 16px 36px;
}
@media (max-width: 640px) {
  .form-cta-block { padding: 36px 24px; }
}
@media (max-width: 640px) {
  .quote-form-wrap { margin-top: 48px; padding-top: 40px; }
}

/* ── STREAMING CARDS (web series on OTT platforms) ── */.stream-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .stream-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .stream-grid { grid-template-columns: 1fr; } }
.stream-card {
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 180px;
}
.stream-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--iridescent-soft);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.stream-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stream-card:hover::before { opacity: 0.6; }
.stream-platform {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}
.stream-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  position: relative;
}
.stream-card p { color: var(--text-muted); font-size: 14px; line-height: 1.55; flex: 1; position: relative; }
.stream-watch {
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

/* ── FOOTER ── */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-inner .tm { color: var(--gold); }
.footer-disclaimer {
  max-width: var(--container);
  margin: 24px auto 0;
  padding: 20px 32px 0;
  border-top: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--text-muted);
  text-transform: none;
  letter-spacing: 0;
}
@media (max-width: 640px) { .footer-disclaimer { padding: 16px 20px 0; } }

/* ── 404 ── */
.error-wrap {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.error-content { max-width: 600px; }
.error-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(80px, 18vw, 200px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: var(--iridescent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 24px;
}
.error-wrap h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.error-wrap p { color: var(--text-muted); margin-bottom: 32px; font-size: 16px; }

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ── PRINT ── */
@media print {
  body::before { display: none; }
  .site-nav, .menu-btn, .nav-cta, .theme-toggle, .hero-cta { display: none !important; }
  body { background: white; color: black; }
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: #06141A;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), visibility 0.7s;
}
#preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-mark {
  display: flex; align-items: flex-end; gap: 5px; height: 52px; margin-bottom: 20px;
}
.preloader-mark span {
  width: 5px; border-radius: 3px; background: #E5C547;
  animation: pmark 1.1s ease-in-out infinite;
  transform-origin: bottom;
}
.preloader-mark span:nth-child(1) { height: 30%; animation-delay: 0s; }
.preloader-mark span:nth-child(2) { height: 55%; animation-delay: 0.1s; background: #E5C547; }
.preloader-mark span:nth-child(3) { height: 100%; animation-delay: 0.2s; background: #1FA791; }
.preloader-mark span:nth-child(4) { height: 70%; animation-delay: 0.3s; background: #1FA791; }
.preloader-mark span:nth-child(5) { height: 85%; animation-delay: 0.4s; background: #2D6BB8; }
.preloader-mark span:nth-child(6) { height: 40%; animation-delay: 0.5s; background: #2D6BB8; }
@keyframes pmark {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.preloader-name {
  font-family: 'Fraunces', serif;
  font-size: 30px; font-weight: 400; letter-spacing: -0.02em;
  color: #F0E9D9;
  margin-bottom: 28px;
}
.preloader-bar-wrap {
  width: 180px; height: 2px;
  background: rgba(240,233,217,0.12);
  border-radius: 2px; overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #E5C547, #1FA791, #2D6BB8);
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* ── PAGE TRANSITION ── */
.page-curtain {
  position: fixed; inset: 0; z-index: 9998;
  background: linear-gradient(135deg, #E5C547 0%, #1FA791 50%, #2D6BB8 100%);
  transform: translateX(-100%);
  pointer-events: none;
  will-change: transform;
}
.page-curtain.slide-in  { animation: curtain-in  0.45s cubic-bezier(0.76,0,0.24,1) forwards; }
.page-curtain.slide-out { animation: curtain-out 0.45s cubic-bezier(0.76,0,0.24,1) 0.05s forwards; }
@keyframes curtain-in  { from { transform: translateX(-100%); } to { transform: translateX(0%); } }
@keyframes curtain-out { from { transform: translateX(0%); } to { transform: translateX(100%); } }

/* ── SPLIT TEXT ANIMATION ── */
.split-word { overflow: hidden; display: inline-block; }
.split-char { display: inline-block; }

/* ── MARQUEE HOVER PAUSE ── */
.image-marquee:hover .image-track { animation-play-state: paused; }

/* ── SCROLL PROGRESS BAR ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9997;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, #E5C547, #1FA791, #2D6BB8);
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── LOGO IMAGE ── */
.logo-img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.logo:hover .logo-img { opacity: 0.85; }
[data-theme="light"] .logo-img { mix-blend-mode: multiply; }

/* ── DUAL CAROUSEL (Studio Sessions) ── */
.studio-sessions { padding: 0 0 0; }
.studio-sessions .container { padding-top: 120px; padding-bottom: 56px; }
.studio-sessions .section-intro a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.studio-sessions .section-intro a:hover { opacity: 0.75; }
@media (max-width: 768px) { .studio-sessions .container { padding-top: 72px; padding-bottom: 40px; } }

.dual-carousel-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 540px;
}
@media (max-width: 768px) {
  .dual-carousel-wrap { grid-template-columns: 1fr; }
}

.dual-car {
  position: relative;
  overflow: hidden;
  background: #08181F;
  aspect-ratio: 3 / 2.6;
}
@media (max-width: 768px) { .dual-car { aspect-ratio: 4 / 3; } }

.dual-slides {
  position: relative;
  width: 100%;
  height: 100%;
}
.dual-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.95s cubic-bezier(0.22,1,0.36,1);
}
.dual-slide.active { opacity: 1; z-index: 1; }
.dual-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}
.dual-slide.active img { transform: scale(1.04); }

/* gradient overlay bottom */
.dual-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,20,26,0) 35%, rgba(6,20,26,0.72) 75%, rgba(6,20,26,0.96) 100%);
  pointer-events: none;
  z-index: 1;
}

/* subtle left/right divider line */
.dual-car:first-child::after { content: none; }
.dual-car:first-child {
  border-right: 1px solid rgba(229,197,71,0.18);
}

.dual-caption {
  position: absolute;
  bottom: 64px;
  left: 28px; right: 28px;
  z-index: 2;
  color: #F0E9D9;
}
.dual-caption span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 8px;
}
.dual-caption p {
  font-family: 'Fraunces', serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(6,20,26,0.6);
}

.dual-dots {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 0;
  z-index: 3;
}
/* 24x24 buttons for touch-target compliance; the visible dot is ::before */
.ddot {
  position: relative;
  width: 24px; height: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.ddot::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(240,233,217,0.3);
  transition: all 0.35s cubic-bezier(0.22,1,0.36,1);
}
.ddot.active::before {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.ddot:hover:not(.active)::before { background: rgba(240,233,217,0.6); }

.dual-prev-btn, .dual-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(229,197,71,0.35);
  background: rgba(6,20,26,0.65);
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
}
.dual-car:hover .dual-prev-btn,
.dual-car:hover .dual-next-btn {
  opacity: 1;
  pointer-events: auto;
}
.dual-prev-btn { left: 14px; }
.dual-next-btn { right: 14px; }
.dual-prev-btn:hover, .dual-next-btn:hover {
  background: rgba(229,197,71,0.18);
  border-color: var(--gold);
}
@media (max-width: 768px) {
  .dual-prev-btn, .dual-next-btn { opacity: 1; pointer-events: auto; width: 34px; height: 34px; }
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 500;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; visibility: hidden;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.back-top svg { width: 18px; height: 18px; }
@media (max-width: 640px) { .back-top { bottom: 20px; right: 20px; } }

/* ── CUSTOM CURSOR ── */
body.custom-cursor,
body.custom-cursor * { cursor: none !important; }
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 9px; height: 9px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  transition: opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 38px; height: 38px;
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
  opacity: 0.65;
  transition: width 0.28s var(--ease), height 0.28s var(--ease),
              border-color 0.28s, opacity 0.2s, margin 0.28s var(--ease);
}
.cursor-ring.is-hover {
  width: 58px; height: 58px;
  margin-left: -10px; margin-top: -10px;
  border-color: var(--gold);
  opacity: 0.9;
}
.cursor-ring.is-click {
  width: 24px; height: 24px;
  margin-left: 7px; margin-top: 7px;
  opacity: 1;
  border-color: var(--gold);
}

/* ================================================================
   LEGAL DOCUMENTS (Privacy Policy · Terms & Conditions)
   ================================================================ */
.legal-doc { padding: 64px 0 100px; }
.legal-container { max-width: 820px; }
.legal-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.legal-doc h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 44px 0 16px;
  scroll-margin-top: 100px;
}
.legal-doc h2:first-of-type { margin-top: 8px; }
.legal-doc h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gold);
  margin: 28px 0 12px;
}
.legal-doc p,
.legal-doc li {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-muted);
}
.legal-doc p { margin-bottom: 16px; }
.legal-doc ul { margin: 0 0 20px; padding-left: 22px; }
.legal-doc li { margin-bottom: 8px; }
.legal-doc strong { color: var(--text); font-weight: 600; }
.legal-doc a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s var(--ease);
}
.legal-doc a:hover { color: var(--gold); }

/* Highlighted business-details / notice callout */
.legal-callout {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 0 40px;
}
.legal-callout p { margin-bottom: 10px; }
.legal-callout ul { margin-bottom: 0; }

/* Data tables (what we collect / third parties) */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 14.5px;
}
.legal-table th,
.legal-table td {
  text-align: left;
  padding: 12px 16px;
  border: 1px solid var(--border);
  vertical-align: top;
}
.legal-table th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--surface);
}
.legal-table td { color: var(--text-muted); }
.legal-footer-links {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}
@media (max-width: 640px) {
  .legal-doc { padding: 48px 0 72px; }
  .legal-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* ================================================================
   FOOTER LEGAL NAV
   ================================================================ */
.footer-legal {
  max-width: var(--container);
  margin: 24px auto 0;
  padding: 20px 32px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
}
.footer-legal a,
.footer-legal-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.footer-legal a:hover,
.footer-legal-btn:hover { color: var(--gold); }
/* button styled to sit inline with the anchor links */
.footer-legal-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 640px) { .footer-legal { padding: 16px 20px 0; } }

/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
.cc-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 9000;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  animation: cc-slide-up 0.4s var(--ease) both;
}
.cc-banner[hidden] { display: none; }
.cc-banner::before {
  content: '';
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: var(--iridescent);
  border-radius: 18px 18px 0 0;
}
.cc-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cc-banner-copy { flex: 1 1 420px; }
.cc-banner-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text);
}
.cc-banner-text {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.cc-banner-text a { color: var(--teal); text-underline-offset: 2px; }
.cc-banner-text a:hover { color: var(--gold); }
.cc-banner-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
@keyframes cc-slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Shared consent buttons */
.cc-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer;
  min-height: 44px;
  transition: all 0.25s var(--ease);
  background: transparent;
  color: var(--text);
}
.cc-btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.cc-btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #06141A;
  font-weight: 600;
}
.cc-btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(229,197,71,0.28);
}

/* ================================================================
   COOKIE PREFERENCES MODAL
   ================================================================ */
.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cc-modal[hidden] { display: none; }
.cc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,20,26,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: cc-fade 0.3s var(--ease) both;
}
.cc-modal-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  animation: cc-pop 0.32s var(--ease) both;
}
.cc-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 8px;
}
.cc-modal-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.cc-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  min-width: 44px; min-height: 44px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.cc-close:hover { color: var(--gold); background: var(--surface-2); }
.cc-modal-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.cc-modal-desc a { color: var(--teal); text-underline-offset: 2px; }
.cc-modal-desc a:hover { color: var(--gold); }

/* Category rows */
.cc-cat {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 14px;
  background: var(--bg);
}
.cc-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.cc-cat-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--text);
}
.cc-cat-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}
.cc-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 100px;
  padding: 4px 10px;
  white-space: nowrap;
}

/* Accessible toggle switch (real checkbox underneath) */
.cc-switch {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
}
.cc-switch input {
  position: absolute;
  opacity: 0;
  width: 100%; height: 100%;
  margin: 0;
  cursor: pointer;
}
.cc-switch-track {
  width: 46px; height: 26px;
  border-radius: 100px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  position: relative;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cc-switch-track::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.cc-switch input:checked + .cc-switch-track {
  background: var(--gold);
  border-color: var(--gold);
}
.cc-switch input:checked + .cc-switch-track::after {
  transform: translateX(20px);
  background: #06141A;
}
.cc-switch input:focus-visible + .cc-switch-track {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.cc-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

@keyframes cc-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes cc-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile: stack banner actions full-width */
@media (max-width: 720px) {
  .cc-banner-inner { padding: 20px; gap: 18px; }
  .cc-banner-actions { width: 100%; }
  .cc-banner-actions .cc-btn { flex: 1 1 auto; }
  .cc-modal-panel { padding: 24px 20px; }
  .cc-modal-actions .cc-btn { flex: 1 1 auto; }
}

/* Respect reduced-motion for all consent UI */
@media (prefers-reduced-motion: reduce) {
  .cc-banner, .cc-modal-overlay, .cc-modal-panel { animation: none; }
  .cc-switch-track, .cc-switch-track::after, .cc-btn { transition: none; }
}
