/* =========================================================================
   Milonga Las Tres Esquinas — landing page
   Design system: ../Wedding-dance/general-style.md
   Plain static site: no framework, no build, no animation library.
   ========================================================================= */

/* ---------- 1. Tokens ---------------------------------------------------- */

:root {
  /* Brand palette (general-style.md §2) */
  --color-principal: #073a7c;
  --color-secundario: #3782d3;
  --color-acento: #7a1f2b;
  --color-detalle: #f6b40e;
  --color-texto: #2c2c2a;
  --color-header: #f2eee6;
  --color-bg: #f6f6f6;
  --color-surface: #ffffff;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --section-y: clamp(56px, 9vw, 120px);
  --section-x: clamp(20px, 5vw, 64px);
  --header-h: 68px;

  /* Radius (general-style.md §6) */
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 28px;

  /* Borders — solid, visible */
  --border-w: 1.5px;
  --border: var(--border-w) solid var(--color-principal);

  /* Shadows — minimal at rest */
  --shadow-rest: 0 1px 2px rgba(7, 58, 124, 0.04);
  --shadow-hover: 0 18px 40px rgba(7, 58, 124, 0.12);

  /* Motion (general-style.md §8.1) */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.4s;
  --dur-move: 0.6s;
  --dur-slow: 0.8s;
}

/* ---------- 2. Reset / base ------------------------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-texto);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.5em;
  color: var(--color-principal);
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

h3 {
  font-weight: 400;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--color-secundario);
  text-decoration: none;
  transition: color var(--dur-fast) ease;
}

a:hover {
  color: var(--color-acento);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

:focus-visible {
  outline: 2px solid var(--color-detalle);
  outline-offset: 3px;
  border-radius: 3px;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--color-principal);
  color: #fff;
  border-radius: var(--radius-sm);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

/* ---------- 3. Layout utilities ----------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--section-x);
}

.section {
  padding-block: var(--section-y);
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.section--tint {
  background: var(--color-surface);
  border-block: var(--border-w) solid rgba(7, 58, 124, 0.12);
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(36px, 6vw, 72px);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding-bottom: 12px;
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-secundario);
}

.eyebrow::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 1px;
  background: var(--color-detalle);
}

.section-head--center .eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

h1 {
  font-size: clamp(32px, 6vw, 60px);
}

.section h2 {
  font-size: clamp(26px, 3.6vw, 40px);
}

.lead {
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(44, 44, 42, 0.8);
}

/* ---------- 4. Buttons (general-style.md §7) --------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font: inherit;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition:
    transform var(--dur-fast) var(--ease-premium),
    background-color var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease;
}

.btn:hover {
  transform: scale(1.04);
}

.btn:active {
  transform: scale(0.99);
}

.btn--primary {
  background: var(--color-detalle);
  border-color: var(--color-detalle);
  color: var(--color-texto);
}

.btn--primary:hover {
  color: var(--color-texto);
  box-shadow: 0 12px 28px rgba(246, 180, 14, 0.32);
}

.btn--secondary {
  background: var(--color-principal);
  border-color: var(--color-principal);
  color: #fff;
}

.btn--secondary:hover {
  background: var(--color-acento);
  border-color: var(--color-acento);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: var(--color-principal);
  color: var(--color-principal);
}

.btn--outline:hover {
  border-color: var(--color-acento);
  color: var(--color-acento);
  background: rgba(122, 31, 43, 0.05);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn--ghost:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn[disabled],
.btn[aria-disabled='true'] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.btn--block {
  width: 100%;
}

/* ---------- 5. Header / navigation ------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, #ffffff 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-w) solid rgba(7, 58, 124, 0.16);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.site-header__logo {
  width: auto;
  height: 28px;
}

.site-header__brand span {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-principal);
}

@media (max-width: 400px) {
  .site-header__brand span {
    display: none;
  }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 26px);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 22px);
}

.site-nav__list a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-texto);
}

.site-nav__list a:hover {
  color: var(--color-principal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: var(--border-w) solid rgba(7, 58, 124, 0.28);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-principal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 16px var(--section-x) 24px;
    background: #ffffff;
    border-bottom: var(--border-w) solid rgba(7, 58, 124, 0.16);
    box-shadow: var(--shadow-hover);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .site-nav[data-open='true'] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__list a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid rgba(7, 58, 124, 0.12);
  }

  .site-nav .btn {
    margin-top: 12px;
    width: 100%;
  }
}

/* ---------- 6. Hero --------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: min(88vh, 760px);
  padding: clamp(90px, 16vw, 160px) 0 clamp(48px, 8vw, 88px);
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.4s var(--ease-premium);
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__media img,
.hero__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide {
    transition: none;
  }
  .hero__slide:not(.is-active) {
    display: none;
  }
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(7, 26, 54, 0.92) 0%,
      rgba(7, 26, 54, 0.66) 42%,
      rgba(7, 26, 54, 0.4) 72%,
      rgba(7, 26, 54, 0.3) 100%
    );
}

.hero h1 {
  color: #fff;
  max-width: 15ch;
  margin-bottom: 18px;
}

.hero__kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-detalle);
}

.hero__kicker span:not(:last-child)::after {
  content: '·';
  margin-left: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.hero__meta {
  margin: 0 0 30px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.hero__meta strong {
  display: block;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- 7. Cards & media features --------------------------------- */

.card {
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-rest);
  padding: clamp(26px, 3vw, 38px) clamp(22px, 2.4vw, 32px);
  transition:
    transform var(--dur-move) var(--ease-premium),
    border-color var(--dur-fast) ease,
    box-shadow var(--dur-fast) ease,
    background-color var(--dur-fast) ease;
}

.card--hover:hover {
  transform: translateY(-6px);
  border-color: var(--color-acento);
  box-shadow: var(--shadow-hover);
  background-color: rgba(122, 31, 43, 0.03);
}

.feature {
  display: grid;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
}

@media (min-width: 880px) {
  .feature {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

/* On mobile every feature leads with its text, regardless of source order. */
@media (max-width: 879px) {
  .feature__body {
    order: 1;
  }

  .feature__media {
    order: 2;
  }
}

.feature > * {
  min-width: 0;
}

.feature__media {
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-rest);
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature__media--portrait img {
  aspect-ratio: 4 / 5;
}

.feature__media--wide img {
  aspect-ratio: 3 / 2;
}

.feature__body p:last-child {
  margin-bottom: 0;
}

.feature__topic {
  margin: 1.2em 0 0.4em;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-principal);
}

.dj-origin {
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-secundario);
  vertical-align: middle;
  white-space: nowrap;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 0 0 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-principal);
}

.meta-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta-line span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-detalle);
}

/* ---------- Artist social links ---------- */

.artist-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.artist-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: var(--border-w) solid var(--color-principal);
  border-radius: var(--radius-sm);
  color: var(--color-principal);
  transition:
    color var(--dur-fast) ease,
    border-color var(--dur-fast) ease,
    background-color var(--dur-fast) ease,
    transform var(--dur-fast) var(--ease-premium);
}

.artist-links a:hover {
  color: var(--color-acento);
  border-color: var(--color-acento);
  background: rgba(122, 31, 43, 0.05);
  transform: scale(1.06);
}

.artist-links .ic {
  width: 18px;
  height: 18px;
  display: block;
}

.artist-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin: 0 0 22px;
}

.artist-links-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.artist-links-group__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-principal);
}

.artist-links-group .artist-links {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .artist-links a:hover {
    transform: none;
  }
}

.organizers {
  max-width: 640px;
}

.organizers .lead {
  color: var(--color-texto);
}

.music-head {
  max-width: 640px;
  margin-bottom: clamp(28px, 4vw, 44px);
}

/* Orchestra photo: full container width, never cropped — the whole ensemble
   stays visible (per request). */
.band-figure {
  margin: 0;
  border: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-rest);
}

.band-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.about {
  max-width: 760px;
}

.about__statement {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--color-principal);
  margin-bottom: 0.8em;
}

/* ---------- 8. Program timeline -------------------------------------- */

.timeline {
  display: grid;
  gap: 18px;
}

@media (min-width: 720px) {
  .timeline {
    gap: 22px;
  }
}

.timeline__item {
  display: grid;
  gap: 6px 28px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-rest);
}

@media (min-width: 640px) {
  .timeline__item {
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: baseline;
  }
}

.timeline__time {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-principal);
}

.timeline__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-texto);
  margin: 0 0 4px;
}

.timeline__detail {
  margin: 0;
  color: rgba(44, 44, 42, 0.78);
  font-size: 15px;
}

/* ---------- 9. Callout / note box ---------------------------------- */

.note {
  margin-top: 28px;
  padding: clamp(20px, 3vw, 28px);
  border: var(--border-w) solid var(--color-secundario);
  border-left-width: 4px;
  border-radius: var(--radius-sm);
  background: rgba(55, 130, 211, 0.06);
}

.note p {
  margin: 0;
}

.note p + p {
  margin-top: 8px;
}

.note strong {
  color: var(--color-principal);
}

/* ---------- 9b. Disclosure (details/summary) --------------------- */

.disclosure {
  margin: 22px 0 0;
  border: var(--border-w) solid rgba(7, 58, 124, 0.2);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.disclosure > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px clamp(16px, 2.4vw, 22px);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-principal);
  cursor: pointer;
  list-style: none;
}

.disclosure > summary::-webkit-details-marker {
  display: none;
}

.disclosure > summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-secundario);
  transition: transform var(--dur-fast) var(--ease-premium);
}

.disclosure[open] > summary::after {
  transform: rotate(45deg);
}

.disclosure__body {
  padding: 0 clamp(16px, 2.4vw, 22px) clamp(16px, 2.4vw, 22px);
  border-top: var(--border-w) solid rgba(7, 58, 124, 0.14);
}

.disclosure__body h3 {
  margin: 18px 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-principal);
}

.disclosure__body p {
  margin: 0;
  font-size: 15px;
  color: rgba(44, 44, 42, 0.82);
}

/* ---------- 10. Venue ------------------------------------------------- */

.venue-card {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  padding: clamp(28px, 4vw, 48px);
  background: var(--color-surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-rest);
}

@media (min-width: 760px) {
  .venue-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

.venue-card__address {
  font-style: normal;
  font-size: clamp(17px, 2.2vw, 22px);
  line-height: 1.5;
  color: var(--color-texto);
}

.venue-card__address strong {
  display: block;
  font-size: 1.15em;
  color: var(--color-principal);
  margin-bottom: 6px;
}

.venue-card__parking {
  margin: 16px 0 0;
  font-size: 15px;
  color: rgba(44, 44, 42, 0.78);
}

/* Venue carousel — video + parking photo, CSS scroll-snap, minimal JS */
.venue-carousel {
  margin: 24px auto 0;
  max-width: 820px;
}

.venue-carousel__viewport {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  border: var(--border);
  border-radius: var(--radius);
  background: #08203f;
  box-shadow: var(--shadow-rest);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.venue-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.venue-carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 16px;
}

.venue-carousel__media {
  width: 100%;
  height: clamp(260px, 42vh, 420px);
  object-fit: contain;
  border-radius: 10px;
  background: #08203f;
}

.venue-carousel__slide figcaption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.venue-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.venue-carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: var(--border-w) solid var(--color-principal);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color var(--dur-fast) ease, transform var(--dur-fast) var(--ease-premium);
}

.venue-carousel__dots button:hover {
  transform: scale(1.15);
}

.venue-carousel__dots button[aria-current='true'] {
  background: var(--color-detalle);
  border-color: var(--color-detalle);
}

@media (prefers-reduced-motion: reduce) {
  .venue-carousel__viewport {
    scroll-behavior: auto;
  }
  .venue-carousel__dots button:hover {
    transform: none;
  }
}

/* ---------- 11. Tickets --------------------------------------------- */

.ticket-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  max-width: 640px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  padding: clamp(20px, 3.5vw, 30px) clamp(22px, 4vw, 40px);
  text-align: center;
  background: var(--color-detalle);
  border: 2px solid var(--color-principal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.ticket-banner__lead {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-acento);
}

.ticket-banner__main {
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-principal);
}

.ticket-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 720px) {
  .ticket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ticket-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 40px);
  background: var(--color-surface);
  border: 2px solid var(--color-principal);
  border-radius: var(--radius);
  box-shadow: var(--shadow-rest);
}

.ticket-card--supporter {
  border-color: var(--color-detalle);
}

.ticket-card__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secundario);
}

.ticket-card--supporter .ticket-card__tag {
  color: var(--color-acento);
}

.ticket-card__price {
  margin: 10px 0 2px;
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-principal);
}

.ticket-card__price-was {
  margin-right: 0.15em;
  font-size: 0.55em;
  font-weight: 500;
  color: rgba(44, 44, 42, 0.45);
  text-decoration: line-through;
}

.ticket-card__note {
  margin: 0 0 22px;
  font-size: 14px;
  color: rgba(44, 44, 42, 0.75);
  min-height: 1.5em;
}

.ticket-card__spacer {
  flex: 1;
}

.privacy-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 4px 0 18px;
  padding: 14px;
  border: var(--border-w) solid rgba(7, 58, 124, 0.2);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
}

.privacy-row input[type='checkbox'] {
  flex: none;
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--color-principal);
  cursor: pointer;
}

.privacy-row label {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-texto);
  cursor: pointer;
}

.privacy-row .req {
  color: var(--color-acento);
  font-weight: 600;
}

.ticket-hint {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(44, 44, 42, 0.7);
  text-align: center;
  min-height: 1.4em;
}

.ticket-help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0 0;
  font-size: 15px;
  color: rgba(44, 44, 42, 0.8);
}

/* ---------- 12. Sticky mobile CTA --------------------------------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  padding: 12px var(--section-x) calc(12px + env(safe-area-inset-bottom, 0px));
  background: color-mix(in srgb, var(--color-header) 94%, transparent);
  backdrop-filter: blur(10px);
  border-top: var(--border-w) solid rgba(7, 58, 124, 0.18);
  transform: translateY(120%);
  transition: transform 0.35s var(--ease-premium);
}

.sticky-cta[data-visible='true'] {
  transform: translateY(0);
}

.sticky-cta .btn {
  width: 100%;
}

@media (min-width: 901px) {
  .sticky-cta {
    display: none;
  }
}

/* ---------- 13. Final CTA ---------------------------------------- */

.final-cta {
  text-align: center;
  background: var(--color-principal);
  color: #fff;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 5vw, 46px);
  margin-bottom: 14px;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(15px, 1.8vw, 18px);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

/* ---------- 14. Footer ------------------------------------------- */

.site-footer {
  background: var(--color-header);
  border-top: var(--border-w) solid rgba(7, 58, 124, 0.16);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  justify-content: space-between;
  align-items: center;
  padding-block: clamp(32px, 5vw, 52px);
}

.site-footer__brand {
  margin: 0;
}

.site-footer__mark {
  width: auto;
  height: 64px;
  mix-blend-mode: multiply;
}

.site-footer__brand span {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 13px;
  color: rgba(44, 44, 42, 0.6);
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  font-size: 14px;
}

.site-footer__links a {
  color: var(--color-texto);
}

.site-footer__links a:hover {
  color: var(--color-principal);
}

.site-footer__copy {
  width: 100%;
  font-size: 13px;
  color: rgba(44, 44, 42, 0.6);
}

/* ---------- 15. Scroll reveal (general-style.md §8.2–8.3) ------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--dur-move) var(--ease-premium),
    transform var(--dur-move) var(--ease-premium);
}

[data-reveal='fade'] {
  transform: none;
}

[data-reveal='left'] {
  transform: translateX(-28px);
}

[data-reveal='right'] {
  transform: translateX(28px);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

[data-reveal].is-in:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger > [data-reveal].is-in:nth-child(2) {
  transition-delay: 0.12s;
}
.stagger > [data-reveal].is-in:nth-child(3) {
  transition-delay: 0.24s;
}
.stagger > [data-reveal].is-in:nth-child(4) {
  transition-delay: 0.36s;
}

/* ---------- 16. Reduced motion (general-style.md §9) ----------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .btn:hover,
  .card--hover:hover {
    transform: none;
  }
}
