/* ============================================
   ESTRELLA MARINA — ESTILOS PRINCIPALES
   Versión: 1.0 | estrellamarina.cl
   Paleta: Negro #0a0a0a | Rojo #e01010 | Blanco #ffffff
   ============================================ */

/* ── VARIABLES ─────────────────────────────── */
:root {
  --black:        #0a0a0a;
  --black-deep:   #000000;
  --black-card:   #111111;
  --black-input:  #1a1a1a;
  --black-border: #222222;
  --red:          #e01010;
  --red-dark:     #b50d0d;
  --red-light:    #ff2222;
  --red-glow:     rgba(224, 16, 16, 0.3);
  --white:        #ffffff;
  --white-soft:   #f0f0f0;
  --white-dim:    #cccccc;
  --white-muted:  #888888;
  --gold:         #f0b429;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --nav-h: 72px;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-red: 0 4px 32px rgba(224, 16, 16, 0.25);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.6);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.8);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
}

/* ── RESET & BASE ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover { opacity: 0.85; }
a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}

ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── LAYOUT ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
  opacity: 1;
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
  opacity: 1;
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  opacity: 1;
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-xs { padding: 7px 14px; font-size: 0.78rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── SECTION SHARED ──────────────────────────── */
.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.section-label.light { color: var(--red-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--white);
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-subtitle.light { color: rgba(255,255,255,0.7); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-title { margin-bottom: 16px; }

/* Tag / pill */
.tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  background: rgba(224, 16, 16, 0.15);
  border: 1px solid rgba(224, 16, 16, 0.35);
  color: var(--red-light);
}

/* ─────────────────────────────────────────────
   HEADER / NAV
───────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--black-border);
  transition: background var(--transition), box-shadow var(--transition);
}
#site-header.scrolled {
  background: rgba(10, 10, 10, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  opacity: 1 !important;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.logo-lastname {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.logo-mic-icon {
  font-size: 1.4rem;
  filter: grayscale(0.2);
}

/* Nav links desktop */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links li a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--white-dim);
  transition: color var(--transition-fast), background var(--transition-fast);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  opacity: 1;
}

/* Nav CTAs */
.nav-ctas {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  margin-left: auto;
}
.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--black-card);
  border-bottom: 1px solid var(--black-border);
  padding: 24px;
  z-index: 999;
  animation: slideDown 0.25s ease;
}
.mobile-menu[hidden] { display: none; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}
.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--white-dim);
  transition: all var(--transition-fast);
}
.mobile-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  opacity: 1;
}
.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero-section {
  min-height: 100svh;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(224,16,16,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 20% 30%, rgba(224,16,16,0.05) 0%, transparent 50%),
              var(--black);
  z-index: 0;
}

.hero-spotlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}
.hero-spotlight-1 {
  width: 500px; height: 500px;
  background: var(--red);
  top: -100px; right: 10%;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-spotlight-2 {
  width: 300px; height: 300px;
  background: var(--red-dark);
  bottom: 20%; left: 5%;
  animation: floatGlow 6s ease-in-out infinite reverse;
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(20px, -20px); }
}

.hero-stage-lights {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  pointer-events: none;
}
.stage-light {
  display: block;
  width: 2px;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255,200,100,0.2), transparent);
  transform-origin: top center;
  animation: stageSway 4s ease-in-out infinite;
}
.stage-light:nth-child(2) { animation-delay: 0.5s; height: 280px; }
.stage-light:nth-child(3) { animation-delay: 1s; }
@keyframes stageSway {
  0%, 100% { transform: rotate(-5deg); }
  50%       { transform: rotate(5deg); }
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Hero text */
.hero-text { display: flex; flex-direction: column; gap: 20px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(224,16,16,0.12);
  border: 1px solid rgba(224,16,16,0.3);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red-light);
  width: fit-content;
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 0.95;
}
.hero-title-star {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  text-transform: uppercase;
}
.hero-title-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--red);
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--red);
  text-shadow: 0 0 40px rgba(224,16,16,0.5);
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.hero-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 520px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-social {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}
.hero-social a {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 1rem;
  transition: all var(--transition);
}
.hero-social a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
  opacity: 1;
}

/* Hero image */
.hero-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--red), transparent 60%);
  z-index: 0;
}
.hero-photo {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
  display: block;
}

.hero-photo-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--red);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  z-index: 2;
  text-align: center;
  box-shadow: var(--shadow-red);
}
.photo-badge-text {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}
.photo-badge-sub {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.1em;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  width: 100%;
  max-width: 440px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--red-light);
}
.stat-label {
  font-size: 0.72rem;
  color: var(--white-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--white-muted);
  font-size: 0.9rem;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 1;
}
.hero-scroll-indicator span {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, var(--white-muted));
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────── */
.about-section {
  padding: 100px 0;
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Images */
.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 74%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-img-secondary {
  position: absolute;
  bottom: 40px; right: 0;
  width: 44%;
  height: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--black);
  box-shadow: var(--shadow-card);
}
.about-img-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-accent-box {
  position: absolute;
  top: 40%;
  right: -16px;
  background: var(--red);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--white);
  box-shadow: var(--shadow-red);
  z-index: 5;
  max-width: 180px;
}

/* About text */
.about-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--white-dim);
  margin-bottom: 20px;
}
.about-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--red-light);
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
}
.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.about-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-dim);
}
.about-bullets li i {
  color: var(--red);
  width: 18px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   NEURODIVERTIDA SECTION
───────────────────────────────────────────── */
.neuro-section {
  padding: 100px 0;
  background: var(--black-card);
  position: relative;
  overflow: hidden;
}
.neuro-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.neuro-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
}
.neuro-glow-1 {
  width: 600px; height: 400px;
  background: var(--red);
  top: -100px; right: -100px;
}
.neuro-glow-2 {
  width: 400px; height: 300px;
  background: var(--red-dark);
  bottom: -80px; left: -80px;
}

.neuro-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.neuro-desc {
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.neuro-micro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--red-light);
  margin-bottom: 28px;
}
.neuro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 7px 16px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(224,16,16,0.1);
  border: 1px solid rgba(224,16,16,0.3);
  color: var(--red-light);
  transition: all var(--transition-fast);
}
.pill:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.neuro-photo-wrap {
  position: relative;
}
.neuro-photo-wrap img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.neuro-photo-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.neuro-photo-label span {
  color: var(--red-light);
}

/* ─────────────────────────────────────────────
   GALLERY SECTION
───────────────────────────────────────────── */
.gallery-section {
  padding: 80px 0;
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-md);
  margin: 0;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition);
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item-large {
  grid-column: 1 / 3;
}
.gallery-item-large img { height: 340px; }
.gallery-item-wide {
  grid-column: 1 / 3;
}
.gallery-item-wide img { height: 280px; }

/* ─────────────────────────────────────────────
   SHOWS SECTION
───────────────────────────────────────────── */
.shows-section {
  padding: 100px 0;
  background: #0d0000;
  position: relative;
  overflow: hidden;
}
.shows-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.shows-curtain {
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(to bottom, var(--red-dark), #3d0000);
  opacity: 0.6;
}
.shows-curtain-left  { left: 0; border-radius: 0 0 40px 0; }
.shows-curtain-right { right: 0; border-radius: 0 0 0 40px; }

.shows-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.show-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 28px;
  align-items: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.show-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--red);
  border-radius: 4px 0 0 4px;
}
.show-card:hover {
  background: rgba(224,16,16,0.06);
  border-color: rgba(224,16,16,0.2);
  transform: translateX(4px);
}

.show-date-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(224,16,16,0.12);
  border-radius: var(--radius-sm);
  padding: 14px 8px;
  border: 1px solid rgba(224,16,16,0.25);
}
.show-day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--red-light);
}
.show-month {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--white-dim);
  text-transform: uppercase;
}
.show-year {
  font-size: 0.7rem;
  color: var(--white-muted);
}

.show-info { flex: 1; }
.show-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 6px;
}
.show-time, .show-city {
  font-size: 0.82rem;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.show-time i, .show-city i { color: var(--red); font-size: 0.75rem; }

.show-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.show-venue {
  font-size: 0.88rem;
  color: var(--white-muted);
  margin-bottom: 8px;
}
.show-desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  margin-bottom: 16px;
}
.show-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.show-flyer {
  flex-shrink: 0;
}
.show-flyer img {
  width: 100px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card);
}

/* Empty state */
.shows-empty {
  text-align: center;
  padding: 40px;
  border: 1px dashed rgba(224,16,16,0.2);
  border-radius: var(--radius-md);
  background: rgba(224,16,16,0.03);
}
.shows-empty i {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 16px;
  display: block;
  opacity: 0.6;
}
.shows-empty p {
  color: var(--white-dim);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────────
   VIDEOS SECTION
───────────────────────────────────────────── */
.videos-section {
  padding: 100px 0;
  background: var(--black-card);
}

.video-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}
.cat-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-fast);
}
.cat-btn:hover, .cat-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.video-card {
  background: var(--black);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--black-border);
  transition: all var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(224,16,16,0.2);
}
.video-card[data-category].hidden { display: none; }

.video-thumb {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}
.video-card:hover .video-thumb img { transform: scale(1.05); }

.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(224,16,16,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(224,16,16,0.4);
}
.video-thumb:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--red);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}

.video-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  font-size: 0.75rem;
  font-family: var(--font-display);
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 3px 8px;
  border-radius: 4px;
}

.video-info {
  padding: 16px 20px 10px;
}
.video-cat-tag {
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-light);
  display: block;
  margin-bottom: 6px;
}
.video-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.video-cta-soft {
  padding: 8px 20px 14px;
  font-size: 0.78rem;
  color: var(--white-muted);
  font-style: italic;
  transition: color var(--transition-fast);
}
.video-card:hover .video-cta-soft { color: var(--red-light); }

.videos-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white-dim);
  font-size: 0.95rem;
}

/* ─────────────────────────────────────────────
   BOOKING SECTION
───────────────────────────────────────────── */
.booking-section {
  padding: 100px 0;
  background: #080808;
  position: relative;
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.booking-glow {
  position: absolute;
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(224,16,16,0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.booking-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.booking-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.services-list li i {
  color: var(--red);
  font-size: 1.1rem;
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.services-list li div {
  display: flex;
  flex-direction: column;
}
.services-list li strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}
.services-list li span {
  font-size: 0.85rem;
  color: var(--white-muted);
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--red-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-email-link:hover { color: var(--white); opacity: 1; }

/* Form */
.booking-form-wrap {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.form-group label span {
  color: var(--red-light);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black-input);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224,16,16,0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--white-muted);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-group input[type="date"] {
  color-scheme: dark;
}

/* Checkbox */
.form-checkbox { flex-direction: row; gap: 12px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--white-dim);
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
  font-weight: 400;
}
.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.checkbox-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  min-width: 20px;
  background: var(--black-input);
  border: 1px solid var(--black-border);
  border-radius: 4px;
  margin-top: 1px;
  transition: all var(--transition-fast);
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--red);
  border-color: var(--red);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '✓';
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
}

.form-note {
  font-size: 0.78rem;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  text-align: center;
}
.form-note i { color: var(--red); }

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 0;
  background: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 24px;
  font-size: 4rem;
  color: rgba(224,16,16,0.15);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card:hover {
  border-color: rgba(224,16,16,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.testimonial-featured {
  background: rgba(224,16,16,0.06);
  border-color: rgba(224,16,16,0.2);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-dim);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-style: normal;
}
.testimonial-card footer strong {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.testimonial-card footer span {
  font-size: 0.78rem;
  color: var(--white-muted);
}

/* ─────────────────────────────────────────────
   MEDIA KIT
───────────────────────────────────────────── */
.mediakit-section {
  padding: 100px 0;
  background: var(--black-card);
  position: relative;
}

.mediakit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mediakit-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.mediakit-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.mediakit-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--white-dim);
}
.mediakit-includes li i { color: var(--red); font-size: 0.75rem; }

.mediakit-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.mediakit-photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.mediakit-photo-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* ─────────────────────────────────────────────
   NEWSLETTER
───────────────────────────────────────────── */
.newsletter-section {
  padding: 100px 0;
  background: #0d0000;
  position: relative;
  overflow: hidden;
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(224,16,16,0.1), transparent 70%);
  pointer-events: none;
}
.newsletter-stars {
  position: absolute;
  width: 100%;
  top: 20px;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}
.nl-star {
  font-size: 1rem;
  color: rgba(224,16,16,0.3);
  animation: twinkle 3s ease-in-out infinite;
}
.nl-star:nth-child(2) { animation-delay: 1s; }
.nl-star:nth-child(3) { animation-delay: 2s; }
@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}

.newsletter-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.newsletter-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.newsletter-trust {
  font-size: 0.88rem;
  color: var(--white-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsletter-trust i { color: var(--red); }

.newsletter-form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(224,16,16,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.nl-submit { align-self: stretch; }

/* ─────────────────────────────────────────────
   FAQ
───────────────────────────────────────────── */
.faq-section {
  padding: 100px 0;
  background: var(--black);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border: 1px solid var(--black-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:hover { border-color: rgba(224,16,16,0.2); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  background: var(--black-card);
  text-align: left;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.faq-question:hover { background: rgba(224,16,16,0.05); color: var(--white); }
.faq-question[aria-expanded="true"] {
  background: rgba(224,16,16,0.08);
  color: var(--red-light);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 0.8rem;
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  padding: 0 24px 22px;
  background: rgba(224,16,16,0.03);
  border-top: 1px solid var(--black-border);
}
.faq-answer[hidden] { display: none; }
.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--white-dim);
  padding-top: 16px;
}
.faq-answer a {
  color: var(--red-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-answer a:hover { color: var(--white); opacity: 1; }

/* ─────────────────────────────────────────────
   CONTACTO
───────────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: var(--black-card);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-desc {
  font-size: 1.05rem;
  color: var(--white-dim);
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item i {
  width: 40px; height: 40px;
  background: rgba(224,16,16,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item strong {
  font-size: 0.82rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
}
.contact-item a, .contact-item span {
  font-size: 0.95rem;
  color: var(--white);
}
.contact-item a:hover { color: var(--red-light); opacity: 1; }

.contact-social {
  display: flex;
  gap: 12px;
}
.contact-social a {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1.1rem;
  color: var(--white-dim);
  transition: all var(--transition);
}
.contact-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-3px);
  opacity: 1;
}

.contact-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#site-footer {
  background: var(--black-deep);
  border-top: 1px solid var(--black-border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.footer-logo-tag {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-display);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--white-muted);
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white-muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  opacity: 1;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 20px;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a, .footer-contact a {
  font-size: 0.9rem;
  color: var(--white-muted);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-nav a:hover, .footer-contact a:hover, .footer-contact span {
  color: var(--white);
  opacity: 1;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--white-muted);
  font-size: 0.9rem;
}
.footer-contact i { color: var(--red); margin-top: 2px; font-size: 0.85rem; }

.footer-tickets p {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-nl-btn { margin-bottom: 12px; display: inline-flex; }
.footer-shows-link {
  display: block;
  font-size: 0.85rem;
  color: var(--red-light);
}
.footer-shows-link:hover { opacity: 1; color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--white-muted);
}
.footer-privacy {
  font-size: 0.78rem;
  color: #555;
}
.footer-privacy a {
  color: #555;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-privacy a:hover { color: var(--white-muted); opacity: 1; }

/* ─────────────────────────────────────────────
   MOBILE CTA BAR
───────────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  height: 68px;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid var(--black-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.mobile-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  height: 100%;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--white-dim);
  transition: all var(--transition-fast);
}
.mobile-cta-btn i { font-size: 1.1rem; }
.mobile-cta-btn:hover, .mobile-cta-btn:active { opacity: 1; }
.mobile-cta-shows { border-right: 1px solid var(--black-border); }
.mobile-cta-hire {
  background: var(--red);
  color: var(--white);
}
.mobile-cta-hire:hover { background: var(--red-dark); }

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

/* ─────────────────────────────────────────────
   RESPONSIVE — TABLET (< 1024px)
───────────────────────────────────────────── */
@media (max-width: 1023px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-toggle { display: flex; }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-text { align-items: center; }
  .hero-body { text-align: center; max-width: 100%; }
  .hero-image-col { order: -1; align-items: center; }
  .hero-photo-frame { max-width: 320px; }
  .hero-photo { height: 420px; }
  .hero-stats { max-width: 320px; }
  .desktop-break { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .about-accent-box { display: none; }

  .neuro-content { grid-template-columns: 1fr; gap: 48px; }
  .neuro-photo-wrap img { height: 400px; }

  .booking-grid { grid-template-columns: 1fr; gap: 48px; }
  .booking-form-wrap { padding: 32px 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-image { display: none; }

  .newsletter-content { grid-template-columns: 1fr; gap: 40px; }
  .nl-form-row { grid-template-columns: 1fr; }

  .mediakit-grid { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .videos-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-large { grid-column: 1 / 3; }
  .gallery-item-wide { grid-column: 1 / 3; }

  .show-card { grid-template-columns: 80px 1fr; }
  .show-flyer { display: none; }
}

/* ─────────────────────────────────────────────
   RESPONSIVE — MOBILE (< 640px)
───────────────────────────────────────────── */
@media (max-width: 639px) {
  :root { --nav-h: 62px; }

  .container { padding: 0 16px; }

  .hero-section { padding: calc(var(--nav-h) + 24px) 0 100px; }
  .hero-photo { height: 340px; }
  .hero-photo-frame { max-width: 280px; }
  .hero-stats { max-width: 100%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .btn-lg { padding: 15px 24px; font-size: 0.9rem; }

  .about-images { height: 300px; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large, .gallery-item-wide { grid-column: 1; }
  .gallery-item img, .gallery-item-large img, .gallery-item-wide img { height: 220px; }

  .show-card { grid-template-columns: 72px 1fr; padding: 20px; gap: 16px; }
  .show-name { font-size: 1.1rem; }

  .videos-grid { grid-template-columns: 1fr; }
  .video-categories { gap: 8px; }
  .cat-btn { padding: 7px 14px; font-size: 0.74rem; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 24px 16px; }
  .newsletter-form { padding: 24px 16px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-cta-bar { display: flex; }

  /* Padding bottom for fixed mobile cta */
  main { padding-bottom: 68px; }
  #site-footer { padding-bottom: 80px; }
}

/* ─────────────────────────────────────────────
   PRINT / REDUCED MOTION
───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

@media print {
  #site-header, .mobile-cta-bar, .hero-bg, .neuro-bg, .booking-bg, .newsletter-bg { display: none; }
  body { background: white; color: black; }
  .section-title, .hero-title-star { color: black; }
  .hero-title-name { color: #b50d0d; }
}
