/* =====================================================================
   EMPIRE ENTERTAINMENT — Videograph
   Design system: warm white base, champagne gold + silver accents,
   bold-modern grotesk + mono "timecode" labels.
   ===================================================================== */

/* ----------------------------- Tokens ------------------------------ */
:root {
  /* base palette (light) */
  --bg:        #FAF8F4;
  --surface:   #FFFFFF;
  --surface-2: #F1EDE6;
  --ink:       #15130E;
  --ink-soft:  #5B5648;
  --ink-faint: #8E897B;
  --line:      rgba(21, 19, 14, 0.12);
  --line-soft: rgba(21, 19, 14, 0.06);

  /* accents */
  --gold:      #BF9744;
  --gold-lite: #E7CE8F;
  --gold-deep: #9C7A2E;
  --silver:    #9CA1A6;
  --silver-lite:#D9DCDF;
  --metal-gold: linear-gradient(135deg, #EBD79A 0%, #BF9744 45%, #9C7A2E 55%, #E7CE8F 100%);
  --metal-silver: linear-gradient(135deg, #E9EBED 0%, #9CA1A6 50%, #C7CACD 100%);

  /* shadows */
  --shadow-card: 0 26px 60px -28px rgba(21, 19, 14, 0.40);
  --shadow-soft: 0 12px 34px -18px rgba(21, 19, 14, 0.28);
  --shadow-lift: 0 40px 90px -30px rgba(21, 19, 14, 0.55);

  /* typography */
  --font-display: "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  --font-body:    "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* layout */
  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 72px);
  --radius: 4px;

  /* motion */
  --anim: 1;           /* animation intensity multiplier (tweakable) */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --bg:        #0D0C0A;
  --surface:   #151310;
  --surface-2: #1D1A15;
  --ink:       #F4F1EA;
  --ink-soft:  #B0AB9E;
  --ink-faint: #7E796D;
  --line:      rgba(244, 241, 234, 0.14);
  --line-soft: rgba(244, 241, 234, 0.07);
  --gold:      #D6AF60;
  --gold-lite: #F0DCA6;
  --gold-deep: #B5934C;
  --shadow-card: 0 30px 70px -30px rgba(0, 0, 0, 0.85);
  --shadow-soft: 0 14px 40px -20px rgba(0, 0, 0, 0.7);
  --shadow-lift: 0 50px 110px -36px rgba(0, 0, 0, 0.95);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.6s var(--ease-soft), color 0.6s var(--ease-soft);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold); color: #fff; }

/* film-grain overlay for cinematic texture */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
[data-theme="dark"] body::after { opacity: 0.06; }

/* --------------------------- Utilities ----------------------------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.kicker.center::before { display: none; }

.eyebrow-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.section { padding-block: clamp(80px, 11vw, 160px); position: relative; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 6vw, 80px); }
.section-head h2 {
  font-size: clamp(40px, 6.5vw, 92px);
  margin-top: 18px;
}
.section-head p {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 56ch;
  text-wrap: pretty;
}

.gold-text {
  background: var(--metal-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), color 0.4s var(--ease-soft), border-color 0.4s;
  will-change: transform;
}
.btn .arrow { transition: transform 0.4s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }
.btn:active { transform: scale(0.97); }

.btn-primary { color: #fff; background: var(--ink); }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--metal-gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn-primary:hover { color: #1a1407; }
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
[data-theme="dark"] .btn-ghost:hover { color: var(--gold-lite); }

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity calc(0.9s * var(--anim)) var(--ease),
              transform calc(0.9s * var(--anim)) var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================== NAV =============================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  transition: background 0.45s var(--ease-soft), padding 0.45s var(--ease-soft),
              box-shadow 0.45s var(--ease-soft), border-color 0.45s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  padding-block: 12px;
  border-color: var(--line-soft);
}
.nav.hide { transform: translateY(-110%); }
.nav { transition: transform 0.5s var(--ease), background 0.45s, padding 0.45s, border-color 0.45s; }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 17px;
  line-height: 1;
}
.brand .mark {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--metal-gold);
  display: grid; place-items: center;
  color: #1a1407;
  font-weight: 900;
  font-size: 15px;
  box-shadow: var(--shadow-soft);
}
.brand small {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 9px;
  letter-spacing: 0.34em;
  color: var(--ink-faint);
  margin-top: 3px;
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }

.toggle {
  display: inline-flex;
  align-items: center;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}
.lang-toggle button {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0 13px;
  height: 100%;
  color: var(--ink-faint);
  transition: color 0.3s, background 0.3s;
}
.lang-toggle button.active { color: #1a1407; background: var(--metal-gold); }
[data-theme="dark"] .lang-toggle button.active { color: #1a1407; }

.theme-toggle {
  width: 38px; height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface);
  transition: border-color 0.3s, transform 0.5s var(--ease);
}
.theme-toggle:hover { border-color: var(--gold); transform: rotate(35deg); }
.theme-toggle svg { width: 17px; height: 17px; stroke: var(--ink); }
.theme-toggle .moon { display: none; }
[data-theme="dark"] .theme-toggle .sun { display: none; }
[data-theme="dark"] .theme-toggle .moon { display: block; }

.burger { display: none; width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; }
.burger span { display: block; width: 16px; height: 1.6px; background: var(--ink); margin: 3px auto; transition: 0.3s var(--ease); }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media .ph { position: absolute; inset: 0; }
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 120%;
  object-fit: cover;
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,7,5,0.62) 0%, rgba(8,7,5,0.18) 45%, transparent 70%),
    linear-gradient(180deg, rgba(8,7,5,0.5) 0%, rgba(8,7,5,0.2) 32%, rgba(8,7,5,0.42) 66%, rgba(8,7,5,0.9) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding: 0 var(--pad) clamp(56px, 8vw, 110px);
  color: #fff;
}
.hero-tc {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.26em;
  color: rgba(255,255,255,0.7);
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 26px;
}
.hero-tc .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px var(--gold); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 {
  font-size: clamp(48px, 11vw, 168px);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln span { display: block; transform: translateY(105%); transition: transform 1.1s var(--ease); }
.hero.ready h1 .ln span { transform: translateY(0); }
.hero h1 .ln:nth-child(2) span { transition-delay: 0.12s; }
.hero h1 .thin { font-weight: 200; letter-spacing: -0.01em; }

.hero-sub {
  margin-top: 28px;
  max-width: 46ch;
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255,255,255,0.84);
  text-wrap: pretty;
}
.hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.hero .btn-ghost:hover { border-color: var(--gold-lite); color: var(--gold-lite); }

.hero-scroll {
  position: absolute;
  right: var(--pad); bottom: clamp(56px, 8vw, 110px);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  writing-mode: vertical-rl;
}
.hero-scroll .line { width: 1px; height: 54px; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.hero-scroll .line::after { content:""; position:absolute; top:0; left:0; width:100%; height:40%; background: var(--gold); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0%{transform:translateY(-100%)} 100%{transform:translateY(260%)} }

/* hero variant: split */
.hero[data-variant="split"] { align-items: stretch; }
.hero[data-variant="split"] .hero-media { left: auto; width: 46%; }
.hero[data-variant="split"] .hero-scrim { left: auto; width: 46%; background: linear-gradient(90deg, var(--bg), transparent 30%), linear-gradient(0deg, rgba(8,7,5,0.5), transparent 60%); }
.hero[data-variant="split"] .hero-inner { display: flex; align-items: center; max-width: var(--maxw); }
.hero[data-variant="split"] .hero-text { width: 60%; color: var(--ink); }
.hero[data-variant="split"] .hero-sub { color: var(--ink-soft); }
.hero[data-variant="split"] h1 { font-size: clamp(44px, 7.5vw, 116px); }
.hero[data-variant="split"] .btn-ghost { color: var(--ink); border-color: var(--line); }
.hero[data-variant="split"] .btn-ghost:hover { color: var(--gold-deep); border-color: var(--gold); }
.hero[data-variant="split"] .hero-tc { color: var(--ink-faint); }
@media (max-width: 860px) {
  .hero[data-variant="split"] .hero-media,
  .hero[data-variant="split"] .hero-scrim { width: 100%; }
  .hero[data-variant="split"] .hero-text { width: 100%; color: #fff; }
  .hero[data-variant="split"] .hero-sub { color: rgba(255,255,255,0.84); }
  .hero[data-variant="split"] .hero-tc { color: rgba(255,255,255,0.7); }
}

/* hero variant: minimal (type forward, light bg) */
.hero[data-variant="minimal"] { background: var(--bg); align-items: center; }
.hero[data-variant="minimal"] .hero-media { inset: auto 0 0 0; height: 38vh; top: auto; }
.hero[data-variant="minimal"] .hero-media img { height: 130%; }
.hero[data-variant="minimal"] .hero-scrim { inset: auto 0 0 0; height: 42vh; background: linear-gradient(0deg, rgba(8,7,5,0.55), transparent); }
.hero[data-variant="minimal"] .hero-inner { color: var(--ink); padding-bottom: 0; align-self: center; padding-top: 16vh; }
.hero[data-variant="minimal"] h1 { font-size: clamp(52px, 13vw, 190px); }
.hero[data-variant="minimal"] .hero-sub { color: var(--ink-soft); }
.hero[data-variant="minimal"] .hero-tc { color: var(--ink-faint); }
.hero[data-variant="minimal"] .btn-ghost { color: var(--ink); border-color: var(--line); }

/* cinematic placeholder (fallback / base) */
.ph {
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(191,151,68,0.22), transparent 60%),
    linear-gradient(135deg, #1b1814, #2b261d 50%, #14110c);
  position: relative;
  overflow: hidden;
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 9px);
}
.ph .ph-label {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(231,206,143,0.8);
  text-transform: uppercase;
}

/* ========================== INTRO / ABOUT ========================= */
.intro { padding-block: clamp(90px, 13vw, 200px); }
.intro-grid { display: grid; grid-template-columns: 1fr; gap: clamp(40px, 6vw, 90px); }
.intro-lead {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.intro-lead b { font-weight: 800; }
.intro-lead .gold-text { font-weight: 800; }
.intro-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; border-top: 1px solid var(--line); padding-top: 36px; }
.intro-meta .stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px, 4vw, 58px); line-height: 1; }
.intro-meta .stat .n em { font-style: normal; color: var(--gold); }
.intro-meta .stat .l { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 10px; }
@media (min-width: 900px) {
  .intro-grid { grid-template-columns: 1.4fr 1fr; align-items: end; }
}

/* ========================= SERVICES (Polaroid) =================== */
.services { background: var(--surface-2); transition: background 0.6s var(--ease-soft); }
.services .section-head { margin-inline: auto; text-align: center; max-width: 760px; }
.services .section-head .kicker { justify-content: center; }

.polaroids {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 30px;
  min-height: 560px;
  perspective: 1600px;
}
.polaroid {
  position: relative;
  width: clamp(220px, 23vw, 310px);
  background: #fdfcf9;
  padding: 14px 14px 0;
  border-radius: 3px;
  box-shadow: var(--shadow-card);
  margin-inline: -42px;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), z-index 0s;
  will-change: transform;
  cursor: pointer;
  flex: 0 0 auto;
}
[data-theme="dark"] .polaroid { background: #f3efe6; }
.polaroid:nth-child(1) { transform: rotate(-7deg) translateY(28px); z-index: 1; }
.polaroid:nth-child(2) { transform: rotate(-3deg) translateY(8px);  z-index: 2; }
.polaroid:nth-child(3) { transform: rotate(1deg)  translateY(0);    z-index: 3; }
.polaroid:nth-child(4) { transform: rotate(4deg)  translateY(10px); z-index: 2; }
.polaroid:nth-child(5) { transform: rotate(8deg)  translateY(30px); z-index: 1; }

.polaroid .photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #11100c;
}
.polaroid .photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.03);
  transition: transform 0.8s var(--ease), filter 0.6s;
}
.polaroid .photo .ph { position: absolute; inset: 0; }
.polaroid .cap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 4px 18px;
  color: #15130e;
}
.polaroid .cap h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; }
.polaroid .cap .idx { font-family: var(--font-mono); font-size: 11px; color: #b08a3a; letter-spacing: 0.1em; }
.polaroid .tape {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%) rotate(-2deg);
  width: 84px; height: 26px;
  background: linear-gradient(180deg, rgba(231,206,143,0.55), rgba(191,151,68,0.4));
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(1px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}
.polaroid .go {
  position: absolute;
  right: 14px; bottom: 70px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--metal-gold);
  display: grid; place-items: center;
  color: #1a1407;
  opacity: 0;
  transform: scale(0.4) translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
  box-shadow: var(--shadow-soft);
}
.polaroid.active .go { opacity: 1; transform: scale(1) translateY(0); }
.polaroid.active { z-index: 20 !important; box-shadow: var(--shadow-lift); }
.polaroid.active .photo img { transform: scale(1.06); filter: grayscale(0) contrast(1.05); }

.services-note {
  text-align: center;
  margin-top: 50px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--ink-faint);
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .polaroids { flex-wrap: wrap; gap: 26px; min-height: 0; perspective: none; }
  .polaroid { margin-inline: 0; width: min(78vw, 320px); }
  .polaroid:nth-child(n) { transform: rotate(-2deg); }
  .polaroid:nth-child(even) { transform: rotate(2deg); }
}

/* ============================= PRICING =========================== */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 38px 32px 34px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s;
  overflow: hidden;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: color-mix(in srgb, var(--gold) 40%, var(--line)); }
.price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    var(--metal-gold) border-box;
  border: 1.5px solid transparent;
}
.price-card.featured::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 50% -10%, rgba(191,151,68,0.14), transparent 60%);
  pointer-events: none;
}
.price-tag {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
  background: var(--metal-gold); color: #1a1407;
}
.price-card .p-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-faint); }
.price-card .p-price { font-family: var(--font-display); font-weight: 800; font-size: clamp(42px, 5vw, 60px); line-height: 1; margin-top: 18px; letter-spacing: -0.02em; }
.price-card .p-price small { font-size: 16px; font-weight: 500; color: var(--ink-faint); letter-spacing: 0; }
.price-card .p-price .cur { font-size: 22px; vertical-align: super; color: var(--gold); }
.price-card .p-desc { color: var(--ink-soft); margin-top: 14px; font-size: 15px; }
.price-card ul { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.price-card li { display: flex; gap: 12px; font-size: 15px; color: var(--ink-soft); align-items: flex-start; }
.price-card li svg { flex: 0 0 auto; width: 17px; height: 17px; stroke: var(--gold); margin-top: 3px; }
.price-card .btn { margin-top: 32px; justify-content: center; }
.price-card .p-foot { margin-top: auto; }

/* ============================= REVIEWS =========================== */
.reviews { background: var(--surface-2); transition: background 0.6s var(--ease-soft); }
.reviews-track-wrap { overflow: hidden; margin-top: 20px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.reviews-track { display: flex; gap: 22px; width: max-content; animation: marquee 46s linear infinite; }
.reviews-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.review {
  width: 380px;
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 30px 26px;
  display: flex;
  flex-direction: column;
}
.review .stars { display: flex; gap: 3px; margin-bottom: 16px; }
.review .stars svg { width: 16px; height: 16px; fill: var(--gold); }
.review p { font-size: 17px; line-height: 1.5; color: var(--ink); text-wrap: pretty; }
.review .who { margin-top: 22px; display: flex; align-items: center; gap: 13px; }
.review .av { width: 44px; height: 44px; border-radius: 50%; background: var(--metal-silver); display: grid; place-items: center; font-weight: 800; color: #2a2a2a; font-size: 15px; }
.review .who .nm { font-weight: 700; font-size: 15px; }
.review .who .rl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--ink-faint); margin-top: 2px; }

/* ============================== FOOTER =========================== */
.footer { background: #0c0b09; color: #f4f1ea; padding-block: clamp(70px, 9vw, 120px) 36px; position: relative; }
[data-theme="dark"] .footer { background: #080705; border-top: 1px solid var(--line); }
.footer-cta { max-width: 900px; }
.footer-cta h2 { font-size: clamp(40px, 8vw, 112px); letter-spacing: -0.03em; color: #fff; }
.footer-cta h2 .gold-text { display: inline; }
.footer-cta p { color: rgba(244,241,234,0.6); margin-top: 22px; max-width: 48ch; }
.footer-cta .btn-primary { margin-top: 36px; background: var(--metal-gold); color: #1a1407; }
.footer-cta .btn-primary::before { background: #fff; }
.footer-cta .btn-primary:hover { color: #1a1407; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-top: clamp(70px, 9vw, 120px); padding-top: 44px; border-top: 1px solid rgba(244,241,234,0.12); }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-col h4 { font-family: var(--font-mono); font-weight: 500; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(244,241,234,0.45); margin-bottom: 18px; }
.footer-col a { display: block; color: rgba(244,241,234,0.78); font-size: 15px; padding: 6px 0; transition: color 0.3s, padding-left 0.3s; }
.footer-col a:hover { color: var(--gold-lite); padding-left: 6px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { color: rgba(244,241,234,0.55); font-size: 14px; margin-top: 18px; max-width: 32ch; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; margin-top: 56px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: rgba(244,241,234,0.4); }

/* ============================ MOBILE NAV ========================= */
@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(80vw, 340px);
    background: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    box-shadow: var(--shadow-lift);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; font-weight: 700; padding: 10px 0; }
  .nav-links a::after { display: none; }
  .burger { display: block; }
}

/* ========================== SUBPAGE STUB ========================= */
.stub {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  padding: var(--pad);
}
.stub .stub-tc { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.3em; color: var(--gold); }
.stub h1 { font-size: clamp(54px, 12vw, 170px); margin-top: 20px; letter-spacing: -0.04em; }
.stub p { color: var(--ink-soft); margin-top: 22px; max-width: 48ch; margin-inline: auto; font-size: 18px; }
.stub .stub-back { margin-top: 40px; }
.stub .bar { width: 200px; max-width: 60vw; height: 3px; background: var(--surface-2); margin: 36px auto 0; border-radius: 3px; overflow: hidden; }
.stub .bar i { display: block; height: 100%; width: 42%; background: var(--metal-gold); animation: load 2.6s var(--ease) infinite; }
@keyframes load { 0%{transform:translateX(-100%)} 100%{transform:translateX(340%)} }
