/* ═══════════════════════════════════════════════
   CASTHEVENS — Landing Page Studio
   Vanilla CSS · gold-on-black luxury theme
═══════════════════════════════════════════════ */

:root {
  --gold:     #D4AF37;
  --gold-hi:  #F0D060;
  --gold-lo:  #8B6914;
  --ink:      #000000;
  --smoke:    #0A0A0A;
  --carbon:   #111111;
  --mist:     #FAFAFA;
  --fog:      #888888;
  --ghost:    #444444;
  --line:     rgba(212,175,55,0.07);
  --line-mid: rgba(212,175,55,0.15);
  --serif: "Playfair Display", Georgia, serif;
  --sans:  "Inter", system-ui, sans-serif;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background: var(--ink);
  color: var(--mist);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noise 0.35s steps(4) infinite;
}

::selection { background: rgba(212,175,55,.25); color: var(--gold-hi); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-lo)); }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 640px)  { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 64px; } }

/* ═══════════ KEYFRAMES ═══════════ */
@keyframes noise {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-2%,2%); }
  20% { transform: translate(2%,-1%); } 30% { transform: translate(-1%,3%); }
  40% { transform: translate(3%,-2%); } 50% { transform: translate(-2%,1%); }
  60% { transform: translate(1%,-3%); } 70% { transform: translate(-3%,2%); }
  80% { transform: translate(2%,1%); }  90% { transform: translate(-1%,-2%); }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes glow-pulse-1 { 0%,100% { opacity:.05; transform:scale(1); } 50% { opacity:.12; transform:scale(1.2); } }
@keyframes glow-pulse-2 { 0%,100% { opacity:.04; transform:scale(1.1); } 50% { opacity:.09; transform:scale(1); } }
@keyframes shimmer-border { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes cue-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes ping { 0% { transform: scale(1); opacity:.75; } 100% { transform: scale(2.4); opacity:0; } }
@keyframes loader-fill { from { width: 0; } to { width: 100%; } }
@keyframes fade-slide-in { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* ═══════════ SHARED ═══════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before, .eyebrow::after { content: '◆'; font-size: 6px; opacity: .7; }
.eyebrow.sm { font-size: 9px; }

.text-gold {
  background: linear-gradient(110deg, #8B6914 0%, #D4AF37 40%, #F0D060 60%, #D4AF37 80%, #8B6914 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.italic { font-style: italic; }

.rule-gold   { height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent); }
.rule-gold-l { height: 1px; width: 48px; background: linear-gradient(90deg, var(--gold), transparent); }

.surface-glass {
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(212,175,55,.1);
}

h1, h2, h3 { font-family: var(--serif); font-weight: 300; }

h2 {
  font-size: clamp(38px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 96px 0;
}
@media (min-width: 768px) {
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-side {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  max-width: 320px;
}
@media (min-width: 768px) { .section-side { text-align: right; } }
.section-body { color: #555; font-size: 14px; line-height: 1.9; max-width: 380px; margin: 24px 0 40px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .35s var(--ease);
}
.btn-sm { padding: 10px 22px; font-size: 10px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(110deg, #8B6914 0%, #D4AF37 45%, #F0D060 70%, #D4AF37 100%);
  background-size: 220% auto;
  color: #000;
}
.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 0 60px rgba(212,175,55,.45), 0 10px 40px rgba(0,0,0,.5);
  transform: translateY(-3px);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-ghost {
  border: 1px solid rgba(212,175,55,.3);
  color: var(--gold);
  font-weight: 600;
}
.btn-ghost:hover {
  border-color: rgba(212,175,55,.75);
  background: rgba(212,175,55,.05);
  box-shadow: 0 0 35px rgba(212,175,55,.12);
  transform: translateY(-3px);
}

/* Scroll-reveal states (driven by JS IntersectionObserver) */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }

.reveal-mask { display: block; overflow: hidden; }
.reveal-mask > * { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease); }
.reveal-mask.in-view > *, body.loaded .hero .reveal-mask > * { transform: translateY(0); }

.clip-reveal { clip-path: inset(100% 0 0 0); transition: clip-path 1.1s var(--ease) .15s; }
.clip-reveal.in-view { clip-path: inset(0 0 0 0); }

/* ═══════════ LOADER ═══════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lo));
  color: #000;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  display: flex; align-items: center; justify-content: center;
}
.loader-name {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.loader-bar {
  width: 160px; height: 1px;
  margin: 0 auto;
  background: rgba(212,175,55,.15);
  overflow: hidden;
}
.loader-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--gold-lo), var(--gold), var(--gold-hi));
  animation: loader-fill 1.2s var(--ease) forwards;
}

/* ═══════════ SCROLL PROGRESS ═══════════ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--gold-lo), var(--gold), var(--gold-hi));
}

/* ═══════════ NAVBAR ═══════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 0;
  transition: padding .5s var(--ease), background .5s, border-color .5s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: rgba(212,175,55,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  position: relative;
  width: 36px; height: 36px;
  flex-shrink: 0;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  transition: border-color .5s;
}
.logo:hover .logo-mark { border-color: rgba(212,175,55,.8); }
.logo-mark span {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-lo));
  color: #000;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 639px) { .logo-text { display: none; } }

.nav-links { display: none; }
@media (min-width: 1024px) {
  .nav-links { display: flex; align-items: center; gap: 32px; }
}
.nav-links a {
  position: relative;
  font-size: 10px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 4px 0;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-ctas { display: none; }
@media (min-width: 1024px) { .nav-ctas { display: flex; gap: 12px; } }

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 2px;
}
.nav-burger span { display: block; width: 16px; height: 1px; background: var(--gold); }
@media (min-width: 1024px) { .nav-burger { display: none; } }

/* Mobile drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 160;
  width: min(320px, 85vw);
  background: #060606;
  border-left: 1px solid rgba(212,175,55,.08);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .42s var(--ease);
}
body.drawer-open .drawer { transform: translateX(0); }
body.drawer-open .drawer-overlay { opacity: 1; visibility: visible; }
body.drawer-open { overflow: hidden; }

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px;
  border-bottom: 1px solid var(--line);
}
.drawer-close {
  width: 32px; height: 32px;
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 2px;
  color: #666;
  font-size: 12px;
}
.drawer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
}
.drawer-links a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212,175,55,.05);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #666;
  transition: color .3s;
}
.drawer-links a:hover { color: #fff; }
.drawer-links em {
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(212,175,55,.4);
}
.drawer-links b { margin-left: auto; font-weight: 400; color: #333; }
.drawer-links a:hover b { color: var(--gold); }
.drawer-foot {
  padding: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ═══════════ HERO ═══════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #000;
}
.hero-bg { position: absolute; inset: -10% 0; z-index: 0; will-change: transform; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(212,175,55,0.16) 0%, transparent 65%),
    linear-gradient(90deg, rgba(0,0,0,.7), transparent 40%, rgba(0,0,0,.5)),
    linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.3) 40%, #000);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  top: 15%; left: 10%;
  width: min(40vw, 600px); height: min(40vw, 600px);
  filter: blur(140px);
  animation: glow-pulse-1 9s ease-in-out infinite;
}
.hero-glow-2 {
  bottom: 20%; right: 8%;
  width: min(35vw, 500px); height: min(35vw, 500px);
  filter: blur(160px);
  animation: glow-pulse-2 13s ease-in-out infinite 4s;
}

.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 144px;
  padding-bottom: 112px;
}
.hero-eyebrow { margin-bottom: 40px; }
.hero-title {
  font-size: clamp(72px, 13vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
}
.hero .reveal-mask > * { transition-delay: .35s; }
.hero .hero-title .reveal-mask:nth-child(2) > * { transition-delay: .5s; }

.hero-bottom {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .hero-bottom { flex-direction: row; align-items: flex-end; gap: 80px; }
}
.hero-desc { max-width: 384px; }
.hero-desc .rule-gold-l { margin-bottom: 24px; }
.hero-desc p { color: var(--fog); font-size: 15px; line-height: 1.85; font-weight: 300; }

.hero-cta { display: flex; flex-direction: column; gap: 32px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 12px 32px; }
.hero-stats strong {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
}
.hero-stats small {
  font-size: 10px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero .fade-up { transition-delay: .8s; }
body.loaded .hero .fade-up { opacity: 1; transform: translateY(0); }

.hero-scroll-cue {
  position: absolute;
  right: 32px; bottom: 96px;
  z-index: 10;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1024px) { .hero-scroll-cue { display: flex; right: 48px; } }
.cue-arrow { color: var(--gold); font-size: 14px; animation: cue-bob 1.8s ease-in-out infinite; }
.cue-line { width: 1px; height: 56px; background: linear-gradient(180deg, rgba(212,175,55,.6), transparent); }
.cue-label {
  font-size: 9px;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  writing-mode: vertical-lr;
}

.hero-marquee {
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.8);
  backdrop-filter: blur(4px);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  white-space: nowrap;
}
.marquee-item span {
  font-size: 10px;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.marquee-item i { font-style: normal; color: rgba(212,175,55,.2); font-size: 7px; }

/* ═══════════ FEATURES ═══════════ */
.features { background: #000; }
.features .section-head { border-bottom: 1px solid var(--line); }

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 70vh;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) {
  .feature-row { grid-template-columns: 1fr 1fr; }
  .feature-row.rev .feature-text { order: 2; }
  .feature-row.rev .feature-img { order: 1; }
}
.feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 64px 32px;
}
@media (min-width: 1024px) { .feature-text { padding: 96px 64px; } }

.feature-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-bottom: 32px;
}
.feature-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: rgba(212,175,55,.12);
}
.meta-line { flex: 1; height: 1px; background: rgba(212,175,55,.1); }

.feature-text h3 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 8px;
}
.feature-sub {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.2;
  margin-bottom: 32px;
}
.feature-text .rule-gold-l { width: 40px; margin-bottom: 24px; }
.feature-body { color: #666; font-size: 15px; line-height: 1.9; max-width: 384px; margin-bottom: 40px; }

.feature-img {
  position: relative;
  overflow: hidden;
  min-height: 50vw;
}
@media (min-width: 1024px) { .feature-img { min-height: 0; } }
.feature-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.75;
}
.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.6), transparent), rgba(212,175,55,.04);
}
.feature-watermark {
  position: absolute;
  bottom: 24px; right: 32px;
  z-index: 1;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: rgba(212,175,55,.06);
  pointer-events: none;
  user-select: none;
}

/* ═══════════ PLANS ═══════════ */
.plans {
  position: relative;
  background: #050505;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 112px 0;
}
.plans-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 550px;
  border-radius: 50%;
  background: rgba(212,175,55,.04);
  filter: blur(180px);
  pointer-events: none;
}
.plans .section-head { padding: 0 0 80px; }

.plans-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px) { .plans-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }

.plan {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(212,175,55,.08);
  border-radius: 4px;
  background: var(--smoke);
  transition: transform .45s var(--ease), border-color .5s, box-shadow .5s;
}
.plan:hover {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.28);
  box-shadow: 0 30px 80px rgba(0,0,0,.7), 0 0 50px rgba(212,175,55,.08);
}
.plan.featured {
  background:
    linear-gradient(#050505, #050505) padding-box,
    linear-gradient(135deg, #8B6914, #F0D060, #D4AF37, #8B6914) border-box;
  background-size: 200% auto;
  border: 1.5px solid transparent;
  animation: shimmer-border 3.5s ease infinite;
}
@media (min-width: 768px) { .plan.featured { transform: translateY(-14px); } .plan.featured:hover { transform: translateY(-20px); } }

.plan-badge {
  background: linear-gradient(90deg, var(--gold-lo), var(--gold), var(--gold-hi));
  color: #000;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  text-align: center;
  padding: 10px;
  border-radius: 3px 3px 0 0;
}
.plan-body { padding: 32px; display: flex; flex-direction: column; flex: 1; }

.plan-tier { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.tier-numeral {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 42px;
  line-height: 1;
  color: rgba(212,175,55,.15);
}
.plan.featured .tier-numeral { color: rgba(212,175,55,.35); }
.plan-tier .meta-line { background: rgba(212,175,55,.08); }
.plan-tier small { font-size: 9px; color: #444; text-transform: uppercase; letter-spacing: 0.22em; }

.plan h3 { font-size: 24px; font-weight: 500; color: #fff; margin-bottom: 4px; }

.plan-price { display: flex; align-items: flex-end; gap: 6px; margin: 20px 0 4px; }
.plan-price sup { color: var(--gold); font-size: 14px; align-self: flex-start; margin-top: 4px; }
.plan-price span {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 68px);
  line-height: 1;
  color: #fff;
}
.plan-price.gold span {
  background: linear-gradient(110deg, #8B6914, #D4AF37 40%, #F0D060 60%, #D4AF37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.plan-price small { color: #444; font-size: 14px; font-weight: 300; margin-bottom: 6px; }
.plan-hint { color: #444; font-size: 11px; letter-spacing: 0.02em; margin-bottom: 28px; }
.plan .rule-gold { margin-bottom: 28px; }

.plan-features { list-style: none; flex: 1; margin-bottom: 32px; }
.plan-features li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 12px;
  color: #BCBCBC;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  font-size: 8px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,175,55,.35);
  background: rgba(212,175,55,.1);
  color: var(--gold);
}
.plan-features li.no { color: #444; text-decoration: line-through; opacity: .35; }
.plan-features li.no::before {
  content: '–';
  border-color: rgba(255,255,255,.08);
  background: none;
  color: #333;
}

.plans-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
}
.plans-trust span { color: #555; font-size: 12px; }

/* ═══════════ DEVICES ═══════════ */
.devices {
  background: #000;
  border-bottom: 1px solid var(--line);
}
.devices-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .devices-grid { grid-template-columns: 1fr 1fr; } }

.devices-img { position: relative; overflow: hidden; min-height: 50vh; }
.devices-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.devices-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #000), rgba(212,175,55,.03);
}
.devices-caption { position: absolute; bottom: 40px; left: 40px; z-index: 1; }
.caption-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
  color: #fff;
  margin-top: 8px;
}

.devices-content {
  padding: 80px 32px;
  border-left: 1px solid var(--line);
}
@media (min-width: 1024px) { .devices-content { padding: 112px 64px; } }
.devices-content h2 { font-size: clamp(36px, 5vw, 60px); margin-top: 20px; }

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(212,175,55,.05);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .device-grid { grid-template-columns: repeat(3, 1fr); } }
.device { background: #000; padding: 16px; transition: background .3s; }
.device:hover { background: rgba(212,175,55,.03); }
.device strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #BCBCBC;
  margin-bottom: 2px;
  transition: color .3s;
}
.device:hover strong { color: var(--gold); }
.device small { font-size: 10px; color: #444; }

.players .eyebrow { margin-bottom: 16px; }
.player-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.player-tags span {
  font-size: 11px;
  color: #555;
  border: 1px solid rgba(212,175,55,.1);
  border-radius: 2px;
  padding: 6px 12px;
  transition: all .3s;
}
.player-tags span:hover { border-color: rgba(212,175,55,.35); color: var(--gold); }

/* ═══════════ WHY US ═══════════ */
.why { background: #000; }
.why-grid { display: grid; grid-template-columns: 1fr; min-height: 100vh; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-img { position: relative; overflow: hidden; min-height: 60vh; order: 2; }
@media (min-width: 1024px) {
  .why-img { order: 1; position: sticky; top: 0; height: 100vh; }
}
.why-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.why-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.2) 50%, rgba(0,0,0,.8)), rgba(212,175,55,.03);
}
.why-stats {
  position: absolute;
  left: 32px; right: 32px; bottom: 48px;
  z-index: 1;
  border-radius: 4px;
  padding: 28px;
}
@media (min-width: 1024px) { .why-stats { left: 48px; right: 48px; } }
.why-stats .eyebrow { margin-bottom: 20px; }
.why-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-stats-grid strong {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 2px;
}
.why-stats-grid small {
  font-size: 10px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.why-content { order: 1; border-left: 1px solid var(--line); }
@media (min-width: 1024px) { .why-content { order: 2; } }
.why-head {
  padding: 80px 32px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) { .why-head { padding: 80px 64px; } }
.why-head h2 { font-size: clamp(36px, 5vw, 64px); margin-top: 20px; }

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 32px;
  border-bottom: 1px solid var(--line);
  transition: background .4s;
}
@media (min-width: 1024px) { .pillar { padding: 40px 64px; } }
.pillar:hover { background: rgba(212,175,55,.02); }
.pillar-stat { flex-shrink: 0; width: 80px; text-align: right; }
.pillar-stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  color: var(--gold);
}
.pillar-stat small {
  font-size: 9px;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.pillar-text { flex: 1; padding-top: 4px; }
.pillar-text::before {
  content: '';
  display: block;
  height: 1px;
  background: rgba(212,175,55,.12);
  margin-bottom: 24px;
  transition: background .4s;
}
.pillar:hover .pillar-text::before { background: rgba(212,175,55,.3); }
.pillar-text h3 { font-size: 18px; font-weight: 500; color: #fff; margin-bottom: 12px; }
.pillar-text p { color: #555; font-size: 13px; line-height: 1.85; }

/* ═══════════ CTA BANNER ═══════════ */
.cta-banner {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-bg { position: absolute; inset: -10% 0; will-change: transform; }
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 0% 50%, rgba(212,175,55,.12) 0%, transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.7) 50%, rgba(0,0,0,.4));
}
.cta-content { position: relative; z-index: 10; padding-top: 96px; padding-bottom: 96px; max-width: 1400px; }
.cta-content .eyebrow { margin-bottom: 32px; }
.cta-content h2 {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.cta-content .rule-gold-l { width: 56px; margin-bottom: 28px; }
.cta-content p { color: #777; font-size: 15px; line-height: 1.85; max-width: 448px; margin-bottom: 40px; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; }
.cta-trust { display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 32px; }
.cta-trust span { font-size: 11px; color: #444; }

.cta-big-stat {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
  text-align: right;
}
@media (min-width: 1280px) { .cta-big-stat { display: block; } }
.cta-big-stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(80px, 10vw, 140px);
  line-height: 1;
}
.cta-big-stat small {
  display: block;
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-top: 8px;
}
.cta-big-stat .stars { color: var(--gold); font-size: 14px; margin-top: 16px; letter-spacing: 3px; }
.cta-big-stat em { font-style: normal; font-size: 11px; color: #444; }

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials {
  position: relative;
  background: #050505;
  padding: 112px 0;
  overflow: hidden;
}
.giant-quote {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -25%);
  font-family: Georgia, serif;
  font-size: clamp(200px, 30vw, 400px);
  line-height: 1;
  color: rgba(212,175,55,.025);
  pointer-events: none;
  user-select: none;
}
.testimonials .section-head { padding: 0 0 80px; }

.slider-controls { display: flex; align-items: center; gap: 12px; }
.slider-controls > button {
  width: 48px; height: 48px;
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 2px;
  color: #666;
  font-size: 16px;
  transition: all .3s;
}
.slider-controls > button:hover { color: var(--gold); border-color: rgba(212,175,55,.6); }
.slider-dots { display: flex; gap: 8px; padding: 0 16px; }
.slider-dots button {
  width: 6px; height: 6px;
  border-radius: 99px;
  background: rgba(212,175,55,.2);
  transition: all .4s var(--ease);
}
.slider-dots button.active { width: 32px; background: var(--gold); }

.testimonial-card {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(212,175,55,.1);
  border-radius: 4px;
  overflow: hidden;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
@media (min-width: 1024px) { .testimonial-card { grid-template-columns: 1fr 3fr; } }
.testimonial-card.switching { opacity: 0; transform: translateY(24px); }

.t-author {
  background: rgba(212,175,55,.03);
  padding: 40px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) { .t-author { border-bottom: 0; border-right: 1px solid var(--line); } }
.t-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,.3);
  background: rgba(212,175,55,.06);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}
.t-name { font-family: var(--serif); font-weight: 600; font-size: 15px; color: #fff; margin-bottom: 4px; }
.t-loc { font-size: 11px; color: #444; margin-bottom: 20px; }
.t-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
.t-plan {
  display: inline-block;
  border: 1px solid rgba(212,175,55,.2);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 9px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.t-quote {
  background: var(--smoke);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) { .t-quote { padding: 56px; } }
.t-mark { font-family: Georgia, serif; font-size: 60px; line-height: 1; color: rgba(212,175,55,.1); margin-bottom: 8px; }
.t-quote blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.85;
  color: #BCBCBC;
  margin-bottom: 24px;
}

.t-bottom-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 512px;
}
.t-bottom-stats div { text-align: center; }
.t-bottom-stats strong {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--gold);
  margin-bottom: 4px;
}
.t-bottom-stats small { font-size: 10px; color: #444; text-transform: uppercase; letter-spacing: 0.18em; }

/* ═══════════ FAQ ═══════════ */
.faq {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 112px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) { .faq-grid { grid-template-columns: 1fr 2fr; gap: 96px; } }

.faq-intro { align-self: start; }
@media (min-width: 1024px) { .faq-intro { position: sticky; top: 128px; } }
.faq-intro h2 { font-size: clamp(36px, 5vw, 60px); margin: 20px 0 24px; }
.faq-intro p { color: #444; font-size: 13px; line-height: 1.9; margin-bottom: 32px; }

.acc-item { border-bottom: 1px solid var(--line); }
.acc-item.open { border-color: var(--line-mid); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 0;
  text-align: left;
}
.acc-head em {
  font-style: normal;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(212,175,55,.3);
  margin-top: 4px;
  flex-shrink: 0;
}
.acc-head span {
  flex: 1;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #BCBCBC;
  transition: color .3s;
}
.acc-item.open .acc-head span { color: var(--gold); }
.acc-head i {
  font-style: normal;
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid rgba(212,175,55,.1);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: #444;
  font-size: 13px;
  transition: transform .3s, color .3s, border-color .3s;
}
.acc-item.open .acc-head i {
  transform: rotate(45deg);
  color: var(--gold);
  border-color: rgba(212,175,55,.5);
}
.acc-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.acc-item.open .acc-body { grid-template-rows: 1fr; }
.acc-body > p {
  overflow: hidden;
  padding-left: 36px;
  color: #555;
  font-size: 13px;
  line-height: 1.95;
}
.acc-item.open .acc-body > p { padding-bottom: 28px; }

/* ═══════════ CONTACT ═══════════ */
.contact { background: #000; border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }

.contact-info {
  padding: 96px 32px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) {
  .contact-info { padding: 128px 64px; border-bottom: 0; border-right: 1px solid var(--line); }
}
.contact-info h2 { font-size: clamp(36px, 4.5vw, 60px); margin-top: 20px; }
.contact-info .section-body { margin-bottom: 48px; }

.channels { display: flex; flex-direction: column; gap: 16px; }
.channel {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 3px;
  transition: all .3s;
}
.channel:hover { border-color: rgba(212,175,55,.2); background: rgba(212,175,55,.02); }
.channel-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 1px solid rgba(212,175,55,.15);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 15px;
  transition: border-color .3s;
}
.channel:hover .channel-icon { border-color: rgba(212,175,55,.4); }
.channel-main { flex: 1; min-width: 0; }
.channel-main small {
  display: block;
  font-size: 10px;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 2px;
}
.channel-main span {
  display: block;
  font-size: 13px;
  color: #BCBCBC;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.channel em { font-style: normal; font-size: 10px; color: #333; }

.online-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  font-size: 11px;
  color: #444;
}
.pulse-dot {
  position: relative;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #10b981;
  animation: ping 1.6s ease-out infinite;
}

.contact-form-wrap { padding: 96px 32px; }
@media (min-width: 1024px) { .contact-form-wrap { padding: 128px 64px; } }
.form-title { display: inline-flex; margin-bottom: 32px; }

.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 20px; }
.form-row .field { margin-bottom: 0; }
.form-row { margin-bottom: 20px; }

.field label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #555;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(212,175,55,.1);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 13px;
  color: #fff;
  transition: border-color .3s;
}
.field select { background: #070707; color: #777; appearance: none; }
.field textarea { resize: none; }
.field input::placeholder, .field textarea::placeholder { color: #333; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: rgba(212,175,55,.4);
}
.form-note { font-size: 10px; color: #333; text-align: center; margin-top: 16px; }

.form-success { text-align: center; padding: 64px 0; }
.success-circle {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  border: 1px solid rgba(212,175,55,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 22px;
}
.form-success h3 { font-size: 24px; color: #fff; margin-bottom: 12px; }
.form-success p { color: #444; font-size: 13px; line-height: 1.7; max-width: 320px; margin: 0 auto; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: #000; border-top: 1px solid rgba(212,175,55,.08); }
.footer-rule { height: 1px; background: linear-gradient(90deg, rgba(212,175,55,.6) 0%, rgba(212,175,55,.05) 100%); }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .logo { margin-bottom: 24px; }
.footer-brand .logo-text { display: block; }
.footer-brand p {
  color: #333;
  font-size: 12px;
  line-height: 1.95;
  max-width: 320px;
  margin-bottom: 32px;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(212,175,55,.1);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: #444;
  font-size: 13px;
  transition: all .3s;
}
.socials a:hover { color: var(--gold); border-color: rgba(212,175,55,.4); }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col .eyebrow { margin-bottom: 8px; }
.footer-col a { font-size: 12px; color: #333; transition: color .3s; }
.footer-col a:hover { color: #BCBCBC; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 10px;
  color: #2A2A2A;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.online-badge.dim { margin: 0; font-size: 10px; color: #2A2A2A; }
.online-badge.dim .pulse-dot { width: 6px; height: 6px; background: #059669; }
.online-badge.dim .pulse-dot::after { background: #059669; }

/* ═══════════ CUSTOM CURSOR (desktop only) ═══════════ */
.cursor-dot, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  body.cursor-active { cursor: none; }
  body.cursor-active a, body.cursor-active button { cursor: none; }

  .cursor-dot {
    display: block;
    position: fixed;
    z-index: 10001;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    transform: translate(-50%, -50%);
  }
  .cursor-ring {
    display: block;
    position: fixed;
    z-index: 10000;
    width: 36px; height: 36px;
    border: 1px solid rgba(212,175,55,.4);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .25s, height .25s, border-color .25s, background .25s;
  }
  .cursor-ring.hovering {
    width: 56px; height: 56px;
    border-color: rgba(212,175,55,.8);
    background: rgba(212,175,55,.06);
  }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .fade-up, .reveal-mask > *, .clip-reveal { opacity: 1; transform: none; clip-path: none; }
}

/* ═══════════ WordPress additions ═══════════ */

/* Admin bar offset for the fixed navbar */
body.admin-bar .navbar { top: 32px; }
@media (max-width: 782px) { body.admin-bar .navbar { top: 46px; } }

/* Custom logo image in place of the "C" mark */
.logo-mark-img { background: none; border: none; }
.logo-mark-img img { width: 100%; height: 100%; object-fit: contain; }

/* Contact form states */
#contactForm.sending { opacity: 0.5; pointer-events: none; }
.form-error { color: #e0655a; font-size: 13px; margin-top: 12px; }

/* WordPress core alignment/caption classes (keeps the editor happy) */
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .screen-reader-text { font-size: 13px; color: var(--fog); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════ WORK / PORTFOLIO ═══════════ */
.work { background: var(--smoke); border-top: 1px solid var(--line); }
.work .section-head { padding-bottom: 64px; }

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding-bottom: 128px;
}
@media (min-width: 768px)  { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .work-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.work-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-mid);
  background: var(--carbon);
}
.work-card img,
.work-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.work-card:hover img,
.work-card:hover video { transform: scale(1.05); }

.work-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.85));
  pointer-events: none;
}
.work-caption { position: absolute; left: 28px; right: 28px; bottom: 24px; z-index: 1; }
.work-caption .caption-title { font-size: 22px; }

.work-card-video { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
@media (min-width: 1024px) { .work-card-video { aspect-ratio: 21 / 9; } }
.work-card-video .work-caption { left: 40px; right: 40px; bottom: 36px; }
.work-card-video .work-caption .caption-title { font-size: 30px; }

/* FAQ side image */
.faq-img {
  margin-top: 48px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line-mid);
}
.faq-img img { width: 100%; height: 100%; object-fit: cover; }
