:root {
  --festival-ink: #0f203a;
  --festival-copy: #62718a;
  --festival-line: rgba(15, 32, 58, 0.1);
  --festival-gold: #d4af37;
  --festival-gold-light: #edd178;
  --festival-white: #ffffff;
  --festival-shell: #09182a;
  --festival-shadow: 0 24px 64px rgba(9, 20, 38, 0.14);
  --festival-radius: 28px;
  --festival-max: 1240px;
}

* { box-sizing: border-box; }

body.festival-body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--festival-ink);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 22%),
    linear-gradient(180deg, #071321 0%, #0d2139 34%, #f7f8fb 34%, #f7f8fb 100%);
}

.festival-page {
  width: min(var(--festival-max), calc(100% - 32px));
  margin: 0 auto;
  padding: 156px 0 72px;
}

.festival-hero,
.festival-region-grid,
.festival-card-grid,
.festival-detail-grid,
.festival-package-grid {
  display: grid;
  gap: 24px;
}

.festival-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: stretch;
}

.festival-hero-copy,
.festival-hero-visual,
.festival-section,
.festival-region-card,
.festival-event-card,
.festival-panel,
.festival-package-card,
.festival-empty-card {
  border-radius: var(--festival-radius);
  box-shadow: var(--festival-shadow);
}

.festival-hero-copy {
  padding: 40px;
  color: var(--festival-white);
  background: linear-gradient(180deg, rgba(7, 19, 33, 0.96) 0%, rgba(18, 50, 86, 0.96) 100%);
}

.festival-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: var(--festival-gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.festival-hero h1,
.festival-section h2,
.festival-region-card h2,
.festival-event-card h3,
.festival-panel h3,
.festival-package-card h4,
.festival-empty-card h3 {
  margin: 0;
  letter-spacing: -0.05em;
}

.festival-hero h1 {
  margin-top: 18px;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 0.95;
}

.festival-hero-lead {
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.5;
  color: #ffffff;
}

.festival-hero-copy p,
.festival-section-copy,
.festival-region-card p,
.festival-event-copy p,
.festival-panel p,
.festival-package-card p,
.festival-empty-card p {
  margin: 0;
  line-height: 1.8;
  font-size: 16px;
}

.festival-hero-copy p,
.festival-hero-note {
  color: rgba(255, 255, 255, 0.82);
}

.festival-hero-body {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.festival-chip-row,
.festival-button-row,
.festival-link-row,
.festival-region-actions,
.festival-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.festival-chip-row { margin-top: 24px; }

.festival-chip,
.festival-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.festival-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.festival-pill {
  background: #f4f6fa;
  color: #1a3155;
}

.festival-button-row { margin-top: 28px; }
.festival-link-row { margin-top: 18px; }
.festival-region-actions { margin-top: 22px; }

.festival-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.festival-btn:hover,
.festival-btn:focus-visible { transform: translateY(-2px); }

.festival-btn-primary {
  background: linear-gradient(135deg, var(--festival-gold) 0%, var(--festival-gold-light) 100%);
  color: #071321;
  box-shadow: 0 16px 38px rgba(212, 175, 55, 0.24);
}

.festival-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.festival-btn-dark {
  background: #0e2340;
  color: #ffffff;
}

.festival-btn-outline {
  border: 1px solid var(--festival-line);
  background: #ffffff;
  color: var(--festival-ink);
}

.festival-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.festival-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 33, 0.18) 0%, rgba(7, 19, 33, 0.62) 100%);
}

.festival-hero-badge {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
}

.festival-hero-badge strong {
  display: block;
  margin-bottom: 10px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.festival-section {
  margin-top: 28px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--festival-line);
}

.festival-filter-panel {
  margin-top: 28px;
  padding: 30px 34px;
  border-radius: var(--festival-radius);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--festival-line);
  box-shadow: var(--festival-shadow);
}

.festival-filter-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.festival-filter-head h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.festival-filter-head p {
  margin: 0;
  color: var(--festival-copy);
  font-size: 14px;
  line-height: 1.7;
  text-align: right;
}

.festival-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.festival-search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 32, 58, 0.1);
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.festival-search-box i {
  color: var(--festival-gold);
  font-size: 15px;
}

.festival-search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--festival-ink);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
}

.festival-search-box input::placeholder {
  color: #8793a6;
  font-weight: 500;
}

.festival-search-box:focus-within {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 10px 26px rgba(9, 20, 38, 0.06), 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.festival-search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 32, 58, 0.1);
  background: #ffffff;
  color: var(--festival-ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.festival-search-clear:hover,
.festival-search-clear:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(9, 20, 38, 0.08);
  border-color: rgba(212, 175, 55, 0.42);
}

.festival-search-clear i {
  color: var(--festival-gold);
}

.festival-search-clear.is-hidden {
  display: none;
}

.festival-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.festival-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(15, 32, 58, 0.1);
  background: #ffffff;
  color: var(--festival-ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.festival-filter-btn i {
  color: var(--festival-gold);
}

.festival-filter-btn:hover,
.festival-filter-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(9, 20, 38, 0.08);
  border-color: rgba(212, 175, 55, 0.42);
}

.festival-filter-btn.is-active {
  background: linear-gradient(135deg, var(--festival-gold) 0%, var(--festival-gold-light) 100%);
  color: #071321;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.22);
}

.festival-title-with-flag {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.festival-title-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.14);
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.18);
  font-size: 21px;
  line-height: 1;
}

.festival-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.festival-section h2 {
  margin-top: 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.festival-region-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.festival-region-card,
.festival-event-card,
.festival-panel,
.festival-package-card,
.festival-empty-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--festival-line);
}

.festival-region-card {
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.festival-region-card h2 {
  margin-top: 14px;
  font-size: 32px;
  line-height: 1;
}

.festival-list,
.festival-highlight-list,
.festival-package-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.festival-list li,
.festival-highlight-list li,
.festival-package-list li {
  display: flex;
  gap: 10px;
  color: var(--festival-copy);
  line-height: 1.7;
}

.festival-list li i,
.festival-highlight-list li i,
.festival-package-list li i {
  color: var(--festival-gold);
  margin-top: 4px;
}

.festival-card-grid {
  grid-template-columns: 1fr;
}

.festival-event-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.festival-event-image {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 320px;
  background: #13243f;
}

.festival-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.festival-event-copy {
  display: grid;
  gap: 16px;
}

.festival-event-copy h3 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 0.98;
}

.festival-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.festival-meta-item {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f5f7fb;
}

.festival-meta-label {
  display: block;
  margin-bottom: 6px;
  color: #66758c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.festival-meta-value {
  display: block;
  color: var(--festival-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.festival-detail-grid,
.festival-package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.festival-panel h3,
.festival-package-card h4,
.festival-empty-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.05;
}

.festival-panel-intro,
.festival-package-summary {
  margin-bottom: 14px;
}

.festival-pack-event-name {
  margin-bottom: 10px;
}

.festival-pack-title-with-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--festival-ink);
}

.festival-pack-title-with-flag .festival-title-flag {
  font-size: 20px;
  line-height: 1;
}

.festival-official-note {
  margin-top: 14px;
  color: var(--festival-copy);
  font-size: 14px;
}

.festival-price {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: #6d551e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.festival-package-card .festival-button-row {
  margin-top: 18px;
}

.festival-empty-card {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border-style: dashed;
}

.festival-empty-card .festival-button-row {
  margin-top: 20px;
}

/* ─── COMPACT CARD GRID (3 per row) ─── */

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

.festival-compact-card {
  border-radius: 26px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--festival-line);
  box-shadow: var(--festival-shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
}

.festival-compact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(212, 175, 55, 0.22);
}

.festival-compact-poster {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 26px 26px 0 0;
  background: #13243f;
}

.festival-compact-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.6s ease;
}

.festival-compact-card:hover .festival-compact-poster img {
  transform: scale(1.06);
}

.festival-compact-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 19, 33, 0.7) 100%);
}

.festival-compact-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.92);
  color: #071321;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.festival-compact-body {
  padding: 22px;
}

.festival-compact-title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--festival-ink);
}

.festival-compact-genre {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--festival-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.festival-compact-info {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.festival-compact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--festival-copy);
  line-height: 1.5;
}

.festival-compact-row i {
  width: 16px;
  text-align: center;
  color: var(--festival-gold);
  font-size: 13px;
  flex-shrink: 0;
}

.festival-compact-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.festival-compact-stars i {
  color: var(--festival-gold);
  font-size: 14px;
}

.festival-compact-stars i.empty {
  color: #dde0e6;
}

.festival-compact-sensation {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(212, 175, 55, 0.2);
  font-size: 12px;
  font-weight: 700;
  color: #6d551e;
  margin-bottom: 16px;
}

.festival-compact-sensation i {
  color: var(--festival-gold);
}

.festival-compact-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--festival-copy);
  margin-bottom: 18px;
}

.festival-compact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--festival-gold), var(--festival-gold-light));
  color: #071321;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.18);
}

.festival-compact-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

/* ─── BANNER hero with image ─── */

.festival-banner-hero {
  position: relative;
  border-radius: var(--festival-radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  box-shadow: var(--festival-shadow);
}

.festival-banner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 19, 33, 0.82) 0%, rgba(18, 50, 86, 0.6) 60%, transparent 100%);
}

.festival-banner-content {
  position: relative;
  z-index: 1;
  padding: 48px;
  max-width: 620px;
}

.festival-banner-content h1 {
  font-size: clamp(20px, 4.8vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 16px 0;
  white-space: nowrap;
}

.festival-banner-content p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

@media (max-width: 980px) {
  .festival-hero,
  .festival-region-grid,
  .festival-detail-grid,
  .festival-package-grid,
  .festival-event-card {
    grid-template-columns: 1fr;
  }

  .festival-hero-visual { min-height: 420px; }
  .festival-section-head { display: block; }
  .festival-filter-head { display: block; }

  .festival-filter-head p {
    margin-top: 12px;
    text-align: left;
  }

  .festival-search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .festival-compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .festival-banner-content {
    padding: 32px;
  }
}

@media (max-width: 720px) {
  .festival-page {
    width: min(var(--festival-max), calc(100% - 20px));
    padding-top: 138px;
  }

  .festival-hero-copy,
  .festival-section,
  .festival-filter-panel,
  .festival-region-card,
  .festival-event-card,
  .festival-panel,
  .festival-package-card,
  .festival-empty-card {
    padding: 24px;
  }

  .festival-hero-visual { padding: 18px; }
  .festival-meta { grid-template-columns: 1fr; }

  .festival-compact-grid {
    grid-template-columns: 1fr;
  }

  .festival-search-box {
    min-height: 52px;
    padding: 0 16px;
  }

  .festival-search-clear {
    width: 100%;
  }

  .festival-banner-hero {
    min-height: 320px;
  }

  .festival-banner-content {
    padding: 24px;
  }

  .festival-compact-poster {
    height: 220px;
  }

  .festival-title-flag {
    min-width: 32px;
    height: 32px;
    font-size: 18px;
  }
}

/* ═══════════════════════════════════════════
   DETAIL PAGE — Simplified client-facing
═══════════════════════════════════════════ */

.festival-detail-hero {
  width: 100%;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: var(--festival-radius);
  overflow: hidden;
  position: relative;
}

.festival-detail-hero-overlay {
  background: linear-gradient(180deg, rgba(9, 24, 42, 0.3) 0%, rgba(9, 24, 42, 0.85) 100%);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 48px 40px;
}

.festival-detail-hero-content {
  max-width: 800px;
}

.festival-detail-genre {
  display: inline-block;
  background: var(--festival-gold);
  color: var(--festival-shell);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}

.festival-detail-hero-content h1 {
  color: #fff;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
}

.festival-detail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.festival-detail-chips span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.festival-detail-chips span i {
  color: var(--festival-gold-light);
}

.festival-detail-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.festival-btn-big {
  font-size: 16px !important;
  padding: 14px 28px !important;
}

/* Body layout */

.festival-detail-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  margin-top: 32px;
}

.festival-detail-intro {
  margin-bottom: 24px;
}

.festival-detail-oneliner {
  font-size: 18px;
  line-height: 1.6;
  color: var(--festival-ink);
}

/* Gallery */

.festival-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-bottom: 32px;
}

.festival-gallery-item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.festival-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  transition: transform 0.4s ease;
}

.festival-gallery-item:hover img {
  transform: scale(1.08);
}

/* Advantages */

.festival-detail-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.festival-detail-section h2 i {
  color: var(--festival-gold);
}

.festival-advantages {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.festival-advantages li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.festival-advantages li i {
  color: var(--festival-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Pack box */

.festival-pack-box {
  background: var(--festival-shell);
  border-radius: 20px;
  padding: 28px;
  margin-top: 20px;
}

.festival-pack-price {
  color: var(--festival-gold);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.festival-pack-summary {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* Sidebar */

.festival-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.festival-sidebar-card {
  background: #fff;
  border: 1px solid var(--festival-line);
  border-radius: 20px;
  padding: 24px;
}

.festival-sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--festival-ink);
}

.festival-sidebar-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--festival-line);
  font-size: 14px;
}

.festival-sidebar-row:last-child {
  border-bottom: none;
}

.festival-sidebar-row span {
  color: var(--festival-copy);
}

.festival-sidebar-row strong {
  color: var(--festival-ink);
  text-align: right;
  max-width: 60%;
}

.festival-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.festival-sidebar-links .festival-btn {
  width: 100%;
  justify-content: center;
}

/* Detail responsive */

@media (max-width: 860px) {
  .festival-detail-body {
    grid-template-columns: 1fr;
  }

  .festival-detail-hero-overlay {
    padding: 32px 24px;
  }

  .festival-advantages {
    grid-template-columns: 1fr;
  }

  .festival-gallery {
    grid-template-columns: 1fr 1fr;
  }
}
