/* ============================================================
   Tomorrowland Thailand 2026 — Subpage Styles (pages.css)
   Shared styles for all landing pages beyond the main index.
   Uses variables from style.css
   ============================================================ */

/* ============================================================
   SITE-WIDE NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: rgba(10, 14, 39, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.site-nav--scrolled {
  padding: 0.5rem 0;
  background: rgba(10, 14, 39, 0.95);
  border-bottom-color: rgba(212, 168, 67, 0.2);
}

.site-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--gold, #D4A843);
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.site-nav__logo-text {
  background: linear-gradient(135deg, #D4A843, #F5D77A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-nav__menu {
  display: flex;
  align-items: center;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: #FFB800;
  background: rgba(255, 184, 0, 0.1);
}

.site-nav__link svg {
  transition: transform 0.2s ease;
}

/* Dropdown */
.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.5rem;
  background: rgba(10, 14, 39, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 12px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.site-nav__dropdown.is-open .site-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(4px);
}

.site-nav__dropdown.is-open .site-nav__dropdown-btn svg {
  transform: rotate(180deg);
}

.site-nav__dropdown-menu a {
  display: block;
  padding: 0.6rem 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.88rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.site-nav__dropdown-menu a:hover {
  background: rgba(255, 184, 0, 0.1);
  color: #FFB800;
}

.site-nav__link--soon {
  opacity: 0.5;
  pointer-events: none;
}

.site-nav__link--soon::after {
  content: 'скоро';
  font-size: 0.65rem;
  background: rgba(255, 184, 0, 0.2);
  color: #FFB800;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.5rem;
}

/* CTA Button in Nav */
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, #D4A843, #F5D77A);
  color: #0A0E27 !important;
  text-decoration: none;
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.site-nav__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

/* Burger Menu */
.site-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.site-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.site-nav__burger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.site-nav__burger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 6rem 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs__item a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs__item a:hover {
  color: #FFB800;
}

.breadcrumbs__sep {
  opacity: 0.4;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  padding: 8rem 0 4rem;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0E27 0%, #1a1040 40%, #0A0E27 100%);
  z-index: -2;
}

.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, #0A0E27);
  z-index: -1;
}

.page-hero__bg[data-theme="tickets"]  { background: linear-gradient(135deg, #0A0E27, #1a0a30, #0d1a30); }
.page-hero__bg[data-theme="howto"]    { background: linear-gradient(135deg, #0A0E27, #0d2a1a, #0A0E27); }
.page-hero__bg[data-theme="lineup"]   { background: linear-gradient(135deg, #0A0E27, #2a0a1a, #0A0E27); }

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  font-family: var(--font-body, 'Outfit', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #FFB800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 800px;
}

.page-hero__subtitle {
  font-family: var(--font-text, 'DM Sans', sans-serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
}

.page-hero__subtitle a {
  color: #FFB800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   KEY FACTS BAR
   ============================================================ */
.key-facts {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
}

.key-facts__item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.key-facts__number {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: 1.6rem;
  font-weight: 900;
  background: linear-gradient(135deg, #D4A843, #F5D77A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.key-facts__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ============================================================
   CONTENT BLOCKS
   ============================================================ */
.content-block {
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.content-block__title {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.content-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.content-block ul, .content-block ol {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.content-block li {
  margin-bottom: 0.4rem;
}

.content-block h4 {
  font-size: 1.05rem;
  color: #FFB800;
  margin: 1.25rem 0 0.5rem;
  font-weight: 600;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.5rem 0;
}

.compare-table,
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.88rem;
}

.compare-table th,
.compare-table td,
.info-table th,
.info-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.compare-table th,
.info-table th {
  background: rgba(212, 168, 67, 0.1);
  color: #FFB800;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: sticky;
  top: 0;
}

.compare-table__featured {
  background: rgba(212, 168, 67, 0.05) !important;
  border-left: 2px solid rgba(212, 168, 67, 0.3);
  border-right: 2px solid rgba(212, 168, 67, 0.3);
}

.info-table__total td {
  border-top: 2px solid rgba(212, 168, 67, 0.3);
  color: #FFB800;
  font-size: 1rem;
}

.table-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  font-style: italic;
}

.table-note a {
  color: rgba(212, 168, 67, 0.8);
}

/* Button sizes */
.btn--sm {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #D4A843, rgba(212, 168, 67, 0.2));
}

.timeline__item {
  position: relative;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.timeline__marker {
  position: absolute;
  left: -2rem;
  top: 1.5rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: #0A0E27;
  border: 2px solid rgba(212, 168, 67, 0.3);
  border-radius: 50%;
  z-index: 1;
}

.timeline__marker--done {
  border-color: #4CAF50;
}

.timeline__marker--active {
  border-color: #FFB800;
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.3);
  animation: pulse-glow 2s infinite;
}

.timeline__content h4 {
  color: #FFB800;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline__content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ============================================================
   RULES GRID
   ============================================================ */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.rules-grid .content-block h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: #fff;
}

/* ============================================================
   STEP CARDS
   ============================================================ */
.step-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.step-card__number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: 1.3rem;
  font-weight: 900;
  color: #0A0E27;
  background: linear-gradient(135deg, #D4A843, #F5D77A);
  border-radius: 50%;
}

.step-card__content h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-card__content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.75rem;
}

.step-card__content ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.step-card__content a {
  color: #FFB800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.step-card__tip {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(255, 184, 0, 0.08);
  border-left: 3px solid #FFB800;
  border-radius: 0 8px 8px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ============================================================
   PAYMENT OPTIONS
   ============================================================ */
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.payment-option {
  padding: 1.25rem;
}

.payment-option h4 {
  font-size: 1rem;
  color: #FFB800;
  margin-bottom: 0.75rem;
}

.payment-option ul {
  font-size: 0.88rem;
  padding-left: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.payment-option a {
  color: #FFB800;
}

/* ============================================================
   ARTIST CARDS
   ============================================================ */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1.5rem;
}

.artist-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.artist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.artist-card__avatar {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent, #D4A843), rgba(10, 14, 39, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: 1.2rem;
  font-weight: 900;
  color: #fff;
  border: 2px solid var(--accent, #D4A843);
}

.artist-card__avatar::after {
  content: attr(data-initials);
}

.artist-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.artist-card__genre {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.3rem;
}

.artist-card__stage {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.artist-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0.75rem;
}

.artist-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* Artist tags (reuse from index, extend) */
.artist-tag--headliner {
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.3), rgba(245, 215, 122, 0.15)) !important;
  border-color: rgba(212, 168, 67, 0.5) !important;
  color: #F5D77A !important;
  font-weight: 600;
}

/* ============================================================
   STAGE LINEUP BLOCKS
   ============================================================ */
.stage-lineup {
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.stage-lineup__header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--stage-color, rgba(255, 255, 255, 0.1));
}

.stage-lineup__name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--stage-color, #fff);
  margin-bottom: 0.25rem;
}

.stage-lineup__genre {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.stage-lineup__artists {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.stage-lineup__note {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
}

/* ============================================================
   GENRES GRID
   ============================================================ */
.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.genres-grid .content-block h3 {
  font-size: 1.1rem;
  color: #FFB800;
  margin-bottom: 0.5rem;
}

.genres-grid .content-block p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================================
   TIMETABLE STATUS
   ============================================================ */
.timetable-status {
  text-align: center;
  padding: 2rem;
}

.timetable-status__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.timetable-status h3 {
  font-size: 1.3rem;
  color: #FFB800;
  margin-bottom: 1rem;
}

.timetable-status p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.timetable-status ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.timetable-status li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.timetable-status a {
  color: #FFB800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   PAGE CTA BLOCK
   ============================================================ */
.page-cta {
  padding: 4rem 0;
}

.page-cta__content {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.page-cta__title {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
}

.page-cta__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* ============================================================
   READ ALSO
   ============================================================ */
.read-also {
  padding: 2rem 0 4rem;
}

.read-also__title {
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  text-align: center;
}

.read-also__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.read-also__card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-also__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 168, 67, 0.4);
}

.read-also__icon {
  font-size: 2rem;
}

.read-also__label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.read-also__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: rgba(5, 7, 18, 0.95);
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  padding: 3rem 0 1.5rem;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 0.8fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #D4A843;
  font-family: var(--font-display, 'Playfair Display SC', serif);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.site-footer__desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.site-footer__heading {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.site-footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer__links a:hover {
  color: #FFB800;
}

.site-footer__social-links {
  display: flex;
  gap: 0.75rem;
}

.site-footer__social-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.site-footer__social-links a:hover {
  color: #FFB800;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  text-align: center;
}

.site-footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.3rem;
}

.site-footer__disclaimer {
  font-size: 0.75rem !important;
}

/* ============================================================
   FAQ (extends style.css patterns)
   ============================================================ */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .artists-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .site-nav__burger {
    display: flex;
  }

  .site-nav__menu {
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .site-nav__menu.is-open {
    opacity: 1;
    visibility: visible;
  }

  .site-nav__links {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .site-nav__link {
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
  }

  .site-nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255, 255, 255, 0.03);
    display: none;
  }

  .site-nav__dropdown.is-open .site-nav__dropdown-menu {
    display: block;
  }

  /* Page hero */
  .page-hero {
    padding: 7rem 0 3rem;
  }

  .page-hero__title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  /* Step cards */
  .step-card {
    flex-direction: column;
    gap: 1rem;
  }

  /* Key facts */
  .key-facts {
    flex-wrap: nowrap;
  }

  /* Tables */
  .compare-table td,
  .compare-table th,
  .info-table td,
  .info-table th {
    padding: 0.5rem;
    font-size: 0.78rem;
  }

  /* Footer */
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Payment options */
  .payment-options {
    grid-template-columns: 1fr;
  }

  /* Stage lineup */
  .stage-lineup {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .page-hero__title {
    font-size: 1.4rem;
  }

  .key-facts__item {
    min-width: 120px;
    padding: 1rem 0.75rem;
  }

  .key-facts__number {
    font-size: 1.3rem;
  }

  .artist-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .content-block {
    padding: 1.5rem;
  }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-nav,
  .site-nav__burger,
  .page-cta,
  .read-also,
  .scroll-progress {
    display: none !important;
  }

  .page-hero {
    padding: 2rem 0;
    min-height: auto;
  }

  .glass-card {
    border: 1px solid #ccc;
    background: #fff !important;
  }
}



/* ============================================================
   INDEX PAGE — SECONDARY NAVIGATION ADJUSTMENT
   When site-nav is present, push secondary nav below it
   ============================================================ */
.nav--secondary {
  top: 60px;
}

.site-nav--scrolled ~ .nav--secondary,
.site-nav--scrolled + .nav--secondary {
  top: 50px;
}
