/* ============================================================
   DUX DIGITAL — shared design system
   Brand tokens reused from apply.duxdigital.media (gold + navy crown).
   Plain CSS, no build step. One stylesheet across all pages.
   ============================================================ */

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

:root {
  --gold: #d4af37;
  --gold-soft: #e6c452;
  --gold-deep: #b8932a;
  --gold-bright: #f5d76e;
  --dark: #0a0f1a;
  --dark-2: #111827;
  --navy: #1a2b4a;
  --white: #ffffff;
  --light-bg: #f8f9fb;
  --text-dark: #1a1a2e;
  --text-muted: #64748b;
  --text-light: #e2e8f0;
  --text-light-2: #cbd5e1;
  --line: rgba(255, 255, 255, 0.08);
  --input-border: #d4d8e0;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.35);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 64px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text-dark);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; }

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

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--gold); color: var(--dark);
  padding: 10px 18px; border-radius: 8px; font-weight: 800;
  font-family: 'Inter Tight', sans-serif; z-index: 10000;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* ===================== NAV ===================== */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(10, 15, 26, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; height: 100%;
  padding: 0 20px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo .crown { color: var(--gold); font-size: 20px; line-height: 1; }
.nav-logo .word {
  font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 15px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--white);
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-light-2); text-decoration: none;
  letter-spacing: 0.2px; transition: color var(--transition); white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--dark); font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: 13.5px; letter-spacing: 0.6px; text-transform: uppercase; text-decoration: none;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.32);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; width: 24px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--dark-2); border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    padding: 8px 0; transform: translateY(-12px); opacity: 0; pointer-events: none; visibility: hidden;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }
  .nav.open .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; visibility: visible; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links .nav-cta { margin: 12px 24px; justify-content: center; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Inter Tight', sans-serif; font-weight: 900; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary {
  padding: 22px 48px; font-size: 19px; letter-spacing: 0.8px;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: var(--dark); border: 3px solid rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 0 8px rgba(212,175,55,0.10), 0 18px 60px rgba(212,175,55,0.50), inset 0 1px 0 rgba(255,255,255,0.55);
  animation: ctaPulse 2.6s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 0 8px rgba(212,175,55,0.10), 0 18px 60px rgba(212,175,55,0.50), inset 0 1px 0 rgba(255,255,255,0.55); }
  50% { box-shadow: 0 0 0 12px rgba(212,175,55,0.16), 0 24px 70px rgba(212,175,55,0.62), inset 0 1px 0 rgba(255,255,255,0.55); }
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); }
.btn-secondary {
  padding: 20px 40px; font-size: 16px; letter-spacing: 0.6px;
  background: transparent; color: var(--white); border: 2px solid rgba(212,175,55,0.5);
}
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--gold); color: var(--gold); }
.btn-sm { padding: 15px 30px; font-size: 15px; }
@media (prefers-reduced-motion: reduce) { .btn-primary { animation: none; } }
@media (max-width: 540px) {
  .btn-primary { padding: 18px 32px; font-size: 16px; width: 100%; }
  .btn-secondary { padding: 16px 28px; font-size: 15px; width: 100%; }
}

/* ===================== SECTIONS ===================== */
section { position: relative; }
.dark-section { background: var(--dark); padding: 80px 20px; }
.dark-2-section { background: var(--dark-2); padding: 80px 20px; }
.light-section { background: var(--light-bg); padding: 80px 20px; }
.section-inner { max-width: 1040px; margin: 0 auto; }
.section-inner.narrow { max-width: 820px; }
.section-eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Inter Tight', sans-serif; font-weight: 800;
  font-size: clamp(28px, 4.4vw, 46px); line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 18px;
}
.section-title .gold { color: var(--gold); }
.dark-section .section-title, .dark-2-section .section-title { color: var(--white); }
.light-section .section-title { color: var(--text-dark); }
.section-lead { font-size: 17px; max-width: 660px; line-height: 1.65; }
.dark-section .section-lead, .dark-2-section .section-lead { color: var(--text-light-2); }
.light-section .section-lead { color: var(--text-muted); }
.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }

/* ===================== HERO ===================== */
.hero {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212,175,55,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 80%, rgba(212,175,55,0.06) 0%, transparent 50%),
    linear-gradient(170deg, #0a0f1a 0%, #111827 50%, #1a2440 100%);
  padding: 64px 20px 72px; text-align: center; overflow: hidden;
}
.hero-inner { max-width: 880px; margin: 0 auto; position: relative; z-index: 1; }
.hero-watermark {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -48%);
  font-size: clamp(360px, 50vw, 620px); color: rgba(212,175,55,0.045);
  pointer-events: none; user-select: none; z-index: 0; line-height: 1; font-family: 'Inter Tight', sans-serif;
}
.hero-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2.6px;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px;
  padding: 7px 16px; border: 1px solid rgba(212,175,55,0.3); border-radius: 999px;
}
.hero h1 {
  font-family: 'Inter Tight', sans-serif; font-weight: 900;
  font-size: clamp(34px, 5.4vw, 60px); line-height: 1.04; letter-spacing: -0.02em;
  color: var(--white); margin-bottom: 18px;
}
.hero h1 .gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px); font-weight: 500; color: var(--text-light);
  margin: 0 auto 30px; max-width: 640px; opacity: 0.94;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.hero-credibility {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-soft); margin-top: 26px;
}
.page-hero { padding: 56px 20px 48px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 52px); }

/* ===================== PROOF BAR (logo wall) ===================== */
.proof-bar { background: var(--dark-2); padding: 30px 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.proof-bar-inner { max-width: 1040px; margin: 0 auto; text-align: center; }
.proof-bar-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 18px;
}
.proof-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 44px; }
.proof-logos img { height: 38px; width: auto; opacity: 0.75; filter: brightness(0) invert(1); transition: opacity var(--transition); }
.proof-logos img:hover { opacity: 1; }

/* ===================== STAT COUNTERS ===================== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stats.stats-4 { grid-template-columns: repeat(4, 1fr); }
.stat .num {
  font-family: 'Inter Tight', sans-serif; font-weight: 900;
  font-size: clamp(34px, 5.2vw, 54px); color: var(--gold); line-height: 1; letter-spacing: -0.02em;
}
.stat .label {
  margin-top: 10px; color: var(--text-light-2); font-size: 12.5px; letter-spacing: 1.4px;
  text-transform: uppercase; font-weight: 600;
}
@media (max-width: 720px) {
  .stats, .stats.stats-4 { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
}

/* ===================== CARDS / GRID ===================== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 860px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 26px;
  box-shadow: 0 2px 14px rgba(15,23,42,0.04); border: 1px solid #e5e9f0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(15,23,42,0.08); }
.card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.card-symbol {
  font-size: 22px; color: var(--gold); width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(212,175,55,0.10); border-radius: 9px;
}
.card-num { font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 13px; letter-spacing: 1.5px; color: var(--gold-deep); }
.card-title { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 21px; color: var(--text-dark); margin-bottom: 8px; }
.card-body { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* dark cards (for value/identity sections) */
.card-dark {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.16);
  border-radius: var(--radius-lg); padding: 26px 24px;
}
.card-dark .card-title { color: var(--white); }
.card-dark .card-body { color: var(--text-light-2); }

/* ===================== TIMELINE ===================== */
.timeline { display: flex; flex-direction: column; gap: 4px; margin-top: 36px; }
.timeline-row {
  display: grid; grid-template-columns: 130px 1fr; gap: 22px; align-items: start;
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.timeline-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.timeline-marker {
  font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 15px;
  color: var(--gold); letter-spacing: 0.5px; text-transform: uppercase;
}
.timeline-title { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 19px; color: var(--white); margin-bottom: 6px; }
.timeline-body { font-size: 15px; color: var(--text-light-2); line-height: 1.6; }
@media (max-width: 620px) {
  .timeline-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ===================== GUARANTEE + LTV CALC ===================== */
.guarantee {
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 70%), var(--dark);
  padding: 84px 20px; text-align: center;
}
.guarantee-inner { max-width: 760px; margin: 0 auto; }
.guarantee-title {
  font-family: 'Inter Tight', sans-serif; font-weight: 900;
  font-size: clamp(32px, 5.4vw, 56px); line-height: 1.15; letter-spacing: -0.015em;
  color: var(--white); margin-bottom: 22px; text-shadow: 0 4px 30px rgba(212,175,55,0.25);
}
.guarantee-title .gold { color: var(--gold); }
.guarantee-body { font-size: 18px; color: var(--text-light-2); line-height: 1.6; margin-bottom: 12px; }
.ltv-calc {
  margin: 36px auto 0; max-width: 640px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.30); border-radius: var(--radius-lg); padding: 26px 22px;
}
.ltv-formula-line { font-family: 'Inter Tight', sans-serif; color: var(--white); margin-bottom: 22px; line-height: 1.4; }
.ltv-formula-line .formula { font-size: 18px; font-weight: 700; color: var(--text-light); }
.ltv-amount { color: var(--gold-soft); font-weight: 900; }
.ltv-equals { display: block; margin: 10px 0; color: var(--text-muted); font-size: 18px; font-weight: 600; }
.ltv-total {
  font-family: 'Inter Tight', sans-serif; font-weight: 900;
  font-size: clamp(36px, 6vw, 56px); color: var(--gold); letter-spacing: -0.02em; line-height: 1;
}
.ltv-period { display: block; margin-top: 6px; color: var(--text-light-2); font-size: 14px; letter-spacing: 0.5px; }
.ltv-buttons { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.ltv-btn {
  padding: 10px 18px; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(212,175,55,0.35);
  color: var(--text-light); font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 14px;
  letter-spacing: 0.4px; border-radius: 999px; cursor: pointer; transition: all var(--transition);
}
.ltv-btn:hover { background: rgba(212,175,55,0.12); border-color: var(--gold-soft); color: var(--white); }
.ltv-btn.active { background: var(--gold); border-color: var(--gold); color: var(--dark); box-shadow: 0 6px 18px rgba(212,175,55,0.40); }
.ltv-fine { margin-top: 18px; font-size: 13px; color: var(--text-muted); letter-spacing: 0.3px; }
.guarantee-fine { margin-top: 28px; font-size: 13px; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; }

/* ===================== TESTIMONIALS ===================== */
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 28px; }
@media (max-width: 720px) { .video-grid { grid-template-columns: 1fr; } }
.video-col { display: flex; flex-direction: column; gap: 12px; }
.video-thumb {
  position: relative; width: 100%; aspect-ratio: 16 / 10; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer; background: var(--dark-2); display: block; border: 0; padding: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.40); transition: transform var(--transition);
}
.video-thumb:hover { transform: translateY(-3px); }
.video-thumb:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-thumb iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,15,26,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 18px 20px; pointer-events: none;
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(212,175,55,0.50);
}
.play-btn::after { content: ''; width: 0; height: 0; border-left: 18px solid var(--dark); border-top: 12px solid transparent; border-bottom: 12px solid transparent; margin-left: 4px; }
.video-label { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 18px; color: var(--white); line-height: 1.25; }
.video-sub { font-size: 13px; color: var(--text-light-2); margin-top: 4px; }
.video-quote strong { display: block; font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 17px; color: var(--white); line-height: 1.35; }
.video-quote span { display: block; font-size: 13px; color: var(--gold-soft); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 720px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-shot { border-radius: var(--radius); overflow: hidden; background: var(--dark-2); box-shadow: 0 8px 24px rgba(0,0,0,0.30); margin-bottom: 22px; }
.review-shot img { width: 100%; height: auto; display: block; }

/* quote card (text testimonials) */
.quote-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.18);
  border-radius: var(--radius-lg); padding: 26px 24px;
}
.quote-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; margin-bottom: 12px; }
.quote-card p { color: var(--text-light); font-size: 15.5px; line-height: 1.6; margin-bottom: 14px; }
.quote-card .who { font-family: 'Inter Tight', sans-serif; font-weight: 800; color: var(--white); font-size: 15px; }
.quote-card .who span { display: block; color: var(--gold-soft); font-size: 12.5px; font-weight: 600; margin-top: 2px; }

/* ===================== FAQ ===================== */
.faq-list { margin-top: 28px; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.10); }
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.10); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--white);
  font-family: 'Inter Tight', sans-serif; font-weight: 700; font-size: 17px; text-align: left;
  padding: 22px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; line-height: 1.4; transition: color var(--transition);
}
.faq-q:hover { color: var(--gold); }
.faq-q:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 4px; }
.faq-q .icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; transition: transform 250ms ease; }
.faq-q .icon::before, .faq-q .icon::after { content: ''; position: absolute; background: rgba(255,255,255,0.45); transition: background var(--transition); }
.faq-q .icon::before { top: 9px; left: 0; right: 0; height: 2px; }
.faq-q .icon::after { top: 0; bottom: 0; left: 9px; width: 2px; }
.faq-item.open .faq-q { color: var(--gold); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-item.open .faq-q .icon::before, .faq-item.open .faq-q .icon::after { background: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms cubic-bezier(0.4,0,0.2,1); font-size: 16px; color: var(--text-light-2); line-height: 1.7; }
.faq-a-inner { padding: 0 0 22px; }
.faq-a p { margin-bottom: 12px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-a strong { color: var(--white); font-weight: 600; }

/* ===================== CTA BAND ===================== */
.cta-band { background: var(--dark); padding: 72px 20px; text-align: center; }
.cta-band-inner { max-width: 720px; margin: 0 auto; }
.cta-band h2 {
  font-family: 'Inter Tight', sans-serif; font-weight: 900; color: var(--white);
  font-size: clamp(28px, 4.6vw, 46px); line-height: 1.12; letter-spacing: -0.015em; margin-bottom: 16px;
}
.cta-band h2 .gold { color: var(--gold); }
.cta-band p { color: var(--text-light-2); font-size: 17px; margin: 0 auto 28px; max-width: 560px; }

/* ===================== TEAM ===================== */
.team-duo { display: flex; justify-content: center; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.team-card { display: flex; flex-direction: column; align-items: center; text-align: center; max-width: 240px; }
.team-photo {
  width: 96px; height: 96px; border-radius: 50%; object-fit: cover; object-position: center 32%;
  border: 2px solid rgba(212,175,55,0.65); box-shadow: 0 6px 18px rgba(0,0,0,0.35); margin-bottom: 10px;
}
.team-name { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 16px; color: var(--white); }
.team-title { font-size: 11px; color: var(--gold-soft); text-transform: uppercase; letter-spacing: 1.3px; margin-top: 3px; font-weight: 600; }
.team-card p { color: var(--text-light-2); font-size: 14px; line-height: 1.6; margin-top: 10px; }

/* ===================== CONTACT FORM ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-info-item { margin-bottom: 22px; }
.contact-info-item .k { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 5px; }
.contact-info-item .v { color: var(--text-light); font-size: 16px; }
.contact-info-item .v a { color: var(--text-light); text-decoration: none; transition: color var(--transition); }
.contact-info-item .v a:hover { color: var(--gold); }
.form-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.18); border-radius: var(--radius-lg); padding: 28px 26px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-light); letter-spacing: 0.2px; }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 16px; color: var(--white);
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.14); border-radius: 10px;
  transition: border-color var(--transition), box-shadow var(--transition); -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-muted); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.18); }
.form-note { font-size: 12.5px; color: var(--text-muted); margin-top: 6px; line-height: 1.5; }
.form-submit { width: 100%; margin-top: 4px; border: none; }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-status.ok { color: var(--gold-soft); }
.form-status.err { color: #f87171; }

/* ===================== PROSE (legal pages) ===================== */
.prose { max-width: 820px; margin: 0 auto; color: var(--text-light-2); font-size: 16px; line-height: 1.75; }
.prose h2 { font-family: 'Inter Tight', sans-serif; color: var(--white); font-size: 24px; margin: 36px 0 12px; font-weight: 800; }
.prose h3 { color: var(--gold-soft); font-size: 18px; margin: 24px 0 8px; font-weight: 700; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--gold); }
.prose .updated { font-size: 13px; color: var(--text-muted); letter-spacing: 0.5px; text-transform: uppercase; }

/* ===================== FOOTER ===================== */
footer.site-footer { background: var(--dark); color: var(--text-light-2); padding: 56px 20px 36px; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1040px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
@media (max-width: 720px) { .footer-top { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand .crown-stamp { font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: 15px; letter-spacing: 3px; color: var(--gold); margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); max-width: 320px; line-height: 1.6; }
.footer-col h4 { font-family: 'Inter Tight', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--text-light-2); text-decoration: none; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; align-items: center; }
.footer-bottom .small { font-size: 12px; color: var(--text-muted); letter-spacing: 0.5px; }
.legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.legal-links a { font-size: 12px; color: var(--text-muted); text-decoration: none; letter-spacing: 0.3px; transition: color var(--transition); }
.legal-links a:hover { color: var(--gold-soft); }

/* ===================== 404 ===================== */
.error-wrap { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 60px 20px; }
.error-wrap .big { font-family: 'Inter Tight', sans-serif; font-weight: 900; font-size: clamp(72px, 16vw, 160px); color: var(--gold); line-height: 1; letter-spacing: -0.04em; }

/* ===================== MODAL (video lightbox) ===================== */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(10,15,26,0.86); }
.lightbox-card { position: relative; width: 100%; max-width: 900px; aspect-ratio: 16/9; background: #000; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.lightbox-card iframe { width: 100%; height: 100%; border: 0; }
.lightbox-close { position: absolute; top: 10px; right: 10px; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: rgba(10,15,26,0.7); border: 1px solid rgba(255,255,255,0.25); color: #fff; font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(10,15,26,0.92); }
.lightbox-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }
