/* ==========================================================================
   WAIT UNTIL YOU TRY — Brand Design System & Stylesheet
   Theme: Obsidian & Cast Iron Culinary Luxury with Glowing Copper/Amber Accents
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800&display=swap');

:root {
  --bg-obsidian: #0d0d11;
  --bg-castiron: #121110;
  --bg-surface: #171615;
  --bg-card: #1c1a18;
  --bg-card-hover: #24211e;
  --bg-glass: rgba(18, 17, 16, 0.82);

  --accent-copper: #e9b783;
  --accent-amber: #d48843;
  --accent-ember: #e26928;
  --accent-gold: #f5d4a4;

  --text-cream: #fbf7eb;
  --text-muted: #c8bfb4;
  --text-dim: #7f746b;

  --border-subtle: rgba(233, 183, 131, 0.12);
  --border-medium: rgba(233, 183, 131, 0.24);
  --border-glow: rgba(233, 183, 131, 0.45);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-card: 0 16px 36px rgba(0, 0, 0, 0.55);
  --shadow-glow: 0 10px 40px rgba(212, 136, 67, 0.22);
  --shadow-modal: 0 30px 80px rgba(0, 0, 0, 0.85);

  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;

  --max-width: 1280px;
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-cream);
  background-color: var(--bg-obsidian);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at 50% 0%, #1f1a16 0%, #0d0d11 65%);
  overflow-x: hidden;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-cream);
  line-height: 1.15;
}

p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

a {
  color: var(--accent-copper);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(13, 13, 17, 0.95);
  border-bottom: 1px solid var(--border-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.site-header .container {
  max-width: 1560px;
  padding: 0 clamp(20px, 3.5vw, 48px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  padding: 12px 0;
  gap: 24px;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  flex-shrink: 0;
}

.brand-logo-link:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.brand-logo-img {
  height: clamp(72px, 6.5vw, 96px);
  width: auto;
  max-width: 380px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(28px, 3vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-cream);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-copper), var(--accent-amber));
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-amber));
  color: #0d0d11;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(212, 136, 67, 0.35);
  transition: all 0.25s ease;
}

.nav-cta-btn:hover {
  color: #0d0d11;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 136, 67, 0.55);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-cream);
  padding: 8px 12px;
  cursor: pointer;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  padding: clamp(60px, 10vw, 110px) 0 clamp(40px, 8vw, 80px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-copper);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(233, 183, 131, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
}

.hero-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-amber);
  box-shadow: 0 0 10px var(--accent-amber);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-copper) 50%, var(--accent-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-copper), var(--accent-amber));
  color: #0d0d11;
  box-shadow: 0 6px 24px rgba(212, 136, 67, 0.35);
}

.btn-primary:hover {
  color: #0d0d11;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 136, 67, 0.5);
}

.btn-secondary {
  background: rgba(28, 26, 24, 0.8);
  color: var(--text-cream);
  border: 1px solid var(--border-medium);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  color: var(--accent-gold);
  border-color: var(--accent-copper);
  transform: translateY(-2px);
}

.hero-channel-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.hero-channel-strip span {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.social-pill:hover {
  background: rgba(233, 183, 131, 0.12);
  border-color: var(--accent-copper);
  color: var(--text-cream);
  transform: translateY(-1px);
}

.social-pill svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Hero Visual Art Showcase */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-poster-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 13;
}

.hero-poster-glow {
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(212, 136, 67, 0.3) 0%, transparent 70%);
  filter: blur(35px);
  z-index: 1;
  pointer-events: none;
}

.hero-poster-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-medium);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-poster-card.card-primary {
  width: 82%;
  aspect-ratio: 9 / 16;
  left: 14%;
  top: 5%;
  z-index: 3;
}

.hero-poster-card.card-secondary {
  width: 76%;
  aspect-ratio: 9 / 16;
  left: 0;
  top: 18%;
  transform: rotate(-6deg);
  z-index: 2;
  opacity: 0.85;
}

.hero-poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual:hover .card-secondary {
  transform: rotate(-9deg) translate(-10px, -5px);
}

.hero-visual:hover .card-primary {
  transform: rotate(2deg) translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 136, 67, 0.25);
}

.hero-badge-live {
  position: absolute;
  bottom: 20px;
  right: 10px;
  z-index: 4;
  background: rgba(18, 17, 16, 0.9);
  backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-medium);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-live .pulse-dot {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 0 10px #25d366;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.hero-badge-live div h4 {
  font-size: 0.85rem;
  margin-bottom: 2px;
}

.hero-badge-live div p {
  font-size: 0.75rem;
  color: var(--accent-copper);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 60px);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-copper);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Featured Dishes Showcase Grid
   ========================================================================== */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.dish-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: all 0.35s ease;
  position: relative;
}

.dish-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-copper);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  background: var(--bg-card-hover);
}

.dish-card.locked {
  border: 1px solid rgba(233, 183, 131, 0.18);
  background: linear-gradient(180deg, #181615 0%, #131211 100%);
}

.dish-card.locked:hover {
  border-color: var(--accent-copper);
  box-shadow: var(--shadow-card), 0 10px 35px rgba(212, 136, 67, 0.22);
  transform: translateY(-6px);
}

.dish-thumbnail-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 14;
  overflow: hidden;
  background: #08080a;
}

.dish-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-thumbnail.blurred {
  filter: blur(25px) grayscale(85%) brightness(0.4) contrast(1.1);
  transform: scale(1.3);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.dish-card.locked:hover .dish-thumbnail.blurred {
  filter: blur(18px) grayscale(65%) brightness(0.48) contrast(1.15);
  transform: scale(1.35);
}

.dish-locked-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: radial-gradient(circle at center, rgba(13, 13, 17, 0.4) 0%, rgba(13, 13, 17, 0.75) 100%);
  z-index: 2;
  pointer-events: none;
}

.dish-locked-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(18, 17, 16, 0.9);
  border: 1px solid var(--border-medium);
  color: var(--accent-copper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7), 0 0 20px rgba(212, 136, 67, 0.25);
  transition: all 0.3s ease;
}

.dish-card.locked:hover .dish-locked-icon {
  transform: scale(1.12);
  background: var(--accent-copper);
  color: #0d0d11;
  box-shadow: 0 0 35px rgba(212, 136, 67, 0.6);
}

.dish-locked-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.dish-locked-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(13, 13, 17, 0.9);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.dish-badge-ep {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(13, 13, 17, 0.85);
  backdrop-filter: blur(8px);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-gold);
  border: 1px solid var(--border-medium);
  z-index: 3;
}

.dish-content {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-origin-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--accent-copper);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dish-title {
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.25;
}

.dish-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.dish-sound-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(233, 183, 131, 0.07);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.dish-sound-pill svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

.dish-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.dish-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-copper);
  cursor: pointer;
}

.dish-watch-link:hover {
  color: var(--accent-gold);
  gap: 9px;
}

/* ==========================================================================
   The Concept & Formula Section
   ========================================================================== */
.concept-section {
  background: linear-gradient(180deg, rgba(18, 17, 16, 0) 0%, rgba(20, 19, 18, 0.9) 50%, rgba(18, 17, 16, 0) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.pillar-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(233, 183, 131, 0.1);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-copper);
}

.pillar-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.pillar-num {
  position: absolute;
  top: 30px;
  right: 30px;
  font-family: var(--font-accent);
  font-size: 2.2rem;
  color: rgba(233, 183, 131, 0.18);
}

.pillar-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.pillar-card p {
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ==========================================================================
   Channels Section
   ========================================================================== */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.channel-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}

.channel-card:hover {
  border-color: var(--accent-copper);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.channel-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  color: var(--text-cream);
  transition: all 0.3s ease;
}

.channel-card:hover .channel-icon {
  transform: scale(1.1);
  background: var(--accent-copper);
  color: #0d0d11;
}

.channel-icon svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.channel-card h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.channel-handle {
  font-size: 0.95rem;
  color: var(--accent-copper);
  font-weight: 600;
  margin-bottom: 14px;
}

.channel-card p {
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.55;
}

/* ==========================================================================
   AI Transparency & Culinary Disclaimer Banner
   ========================================================================== */
.transparency-callout {
  margin-top: 50px;
  background: rgba(28, 26, 24, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.transparency-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--accent-copper);
  margin-top: 2px;
}

.transparency-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.transparency-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.transparency-content p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* ==========================================================================
   Site Footer (CRITICAL FOR TIKTOK REVIEW AUDIT)
   Terms and Privacy links MUST be prominently visible.
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background: #09090c;
  border-top: 1px solid var(--border-medium);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-top: 16px;
  max-width: 360px;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-cream);
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-copper);
  transform: translateX(3px);
}

/* Highlighted direct links for reviewers */
.footer-links a.audit-link {
  font-weight: 600;
  color: var(--accent-copper);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom-links a:hover {
  color: var(--accent-copper);
}

/* ==========================================================================
   Content / Legal Pages (Terms, Privacy, Callback)
   ========================================================================== */
.legal-page-header {
  padding: 70px 0 40px;
  background: radial-gradient(circle at 50% 0%, #201a14 0%, var(--bg-obsidian) 75%);
  border-bottom: 1px solid var(--border-subtle);
  text-align: center;
}

.legal-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-copper);
  margin-bottom: 12px;
}

.legal-page-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 14px;
}

.legal-page-subtitle {
  font-size: 1rem;
  color: var(--text-dim);
}

.legal-content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px clamp(16px, 4vw, 30px) 90px;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 50px);
  box-shadow: var(--shadow-card);
}

.legal-toc {
  background: rgba(13, 13, 17, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  margin-bottom: 40px;
}

.legal-toc h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-copper);
  margin-bottom: 14px;
}

.legal-toc ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-toc li a {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.legal-toc li a:hover {
  color: var(--accent-gold);
}

.legal-section {
  margin-bottom: 44px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.6rem;
  color: var(--text-cream);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-section h3 {
  font-size: 1.2rem;
  color: var(--accent-copper);
  margin: 20px 0 10px;
}

.legal-section p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-section ul, .legal-section ol {
  padding-left: 24px;
  margin-bottom: 18px;
  color: var(--text-muted);
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-callout {
  background: rgba(233, 183, 131, 0.08);
  border-left: 4px solid var(--accent-copper);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.legal-callout p {
  color: var(--text-cream);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Callback Landing Page
   ========================================================================== */
.callback-hero {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.callback-card {
  max-width: 540px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow-modal);
  position: relative;
}

.callback-success-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 2px solid #25d366;
  color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.callback-success-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.callback-card h1 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.callback-card p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.callback-details {
  background: rgba(13, 13, 17, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-bottom: 30px;
  text-align: left;
}

.callback-details span {
  display: block;
  color: var(--accent-copper);
  font-weight: 600;
  margin-bottom: 4px;
}

/* ==========================================================================
   Video Preview Modal
   ========================================================================== */
.video-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-modal-backdrop.open {
  display: flex;
  opacity: 1;
}

.video-modal-dialog {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-modal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.video-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(13, 13, 17, 0.8);
  border: 1px solid var(--border-medium);
  color: var(--text-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-modal-close:hover {
  background: var(--accent-copper);
  color: #0d0d11;
}

.video-modal-frame-wrap {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  position: relative;
}

.video-modal-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-info {
  padding: 22px 24px;
}

.video-modal-info h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.video-modal-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-eyebrow {
    margin: 0 auto 16px;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-channel-strip {
    justify-content: center;
  }
  .hero-visual {
    margin-top: 30px;
  }
  .hero-poster-stack {
    max-width: 340px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .nav-container {
    min-height: 80px;
    padding: 8px 0;
  }
  .brand-logo-img {
    height: 54px;
    max-width: 220px;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .btn {
    width: 100%;
  }
  .hero-actions {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Contact Form Styles
   ========================================================================== */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 680px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-cream);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.required-star {
  color: var(--accent-copper);
  font-weight: bold;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(13, 13, 17, 0.85);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  color: var(--text-cream);
  font-family: inherit;
  font-size: 1rem;
  padding: 13px 18px;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-copper);
  box-shadow: 0 0 0 3px rgba(212, 136, 67, 0.2);
  background: rgba(18, 18, 24, 0.95);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #606070;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e08a4c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.form-select option {
  background: #14141a;
  color: var(--text-cream);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 34px;
  font-size: 1.05rem;
  border-radius: var(--radius-full);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.privacy-reassurance {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
}

.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  animation: fadeIn 0.3s ease;
}

.form-alert-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.form-alert-success h4 {
  color: #4ade80;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.form-alert-success p {
  color: #dcfce7;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.form-alert-error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #fca5a5;
}

.form-alert-error h4 {
  color: #f87171;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.form-alert-error p {
  color: #fee2e2;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.form-alert-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
