/* =============================================================================
   WC2026Tickets — Main Stylesheet
   Scope: All three domains (en / en-CA / es)
   ============================================================================= */

/* -----------------------------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   ----------------------------------------------------------------------------- */
:root {
  --color-primary:       #1a56a0;
  --color-primary-dark:  #123d7a;
  --color-primary-light: #3b82f6;
  --color-accent:        #e63946;
  --color-accent-dark:   #c1121f;
  --color-gold:          #f4a20a;

  --color-bg:            #ffffff;
  --color-bg-alt:        #f5f7fa;
  --color-bg-dark:       #0f172a;
  --color-surface:       #ffffff;
  --color-border:        #e2e8f0;

  --color-text:          #1e293b;
  --color-text-muted:    #64748b;
  --color-text-light:    #94a3b8;
  --color-text-inverse:  #ffffff;

  --font-sans:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:           'Courier New', monospace;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);

  --transition:  150ms ease;

  --container-max: 1200px;
  --container-px:  1.25rem;
}

/* -----------------------------------------------------------------------------
   2. Reset & Base
   ----------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-text);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h2 { font-size: clamp(1.375rem, 3vw, 2rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p + p { margin-top: .75rem; }

/* -----------------------------------------------------------------------------
   3. Layout Utilities
   ----------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between{ display: flex; align-items: center; justify-content: space-between; }
.flex-gap    { display: flex; gap: 1rem; flex-wrap: wrap; }

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

/* -----------------------------------------------------------------------------
   4. Buttons
   ----------------------------------------------------------------------------- */
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  padding: .625rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--color-accent);
  color: var(--color-text-inverse);
  border-color: var(--color-accent);
}
.btn-secondary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  text-decoration: none;
}

.btn-sm  { padding: .4rem .875rem; font-size: .875rem; }
.btn-lg  { padding: .875rem 1.75rem; font-size: 1.0625rem; }
.btn-xl  { padding: 1.125rem 2.25rem; font-size: 1.125rem; }
.btn-full { width: 100%; }

/* -----------------------------------------------------------------------------
   5. Header
   ----------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
  border-bottom: 3px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 60px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-text-inverse);
  text-decoration: none;
  white-space: nowrap;
}
.site-header__logo:hover { color: var(--color-gold); text-decoration: none; }
.site-header__logo-icon { font-size: 1.25rem; line-height: 1; }

.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.site-header__nav-link {
  display: block;
  padding: .375rem .625rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.site-header__nav-link:hover,
.site-header__nav-link[aria-current="page"] {
  color: #fff;
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

/* Hamburger */
.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .375rem;
  border-radius: var(--radius-sm);
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
  .site-header__menu-toggle { display: flex; }
  .site-header__nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--color-bg-dark);
    border-top: 1px solid rgba(255,255,255,.1);
    padding: .75rem 0;
    box-shadow: var(--shadow-lg);
  }
  .site-header__nav.is-open { display: block; }
  .site-header__nav-list { flex-direction: column; gap: 0; }
  .site-header__nav-link { padding: .625rem var(--container-px); border-radius: 0; }
}

/* -----------------------------------------------------------------------------
   6. Footer
   ----------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.8);
  margin-top: 4rem;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 2rem;
  padding-block: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.site-footer__logo {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.site-footer__logo:hover { color: var(--color-gold); text-decoration: none; }
.site-footer__tagline { font-size: .875rem; color: rgba(255,255,255,.55); margin-top: .5rem; }

.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .5rem;
}
.site-footer__nav-link {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  padding: .25rem .375rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
}
.site-footer__nav-link:hover { color: #fff; text-decoration: none; }

.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 1.25rem;
}
.site-footer__disclaimer {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  margin-bottom: .375rem;
}
.site-footer__copy {
  font-size: .8125rem;
  color: rgba(255,255,255,.4);
}

/* -----------------------------------------------------------------------------
   7. Page Hero / Banner
   ----------------------------------------------------------------------------- */
.page-hero {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding-block: 3.5rem 3rem;
  margin-bottom: 2.5rem;
}
.page-hero__eyebrow {
  font-size: .875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-gold);
  margin-bottom: .5rem;
}
.page-hero__title { color: #fff; margin-bottom: .75rem; }
.page-hero__subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.75); max-width: 680px; }

/* -----------------------------------------------------------------------------
   8. Cards
   ----------------------------------------------------------------------------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__body  { padding: 1.25rem; }
.card__title { font-size: 1.0625rem; font-weight: 600; margin-bottom: .375rem; }
.card__meta  { font-size: .8125rem; color: var(--color-text-muted); }
.card__footer {
  padding: .875rem 1.25rem;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  display: flex;
  gap: .625rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Match Card specific */
.match-card { border-left: 4px solid var(--color-primary); }
.match-card__stage {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-primary);
  margin-bottom: .75rem;
}
.match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .625rem;
}
.match-card__team {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 1;
}
.match-card__team--b { justify-content: flex-end; }
.match-card__vs {
  font-size: .875rem;
  color: var(--color-text-muted);
  font-weight: 400;
  flex-shrink: 0;
}
.match-card__flag { width: 24px; height: 16px; object-fit: cover; border-radius: 2px; }
.match-card__info {
  font-size: .8125rem;
  color: var(--color-text-muted);
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------------------------
   9. Ticket CTA Box
   ----------------------------------------------------------------------------- */
.ticket-cta {
  background: linear-gradient(135deg, #0f172a 0%, var(--color-primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  margin-block: 2rem;
}
.ticket-cta__title {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: .5rem;
}
.ticket-cta__subtitle {
  font-size: .9375rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.25rem;
}
.ticket-cta__buttons {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ticket-cta__disclaimer {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: .875rem;
}

/* Inline / compact variant */
.ticket-cta--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.125rem 1.5rem;
}
.ticket-cta--inline .ticket-cta__content { flex: 1; }
.ticket-cta--inline .ticket-cta__title   { font-size: 1rem; margin-bottom: .25rem; }
.ticket-cta--inline .ticket-cta__buttons { justify-content: flex-end; }

@media (max-width: 600px) {
  .ticket-cta--inline {
    flex-direction: column;
    text-align: center;
  }
  .ticket-cta--inline .ticket-cta__buttons { justify-content: center; }
}

/* -----------------------------------------------------------------------------
   10. Hotel CTA Box
   ----------------------------------------------------------------------------- */
.hotel-cta {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-block: 1.5rem;
}
.hotel-cta__icon  { font-size: 2rem; flex-shrink: 0; line-height: 1; }
.hotel-cta__body  { flex: 1; }
.hotel-cta__title { font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.hotel-cta__text  { font-size: .875rem; color: var(--color-text-muted); }
.hotel-cta__action { flex-shrink: 0; }

@media (max-width: 600px) {
  .hotel-cta { flex-direction: column; text-align: center; }
  .hotel-cta__action { width: 100%; }
  .hotel-cta__action .btn-primary { width: 100%; }
}

/* -----------------------------------------------------------------------------
   11. Breadcrumb
   ----------------------------------------------------------------------------- */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .25rem;
  font-size: .8125rem;
  color: var(--color-text-muted);
  padding-block: .75rem;
  margin-bottom: 1rem;
}
.breadcrumb__item { display: flex; align-items: center; gap: .25rem; }
.breadcrumb__link { color: var(--color-primary); }
.breadcrumb__link:hover { text-decoration: underline; }
.breadcrumb__sep  { color: var(--color-text-light); }
.breadcrumb__current { color: var(--color-text-muted); font-weight: 500; }

/* -----------------------------------------------------------------------------
   12. Badge / Tag
   ----------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: .2em .55em;
  font-size: .75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  line-height: 1;
  white-space: nowrap;
}
.badge--primary  { background: rgba(26,86,160,.12); color: var(--color-primary); }
.badge--accent   { background: rgba(230,57,70,.12);  color: var(--color-accent); }
.badge--success  { background: rgba(22,163,74,.12);  color: #16a34a; }
.badge--muted    { background: var(--color-bg-alt);  color: var(--color-text-muted); border: 1px solid var(--color-border); }
.badge--gold     { background: rgba(244,162,10,.15); color: #92620a; }

/* -----------------------------------------------------------------------------
   13. Info Table (match / venue detail pages)
   ----------------------------------------------------------------------------- */
.info-table { width: 100%; border-collapse: collapse; }
.info-table th,
.info-table td {
  padding: .625rem .875rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  font-size: .9375rem;
}
.info-table th {
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  width: 38%;
}
.info-table tr:last-child td,
.info-table tr:last-child th { border-bottom: none; }

/* -----------------------------------------------------------------------------
   14. Flag Images
   ----------------------------------------------------------------------------- */
.flag {
  display: inline-block;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  vertical-align: middle;
}
.flag--sm  { width: 20px; height: 14px; }
.flag--md  { width: 28px; height: 20px; }
.flag--lg  { width: 40px; height: 28px; }
.flag img  { width: 100%; height: 100%; object-fit: cover; display: block; }

/* -----------------------------------------------------------------------------
   15. Section Headers
   ----------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 1.75rem;
}
.section-header__title   { margin-bottom: .375rem; }
.section-header__subtitle{ font-size: 1rem; color: var(--color-text-muted); }

.section-header--center { text-align: center; }

/* -----------------------------------------------------------------------------
   16. Alert / Notice Banner
   ----------------------------------------------------------------------------- */
.alert {
  padding: .875rem 1.125rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  margin-bottom: 1.25rem;
}
.alert--info    { background: rgba(59,130,246,.09);  border-left: 4px solid #3b82f6; color: #1e3a5f; }
.alert--warning { background: rgba(234,179,8,.1);    border-left: 4px solid #eab308; color: #713f12; }
.alert--success { background: rgba(22,163,74,.09);   border-left: 4px solid #16a34a; color: #14532d; }

/* -----------------------------------------------------------------------------
   17. Schedule Table (schedule.php / group-stage listings)
   ----------------------------------------------------------------------------- */
.schedule-table { width: 100%; border-collapse: collapse; font-size: .9375rem; }
.schedule-table thead th {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .625rem .875rem;
  text-align: left;
}
.schedule-table tbody tr:nth-child(even) { background: var(--color-bg-alt); }
.schedule-table tbody tr:hover          { background: rgba(26,86,160,.05); }
.schedule-table td {
  padding: .625rem .875rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}
.schedule-table__teams {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.schedule-table__venue {
  font-size: .8125rem;
  color: var(--color-text-muted);
}

/* -----------------------------------------------------------------------------
   18. Pagination
   ----------------------------------------------------------------------------- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .375rem;
  margin-top: 2.5rem;
}
.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 .5rem;
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-text);
  border: 1px solid var(--color-border);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-decoration: none;
}
.pagination__link:hover         { background: var(--color-bg-alt); text-decoration: none; }
.pagination__link--active       { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.pagination__link--active:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }

/* -----------------------------------------------------------------------------
   19. Group Stage Grid (index / schedule pages)
   ----------------------------------------------------------------------------- */
.group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.group-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.group-card__header {
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-primary);
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--color-primary);
}
.group-card__team {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .375rem 0;
  font-size: .9375rem;
  border-bottom: 1px solid var(--color-border);
}
.group-card__team:last-child { border-bottom: none; }
.group-card__ranking {
  font-size: .75rem;
  color: var(--color-text-light);
  margin-left: auto;
}

/* -----------------------------------------------------------------------------
   20. Venue / City Cards
   ----------------------------------------------------------------------------- */
.venue-card__capacity {
  font-size: .875rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: .375rem;
}

/* -----------------------------------------------------------------------------
   21. Guide / Blog Article Layout
   ----------------------------------------------------------------------------- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-layout__sidebar { order: -1; }
}

.article-body h2 { margin-top: 2rem; margin-bottom: .75rem; }
.article-body h3 { margin-top: 1.5rem; margin-bottom: .5rem; }
.article-body p  { margin-bottom: .875rem; }
.article-body ul,
.article-body ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: .875rem;
}
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: .375rem; }
.article-body a  { color: var(--color-primary); }
.article-body a:hover { text-decoration: underline; }

.article-sidebar { position: sticky; top: 80px; }
.article-sidebar__box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.article-sidebar__title {
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-text-muted);
  margin-bottom: .875rem;
}

/* -----------------------------------------------------------------------------
   22. Map Embed Wrapper
   ----------------------------------------------------------------------------- */
.map-embed {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-block: 1.5rem;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* -----------------------------------------------------------------------------
   23. Skyscanner / Booking Widget Wrappers
   ----------------------------------------------------------------------------- */
.widget-wrap {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-block: 1.5rem;
}
.widget-wrap__title {
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* -----------------------------------------------------------------------------
   24. Utilities
   ----------------------------------------------------------------------------- */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-muted   { color: var(--color-text-muted); }
.text-small   { font-size: .875rem; }
.text-xs      { font-size: .8125rem; }
.text-bold    { font-weight: 700; }
.text-primary { color: var(--color-primary); }
.text-accent  { color: var(--color-accent); }
.text-gold    { color: var(--color-gold); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-block: .5rem; }
.py-2 { padding-block: 1rem; }
.py-3 { padding-block: 1.5rem; }
.py-4 { padding-block: 2rem; }
.py-5 { padding-block: 3rem; }

.hidden       { display: none !important; }
.rounded      { border-radius: var(--radius-md); }
.rounded-full { border-radius: var(--radius-full); }
.divider      { border: none; border-top: 1px solid var(--color-border); margin-block: 1.5rem; }

/* -----------------------------------------------------------------------------
   25. Print
   ----------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .ticket-cta,
  .hotel-cta,
  .site-header__menu-toggle { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a    { color: #000; text-decoration: underline; }
}
