/* ═══════════════════════════════════════════════
   THE SPOTLIGHT MEDIA & TECHNOLOGY
   Design System — Editorial Luxury Intelligence
   Deep navy authority + gold precision + clean white
   Playfair Display (editorial gravitas) + DM Sans (clarity)
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy:      #0E2238;
  --navy-mid:  #1A3A5C;
  --navy-lite: #243F5C;
  --teal:      #2E86AB;
  --teal-lite: #4BA3C3;
  --gold:      #C8962A;
  --gold-lite: #D4A843;
  --gold-pale: #F5E9CC;
  --white:     #FFFFFF;
  --off-white: #F8F6F1;
  --cream:     #F2EDE3;
  --text:      #1C1C1C;
  --muted:     #5A6472;
  --border:    rgba(14,34,56,0.12);
  --border-gold: rgba(200,150,42,0.3);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;
  --ff-mono:    'DM Mono', monospace;

  --max: 1160px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(14,34,56,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,150,42,0.2);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
  transition: opacity 0.2s;
}
.nav-logo img:hover { opacity: 0.88; }
.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
  font-weight: 300;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-lite); }
.nav-cta {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 8px 20px;
  background: transparent;
  border: 1px solid rgba(200,150,42,0.5);
  color: var(--gold-lite) !important;
  border-radius: 2px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 120px var(--gutter) 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,150,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,150,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.page-hero-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: 1.25rem;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-lite);
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 620px;
  line-height: 1.8;
}

/* ── SECTIONS ── */
.section {
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
}
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
.section-cream { background: var(--cream); }

.section-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label-light {
  color: rgba(200,150,42,0.7);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-title-light { color: var(--white); }

.section-body {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.section-body-light { color: rgba(255,255,255,0.65); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 2px;
  transition: all 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-lite); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 400;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(14,34,56,0.04); }
.btn-ghost-light {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.25);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

.btn-group {
  display: flex; flex-wrap: wrap; gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: all 0.25s;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(14,34,56,0.08); }
.card:hover::before { opacity: 1; }

.card-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.card-number {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
.card ul {
  list-style: none;
  margin-top: 1rem;
}
.card ul li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.3rem 0;
  padding-left: 1rem;
  position: relative;
}
.card ul li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ── CTA SECTION ── */
.section-cta {
  background: var(--navy);
  padding: clamp(4rem, 8vw, 6rem) var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,150,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,150,42,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}
.cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cta-tagline {
  margin-top: 2rem !important;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(200,150,42,0.5) !important;
}
.cta-inner .btn-group { justify-content: center; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(200,150,42,0.15);
  padding: 4rem var(--gutter) 2rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-lite); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-lite); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── DIVIDER ── */
.gold-divider {
  width: 48px; height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── VALUE PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.pillar {
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.pillar-num {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.pillar h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pillar p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── STAT STRIP ── */
.stat-strip {
  background: var(--navy-mid);
  padding: 3rem var(--gutter);
}
.stat-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.contact-info-item {
  display: flex; gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  font-size: 0.9rem;
  color: var(--text);
}
.contact-info-value a { color: var(--teal); }
.contact-info-value a:hover { color: var(--gold); }

/* ── REGION CARDS ── */
.region-card {
  background: var(--navy-mid);
  border: 1px solid rgba(200,150,42,0.15);
  border-radius: 4px;
  padding: 2rem;
}
.region-card h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.region-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.region-flag { font-size: 2rem; margin-bottom: 1rem; }

/* ── CHANNEL CARDS ── */
.channel-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,150,42,0.15);
  border-radius: 4px;
  padding: 1.75rem;
  transition: all 0.25s;
}
.channel-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(200,150,42,0.35);
  transform: translateY(-2px);
}
.channel-handle {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.channel-card h3 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.channel-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.channel-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem;
  color: var(--gold-lite);
  margin-top: 1rem;
  transition: gap 0.2s;
}
.channel-link:hover { gap: 10px; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.5rem;
  font-family: var(--ff-mono);
  letter-spacing: 0.06em;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold-lite); }
.breadcrumb span { color: var(--gold); }

/* ── QUOTE BLOCK ── */
.quote-block {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  background: var(--gold-pale);
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
}
.quote-block blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.quote-attr {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ── MARKET PILLS ── */
.market-pills {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1.5rem;
}
.market-pill {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lite);
  border: 1px solid rgba(200,150,42,0.3);
  padding: 6px 14px;
  border-radius: 2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(14,34,56,0.98);
    padding: 1.5rem var(--gutter);
    gap: 1.25rem;
    border-bottom: 1px solid rgba(200,150,42,0.2);
  }
  .nav-links.open .nav-cta { align-self: flex-start; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .card-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
}
