/* ═══════════════════════════════════════════════════════════
   ÉGLISE TERRE SACRÉE — Design System
   Inspiré EMCI TV · Identité noir / orange / bleu / rouge
   ═══════════════════════════════════════════════════════════ */

:root {
  --black: #0a0a0c;
  --black-soft: #12121a;
  --black-card: #1a1a24;
  --white: #ffffff;
  --gray-100: #f4f4f6;
  --gray-300: #b0b0bc;
  --gray-500: #6b6b7b;
  --red: #e53935;
  --orange: #ff9800;
  --orange-light: #ffb74d;
  --blue: #42a5f5;
  --blue-dark: #1565c0;
  --gold: #d4a853;
  --gradient-brand: linear-gradient(135deg, var(--red) 0%, var(--orange) 50%, var(--blue) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(10,10,12,0) 0%, rgba(10,10,12,0.85) 60%, var(--black) 100%);
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(255,152,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Montserrat', var(--font);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }

.container {
  width: min(1280px, 92vw);
  margin-inline: auto;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.site-header.scrolled {
  background: rgba(10,10,12,0.98);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 48px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text { display: block; }
  .logo-text span:first-child {
    display: block;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }
  .logo-text span:last-child {
    font-size: 0.7rem;
    color: var(--gray-300);
    letter-spacing: 0.12em;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-300);
  border-radius: 8px;
  transition: all var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.nav-link.live {
  color: var(--red);
  font-weight: 600;
}

.nav-link.live::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(229,57,53,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(229,57,53,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.btn-ghost:hover { background: rgba(255,255,255,0.14); }

.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: var(--black);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav .btn { width: 100%; margin-top: 1rem; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

/* Carrousel d'images de fond */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--pos, center center);
  filter: brightness(0.92) contrast(1.06) saturate(1.08);
  transform: scale(1);
  will-change: transform;
}

.hero-slide.active img {
  animation: heroKenBurns 8s ease-out forwards;
}

.hero-slide--enhance img {
  filter: brightness(1.12) contrast(1.18) saturate(1.12);
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(10, 10, 12, 0.35) 0%, rgba(10, 10, 12, 0.72) 100%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.4) 0%, rgba(10, 10, 12, 0.55) 45%, rgba(10, 10, 12, 0.88) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 6rem;
  width: 100%;
}

.hero-content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-carousel-nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.15);
}

.hero-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 12, 0.5);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.hero-arrow:hover {
  background: rgba(255, 152, 0, 0.25);
  border-color: var(--orange);
  color: var(--orange);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(229,57,53,0.2);
  border: 1px solid rgba(229,57,53,0.4);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #ff6b6b;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 1rem;
  margin-inline: auto;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.hero h1 .highlight {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--gray-100);
  max-width: 680px;
  margin-bottom: 2rem;
  margin-inline: auto;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.stat-item {
  text-align: center;
  min-width: 120px;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-item span {
  font-size: 0.85rem;
  color: var(--gray-300);
}

@media (max-width: 640px) {
  .hero-content {
    padding-bottom: 7rem;
  }

  .hero-carousel-nav {
    bottom: 1.25rem;
    gap: 0.5rem;
  }

  .hero-arrow {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }

  .hero-stats {
    gap: 1.25rem 1.5rem;
  }

  .stat-item {
    min-width: 100px;
  }
}

/* ─── SECTIONS ─── */
section { padding: 5rem 0; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

.section-header p {
  color: var(--gray-300);
  max-width: 500px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
}

.link-arrow:hover { gap: 0.75rem; }

/* ─── LIVE PLAYER ─── */
.live-section {
  background: var(--black-soft);
}

.live-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .live-grid { grid-template-columns: 1.6fr 1fr; }
}

.video-player {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--black-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.video-player iframe,
.video-player .player-placeholder {
  width: 100%; height: 100%;
  border: none;
}

.player-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--black-card) 0%, #0d1520 100%);
  cursor: pointer;
}

.player-placeholder .play-btn {
  width: 80px; height: 80px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-glow);
  transition: transform var(--transition);
}

.player-placeholder:hover .play-btn { transform: scale(1.08); }

.live-now {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.live-now h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-now .live-tag {
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 700;
}

.now-playing {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.now-playing img {
  width: 120px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
}

.now-playing-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.now-playing-info span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.upcoming-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.875rem;
}

.upcoming-list .time {
  color: var(--orange);
  font-weight: 700;
  min-width: 50px;
}

/* ─── PROGRAM GRID ─── */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.program-card {
  background: var(--black-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
  cursor: pointer;
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,152,0,0.3);
  box-shadow: var(--shadow-glow);
}

.program-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.program-card-body { padding: 1.25rem; }

.program-card .duration {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.program-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.program-card .show-name {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ─── ÉMISSIONS / SHOWS ─── */
.shows-scroll {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.25rem;
}

.show-item {
  text-align: center;
  transition: transform var(--transition);
}

.show-item:hover { transform: scale(1.05); }

.show-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
}

.show-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.show-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

/* ─── PARTNER BANNER ─── */
.partner-banner {
  background: linear-gradient(135deg, #1a1025 0%, #0d1520 50%, #1a0a0a 100%);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .partner-banner { grid-template-columns: 1.2fr 1fr; padding: 3.5rem; }
}

.partner-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,83,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.partner-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.partner-banner h2 span { color: var(--gold); }

.partner-banner p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
}

.partner-features {
  display: grid;
  gap: 0.75rem;
}

.partner-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-300);
}

.partner-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: rgba(212,168,83,0.2);
  color: var(--gold);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── DONATION CTA ─── */
.donate-section {
  background: var(--black-soft);
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .donate-grid { grid-template-columns: 1fr 1fr; }
}

.donate-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.donate-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.amount-btn {
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.amount-btn:hover, .amount-btn.active {
  border-color: var(--orange);
  background: rgba(255,152,0,0.1);
  color: var(--orange);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.payment-badge {
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ─── VISION / SACRÉE ─── */
.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vision-grid { grid-template-columns: 1fr 1fr; }
}

.vision-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.vision-card::before {
  content: attr(data-letter);
  position: absolute;
  top: -20px; right: 20px;
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  opacity: 0.06;
  line-height: 1;
}

.vision-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--orange);
}

.vision-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
}

.pillars {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.pillar {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--black-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
}

.pillar strong {
  display: block;
  font-family: var(--font-display);
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.pillar span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ─── EVENTS ─── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.event-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.event-card-body { padding: 1.5rem; }

.event-date {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(212,168,83,0.15);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.event-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.event-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray-500);
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: var(--gray-300);
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-500);
  padding: 0.35rem 0;
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--gray-500);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: calc(var(--header-h) + 4rem) 0 3rem;
  background: linear-gradient(180deg, var(--black-soft) 0%, var(--black) 100%);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--gray-300);
  max-width: 600px;
  margin-inline: auto;
}

/* ─── FORMS ─── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--gray-300);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--orange);
}

.form-control::placeholder { color: var(--gray-500); }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* ─── PARTNER LOGIN PAGE ─── */
.auth-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - var(--header-h));
  padding-top: var(--header-h);
}

@media (min-width: 900px) {
  .auth-layout { grid-template-columns: 1fr 1fr; }
}

.auth-visual {
  display: none;
  position: relative;
  background: var(--black-soft);
  overflow: hidden;
}

@media (min-width: 900px) {
  .auth-visual { display: block; }
}

.auth-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.auth-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,12,0.7) 0%, rgba(212,168,83,0.15) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
}

.auth-form-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
}

.auth-form-box {
  width: min(420px, 100%);
}

.auth-form-box h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.auth-form-box > p {
  color: var(--gray-500);
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  background: rgba(255,255,255,0.05);
  padding: 0.35rem;
  border-radius: 50px;
}

.auth-tab {
  flex: 1;
  padding: 0.6rem;
  background: none;
  border: none;
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

.auth-tab.active {
  background: var(--gradient-brand);
  color: var(--white);
}

.dashboard-preview {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.dash-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.dash-stat {
  background: rgba(255,255,255,0.04);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
}

.dash-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--gold);
  font-family: var(--font-display);
}

.dash-stat span {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* ─── SCHEDULE TABLE ─── */
.schedule-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.schedule-tab {
  padding: 0.6rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  color: var(--gray-300);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.schedule-tab.active, .schedule-tab:hover {
  background: rgba(255,152,0,0.15);
  border-color: var(--orange);
  color: var(--orange);
}

.schedule-list .schedule-item {
  display: grid;
  grid-template-columns: 70px 120px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 640px) {
  .schedule-list .schedule-item {
    grid-template-columns: 60px 1fr;
  }
  .schedule-list .schedule-item .show-name { display: none; }
}

.schedule-item .time {
  font-weight: 700;
  color: var(--orange);
  font-size: 0.9rem;
}

.schedule-item .duration {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.schedule-item .title {
  font-weight: 500;
}

.schedule-item .show-name {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}

.contact-info-card {
  background: var(--black-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(255,152,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.95rem;
}

.map-placeholder {
  aspect-ratio: 16/9;
  background: var(--black-card);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  margin-top: 1.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ─── IMPLANTATIONS ─── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.location-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--black-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.location-chip:hover {
  border-color: rgba(255,152,0,0.3);
}

.location-chip .flag {
  font-size: 1.5rem;
}

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 1rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(120%);
  transition: transform var(--transition);
  box-shadow: var(--shadow);
}

.toast.show { transform: translateY(0); }

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.bg-soft { background: var(--black-soft); }
