/* ==========================================================================
   TOKENS — Paleta "Luxury Night": fondo #1A1D24 gris azulado profundo,
   acento cobre #E67E4C, texto crema #F1EDE4, borde teal #2D5356.
   Tipografía: DM Serif Display (títulos) + Montserrat (cuerpo/menú).
   ========================================================================== */
:root {
  /* Fondos — azul noche marino profundo (estética "luxury night") */
  --bg:        #0E141C;   /* fondo principal — azul noche casi negro */
  --bg-2:      #141C27;   /* fondo secciones alternas */
  --bg-card:   #121A24;   /* tarjetas y formularios */

  /* Texto */
  --cream:     #F5F1E7;   /* texto principal — crema suave */
  --cream-dim: #A7ADB8;   /* texto secundario / muted sobre oscuro (más frío, azulado) */

  /* Acento — cobre/naranja más vivo, tipo brasa nocturna */
  --copper:      #F2915A;   /* CTA, hover, bordes activos */
  --copper-deep: #D9702F;   /* hover estado darker del cobre */

  /* Bordes secundarios */
  --teal:      #2C4A55;   /* bordes de tarjetas, íconos */
  --teal-dim:  rgba(44, 74, 85, 0.45);

  /* Negro grafito — usado en secciones premium como la Galería */
  --graphite:      #0B0D10;
  --graphite-2:    #131619;

  /* Legados (mantener para compatibilidad interna) */
  --paper:     #0E141C;
  --paper-2:   #141C27;
  --ink:       #F5F1E7;
  --ink-2:     #141C27;
  --body:      #A7ADB8;
  --body-on-ink: #A7ADB8;
  --gold:      #F2915A;
  --gold-deep: #D9702F;

  --font-display: "DM Serif Display", Georgia, serif;
  --font-body:    "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Altura de la barra de redes anclada al fondo (footer__social) */
  --social-bar-h: 60px;

  --wrap: 1180px;
  --radius: 0px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Fija el ancho al de la pantalla: evita que contenido más ancho que el
     viewport genere scroll/zoom horizontal accidental en mobile. */
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  overflow-x: hidden;
  width: 100%;
  /* Evita el zoom por doble-tap en iOS/Android sobre toda la página */
  touch-action: manipulation;
  /* Espacio reservado para la barra de redes anclada al fondo (ver .footer__social) */
  padding-bottom: var(--social-bar-h, 60px);
  /* Fondo base + textura de humo via gradiente radial multicapa */
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 20% 5%,   rgba(35, 58, 82, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 85%,  rgba(20, 30, 46, 0.60) 0%, transparent 50%),
    radial-gradient(ellipse at 55% 50%,  rgba(14, 20, 28, 0.85) 0%, transparent 70%),
    radial-gradient(ellipse at 5% 75%,   rgba(24, 36, 48, 0.45) 0%, transparent 45%),
    radial-gradient(ellipse at 95% 15%,  rgba(40, 30, 26, 0.35) 0%, transparent 40%);
  background-attachment: fixed;
  background-size: cover;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
h1 { font-weight: 400; font-style: italic; }
h2 { font-weight: 400; color: var(--copper); }
h3, h4 { font-weight: 600; font-family: var(--font-body); color: var(--cream); letter-spacing: 0.02em; }
p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--copper); color: var(--bg); padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.on-ink { color: var(--cream-dim); }
.on-ink h2 { color: var(--copper); }

/* ==========================================================================
   REVEAL (único momento de motion coreografiado)
   ========================================================================== */
/* Nota: la entrada/salida de [data-reveal] y [data-reveal-item] la maneja
   por completo js/main.js (GSAP). A propósito NO hay opacity:0 por defecto
   acá: si el script de GSAP no carga (CDN caído, CSP, bloqueo de red), el
   contenido debe verse igual, sin animación — nunca depender del JS para
   que el sitio sea legible. */

/* ==========================================================================
   BOTONES
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.1rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn--primary { background: var(--copper); color: var(--bg); border-color: var(--copper); }
.btn--primary:hover { background: var(--copper-deep); border-color: var(--copper-deep); }
.btn--ghost { border-color: rgba(241, 237, 228, 0.4); color: var(--cream); }
.btn--ghost:hover { border-color: var(--copper); color: var(--copper); }

/* ==========================================================================
   HEADER — transparente sobre el hero, se vuelve sólido oscuro al hacer scroll
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1.4rem;
  transition: background-color 0.3s var(--ease), padding-block 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(26, 29, 36, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding-block: 0.85rem;
  box-shadow: 0 1px 0 rgba(45, 83, 86, 0.25);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 1.9rem);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
}
.primary-nav a { color: var(--cream-dim); transition: color 0.2s; }
.primary-nav a:hover { color: var(--copper); }
.nav-cta {
  border: 1px solid var(--copper);
  color: var(--copper) !important;
  padding: 0.55rem 1.1rem;
}
.nav-cta:hover { background: var(--copper); color: var(--bg) !important; }

.lang-switch {
  position: relative;
  margin-left: 0.25rem;
}
.lang-switch__btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: 1px solid var(--teal);
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.lang-switch__btn:hover,
.lang-switch__btn[aria-expanded="true"] {
  border-color: var(--copper);
  color: var(--copper);
}
.lang-switch__caret {
  transition: transform 0.2s var(--ease);
}
.lang-switch__btn[aria-expanded="true"] .lang-switch__caret {
  transform: rotate(180deg);
}
.lang-switch__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  min-width: 100%;
  z-index: 150;
}
.lang-switch__option {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--cream-dim);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.4rem 0;
  text-align: right;
  cursor: pointer;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}
.lang-switch__option:hover { color: var(--copper); }
.lang-switch__option.is-active { display: none; }

@media (max-width: 900px) {
  .lang-switch { margin-left: 0; margin-top: 0.5rem; }
  .lang-switch__menu { position: static; margin-top: 0.4rem; }
  .lang-switch__option { text-align: left; padding: 0.4rem 0; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}
.nav-toggle__bar {
  width: 22px; height: 1.5px; background: var(--cream);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    padding-top: 5.5rem;
    background: rgba(26, 29, 36, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }
  .primary-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem) 2rem;
  }
  .primary-nav li { width: 100%; }
  .primary-nav a { display: block; padding: 0.9rem 0; color: var(--cream) !important; }
}

/* ==========================================================================
   MEDIA SLOT (placeholders de foto/video)
   ========================================================================== */
.media-slot {
  border: 1.5px dashed var(--teal);
  border-radius: var(--radius);
  background: repeating-linear-gradient(
    135deg,
    rgba(45, 83, 86, 0.06) 0 10px,
    transparent 10px 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 280px;
}
.media-slot--square { aspect-ratio: 1 / 1; }
.media-slot--portrait { aspect-ratio: 4 / 5; }
.media-slot--video { aspect-ratio: 16 / 9; min-height: 220px; }
.media-slot__label {
  color: var(--cream-dim);
  font-size: 0.85rem;
  padding: 1.5rem;
  line-height: 1.5;
}
.on-ink .media-slot {
  border-color: var(--teal);
}
.on-ink .media-slot__label { color: var(--cream-dim); }

/* ==========================================================================
   HERO — video a pantalla completa con overlay doble, titular y CTA
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}

/* Contenedor del video */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* El video fuente es vertical; en pantallas anchas el recorte central
     dejaba la cara del saxofonista fuera de cuadro. Anclamos el encuadre
     cerca de la parte superior para que la cara quede siempre visible. */
  object-position: 50% 15%;
  display: block;
}

/* Overlay doble: gradiente inferior fuerte + capa oscura general
   para que el texto siempre contraste bien */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to top,
      rgba(8, 11, 16, 0.92) 0%,
      rgba(8, 11, 16, 0.68) 40%,
      rgba(8, 11, 16, 0.42) 70%,
      rgba(8, 11, 16, 0.30) 100%
    );
}

/* Contenido sobre el overlay */
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(3rem, 10vw, 5.5rem) clamp(3.5rem, 8vw, 5rem);
}
.hero__eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75), 0 2px 14px rgba(0, 0, 0, 0.5);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-size: clamp(2rem, 6.5vw, 5rem);
  line-height: 1.05;
  max-width: 14ch;
  font-weight: 300;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

/* Hero mobile — iPhone fix: el clamp de arriba ya acota a 2rem en pantallas
   pequeñas, pero en iPhone el viewport es ≈390px y 6.5vw = ~25px.
   Forzamos un techo explícito para ≤480px. */
/* Hero mobile — centrado vertical y horizontal completo del contenido */
@media (max-width: 600px) {
  .hero {
    align-items: center;
    text-align: center;
  }
  .hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-block: clamp(6rem, 20vw, 7.5rem) clamp(2.5rem, 10vw, 3.5rem);
  }
  .hero__eyebrow {
    margin-inline: auto;
  }
  .hero__title {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    line-height: 1.08;
  }
  .hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  .hero__actions {
    margin-top: 1.75rem;
    gap: 0.75rem;
  }
  .hero__actions .btn {
    padding: 0.9rem 1.4rem;
    font-size: 0.75rem;
  }
}
.hero__subtitle {
  margin-top: 1.25rem;
  max-width: 46ch;
  color: var(--body-on-ink);
  font-size: 1.05rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}
.hero__actions .btn--ghost {
  border-color: rgba(250, 249, 249, 0.5);
}
.hero__actions .btn--ghost:hover {
  border-color: var(--gold);
}

/* CTA principal de bookeo — cobre sólido, bold, prominente */
.btn--book {
  background: var(--copper);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.15rem 2.6rem;
  border: 1px solid var(--copper);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn--book:hover {
  background: var(--copper-deep);
  border-color: var(--copper-deep);
  color: var(--cream);
}

/* =====================================================================
   BOTÓN UNMUTE — clase base reutilizable (hero, showcase-video, reels).
   Cada contexto define su propia posición (ver modificadores abajo).
   ===================================================================== */
.unmute-btn {
  position: absolute;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;

  background: rgba(26, 29, 36, 0.60);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(230, 126, 76, 0.50);
  border-radius: 50%;

  color: var(--cream);
  cursor: pointer;

  transition: background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.unmute-btn:hover {
  background: rgba(230, 126, 76, 0.18);
  border-color: var(--copper);
  color: var(--copper);
}
.unmute-btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.unmute-btn.is-on .unmute-btn__icon--off { display: none; }
.unmute-btn.is-on .unmute-btn__icon--on  { display: block !important; }

/* Hero: esquina inferior izquierda */
.hero__unmute {
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  left: clamp(1.5rem, 4vw, 2.5rem);
}

/* Showcase video: esquina inferior izquierda, igual que el hero */
.showcase-video__unmute,
.closing-video__unmute {
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  left: clamp(1.5rem, 4vw, 2.5rem);
}

@media (max-width: 600px) {
  .hero__unmute,
  .showcase-video__unmute,
  .closing-video__unmute {
    bottom: 1.25rem;
    left: 1.25rem;
    width: 46px;
    height: 46px;
  }
}

/* Reel cards: botón chico en la esquina inferior izquierda — regla
   general del sitio: todo botón de unmute vive a la izquierda. El
   label (número + nombre) se movió arriba a la izquierda para no
   superponerse (ver .reel-card__label). */
.reel-card__unmute {
  bottom: 0.9rem;
  left: 0.9rem;
  width: 38px;
  height: 38px;
  z-index: 4;
}
.reel-card__unmute .unmute-btn__icon {
  width: 17px;
  height: 17px;
}

/* ==========================================================================
   ZONA GRAFITO — desde stats-band hasta el final de services
   Antes era una franja blanca; ahora usa un negro grafito neutro para
   diferenciarse del navy del hero/galería sin romper el modo oscuro general.
   No se sobreescriben --cream/--cream-dim/--body: al ser fondo oscuro, los
   valores claros por defecto (definidos en :root) ya funcionan correctamente.
   ========================================================================== */
.stats-band,
.about,
.services {
  background: var(--graphite) !important;
  background-image: none !important;
}

/* Sección about — el h2 cobre destaca igual sobre el grafito */
.about h2,
.services .section-title {
  color: var(--copper);
}
/* Pull-quote sobre grafito */
.about .pull-quote {
  color: var(--copper-deep);
  border-top-color: rgba(245, 241, 231, 0.12);
  border-bottom-color: rgba(245, 241, 231, 0.12);
}
.about .about__details {
  border-top-color: rgba(245, 241, 231, 0.12);
}

/* ==========================================================================
   BANDA DE CIFRAS
   ========================================================================== */
.stats-band {
  border-top: 1px solid rgba(44,74,85,0.15);
  border-bottom: 1px solid rgba(44,74,85,0.15);
  padding-block: clamp(1.1rem, 2.5vw, 1.75rem);
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  align-items: start;
  max-width: 720px;
  margin-inline: auto;
}
/* Cada celda alinea dt+dd de forma consistente */
.stats-band__grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-band dt {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  color: var(--copper);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  /* Altura fija para las 3 celdas: así "Average rating" (que usa
     estrellas, más bajas que el texto numérico) queda a la misma
     altura horizontal que "Years of experience" y "Events performed". */
  min-height: clamp(1.7rem, 3.4vw, 2.3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stats-band__stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}
.stats-band__stars svg {
  width: clamp(0.9rem, 1.8vw, 1.15rem);
  height: clamp(0.9rem, 1.8vw, 1.15rem);
  fill: var(--copper);
  flex: none;
}
.stats-band dd {
  margin-top: 0.25rem;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream-dim);
}
/* Mobile: los 3 datos en una sola línea horizontal */
@media (max-width: 700px) {
  .stats-band {
    padding-block: clamp(0.9rem, 2vw, 1.25rem);
  }
  .stats-band__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .stats-band dt {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
    min-height: clamp(1.3rem, 5.5vw, 1.6rem);
  }
  .stats-band__stars svg {
    width: clamp(0.7rem, 3.2vw, 0.9rem);
    height: clamp(0.7rem, 3.2vw, 0.9rem);
  }
  .stats-band dd {
    font-size: 0.55rem;
    letter-spacing: 0.05em;
  }
}

/* ==========================================================================
   SECCIONES GENERALES
   ========================================================================== */
section { padding-block: clamp(3.5rem, 8vw, 6rem); }
.section--ink { background: var(--bg-2); }
.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-style: italic;
}
.section-lead {
  color: var(--cream-dim);
  max-width: 56ch;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.on-ink .section-lead { color: var(--cream-dim); }
.section-head { max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ABOUT */
.about__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.6rem;
}
.about__copy h2 {
  margin-bottom: 1rem;
}
.about__copy p { color: var(--cream-dim); margin-top: 1rem; }
.about__details {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--teal-dim);
  max-width: 52ch;
}
.about__details-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
}
.about__details-genres {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.75;
}
.about__sep {
  display: inline-block;
  margin: 0 0.55em;
  color: var(--copper);
  font-style: normal;
  opacity: 0.6;
}
.about__details-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--cream-dim) !important;
}
.about__details-facts {
  margin-top: 1.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  line-height: 1.8;
}
.pull-quote {
  margin: 2.25rem 0 0;
  padding: 1.5rem 0;
  border: 0;
  border-top: 1px solid var(--teal-dim);
  border-bottom: 1px solid var(--teal-dim);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--copper-deep);
}
@media (max-width: 860px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
  /* Task 3: centrar la foto en mobile */
  .about__photo {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* --- About photo — Clip-path Reveal ---
   El contenedor tiene overflow:hidden y un clip-path que empieza cerrado
   (inset 100% desde la izquierda) y se abre hacia la derecha al entrar en
   viewport. La imagen interior hace un parallax sutil inverso (scale 1.08 → 1)
   para que la revelación se sienta cinematográfica, no mecánica.
   Sin JS/GSAP: clip-path se resetea a inset(0%) y la imagen es visible. */
.about__photo {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  /* clip-path inicial — el JS lo anima; sin JS queda en inset(0%) */
  clip-path: inset(0% 100% 0% 0%);
  will-change: clip-path;
  border: 1px solid var(--teal-dim);
}
.about__photo.is-revealed {
  clip-path: inset(0% 0% 0% 0%);
  transition: clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.about__photo-inner {
  width: 100%;
  overflow: hidden;
}
.about__photo-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* Imagen empieza escalada 1.08 para el efecto parallax de salida */
  transform: scale(1.08);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.about__photo.is-revealed .about__photo-inner img {
  transform: scale(1);
}
/* Borde cobre tenue que aparece tras la revelación */
.about__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242, 145, 90, 0.18);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s 0.8s var(--ease);
}
.about__photo.is-revealed::after { opacity: 1; }

/* SERVICIOS */
.services {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Fondo "Aurora Borealis" — tres manchas de gradiente radial, difuminadas
   y en constante deriva lenta, usando la paleta de marca (cobre/teal/crema)
   en vez de los verdes/violetas típicos, para que quede integrado con el
   resto del sitio. mix-blend-mode: screen para que se superpongan con luz,
   no con opacidad plana. Solo anima transform/opacity (regla del sistema
   de motion) y se desactiva con prefers-reduced-motion. */
.services__aurora {
  position: absolute;
  inset: -15% -10%;
  z-index: 0;
  pointer-events: none;
  filter: blur(70px);
}
.services__aurora-blob {
  position: absolute;
  width: min(60vw, 640px);
  height: min(60vw, 640px);
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.services__aurora-blob--1 {
  top: -18%;
  left: -12%;
  background: radial-gradient(circle at 35% 35%, rgba(242, 145, 90, 0.12), transparent 70%);
  animation: auroraDrift1 22s ease-in-out infinite;
}
.services__aurora-blob--2 {
  top: 6%;
  right: -16%;
  background: radial-gradient(circle at 60% 40%, rgba(44, 74, 85, 0.10), transparent 70%);
  animation: auroraDrift2 27s ease-in-out infinite;
}
.services__aurora-blob--3 {
  bottom: -22%;
  left: 28%;
  background: radial-gradient(circle at 50% 50%, rgba(44, 74, 85, 0.06), transparent 70%);
  animation: auroraDrift3 32s ease-in-out infinite;
}
@keyframes auroraDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50%      { transform: translate(8%, 6%) scale(1.15); opacity: 0.85; }
}
@keyframes auroraDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50%      { transform: translate(-9%, 8%) scale(1.1); opacity: 0.75; }
}
@keyframes auroraDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  50%      { transform: translate(6%, -10%) scale(1.2); opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .services__aurora-blob { animation: none; }
}

.services__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.services__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}
.service-item { display: flex; align-items: center; gap: 1.25rem; }
.service-item__icon {
  flex: none;
  width: 46px; height: 46px;
  border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
  font-family: var(--font-display);
  font-size: 1.3rem;
}
.service-item h3 { font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.service-item p { color: var(--cream-dim); margin-top: 0.5rem; font-size: 0.9rem; }
@media (max-width: 700px) {
  .services__grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .services__layout { grid-template-columns: 1fr; }
  .services__photo { order: -1; max-width: 420px; margin-inline: auto; }
}

/* --- Services photo (margen derecho) — Clip-path Reveal ---
   Mismo lenguaje visual que la foto de "About", pero espejado: empieza
   cerrado (inset 100% desde la derecha) y se abre hacia la izquierda al
   entrar en viewport. La imagen interior hace el mismo parallax inverso
   (scale 1.08 → 1). Sin JS/GSAP: clip-path se resetea a inset(0%). */
.services__photo {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  clip-path: inset(0% 0% 0% 100%);
  will-change: clip-path;
  border: 1px solid var(--teal-dim);
}
.services__photo.is-revealed {
  clip-path: inset(0% 0% 0% 0%);
  transition: clip-path 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.services__photo-inner {
  width: 100%;
  overflow: hidden;
}
.services__photo-inner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.services__photo.is-revealed .services__photo-inner img {
  transform: scale(1);
}
.services__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(242, 145, 90, 0.18);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s 0.8s var(--ease);
}
.services__photo.is-revealed::after { opacity: 1; }

/* ==========================================================================
   GALERÍA — Masonry Cascade · estética luxury editorial night
   Fondo grafito profundo, gap estrecho tipo editorial de moda, hover
   con scrim cobre en vez de sombra blanca — nunca pierde la paleta.
   ========================================================================== */

.gallery {
  background-color: var(--graphite);
  background-image:
    radial-gradient(ellipse at 12% 0%,   rgba(44, 74, 85, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse at 88% 100%, rgba(242, 145, 90, 0.06) 0%, transparent 48%);
  border-top:    1px solid var(--teal-dim);
  border-bottom: 1px solid var(--teal-dim);
  overflow: hidden;   /* contiene el overflow de los items animados */
}

/* ---------- Cabecera editorial ---------- */
.gallery__head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.gallery__kicker {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.65rem;
}
.gallery__title { margin-top: 0; }
.gallery__lead  { margin-top: 0.75rem; }

/* ---------- Masonry: 2 columnas CSS independientes ----------
   4 fotos de eventos, dos por columna. La columna derecha arranca
   con un offset vertical generoso que crea el efecto de cascada
   editorial sin necesitar una 3ª columna.                         */
.gallery__masonry {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.5rem, 1vw, 0.9rem);
  align-items: start;
}
.gallery__col {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.9rem);
}

/* Columna derecha arranca desplazada — corazón del efecto cascade */
.gallery__col--offset {
  margin-top: clamp(3rem, 6vw, 5rem);
}

/* ---------- Items ---------- */
.gallery__item {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  will-change: transform, opacity;
}

/* Ratios definidos — evitan layout shift antes de que carguen las imgs */
.gallery__item--portrait  { aspect-ratio: 3 / 4; }
.gallery__item--landscape { aspect-ratio: 16 / 10; }
.gallery__item--square    { aspect-ratio: 1 / 1; }
.gallery__item--featured  { aspect-ratio: 2 / 3; }

/* ---------- Frame: contiene la img y el shimmer/hover ---------- */
.gallery__frame {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.gallery__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.65s var(--ease);
}

/* Hover: zoom leve de la imagen */
.gallery__item:hover .gallery__frame img,
.gallery__item:focus-visible .gallery__frame img {
  transform: scale(1.055);
}

/* Shimmer: scrim cobre muy sutil que aparece en hover — no opaca la foto */
.gallery__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(242, 145, 90, 0.0) 0%,
    rgba(242, 145, 90, 0.18) 100%
  );
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.gallery__item:hover .gallery__shimmer,
.gallery__item:focus-visible .gallery__shimmer {
  opacity: 1;
}

/* Borde teal finísimo: presente siempre, refuerza la estructura de cuadrícula */
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--teal-dim);
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.3s var(--ease);
}
.gallery__item:hover::after { border-color: rgba(242, 145, 90, 0.35); }

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  /* Mobile: 1 sola columna, scroll lineal. El offset desaparece. */
  .gallery__masonry      { grid-template-columns: 1fr; }
  .gallery__col--offset  { margin-top: 0; }
  .gallery__item--landscape { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.gallery-lb {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 10, 13, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  /* hidden via [hidden] attr; transición manejada por GSAP */
}
.gallery-lb[hidden] { display: none; }

.gallery-lb__stage {
  position: relative;
  max-width: min(90vw, 960px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lb__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.7);
}

/* Botón cerrar */
.gallery-lb__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  background: transparent;
  border: 1px solid rgba(241, 237, 228, 0.2);
  color: var(--cream);
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: border-color 0.2s, color 0.2s;
}
.gallery-lb__close:hover { border-color: var(--copper); color: var(--copper); }
.gallery-lb__close svg  { width: 1.1rem; height: 1.1rem; }

/* Botones prev / next */
.gallery-lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid rgba(241, 237, 228, 0.15);
  color: var(--cream);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: border-color 0.2s, color 0.2s;
}
.gallery-lb__nav:hover { border-color: var(--copper); color: var(--copper); }
.gallery-lb__nav svg   { width: 1.2rem; height: 1.2rem; }
.gallery-lb__nav--prev { left: 1.25rem; }
.gallery-lb__nav--next { right: 1.25rem; }

/* Contador */
.gallery-lb__counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-family: var(--font-body);
}

@media (max-width: 600px) {
  .gallery-lb__nav--prev { left: 0.5rem; }
  .gallery-lb__nav--next { right: 0.5rem; }
  .gallery-lb__close { top: 0.75rem; right: 0.75rem; }
}

/* ==========================================================================
   REELS SECTION — editorial de dos videos 9:16 lado a lado
   Estética: negro absoluto, tipografía de lujo, contraste alto, silencio
   generoso. Foco en los videos como objetos de lujo, no decoración.
   ========================================================================== */

.reels-section {
  position: relative;
  background: #080a0d;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}

/* Grain/noise sutil SVG sobre el fondo */
.reels-section__noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* --- Header editorial --- */
.reels-section__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(3.5rem, 6vw, 5rem);
  /* Entrada JS: empieza invisible, JS lo revela */
}

.reels-section__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0 0 1.5rem;
}

.reels-section__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #f5f1e7;
  margin: 0 0 1.5rem;
  /* Negative space intencional: el título ocupa toda la anchura */
}

.reels-section__sub {
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(167, 173, 184, 0.7);
  margin: 0;
}

/* --- Stage: los dos reels --- */
.reels-section__stage {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1180px;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* --- Reel card individual --- */
.reel-card {
  flex: 1;
  max-width: 340px;
  /* Entrada: JS anima desde abajo con stagger */
}

.reel-card__frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: pointer;
  /* Borde fino inicial: casi invisible, aparece en hover */
  outline: 1px solid rgba(242, 145, 90, 0);
  transition:
    outline-color 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform     0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reel-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Transición de opacidad para el efecto de foco cruzado */
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Overlay oscuro semitransparente: siempre presente pero mínimo */
.reel-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 6, 10, 0.72) 0%,
    rgba(5, 6, 10, 0.12) 45%,
    transparent 70%
  );
  pointer-events: none;
  transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Label: número + nombre — esquina SUPERIOR izquierda (el botón de
   unmute ocupa ahora la esquina inferior izquierda) */
.reel-card__label {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 241, 231, 0.75);
  pointer-events: none;
  z-index: 2;
}

.reel-card__label-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.8rem;
  color: var(--copper);
  letter-spacing: 0.05em;
}

/* ============================
   HOVER — efecto de foco cruzado
   Al hacer hover en el stage,
   el reel sin hover baja a 40% opacidad.
   El reel con hover escala + borde dorado.
   ============================ */
.reels-section__stage:hover .reel-card__frame {
  /* Estado base cuando el stage está en hover (baja todo) */
}

/* El reel que recibe el hover sube, el otro cae */
.reels-section__stage:has(.reel-card:hover) .reel-card:not(:hover) .reel-card__video {
  opacity: 0.35;
}
.reels-section__stage:has(.reel-card:hover) .reel-card:not(:hover) .reel-card__overlay {
  background: linear-gradient(
    to top,
    rgba(5, 6, 10, 0.88) 0%,
    rgba(5, 6, 10, 0.55) 60%,
    rgba(5, 6, 10, 0.30) 100%
  );
}

.reel-card:hover .reel-card__frame {
  transform: scale(1.03);
  outline-color: rgba(242, 145, 90, 0.65);
}

/* Fallback para navegadores sin :has() */
@supports not (selector(:has(*))) {
  .reel-card__frame:hover {
    transform: scale(1.03);
    outline-color: rgba(242, 145, 90, 0.65);
  }
}

/* --- Footer CTA --- */
.reels-section__footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  text-align: center;
}

.reels-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 231, 0.6);
  text-decoration: none;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(245, 241, 231, 0.18);
  transition:
    color        0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    gap          0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.reels-section__cta:hover {
  color: var(--copper);
  border-color: var(--copper);
  gap: 1.1rem;
}

.reels-section__cta-arrow {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.reels-section__cta:hover .reels-section__cta-arrow {
  transform: translateX(4px);
}

/* --- Mobile: un reel debajo del otro (stack vertical) --- */
@media (max-width: 680px) {
  .reels-section {
    padding-block: clamp(4rem, 14vw, 6rem);
  }

  .reels-section__stage {
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 5vw, 1.75rem);
    padding-inline: clamp(1.25rem, 6vw, 2rem);
    max-width: 100%;
    width: 100%;
  }

  .reel-card {
    flex: none;
    width: 100%;
    max-width: 420px;
  }

  /* Efecto de foco cruzado: no aplica bien en touch, desactivar */
  .reels-section__stage:has(.reel-card:hover) .reel-card:not(:hover) .reel-card__video {
    opacity: 1;
  }
  .reels-section__stage:has(.reel-card:hover) .reel-card:not(:hover) .reel-card__overlay {
    background: linear-gradient(
      to top,
      rgba(5, 6, 10, 0.72) 0%,
      rgba(5, 6, 10, 0.12) 45%,
      transparent 70%
    );
  }
}

/* ==========================================================================
   TESTIMONIOS — "fan of stacked cards" editorial.
   Columna de texto (eyebrow / headline / desc / indicador) + abanico de
   fotografías-testimonio apiladas. La disposición y el movimiento del
   abanico los maneja js/testimonials.js (GSAP + ScrollTrigger); este
   bloque solo define geometría y estilo visual.
   ========================================================================== */
.testi {
  overflow: hidden;
  background-image:
    radial-gradient(ellipse at 15% 15%, rgba(242, 145, 90, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 85%, rgba(44, 74, 85, 0.22) 0%, transparent 50%);
}
.testi__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  min-height: 0;
}

.testi__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: 88vh;
}

/* ---- columna izquierda ------------------------------------------------ */
.testi__intro { max-width: 480px; }
.testi__eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin: 0;
}
.testi__headline {
  margin-top: 0.75rem;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  font-style: italic;
  color: var(--cream);
}
.testi__desc {
  margin-top: 1.5rem;
  max-width: 38ch;
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.8;
}
.testi__progress {
  margin-top: 2.75rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.testi__arrow {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1.5px solid var(--teal-dim);
  background: transparent;
  color: var(--cream-dim);
  cursor: pointer;
  border-radius: 50%;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease), background-color 0.2s var(--ease);
}
.testi__arrow svg { width: 22px; height: 17px; }
.testi__arrow:hover:not(:disabled) {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(242, 145, 90, 0.08);
}
.testi__arrow:active:not(:disabled) { transform: scale(0.92); }
.testi__arrow:disabled { opacity: 0.3; cursor: default; }
.testi__progress-count {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--copper);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.testi__progress-track {
  position: relative;
  width: 96px;
  height: 1px;
  background: var(--teal-dim);
}
.testi__progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--copper);
  transition: width 0.5s var(--ease);
}
.testi__hint {
  margin-top: 1.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  opacity: 0.65;
}

/* ---- escenario / abanico ---------------------------------------------- */
.testi__stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(420px, 42vw, 560px);
  /* Contención: ninguna carta debe poder "viajar" fuera de este escenario
     e invadir la columna de texto de la izquierda mientras se anima. */
  overflow: hidden;
}
.testi__stack {
  position: relative;
  width: min(30vw, 400px);
  aspect-ratio: 3 / 4;
  outline: none;
}

.testi-card {
  position: absolute;
  inset: 0;
  cursor: pointer;
  transform-origin: 50% 100%;
  -webkit-user-select: none;
  user-select: none;
}
.testi-card__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-2);
  box-shadow:
    0 14px 30px -14px rgba(0, 0, 0, 0.5),
    0 2px 0 rgba(255, 255, 255, 0.04) inset;
}

/* -- zona superior: foto (secundaria, da atmósfera, no compite con el texto) */
.testi-card__media {
  position: relative;
  flex: 0 0 24%;
  overflow: hidden;
  background: var(--graphite);
}
.testi-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  pointer-events: none;
}
/* transición sutil entre imagen y contenido, como pide el brief */
.testi-card__media::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to bottom, rgba(14, 20, 28, 0) 0%, var(--bg-2) 100%);
  pointer-events: none;
}

/* -- zona inferior: la reseña es la protagonista, sobre panel sólido ------ */
.testi-card__content {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.35rem 1.5rem 1.5rem;
  overflow-y: auto;
  scrollbar-width: none;
}
.testi-card__content::-webkit-scrollbar { display: none; }

.testi-card__row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  flex: 0 0 auto;
}
.testi-card__stars {
  color: var(--copper);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}
/* QR agrandado y con más contraste/quiet-zone para que se pueda escanear
   directamente desde la pantalla, no solo decorativo. */
.testi-card__qr {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 6px;
  background: var(--cream);
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.testi-card__qr img { width: 100%; height: 100%; display: block; }

/* El copy es lo importante: tamaño mayor y con lugar propio para respirar */
.testi-card__quote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.5;
}
.testi-card__meta {
  margin-top: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 0 0 auto;
}
.testi-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--copper);
}
.testi-card__event {
  font-size: 0.76rem;
  color: var(--cream-dim);
  letter-spacing: 0.02em;
}

/* Solo la carta activa (depth 0) muestra su reseña; las de atrás solo
   asoman su foto (sin texto, así no compiten con la carta activa). */
.testi-card__content {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.testi-card[data-depth="0"] .testi-card__content {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.35s ease 0.12s;
}

@media (max-width: 900px) {
  .testi__wrap {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 2.5rem;
  }
  .testi__intro { max-width: none; text-align: center; margin-inline: auto; }
  .testi__progress { justify-content: center; }
  .testi__stage { min-height: 0; padding-block: 1rem 2rem; }
  .testi__stack { width: min(78vw, 360px); }
}

@media (max-width: 600px) {
  .testi__stack { width: 82vw; }
  .testi-card__content { padding: 1.1rem 1.15rem 1.25rem; }
  .testi-card__quote { font-size: 1.12rem; }
  .testi-card__qr { width: 54px; height: 54px; }
  .testi__arrow { width: 46px; height: 46px; }
  .testi__arrow svg { width: 18px; height: 14px; }
}

/* ---- fallback sin animación (prefers-reduced-motion o sin GSAP) -------
   Stack estático deslizable con scroll-snap nativo: cada card se puede
   leer completa, sin abanico ni transforms, todas accesibles al lector
   de pantalla y al teclado (scroll horizontal nativo). */
.testi__stack--static {
  aspect-ratio: auto;
  width: min(92vw, 1200px) !important;
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.testi__stack--static::-webkit-scrollbar { display: none; }
.testi__stack--static .testi-card {
  position: relative;
  inset: auto;
  flex: 0 0 min(340px, 78vw);
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  transform: none !important;
  opacity: 1 !important;
}
.testi__stack--static .testi-card__content {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ==========================================================================
   FOLLOW ON INSTAGRAM — spread editorial full-bleed (izq: copy + mockup
   de teléfono, der: foto a pantalla completa), penúltima sección de la
   página, justo antes de "Featured".
   ========================================================================== */
.ig-follow { padding: 0; }
.ig-follow__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

/* Columna izquierda: panel oscuro con copy + mockup flotante */
.ig-follow__editorial {
  position: relative;
  overflow: hidden;
  background: var(--graphite);
  background-image: radial-gradient(ellipse at 20% 0%, rgba(44, 74, 85, 0.28) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
}
.ig-follow__editorial-copy { max-width: 46ch; }
.ig-follow__eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.ig-follow__title { margin: 0; }
.ig-follow__lead {
  margin-top: 1rem;
  color: var(--cream-dim);
}
.ig-follow__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}
.ig-follow__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.ig-follow__btn svg { width: 19px; height: 19px; flex-shrink: 0; }

/* Mockup de teléfono: flota centrado, con sombra suave */
.ig-follow__phone {
  display: flex;
  justify-content: center;
}
.ig-follow__phone img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 55px rgba(0, 0, 0, 0.55));
}

/* Columna derecha: foto a pantalla completa, usando todo el espacio */
.ig-follow__photo {
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
}
.ig-follow__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 860px) {
  .ig-follow__grid { grid-template-columns: 1fr; min-height: 0; }
  .ig-follow__editorial { padding: clamp(2.5rem, 8vw, 3.5rem) clamp(1.5rem, 6vw, 2.5rem); }
  .ig-follow__phone img { max-width: 260px; }
  .ig-follow__photo { aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   DESTACADO / FEATURED — banner panorámico + panel enmarcado + 3 íconos
   ========================================================================== */
.featured { padding-block: 0 clamp(3.5rem, 8vw, 6rem); }

.featured__banner {
  position: relative;
  width: 100%;
  height: clamp(220px, 32vw, 340px);
  overflow: hidden;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.featured__banner--solid {
  height: auto;
  background: var(--graphite);
}
.featured__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.featured__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 11, 16, 0.92) 0%, rgba(8, 11, 16, 0.55) 45%, rgba(8, 11, 16, 0.15) 75%);
}
.featured__banner-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: clamp(1.5rem, 6vw, 5rem);
}
.featured__banner--solid .featured__banner-copy {
  position: relative;
  inset: auto;
  padding-block: clamp(2.75rem, 7vw, 4.5rem);
}
.featured__quote {
  margin-top: 1.25rem;
  max-width: 52ch;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--cream-dim);
  border-left: 2px solid var(--copper);
  padding-left: 1rem;
}
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--copper);
  animation: typewriterBlink 0.9s step-end infinite;
}
@keyframes typewriterBlink {
  50% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .typewriter-cursor { animation: none; opacity: 0; }
}
.featured__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.featured__brand {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.featured__panel {
  border: 1px solid rgba(242, 145, 90, 0.5);
  border-radius: 14px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  overflow: hidden;
}
.featured__photo { min-height: 280px; }
.featured__photo img { width: 100%; height: 100%; object-fit: cover; }
.featured__copy {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cream-dim);
  margin-bottom: 0.75rem;
}
.featured__headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  color: var(--copper);
  line-height: 1.15;
}
.featured__lead {
  margin-top: 1rem;
  color: var(--cream);
  font-size: 1rem;
  max-width: 48ch;
}
.featured__copy .btn--book { margin-top: 1.75rem; align-self: flex-start; }

@media (max-width: 760px) {
  .featured__panel { grid-template-columns: 1fr; }
  .featured__photo { min-height: 220px; }
}

.featured__grid {
  margin-top: clamp(2rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.featured__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--copper);
  margin-bottom: 0.85rem;
}
.featured__icon svg { width: 40px; height: 40px; }
.featured__item h4 {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--copper);
}
.featured__item p {
  margin-top: 0.4rem;
  color: var(--cream-dim);
  font-size: 0.9rem;
}
@media (max-width: 700px) {
  .featured__grid { grid-template-columns: 1fr; gap: 2.25rem; }
}

/* ==========================================================================
   CONTACTO — editorial en 4 cajones (spread tipo Dior: retratos a sangre
   con caption superpuesto + link; el primer cajón aloja el formulario).
   ========================================================================== */
.contact__lead {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.contact__kicker {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.75rem;
}

.contact__grid--editorial {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.9rem, 1.6vw, 1.5rem);
  align-items: stretch;
}

.contact__cell {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  min-height: clamp(420px, 44vw, 560px);
}

/* -- cajones fotográficos: imagen a sangre + degradé + caption ---------- */
.contact__cell--photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  filter: grayscale(0.12) contrast(1.05);
  transition: transform 0.6s var(--ease);
}
.contact__cell--photo:hover img { transform: scale(1.045); }
.contact__cell--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 10, 12, 0.92) 0%,
    rgba(8, 10, 12, 0.35) 38%,
    rgba(8, 10, 12, 0) 68%
  );
  pointer-events: none;
}
.contact__cell-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.5rem 1.25rem;
}
.contact__cell-kicker {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.contact__cell-link {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-decoration: underline;
  text-decoration-color: var(--copper);
  text-underline-offset: 4px;
  transition: color 0.2s var(--ease);
}
.contact__cell--photo:hover .contact__cell-link,
.contact__cell-link:hover { color: var(--copper); }
.contact__cell-link--static {
  text-decoration: none;
  cursor: default;
}

/* -- cajón 1: formulario, mismo alto/ritmo que los retratos ------------- */
.contact__cell--form {
  background: var(--bg-card);
  border: 1px solid var(--teal-dim);
  padding: clamp(1.5rem, 2.2vw, 2rem) clamp(1.25rem, 2vw, 1.75rem);
  display: flex;
  flex-direction: column;
}
.contact-form--editorial {
  display: grid;
  gap: 1.15rem;
  height: 100%;
  align-content: start;
}
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.75rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }
.contact-form--editorial .field label { font-size: 0.68rem; }
.field input, .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  color: var(--cream);
  padding: 0.75rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
/* Estilo "revista": inputs con línea inferior, sin recuadros pesados */
.contact-form--editorial .field input,
.contact-form--editorial .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--teal);
  border-radius: 0;
  padding: 0.5rem 0.05rem;
}
.field input:focus, .field textarea:focus { border-color: var(--copper); outline: none; }
.contact-form--editorial .btn { margin-top: 0.4rem; justify-self: start; }
.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
.form-status { font-size: 0.85rem; color: var(--copper); min-height: 1.2em; }

/* -- lienzo de la sección en negro grafito (mismo tono oscuro que usa
   la Galería) para diferenciarla del resto del sitio. Los cajones con
   foto y el formulario ya tienen su propio fondo (overlay oscuro /
   bg-card) así que no necesitan tocarse; los textos (kicker, título,
   lead) vuelven a los tonos crema por defecto, que ya son legibles
   sobre un fondo oscuro. ------------------------------------------- */
.contact {
  background: var(--graphite) !important;
  background-image: none !important;
}

@media (max-width: 1100px) {
  .contact__grid--editorial { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact__cell--form { grid-column: span 2; }
}
@media (max-width: 640px) {
  .contact__grid--editorial { grid-template-columns: 1fr; }
  .contact__cell--form { grid-column: auto; }
  .contact__cell { min-height: 380px; }
}

/* ==========================================================================
   WHATSAPP FLOTANTE — botón fijo, siempre visible, sobre cualquier sección
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: calc(var(--social-bar-h) + env(safe-area-inset-bottom, 0px) + clamp(0.75rem, 2vw, 1.25rem));
  z-index: 300;

  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;

  background: #25D366;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.08);

  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
}
.whatsapp-float:hover {
  background: #1ebe5a;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #FFFFFF;
}
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: whatsapp-pulse 2.4s var(--ease) infinite;
  z-index: -1;
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float__pulse { animation: none; display: none; }
}
@media (max-width: 600px) {
  .whatsapp-float { width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ==========================================================================
   SHOWCASE VIDEO — banner de video a pantalla completa reubicado desde el
   footer. Va al cierre de "Servicios", justo antes de "Live Performance".
   Full screen (100svh) en desktop y mobile, con botón de unmute propio.
   ========================================================================== */
.showcase-video {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100svh;
}
.showcase-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.showcase-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* El clip mezcla tomas aéreas y al saxofonista de cuerpo entero;
     un leve sesgo hacia arriba mantiene siempre la cara en cuadro
     en pantalla completa. */
  object-position: 50% 35%;
  display: block;
}
.showcase-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 10, 12, 0.55) 0%,
    rgba(8, 10, 12, 0.15) 40%,
    rgba(8, 10, 12, 0.15) 60%,
    rgba(8, 10, 12, 0.55) 100%
  );
}
@media (max-width: 600px) {
  .showcase-video__video { object-position: 50% 50%; }
}

/* ==========================================================================
   CLOSING VIDEO — banner de video a pantalla completa al cierre del
   sitio, justo antes del footer. Mismo tratamiento que showcase-video:
   full screen, muteado con loop, botón de unmute abajo a la izquierda.
   ========================================================================== */
.closing-video {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 100svh;
}
.closing-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.closing-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}
.closing-video__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 10, 12, 0.65) 0%,
    rgba(8, 10, 12, 0.15) 40%,
    rgba(8, 10, 12, 0.15) 60%,
    rgba(8, 10, 12, 0.55) 100%
  );
}

/* FOOTER */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--teal-dim);
  color: var(--cream-dim);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem clamp(1rem, 4vw, 3rem);
}
.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a:hover { color: var(--copper); }

/* Redes sociales — barra anclada al fondo del viewport (siempre visible) */
.footer__social {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 250;
  height: var(--social-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: nowrap;
  padding: 0 clamp(1rem, 4vw, 3rem);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(11, 13, 16, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--teal-dim);
}
.footer__social-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0.7;
  white-space: nowrap;
}
.footer__social-list {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer__social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--teal-dim);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.footer__social-list a:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(230, 126, 76, 0.10);
}
.footer__social-list svg {
  width: 17px;
  height: 17px;
}
@media (max-width: 600px) {
  .footer__social-label { display: none; }
  .footer__social-list { gap: 0.45rem; }
  .footer__social-list a { width: 34px; height: 34px; }
}

@media (max-width: 600px) {
  .footer__inner { padding: 1.25rem; }
}
