/* ═══════════════════════════════════════════════
   SOME AGENCY — mobile.css
   Mobile-only overrides (max-width: 768px).
   Desktop styles are NOT touched — everything
   is wrapped in @media so it never fires on 1440px+.

   All values in vw based on 320px viewport:
   conversion: px / 320 * 100 = vw
   --pad = 15px → 4.6875vw
   --mob-w = calc(100vw - 2 * var(--pad)) = 90.625vw
═══════════════════════════════════════════════ */

@media (max-width: 768px) {

.mob-br { display: block; }
.mob-only { display: inline; }
.desk-only { display: none; }

/* ─── VARIABLES ─── */
:root {
  --pad: 4.6875vw;
  --mob-w: calc(100vw - 2 * var(--pad));
}

html { scroll-padding-top: 20vw; }

/* ─── NAV ─── */
.nav {
  padding: 6.25vw var(--pad);
  justify-content: flex-end;
  align-items: center;
}
/* Homepage: nav always visible on mobile (no hero-dependent hiding) */
.has-hero .nav {
  opacity: 1;
  pointer-events: auto;
}
.nav__links {
  gap: 5vw;
}
.nav__links a {
  font-size: 4.0625vw;
  letter-spacing: 0.08125vw;
}

/* ─── PAGE LOGO (standalone, events + event pages) ─── */
.page-logo-top {
  top: 6.25vw;
  left: var(--pad);
  width: 20.9375vw;
  height: 15.625vw;
}

/* ══════════════════════════════════════════════
   EVENT CATALOGUE PAGE (events.html)
══════════════════════════════════════════════ */

.cat-page {
  padding-top: 28.125vw;
}

/* Section heading */
.cat-page .section-heading {
  padding-top: 6.25vw;
}
.cat-page .section-heading__title {
  font-size: 25vw;
  white-space: normal;
  line-height: 0.9;
  width: calc(100vw - 6.25vw);
  max-width: 93.75vw;
  margin: 0 auto;
}
.cat-page .section-heading__pill {
  position: absolute !important;
  top: calc(6.25vw + 33.5vw) !important;
  left: var(--pad) !important;
  right: var(--pad);
  transform: none !important;
  margin: 0;
  width: auto;
  max-width: none;
  padding: 4.0625vw 6.25vw 1.25vw; /* asymmetric — compensate font descender */
}
.cat-page .section-heading__pill span {
  font-size: 5.625vw;
  line-height: 1;
}
.cat-page .section-heading::after {
  top: calc(6.25vw + 26.25vw);
  bottom: auto;
  height: 16.25vw;
  left: var(--pad);
  width: var(--mob-w);
}

/* Breadcrumb */
.cat-breadcrumb {
  font-size: 5.625vw;
  padding: 2.5vw 0 5vw;
}
.cat-page .cat-breadcrumb {
  padding-top: 0;
  margin-top: -15vw;
}

/* Filter tabs */
.cat-tabs {
  gap: 1.875vw;
  margin-bottom: 5vw;
  flex-wrap: wrap;
}
.cat-tab {
  height: 9.0625vw;
  padding: 0 2.8125vw;
  font-size: 5vw;
  line-height: 5vw;
}
.cat-tab > span {
  align-self: center;
  padding-top: 1.25vw;
  padding-bottom: 0;
}
.cat-tab__icon {
  width: 4.0625vw;
  height: 4.0625vw;
}
.cat-tab.active::after {
  font-size: 5vw;
}

/* Filter bar — HIDDEN on mobile (desktop dropdowns) */
.cat-filter-bar {
  display: none;
}

/* ─── MOBILE FILTER BAR ─── */
.mob-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3.125vw;
  padding-bottom: 0.25vw;
  margin-bottom: 0.25vw;
}
.mob-filter-bar__left {
  display: flex;
  align-items: center;
  gap: 3.125vw;
}
.sort-arrow {
  transform: translateY(-0.3vw);
}
.mob-filter-bar__toggle,
.mob-filter-bar__sort,
.mob-filter-bar__clear {
  display: inline-flex;
  align-items: center;
  gap: 1.5625vw;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'PP Formula Condensed', sans-serif;
  font-size: 4.0625vw;
  line-height: 1.2;
  letter-spacing: 0.08125vw;
  text-transform: uppercase;
  color: var(--black);
}
.mob-filter-bar__clear {
  display: none;
  opacity: 0.4;
}
.mob-filter-bar__clear.visible {
  display: inline-flex;
}
.mob-filter-bar__chevron {
  width: 2.5vw;
  height: 1.25vw;
  transform: translateY(-0.4vw);
  transition: transform 0.2s ease;
}
.mob-filter-bar__toggle.active .mob-filter-bar__chevron {
  transform: rotate(180deg) translateY(0.4vw);
}

/* ─── MOBILE FILTER PANEL ─── */
.mob-filter-panel {
  display: none;
  background: #fff;
  border: 1px solid rgba(7,7,7,0.1);
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  margin-bottom: 3.125vw;
  padding: 0 4.6875vw;
}
.mob-filter-panel.open {
  display: block;
}

/* Section header */
.mob-filter-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 3.125vw 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(7,7,7,0.08);
  cursor: pointer;
  font-family: 'PP Formula Condensed', sans-serif;
  font-size: 4.0625vw;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--black);
}
.mob-filter-section:last-child .mob-filter-section__header {
  border-bottom: none;
}
.mob-filter-section.open .mob-filter-section__header {
  border-bottom: 1px solid rgba(7,7,7,0.08);
}

/* + / - icon */
.mob-filter-section__icon {
  width: 3.125vw;
  height: 3.125vw;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.mob-filter-section.open .mob-filter-section__icon {
  transform: rotate(45deg);
}

/* Section body (checkbox list) */
.mob-filter-section__body {
  display: none;
  padding: 2.5vw 0 3.125vw;
}
.mob-filter-section.open .mob-filter-section__body {
  display: block;
}

/* Search input inside section */
.mob-filter-search {
  width: 100%;
  height: 7.8125vw;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(7,7,7,0.1);
  font-family: 'PP Formula Condensed', sans-serif;
  font-size: 4.0625vw;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 2.5vw;
  margin-bottom: 2.5vw;
  outline: none;
}
.mob-filter-search::placeholder {
  color: rgba(7,7,7,0.3);
}

/* Options list */
.mob-filter-list {
  max-height: 40vw;
  overflow-y: auto;
}
.mob-filter-list::-webkit-scrollbar {
  width: 1.875vw;
}
.mob-filter-list::-webkit-scrollbar-track {
  background: rgba(7,7,7,0.1);
  border-radius: 1vw;
}
.mob-filter-list::-webkit-scrollbar-thumb {
  background: var(--black);
  border-radius: 0.625vw;
}

/* Option row */
.mob-filter-option {
  display: flex;
  align-items: center;
  gap: 3.125vw;
  padding: 1.5625vw 0;
  cursor: pointer;
  font-family: 'PP Formula Condensed', sans-serif;
  font-size: 4.0625vw;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--black);
}

/* Checkbox */
.mob-filter-checkbox {
  width: 4.375vw;
  height: 4.375vw;
  border: 1px solid rgba(7,7,7,0.2);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
}
.mob-filter-checkbox svg {
  display: none;
}
.mob-filter-option.selected .mob-filter-checkbox svg {
  display: block;
}

/* Events grid — 2 columns */
.cat-content .events__grid,
.events__grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 4.6875vw 3.125vw;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.cat-card-link {
  min-width: 0;
  overflow: hidden;
}

/* Event cards — mobile sizes */
.event-card__img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 333 / 416;
}
.event-card__photo {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 333 / 416;
}
.event-card__tag {
  bottom: 3.125vw;
  left: 2.5vw;
  height: 7.1875vw;
  padding: 1.25vw 2.1875vw 0.625vw;
  font-size: 5vw;
  line-height: 5vw;
  gap: 0.625vw;
}
.event-card__tag img {
  width: 4.0625vw;
  height: 4.0625vw;
}
.event-card__info {
  margin-top: 4.375vw;
}
.event-card__name {
  font-size: 5.625vw;
  letter-spacing: -0.1125vw;
}
.event-card__meta {
  font-size: 4.0625vw;
  margin-top: 2.5vw;
}
.event-card__meta-date { display: block; }
.event-card__meta-sep { display: none; }
.event-card__meta-loc {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.event-card__desc {
  font-size: 4.0625vw;
  margin-top: 1.875vw;
  -webkit-line-clamp: 4;
}
.events .event-card__desc { display: none; }

/* More button */
.cat-more-cta {
  padding: 6.25vw var(--pad);
}
.cat-more-cta .btn {
  width: 100%;
}

/* ── Catalogue dark theme (Past events) ─── */
.cat-page--dark .cat-breadcrumb { color: rgba(255,255,255,0.90); }
.cat-page--dark .cat-breadcrumb a { color: rgba(255,255,255,0.40); }
.cat-page--dark .cat-breadcrumb__sep { color: rgba(255,255,255,0.40); }
.cat-page--dark .mob-filter-bar__toggle,
.cat-page--dark .mob-filter-bar__sort,
.cat-page--dark .mob-filter-bar__clear { color: #ffffff; }
.cat-page--dark .mob-filter-bar__chevron { color: #ffffff; }
.cat-page--dark .mob-filter-panel {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}
.cat-page--dark .mob-filter-section__header { color: #ffffff; border-bottom-color: rgba(255,255,255,0.08); }
.cat-page--dark .mob-filter-section__icon { color: #ffffff; }
.cat-page--dark .mob-filter-option { color: #ffffff; }
.cat-page--dark .mob-filter-checkbox { border-color: rgba(255,255,255,0.25); }
.cat-page--dark .mob-filter-checkbox svg path { stroke: #ffffff; }

/* ══════════════════════════════════════════════
   EVENT DETAIL PAGE (event.html)
══════════════════════════════════════════════ */

.ed-wrap {
  padding: 28.125vw var(--pad) 12.5vw;
  display: flex;
  flex-direction: column;
}

/* Breadcrumb — hidden on mobile */
.ed-breadcrumb {
  display: none;
}

/* Hero — use display:contents so ed-wrap is the single flex parent */
.ed-hero {
  display: contents;
}

/* Type tag */
.ed-tag {
  height: 9.375vw;
  padding: 0 3.75vw;
  font-size: 5vw;
  margin-bottom: 2.5vw;
}

/* Title */
.ed-title {
  font-size: 15.625vw !important;
  line-height: 0.85 !important;
  margin-bottom: 0 !important;
  margin-top: 2vw !important;
  padding-bottom: 0 !important;
  order: 1;
}

/* On mobile: use display:contents on ed-body so all children
   participate in ed-hero's flex layout. This lets us interleave
   the photo between tag+title and the info sections via order. */
.ed-body {
  display: contents;
}

/* Photo — full width, sits between title and info */
.ed-photo-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 290 / 355;
  order: 2;
  margin-top: 0 !important;
}

/* Tag overlays on photo — same style as event-card__tag */
.ed-photo-tag {
  display: inline-flex !important;
  position: absolute;
  left: 2.5vw;
  height: 7.1875vw;
  padding: 1.5vw 3vw 0;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border: 1px solid rgba(255,255,255,0.4);
  font-size: 5vw;
  line-height: 5vw;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
}
.ed-photo-tag--type { display: none !important; }
.ed-photo-tag--info { bottom: 3.125vw; height: auto; padding: 1.5vw 3vw 0.5vw; font-size: 3.75vw; }

/* Title only above photo — order merged into main .ed-title rule */

/* Hide original tag on mobile (replaced by tag-date-row) */
.ed-body > .ed-tag { display: none; }

/* Tag + date row below photo (mobile only) */
.ed-tag-date-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  order: 3;
  width: 100%;
  margin-top: 5vw;
}
.ed-tag-date-row .ed-tag { margin: 0; order: 2; position: relative; top: -1.75vw; right: 0.625vw; }
.ed-tag-date-row .ed-tag--concert { display: none; }

/* Concert: hide tag-date-row entirely, show date in info-grid */
.ed-body--concert .ed-tag-date-row { display: none !important; }
.ed-info-col--date { display: none; }
.ed-body--concert .ed-info-col--date { display: block; }

/* Divider line above info grid */
.ed-divider { order: 3; width: 100%; display: block; height: 1px; background: rgba(7,7,7,0.15); margin: 0; }

/* Info grid — 2 columns on mobile */
.ed-info-grid {
  order: 3;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 5vw 0;
  padding: 5vw 0;
}

/* Everything else: order 3 (below photo), full width */
.ed-section-row  { order: 3; width: 100%; }
.ed-price-bar    { order: 2; width: 100%; }
.ed-tour         { order: 3; width: 100%; margin-top: 9.375vw; padding-bottom: 12.5vw; }
.ed-info__label {
  font-size: 5.625vw;
  margin-bottom: 1.5625vw;
}
.ed-info__value {
  font-size: 4.0625vw;
}
.ed-info__sub {
  display: block;
  margin-left: 0;
  margin-top: 0.625vw;
}

/* Venue row — stack maps button below */
.ed-venue-row {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.33vw;
}

/* Maps button */
.ed-maps-btn {
  height: 9.375vw;
  font-size: 5vw;
}

/* About / Rules — collapsible on mobile */
.ed-section-row {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}
.ed-section-row--collapsible {
  display: block;
}
.ed-section__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 4.375vw 0;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
}
.ed-section__label {
  font-size: 5.625vw;
}
.ed-section__toggle-icon {
  display: block;
  font-family: 'PP Formula Condensed', sans-serif;
  font-size: 8.125vw;
  color: #070707;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -1.19vw;
}
.ed-section-row--open .ed-section__toggle-icon {
  font-size: 5.7vw;
}
.ed-section-row--collapsible .ed-section__text {
  font-size: 4.0625vw;
  max-width: 100%;
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}
.ed-section-row--open .ed-section__text {
  max-height: 200vw;
  padding-bottom: 5vw;
}

/* Price bar + tour row bars */
.ed-bar {
  width: 100%;
  height: auto;
  min-height: 21.875vw;
  flex-direction: column;
  align-items: stretch;
  padding: 4.6875vw;
  gap: 3.75vw;
}
/* Price bar */
.ed-price-bar {
  margin-top: 6.25vw;
}
.ed-price-bar__price {
  padding-left: 0;
  font-size: 10vw;
}
.ed-bar__btn {
  width: 100%;
  height: 14.0625vw;
  margin-right: 0;
  font-size: 5vw;
  padding: 0 4.6875vw;
}
.ed-bar__btn__icon {
  width: 4.0625vw;
  height: 4.0625vw;
}

/* Ticket panel — right after price bar on mobile */
.ed-ticket-panel { order: 2; width: 100%; margin-bottom: 10vw; }

/* Providers bar — stack buttons vertically on mobile */
.ed-providers-bar {
  order: 2;
  width: 100%;
  margin-bottom: 10vw;
  flex-direction: column;
  gap: 3.125vw;
  padding: 4.6875vw var(--pad);
  min-height: 0;
  height: auto;
}
.ed-providers-bar .ed-bar__btn { width: 100%; }

/* Widget area */
.ed-ticket-widget {
  min-height: 62.5vw;
  padding: 4.6875vw var(--pad);
  font-size: 5vw;
}

/* Tour section */
.ed-tour__title {
  font-size: 15.625vw;
  margin-bottom: 2.08vw;
}

/* Tour rows — vertical stack */
.ed-tour-row {
  flex-direction: column;
  align-items: stretch;
  padding: 4.6875vw;
  gap: 3.125vw;
}
.ed-tour-row__link {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25vw;
}
.ed-tour-row__date {
  padding-left: 0;
  width: auto;
  font-size: 10vw;
}
.ed-tour-row__city {
  font-size: 10vw;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}
.ed-tour-row .ed-bar__btn {
  width: 100%;
  margin-right: 0;
}

/* Not-found */
.ed-not-found {
  padding: 12.5vw var(--pad);
  font-size: 5.625vw;
}

/* ══════════════════════════════════════════════
   FOOTER — mobile: switch from desktop absolute to CSS Grid
══════════════════════════════════════════════ */

.footer {
  height: 175.3125vw; /* 561px @ 320 */
  overflow: hidden;
  background: #070707;
}
.footer__grad {
  display: block;
  position: absolute;
  top: 12.8125vw;  /* 41px */
  left: 0;
  width: 100%;
  height: 162.5vw; /* 520px */
  background: linear-gradient(180deg, rgba(153,153,153,0) 0%, #999999 100%);
  pointer-events: none;
}
.footer__inner {
  position: relative;
  display: block;
  height: 100%;
  padding: 0;
}

/* All elements absolutely positioned per Figma */
.footer__logo {
  position: absolute;
  left: 4.6875vw;   /* 15px */
  top: 14.0625vw;   /* 45px */
  width: 90.625vw;  /* 290px */
  height: 67.8125vw; /* 217px */
}
.footer__link {
  position: absolute;
  font-size: 3.75vw;   /* 12px */
  letter-spacing: 0.075vw; /* 0.24px */
  line-height: 4.5vw;  /* 14.4px */
  white-space: nowrap;
}
/* Left column — social links */
.footer__email     { left: 4.6875vw; top: 93.4375vw; }  /* 15px, 299px */
.footer__whatsapp  { left: 4.6875vw; top: 100.9375vw; } /* 15px, 323px */
.footer__telegram  { left: 4.6875vw; top: 108.4375vw; } /* 15px, 347px */
.footer__instagram { left: 4.6875vw; top: 100.9375vw; } /* 15px, 323px */
/* Nav links — same row as email */
.footer__nav-homepage  { left: 42.5vw;  top: 93.4375vw; } /* 136px, 299px */
.footer__nav-catalogue { left: 59.375vw; top: 93.4375vw; } /* 190px, 299px */
.footer__nav-contact   { left: 84.6875vw; top: 93.4375vw; } /* 271px, 299px */
/* Bottom links */
.footer__privacy {
  position: absolute;
  left: 4.6875vw;    /* 15px */
  top: 133.125vw;    /* 426px */
  font-size: 3.75vw;
  line-height: 7.5vw; /* 24px */
}
.footer__back-top {
  position: absolute;
  left: 77.5vw;      /* 248px */
  top: 134.6875vw;   /* 431px */
  font-size: 3.75vw;
  line-height: 4.5vw;
  letter-spacing: 0.075vw;
}
.footer__copyright {
  position: absolute;
  left: 4.6875vw;    /* 15px */
  top: 165.625vw;    /* 530px */
  font-size: 3.125vw;  /* 10px */
  line-height: 3.4375vw; /* 11px */
}
.footer__tagline {
  position: absolute;
  left: 60.9375vw;   /* 195px */
  top: 165.625vw;    /* 530px */
  font-size: 3.125vw;  /* 10px */
  line-height: 3.4375vw; /* 11px */
}

/* ─── SHARED BUTTON ─── */
.btn {
  width: var(--mob-w);
  max-width: none;
  height: 14.0625vw;
  font-size: 5vw;
  padding: 0 4.6875vw;
}
.btn__icon {
  width: 4.0625vw;
  height: 4.0625vw;
}
.btn span {
  transform: translateY(0.625vw);
}

/* ─── SECTION CTA (e.g. "See all events →") ─── */
.section__cta {
  padding-left: var(--pad);
  padding-right: var(--pad);
  padding-top: 9.375vw;
  padding-bottom: 12.5vw;
}

/* ══════════════════════════════════════════════
   HOMEPAGE (index.html)
══════════════════════════════════════════════ */

/* ─── HERO ─── */
.hero {
  height: 190.69vw;
}
.hero__bg img {
  object-position: center bottom;
}
.hero__logo {
  left: var(--pad);
  top: 6.25vw;
  width: 33.4375vw;
  height: 25vw;
}
.hero__logo img {
  width: 33.4375vw;
  height: 25vw;
}

/* Heading block — Figma: starts at y=130, stretches to right edge minus gutter */
.hero__heading-block {
  left: var(--pad);
  top: 40.625vw;
  width: var(--mob-w);
  height: auto;
}
/* Gray bg behind line 1 — Figma: 290×61 at (15,130) */
.hero__heading-bg--1 {
  width: var(--mob-w);
  height: 19.0625vw;
}
/* Gray bg behind line 2 — Figma: 276×64 at (15,179), relative top = 49px */
.hero__heading-bg--2 {
  top: 15.3125vw;
  width: 86.25vw;
  height: 20vw;
}
/* Heading text — Figma: left:30 (=15 from block), top:147 (=17 from block), 50px, line-height:45px */
.hero__heading-text {
  font-size: 15.625vw;
  width: auto;
  top: 5.3125vw;
  left: 4.6875vw;
  letter-spacing: -0.3125vw;
  line-height: 14.0625vw;
}
/* Gradient over line 1 — Figma: 276×25 at (15,160), relative top=30 */
.hero__heading-grad--1 {
  width: 86.25vw;
  height: 7.8125vw;
  top: 9.375vw;
}
/* Gradient over line 2 — Figma: 275×29 at (15,201), relative top=71 */
.hero__heading-grad--2 {
  top: 22.1875vw;
  width: 85.9375vw;
  height: 9.0625vw;
}

/* Description — Figma: bg full-width at gutter, text inside */
.hero__desc {
  display: none;
}
.hero__desc-text {
  font-size: 5vw;
  line-height: 5vw;
  padding: 3.125vw 4.6875vw;
}

/* Buttons — Figma: stacked full-width at gutter */
.hero__buttons {
  left: var(--pad);
  top: 156.3vw;
  flex-direction: column;
  gap: 1.5625vw;
}
.hero__btn {
  width: var(--mob-w);
  height: 14.0625vw;
  padding: 0 4.6875vw;
}
.hero__btn-text {
  font-size: 5vw;
  transform: translateY(0.625vw);
}
.hero__btn-icon {
  width: 4.0625vw;
  height: 4.0625vw;
}

/* ─── WHO WE ARE + EXPERIENCE ─── */
.who-exp__inner {
  padding: 0 0 12.5vw;
}

/* Heading zones — min-height so absolute pill/bar don't overflow */
.who-exp__heading {
  font-size: 25vw;
  margin-top: 12.5vw;
  min-height: 56.25vw;
  overflow: visible;
}
.who-exp__heading:first-child {
  margin-top: 21.875vw;
}
.who-exp__title {
  white-space: normal;
  width: 93.75vw;
  max-width: 93.75vw;
  margin: 0 auto;
  line-height: 22.5vw;
}

/* Bars — absolute overlay, fade bottom of title text */
.who-exp__bar,
.who-exp__bar--who,
.who-exp__bar--exp {
  display: block;
  top: 26.25vw;
  bottom: auto;
  left: var(--pad);
  width: var(--mob-w);
  height: 16.25vw;
}

/* Pills — absolute, overlaid on title text */
.who-exp__pill,
.who-exp__pill--who,
.who-exp__pill--exp {
  position: absolute;
  top: 40vw;
  left: var(--pad);
  right: var(--pad);
  width: auto;
  margin: 0;
}
.who-exp__pill-text {
  font-size: 5.625vw;
  white-space: normal;
  line-height: 5.625vw;
  padding: 4.0625vw 4.6875vw 1.25vw;
}

/* Body text */
.who-exp__body {
  width: var(--mob-w);
  margin: 6.25vw auto 0;
  font-size: 5.625vw;
  line-height: 7.3125vw;
}

/* Photos */
.who-exp__photos {
  flex-direction: column;
  padding: 0;
  gap: 0;
  align-items: center;
  margin-top: 6.25vw;
}
.who-exp__photo {
  width: var(--mob-w);
  height: 68.75vw;
  flex: none;
  margin-top: 6.25vw;
}
.who-exp__photo--right { height: 57.8125vw; }
.who-exp__photo-overlay {
  display: none;
}

/* Experience heading — gap from photos to title */
.who-exp__photos + .who-exp__heading {
  margin-top: 31.25vw;
}

/* Stats — spread across content width, labels scale to fit */
.who-exp__stats {
  justify-content: space-between;
  gap: 0;
  margin-top: 18.75vw;
  width: 70.3125vw;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}
.who-exp__stat,
.who-exp__stat--cities,
.who-exp__stat--events,
.who-exp__stat--countries {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: visible;
  width: auto;
}
.who-exp__stat-box,
.who-exp__stat--cities .who-exp__stat-box,
.who-exp__stat--events .who-exp__stat-box,
.who-exp__stat--countries .who-exp__stat-box {
  height: 12.5vw;
  width: 12.8125vw;
  margin-left: 0;
}
.who-exp__stat--events .who-exp__stat-box { width: 18.75vw; }
.who-exp__stat-num {
  font-size: 15.625vw;
  line-height: 20.3125vw;
  top: -1.5625vw;
}
.who-exp__stat-bar-img { height: 5vw; }
.who-exp__stat-label {
  font-size: 5vw;
  line-height: 6.5vw;
  margin-top: 2.5vw;
  white-space: nowrap;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

/* Map — full-width on mobile */
.who-exp__map {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 6.25vw;
}
.who-exp__map img {
  width: 100%;
  height: auto;
}

/* CTA — full-width button, left-aligned */
.who-exp__cta {
  margin-top: 9.375vw;
  width: 100%;
  padding: 0 var(--pad);
  justify-content: flex-start;
}

/* ─── SECTION HEADINGS (Upcoming/Past/FAQ/Contact) ─── */
.section-heading {
  padding-top: 21.875vw;
  min-height: 82vw !important;
  overflow: visible;
}
.section-heading__title {
  font-size: 25vw;
  white-space: normal;
  width: 93.75vw;
  max-width: 93.75vw;
  margin: 0 auto;
  line-height: 22.5vw;
}
/* Pill — absolute, overlaid on title text */
.section-heading__pill,
.section-heading__pill--wide {
  position: absolute !important;
  top: calc(21.875vw + 40vw) !important;
  left: var(--pad) !important;
  right: var(--pad);
  transform: none !important;
  width: auto;
  max-width: none;
  padding: 4.0625vw 2.1875vw 1.25vw;
  margin: 0;
}
.section-heading__pill--wide {
  padding-left: 3.75vw;
  padding-right: 3.75vw;
}
.section-heading__pill span {
  font-size: 5.625vw;
  white-space: normal;
  line-height: 5.625vw;
}
/* FAQ — single-line title, smaller heading */
.faq .section-heading {
  min-height: 62.5vw !important;
}
.faq .section-heading__pill {
  top: calc(21.875vw + 17vw) !important;
  opacity: 1 !important;
  transition: none !important;
}
/* Gradient bar — fixed offset from title top, matches Figma 84px (26.25vw) */
.section-heading::after {
  top: calc(21.875vw + 26.25vw);
  bottom: auto;
  height: 16.25vw;
  left: var(--pad);
  width: var(--mob-w);
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.10) 10%, #000000 100%);
}
.section-heading--dark::after {
  background: linear-gradient(180deg, rgba(229,229,229,0) 0%, rgba(229,229,229,0.10) 10%, #E5E5E5 100%);
}
.section-heading--white::after {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.10) 10%, #ffffff 100%);
}
/* FAQ gradient — single-line title, 19px offset */
.faq .section-heading::after {
  top: calc(21.875vw + 5.9375vw);
}
.section-heading__q-tail {
  display: block;
  left: calc(50% + 25vw * 0.42);
  top: calc(21.875vw + 25vw * 0.53);
  width: calc(25vw * 0.214);
  height: calc(25vw * 0.201);
}
/* Contact — 2-line title like upcoming events */
.contact .section-heading {
  min-height: 96vw !important;
}

/* Upcoming events — pill is 4 lines, needs taller heading */
.events--light .section-heading {
  min-height: 90vw !important;
}

/* Past events — 2-line title, slightly smaller font so "PAST EVENTS" fits one line */
.events--dark .section-heading {
  min-height: 85vw !important;
}
.events--dark .section-heading__title {
  font-size: 21.5vw;
  line-height: 19.5vw;
}
.events--dark .section-heading__pill {
  top: calc(21.875vw + 34.25vw) !important;
}

/* ─── EVENTS SECTIONS (Upcoming + Past on homepage) ─── */
.events--light .events__grid,
.events--dark .events__grid {
  padding: 3.125vw var(--pad);
}

/* ─── WHERE MUSIC COMES ALIVE ─── */
.music-alive {
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: visible;
}
/* Heading block — above slider on mobile.
   All children are position:absolute (desktop), so block has 0 height.
   Must set explicit height = bottom of lowest child (heading-bg--2 bottom = 35.3125vw) */
.music-alive__heading-block {
  position: relative;
  left: auto;
  top: auto;
  margin-left: var(--pad);
  margin-top: 3.125vw;
  z-index: 5;
  order: 1;
  height: 35.3125vw;
}
.music-alive__slider {
  position: relative;
  height: 137.5vw;
  order: 3;
  inset: auto;
  overflow: hidden;
}
/* Gray bg behind line 1 — Figma: 229×65 */
.music-alive__heading-bg--1 {
  width: 71.5625vw;
  height: 20.3125vw;
}
/* Gray bg behind line 2 — Figma: 206×64, top offset = 49px */
.music-alive__heading-bg--2 {
  top: 15.3125vw;
  width: 64.375vw;
  height: 20vw;
}
/* Text — Figma: 50px, line-height:45px, at (30, 5364) */
.music-alive__heading-text {
  font-size: 15.625vw;
  width: 78.125vw;
  top: 5.625vw;
  left: 4.6875vw;
  letter-spacing: -0.3125vw;
  line-height: 14.0625vw;
}
/* Gradient over line 1 — Figma: 229×25 */
.music-alive__heading-grad--1 {
  width: 71.5625vw;
  height: 7.8125vw;
  top: 9.375vw;
}
/* Gradient over line 2 — Figma: 206×29 */
.music-alive__heading-grad--2 {
  top: 22.1875vw;
  width: 64.375vw;
  height: 9.0625vw;
}
/* Description — Figma: bg 206×49, text 176px wide, 16px */
.music-alive__desc {
  position: relative;
  left: auto;
  top: auto;
  margin-left: var(--pad);
  margin-top: 3.125vw;
  margin-bottom: 3.125vw;
  width: 64.375vw;
  order: 2;
}
.music-alive__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.music-alive__slide img {
  object-position: center center;
}
.music-alive__desc-text {
  font-size: 5vw;
  line-height: 5vw;
  padding: 3.125vw 4.6875vw;
}
/* Nav arrows — Figma: 35×35, centered at y=202 (top of section), not vertically centered */
.music-alive__nav {
  width: 10.9375vw;
  height: 10.9375vw;
  top: 63.125vw;
  transform: none;
}
.music-alive__nav--prev {
  left: var(--pad);
}
.music-alive__nav--next {
  right: 4.6875vw;
}
.music-alive__arrow {
  width: 2.5vw;
  height: 2.5vw;
}
/* Dots — Figma: at bottom, centered, with white bg */
.music-alive__dots {
  bottom: 4.6875vw;
}

/* ─── FAQ ─── */
.faq__grid {
  flex-direction: column;
  gap: 0;
  padding: 0 var(--pad);
  margin-top: 6.25vw;
}
.faq__col .faq-item:first-child {
  border-top: none;
}
.faq__col:first-child .faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.2);
}
.faq-item__question {
  font-size: 5vw;
  padding: 5vw 0;
  align-items: flex-start;
  gap: 3.125vw;
}
.faq-item__icon {
  width: 4.0625vw;
  height: 4.0625vw;
}
.faq-item__answer p {
  font-size: 4.375vw;
}

/* ─── GET IN TOUCH ─── */
.contact {
  padding-bottom: 18.75vw;
}
.contact__channels {
  flex-direction: column;
  align-items: stretch;
  gap: 1.5625vw;
  margin-top: -1.58vw;
  padding: 6.25vw var(--pad) 9.375vw;
}
.contact-form {
  max-width: var(--mob-w);
  margin: 0 auto;
  padding: 0;
}
.contact-form__field {
  --field-gap: 7.5vw;
}
.contact-form__field input,
.contact-form__field textarea {
  font-size: 4.375vw;
}
.contact-form__privacy {
  font-size: 4.375vw;
}
.contact-form__footer {
  gap: 6.25vw;
}
.contact-form__submit {
  min-width: var(--mob-w);
  width: var(--mob-w);
}

/* ─── TOUCH: disable sticky hover ─── */
@media (hover: none) {
  .nav__links a:hover { opacity: 1; }
  .hero__btn:hover .hero__btn-base { background: #ffffff; }
  .hero__btn--ghost:hover .hero__btn-base { background: rgba(255,255,255,0.9); }
  .hero__btn:hover .hero__btn-texture { opacity: 1; }
  .btn:hover { background: rgba(255,255,255,0.9); }
  .btn--outline:hover { background: var(--white); }
  .btn:hover .btn__bg { opacity: 1; }
  .btn:hover::after { opacity: 1; }
  .event-card__tag:hover { background: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.4); }
  .music-alive__nav:hover::after { opacity: 0; }
  .faq-item__question:hover { opacity: 1; }
  .cat-breadcrumb a:hover { color: inherit; }
  .cat-tab:not(.active):hover { background: inherit; color: inherit; border-color: inherit; }
  .cat-select:hover { opacity: 1; }
  .cat-sort-btn:hover { opacity: 1; }
  .cat-dropdown__trigger:hover { opacity: 1; }
  .cat-dropdown__option:hover { background: transparent; }
  .cat-card-link:hover .event-card__photo { transform: none; }
  .cat-page--dark .cat-breadcrumb a:hover { color: inherit; }
  .cat-page--dark .cat-tab:not(.active):hover { background: inherit; color: inherit; border-color: inherit; }
  .cat-page--dark .cat-dropdown__option:hover { background: transparent; }
  .ed-breadcrumb a:hover { color: inherit; }
  .ed-maps-btn:hover { opacity: 1; }
  .ed-bar__btn:hover { background: rgba(255,255,255,0.9); }
  .ed-tour-row__link:hover { opacity: 1; }
  .footer__link:hover,
  .footer__link.io-visible:hover,
  .footer__nav-contact:hover,
  .footer__nav-contact.io-visible:hover,
  .footer__back-top:hover,
  .footer__back-top.io-visible:hover { opacity: 1; }

  /* ─── Active (tap) states — mirror hover effects ─── */
  .nav__links a:active { opacity: 0.7; }
  .btn:active { background: #e2e2e2; }
  .btn:active .btn__bg { opacity: 0; }
  .btn:active::after { opacity: 0; }
  .event-card__tag:active { background: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.6); }
  .faq-item__question:active { opacity: 0.8; }
  .cat-card-link:active .event-card__photo { transform: scale(1.03); }
  .cat-tab:not(.active):active { opacity: 0.7; }
  .footer__link:active,
  .footer__nav-contact:active,
  .footer__back-top:active { opacity: 0.5; }
  .ed-bar__btn:active { background: #e2e2e2; }
  .ed-tour-row__link:active { opacity: 0.7; }
  .ed-maps-btn:active { opacity: 0.7; }
}

} /* end @media (max-width: 768px) */
