/* ============================================================
   Scarlet Card Club — style.css
   Palette: White #FFFFFF | Scarlet #C0000A | Black #0D0D0D
   Fonts: Abril Fatface (headings) | DM Sans (body/UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --scarlet:        #C0000A;
  --scarlet-dark:   #8B0006;
  --scarlet-light:  #E8333B;
  --black:          #0D0D0D;
  --black-soft:     #1A1A1A;
  --white:          #FFFFFF;
  --off-white:      #F7F2F2;
  --grey-light:     #E8E0E0;
  --grey-mid:       #9E8888;
  --text-dark:      #1A1A1A;
  --text-muted:     #6B5C5C;

  --font-heading:   'Abril Fatface', serif;
  --font-body:      'DM Sans', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-card: 0 8px 32px rgba(192,0,10,0.12), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(192,0,10,0.22), 0 4px 16px rgba(0,0,0,0.14);
  --transition: 0.3s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: clip;
  max-width: 100%;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Age Gate ---------- */
#age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn 0.4s ease;
}
.age-gate-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 420px; width: 90%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(192,0,10,0.25);
  border-top: 5px solid var(--scarlet);
}
.age-gate-logo { width: 80px; margin: 0 auto 20px; }
.age-gate-box h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 12px;
}
.age-gate-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.age-gate-box p a { color: var(--scarlet); text-decoration: underline; }
.age-btn-primary {
  display: block; width: 100%;
  background: var(--scarlet);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 24px;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  transition: background var(--transition);
}
.age-btn-primary:hover { background: var(--scarlet-dark); }
.age-btn-secondary {
  display: block; width: 100%;
  background: transparent;
  color: var(--grey-mid);
  font-family: var(--font-body);
  font-size: 0.82rem;
  padding: 10px;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}
.age-btn-secondary:hover { border-color: var(--scarlet); color: var(--scarlet); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }
.header-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.header-logo img { width: 40px; height: 40px; border-radius: 50%; }
.header-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--black);
  line-height: 1.1;
}
.header-logo-text span { color: var(--scarlet); }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color var(--transition);
  text-transform: uppercase;
}
.header-nav a:hover { color: var(--scarlet); }
.nav-cta {
  background: var(--scarlet) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--scarlet-dark) !important; }

/* Burger */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: var(--black-soft);
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-sm);
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
}
.burger-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
body.nav-open { overflow: hidden; }
.mobile-nav {
  display: none;
  flex-direction: column; gap: 12px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  padding: 16px 24px;
}
.mobile-nav.open {
  display: flex;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.mobile-nav a {
  font-size: 0.95rem; font-weight: 500;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
  text-transform: uppercase; letter-spacing: 0.03em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--scarlet); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(13,13,13,0.82) 0%,
    rgba(192,0,10,0.30) 60%,
    rgba(13,13,13,0.55) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero-badge {
  display: inline-block;
  background: var(--scarlet);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em { color: var(--scarlet-light); font-style: normal; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px 32px;
  margin-bottom: 44px;
}
.hero-meta-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
}
.hero-meta-item i {
  color: var(--scarlet-light);
  font-size: 1rem;
  width: 18px; text-align: center;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-primary {
  background: var(--scarlet);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
}
.btn-primary:hover {
  background: var(--scarlet-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,0,10,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: border-color var(--transition), color var(--transition), transform var(--transition);
  text-transform: uppercase;
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- Section Commons ---------- */
section { padding: 88px 40px; }
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--scarlet);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-title span { color: var(--scarlet); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.section-inner { max-width: 1200px; margin: 0 auto; }

/* ---------- Event Details Strip ---------- */
.event-strip {
  background: var(--black);
  padding: 0 40px;
}
.event-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0;
  border-left: 4px solid var(--scarlet);
}
.strip-item {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 36px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1 1 180px;
}
.strip-item:last-child { border-right: none; }
.strip-item i { font-size: 1.3rem; color: var(--scarlet-light); }
.strip-item-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 3px;
}
.strip-item-text span {
  font-size: 0.93rem;
  color: var(--white);
  font-weight: 500;
}

/* ---------- About ---------- */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%; height: 440px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--scarlet);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.about-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--scarlet);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition);
}
.about-feature:hover { box-shadow: var(--shadow-card); }
.about-feature i {
  font-size: 1.2rem; color: var(--scarlet);
  margin-top: 2px; flex-shrink: 0;
}
.about-feature h4 {
  font-weight: 600; font-size: 0.95rem;
  color: var(--black); margin-bottom: 4px;
}
.about-feature p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- Tickets ---------- */
.tickets-section { background: var(--white); }
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.ticket-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--scarlet);
}
.ticket-card.featured {
  background: var(--black);
  border-color: var(--scarlet);
  color: var(--white);
  transform: scale(1.03);
}
.ticket-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.ticket-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--scarlet);
  color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}
.ticket-tier {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--scarlet); margin-bottom: 10px;
}
.ticket-card.featured .ticket-tier { color: var(--scarlet-light); }
.ticket-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 6px;
  line-height: 1.15;
}
.ticket-card.featured .ticket-name { color: var(--white); }
.ticket-price-row {
  display: flex; align-items: baseline; gap: 6px;
  margin: 20px 0;
}
.ticket-currency {
  font-size: 1rem; font-weight: 600; color: var(--scarlet);
}
.ticket-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--black);
  line-height: 1;
}
.ticket-card.featured .ticket-price { color: var(--white); }
.ticket-period { font-size: 0.8rem; color: var(--text-muted); }
.ticket-card.featured .ticket-period { color: rgba(255,255,255,0.5); }
.ticket-divider {
  height: 1px;
  background: var(--grey-light);
  margin: 20px 0;
}
.ticket-card.featured .ticket-divider { background: rgba(255,255,255,0.12); }
.ticket-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.ticket-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.ticket-card.featured .ticket-feature { color: rgba(255,255,255,0.85); }
.ticket-feature i { color: var(--scarlet); font-size: 0.8rem; flex-shrink: 0; }
.ticket-card.featured .ticket-feature i { color: var(--scarlet-light); }
.ticket-btn {
  display: block; width: 100%;
  background: var(--grey-light);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.9rem;
  padding: 13px;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer; text-align: center;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}
.ticket-btn:hover { background: var(--scarlet); color: var(--white); }
.ticket-card.featured .ticket-btn { background: var(--scarlet); color: var(--white); }
.ticket-card.featured .ticket-btn:hover { background: var(--scarlet-dark); }
.ticket-card.selected { border-color: var(--scarlet) !important; box-shadow: 0 0 0 2px var(--scarlet), 0 12px 40px rgba(0,0,0,0.5) !important; }

/* ---------- Gallery ---------- */
.gallery-section { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child { grid-row: 1 / 3; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.6), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white);
}

/* ---------- Book Section ---------- */
.book-section {
  background: var(--black);
  padding: 88px 40px;
}
.book-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.book-left .section-label { color: var(--scarlet-light); }
.book-left .section-title { color: var(--white); }
.book-left .section-subtitle { color: rgba(255,255,255,0.65); }
.book-highlights {
  display: flex; flex-direction: column; gap: 16px;
}
.book-highlight {
  display: flex; align-items: center; gap: 14px;
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
}
.book-highlight i { color: var(--scarlet-light); width: 18px; }
.book-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: 0 24px 64px rgba(192,0,10,0.2);
}
.book-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--scarlet);
  box-shadow: 0 0 0 3px rgba(192,0,10,0.12);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  display: block; width: 100%;
  background: var(--scarlet);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.93rem;
  padding: 14px;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--scarlet-dark); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-note {
  font-size: 0.77rem; color: var(--text-muted);
  text-align: center; margin-top: 12px;
  line-height: 1.5;
}
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
}
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px; min-width: 18px;
  margin-top: 2px; accent-color: var(--scarlet);
  cursor: pointer;
}
.form-consent label {
  font-size: 0.84rem; color: var(--text-muted);
  line-height: 1.5; cursor: pointer;
}
.form-consent label a { color: var(--scarlet); text-decoration: underline; }
.book-success {
  text-align: center; padding: 40px 20px;
}
.success-icon { font-size: 3.5rem; color: var(--scarlet); margin-bottom: 16px; }
.book-success h3 { font-size: 1.5rem; margin-bottom: 12px; color: var(--white); }
.book-success p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 40px 28px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-brand-logo img { width: 38px; height: 38px; border-radius: 50%; }
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  line-height: 1.1;
}
.footer-brand-name span { color: var(--scarlet-light); }
.footer-tagline {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  line-height: 1.7; margin-bottom: 20px;
}
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--scarlet-light);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.87rem; color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 12px; padding-top: 24px;
}
.footer-copy {
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.footer-legal a {
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--scarlet-light); }

/* ---------- Legal pages ---------- */
.legal-page {
  min-height: 100vh;
  padding: 108px 40px 80px;
  background: var(--white);
}
.legal-inner {
  max-width: 800px; margin: 0 auto;
}
.legal-inner h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--black);
  margin-bottom: 8px;
}
.legal-inner .legal-date {
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 36px;
}
.legal-inner h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--black);
  margin: 28px 0 10px;
}
.legal-inner p, .legal-inner li {
  font-size: 0.93rem; color: var(--text-dark);
  line-height: 1.75; margin-bottom: 12px;
}
.legal-inner ul { padding-left: 20px; list-style: disc; }
.legal-nav-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--text-muted);
  margin-bottom: 28px;
  transition: color var(--transition);
}
.legal-nav-back:hover { color: var(--scarlet); }
.legal-highlight-box {
  background: rgba(192,0,10,0.05);
  border-left: 3px solid var(--scarlet);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 20px 0;
}
.legal-highlight-box p { color: var(--text-dark) !important; margin-bottom: 0 !important; }

/* ---------- Contacts ---------- */
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-card:hover {
  border-color: var(--scarlet);
  box-shadow: var(--shadow-card);
}
.contact-card-icon { font-size: 1.8rem; color: var(--scarlet); margin-bottom: 13px; }
.contact-card h3 {
  font-size: 0.88rem; font-weight: 700;
  font-family: var(--font-heading); color: var(--black);
  letter-spacing: 0.04em; margin-bottom: 8px;
}
.contact-card p, .contact-card a {
  font-size: 0.87rem; color: var(--text-muted); line-height: 1.65;
}
.contact-card a:hover { color: var(--scarlet); }
.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px; margin: 0 auto;
}
.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem; color: var(--black); margin-bottom: 24px;
}

/* ---------- Animations ---------- */
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-slide-up { animation: slideUp 0.6s ease both; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-grid,
  .book-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
}
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .site-header { padding: 0 20px; }
  .hero-content { padding: 60px 20px; }
  .header-nav { display: none; }
  .burger-btn { display: flex; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .event-strip { padding: 0 20px; }
  .strip-item { padding: 20px 16px; flex: 1 1 100%; }
  .book-form-wrap { padding: 28px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .legal-page { padding: 96px 20px 64px; }
  .site-footer { padding: 48px 20px 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .tickets-grid { grid-template-columns: 1fr; }
  .ticket-card.featured { transform: scale(1); }
  .ticket-card.featured:hover { transform: translateY(-6px); }
}
