@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300,0,0&display=block');

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --bg:        #080808;
  --bg-alt:    #0f0f0f;
  --bg-card:   #0d0d0d;
  --accent:    #cc2200;
  --accent-h:  #e52800;
  --gold:      #c9a84c;
  --gold-l:    #d4b966;
  --text:      #f0ede6;
  --text-dim:  #9a9390;
  --border:    rgba(201,168,76,.12);
  --border-h:  rgba(201,168,76,.45);
  --r:         0px;
  --r-sm:      0px;
  --ease:      cubic-bezier(.4,0,.2,1);
}

/* ─── Selection ─────────────────────────────────────────────── */
::selection { background: var(--accent); color: #fff; }

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
body.no-scroll { overflow: hidden; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-tag {
  display: inline-block;
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.section-title { text-align: center; margin-bottom: .8rem; }
.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* Ornamento decorativo */
.ornament {
  display: flex;
  align-items: center;
  gap: .9rem;
  justify-content: center;
  margin: .6rem 0 2rem;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  max-width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament span { color: var(--gold); font-size: .85rem; letter-spacing: .1em; }

/* ─── Layout ─────────────────────────────────────────────────── */
.container { width: min(1180px, 92%); margin-inline: auto; }
section { padding: 5rem 0; }

/* ─── Botones ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  border-radius: var(--r-sm);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: all .3s var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(204,34,0,.3);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid currentColor;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}
.btn-wa {
  background: #25d366;
  color: #fff;
}
.btn-wa:hover {
  background: #1fb858;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
}

/* ─── Header ─────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(15,15,15,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .8rem 0;
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0,0,0,.5);
}
.site-header.menu-open {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo { display: flex; align-items: center; }
.logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: height .4s var(--ease), opacity .3s;
}
.site-header.scrolled .logo-img { height: 36px; }
.logo-img:hover { opacity: .85; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: .95rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color .3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
  transform-origin: left;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: .45rem 1.3rem !important;
  border: 1px solid rgba(204,34,0,.6);
  border-radius: var(--r-sm);
  color: var(--accent) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
  z-index: 1000;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 0% 100%, rgba(204,34,0,.18) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(204,34,0,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}
.hero-text { min-width: 0; }
.hero-logo-wrap { flex-shrink: 0; }
.hero-logo-img {
  width: clamp(220px, 28vw, 420px);
  height: auto;
  display: block;
  animation: fadeUp .6s .35s var(--ease) both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .7rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.4rem;
  animation: fadeUp .6s var(--ease) both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 1.6rem;
  animation: fadeUp .6s .1s var(--ease) both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 0.52em;
  color: var(--text-dim);
  font-style: normal;
  vertical-align: middle;
  letter-spacing: 0;
}
.hero-sub-row {
  display: block;
  margin-top: -0.25em;
}
.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-dim);
  margin-bottom: 2.8rem;
  max-width: 500px;
  line-height: 1.7;
  animation: fadeUp .6s .2s var(--ease) both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp .6s .3s var(--ease) both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: var(--text-dim);
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease infinite;
}
.hero-scroll svg { width: 14px; height: 14px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50%      { transform: translateX(-50%) translateY(7px); opacity: 1; }
}

/* ─── About ──────────────────────────────────────────────────── */
.about { background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--bg-alt) 0%, transparent 18%, transparent 82%, var(--bg-alt) 100%),
    linear-gradient(to bottom, var(--bg-alt) 0%, transparent 12%, transparent 82%, var(--bg-alt) 100%);
  pointer-events: none;
  z-index: 1;
}
.about-img-wrap img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top center;
  filter: brightness(.92) contrast(1.05);
  transition: filter .5s;
  display: block;
}
.about-img-wrap:hover img { filter: brightness(1) contrast(1.05); }
.about-text .section-tag { display: block; }
.about-text h2 { margin-bottom: 1rem; }
.about-text p {
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}
.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin: 1.5rem 0 2rem;
}
.about-feat {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}
.about-feat-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.about-feat span { font-size: .95rem; color: var(--text-dim); }

/* ─── Shows ─────────────────────────────────────────────────── */
.shows-section { background: var(--bg); }
.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.show-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.show-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
}
.card-img-wrap { overflow: hidden; position: relative; }
.card-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(transparent, var(--bg-alt));
  pointer-events: none;
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(.88);
  transition: filter .4s, transform .5s var(--ease);
}
.show-card:hover .card-img {
  filter: brightness(1);
  transform: scale(1.04);
}
.card-body {
  padding: 1.3rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: .45rem;
  color: var(--text);
}
.card-desc {
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: 1rem;
  font-size: .88rem;
  color: var(--gold);
  letter-spacing: .05em;
  transition: gap .25s;
}
.card-link:hover { gap: .6rem; }
.card-link svg { width: 14px; height: 14px; }

/* ─── Contact ─────────────────────────────────────────────────── */
.contact-section { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info > h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: .8rem;
}
.contact-info > p { color: var(--text-dim); margin-bottom: 1.6rem; font-size: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .9rem;
  font-size: 1rem;
  color: var(--text-dim);
}
.contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.contact-item a { color: var(--text-dim); transition: color .25s; }
.contact-item a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: #161616;
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group label .req { color: var(--accent); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  background: #1e1e1e;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  color: var(--text);
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: 1rem;
  transition: border-color .25s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154,147,144,.4); }
.form-group input:focus,
.form-group textarea:focus { border-color: rgba(201,168,76,.5); }
.form-group input.error,
.form-group textarea.error { border-color: rgba(204,34,0,.6); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-err {
  font-size: .78rem;
  color: var(--accent);
  display: none;
  margin-top: 2px;
}
.form-err.show { display: block; }
.form-submit { margin-top: 1.2rem; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1.05rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: .5rem;
}
.form-success p { color: var(--text-dim); }

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.footer-brand .logo-name { font-size: 1.2rem; }
.footer-brand p {
  margin-top: .9rem;
  font-size: .9rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 270px;
}
.footer-col h4 {
  font-family: 'Barlow', system-ui, sans-serif;
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer-col li { margin-bottom: .5rem; }
.footer-col a {
  font-size: .9rem;
  color: var(--text-dim);
  transition: color .25s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); transition: color .25s; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── WhatsApp flotante ──────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  text-decoration: none;
  animation: waPulse 3s ease infinite 2s;
}
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,.35);
  animation: none;
}
.wa-text { display: none; }

@keyframes waPulse {
  0%   { box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,.4); }
  70%  { box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(0,0,0,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ─── Page Hero (subpáginas) ─────────────────────────────────── */
.page-hero {
  padding: 9rem 0 4rem;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 110%, rgba(204,34,0,.1) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%);
  opacity: .5;
}
.page-hero .section-tag { display: block; margin-bottom: .5rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: .8rem; }
.page-hero p { color: var(--text-dim); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ─── Show page ─────────────────────────────────────────────── */
.show-content { background: var(--bg-alt); }
.show-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.show-img {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}
.show-img img {
  width: 100%;
  object-fit: cover;
}
.show-details .section-tag { display: block; }
.show-details h2 { margin-bottom: 1rem; }
.show-details p { color: var(--text-dim); margin-bottom: 1rem; }
.show-features {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.show-feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .95rem;
  color: var(--text-dim);
}
.show-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 6px;
}
.show-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* CTA section */
.cta-section {
  background: var(--bg);
  text-align: center;
}
.cta-box {
  max-width: 680px;
  margin: 0 auto;
}
.cta-box h2 { margin-bottom: .8rem; }
.cta-box p { color: var(--text-dim); margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Footer social ────────────────────────────────────────────── */
.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.2rem;
}
.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-dim);
  transition: color .3s, border-color .3s, background .3s;
}
.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--gold-l);
  background: rgba(201,168,76,.08);
}

/* ─── Show video ───────────────────────────────────────────────── */
.show-video-wrap {
  padding: 4rem 0;
  background: var(--bg);
}
.show-video {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 800px;
  margin: 0 auto;
}
.show-video iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.show-video-label {
  text-align: center;
  color: var(--text-dim);
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* ─── Form captcha ──────────────────────────────────────────────── */
.captcha-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.captcha-question { color: var(--text); font-weight: 600; }
.captcha-input-inline {
  width: 80px;
  padding: .5rem .8rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-size: 1rem;
  text-align: center;
}
.captcha-input-inline.error { border-color: var(--accent); }

/* ─── DVD ─────────────────────────────────────────────────────── */
.dvd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.dvd-video {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dvd-video iframe { width: 100%; aspect-ratio: 16/9; display: block; border: none; }
.dvd-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  margin: .8rem 0 1.2rem;
  line-height: 1;
}
.dvd-price sup { font-size: 1.4rem; vertical-align: super; }
.dvd-features { margin: 1.2rem 0 1.8rem; }
.dvd-feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .6rem;
  color: var(--text-dim);
  font-size: 1rem;
}
.dvd-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: 6px;
}
.dvd-img {
  margin-top: 1.5rem;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}
.dvd-img img { width: 100%; }

/* ─── Location / Keyword pages ───────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin: 2.5rem 0;
}
.feat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem;
  text-align: center;
  transition: border-color .3s;
}
.feat-box:hover { border-color: var(--border-h); }
.feat-icon { margin-bottom: .7rem; }
.feat-icon .material-symbols-outlined {
  font-size: 2.2rem;
  color: var(--gold);
}
.feat-box h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.feat-box p { font-size: .9rem; color: var(--text-dim); }

.faq { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.3rem 0;
}
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: .5rem;
}
.faq-a { color: var(--text-dim); font-size: .98rem; }

/* ─── Utilities ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0 !important; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-logo-wrap { display: none; }
  .about-img-wrap::after {
    background:
      linear-gradient(to bottom, var(--bg-alt) 0%, transparent 12%, transparent 80%, var(--bg-alt) 100%);
  }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }
  .about-img-wrap img { height: 380px; }
  .shows-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .dvd-grid { grid-template-columns: 1fr; }
  .show-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .site-nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,.98);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    z-index: 999;
  }
  .site-nav.open { transform: translateX(0); }
  .nav-link { font-size: 1.3rem; }
  .hamburger { display: flex; }
  .shows-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .about-feats { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .show-cta { flex-direction: column; }
  .show-cta .btn { width: 100%; justify-content: center; }
}
