@font-face {
  font-family: "Tropical Country";
  src: url("fonts/TropicalCountry.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Florida&Hermosso — visual EPK
   cream / white / black / deep red #8b1e1e · DM Sans + Instrument Serif */

:root {
  --bg: #faf9f7;
  --ink: #111111;
  --muted: #5a5a5a;
  --line: #e4e2de;
  --accent: #8b1e1e;
  --accent-soft: #f3e8e8;
  --card: #ffffff;
  --wide: 1080px;
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --brand-font: "Tropical Country", "Pacifico", "Instrument Serif", cursive;
  --space: clamp(1.1rem, 4vw, 2.25rem);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

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

.wrap {
  width: min(100% - 2 * var(--space), var(--wide));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner {
  width: min(100% - 2 * var(--space), var(--wide));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo {
  font-family: var(--brand-font);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--brand-font);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
}

.logo span { color: var(--accent); }
.logo:hover { color: var(--accent); }

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] { color: var(--ink); }

/* —— Type —— */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

h1 { font-size: clamp(2.4rem, 8vw, 4rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.6rem;
}

.one-liner {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  max-width: 28em;
}

.short {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 34em;
}

.short:last-child { margin-bottom: 0; }

/* —— Buttons —— */
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.7rem 1.3rem;
  border: 1.5px solid var(--ink);
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

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

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

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

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
}

/* —— Placeholder tag —— */
.placeholder {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #fff3cd;
  color: #6b5300;
  padding: 0.12rem 0.4rem;
  vertical-align: middle;
  margin-left: 0.3rem;
}


/* —— HOME hero (video background) —— */
.home-hero--video {
  position: relative;
  display: grid;
  min-height: min(92vh, 720px);
  align-items: end;
  overflow: hidden;
  background: #111;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: #111;
  background-image: url("https://floridayhermosso.com/wp-content/uploads/fh-redesign/img/show/show-01.jpg");
  background-size: cover;
  background-position: center;
}

.home-hero__bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.home-hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.72) 0%, rgba(8,8,8,0.45) 42%, rgba(8,8,8,0.2) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.82) 100%);
  pointer-events: none;
}

.home-hero__copy--on-video {
  position: relative;
  z-index: 2;
  color: #faf9f7;
  padding: clamp(2rem, 6vw, 4rem) var(--space);
  width: min(100%, var(--wide));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.home-hero__copy--on-video h1 {
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.home-hero__copy--on-video .eyebrow {
  color: #f0c9c9;
}

.home-hero__copy--on-video .one-liner {
  color: #fff;
  font-weight: 600;
  max-width: 22em;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.85),
    0 0 18px rgba(0,0,0,0.55);
}
.home-hero__copy--on-video .eyebrow {
  text-shadow: 0 1px 2px rgba(0,0,0,0.75);
}
.home-hero__copy--on-video .brand-name,
.home-hero__copy--on-video h1 {
  color: #fff !important;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.65),
    0 0 28px rgba(0,0,0,0.45);
}
.home-hero__copy--on-video .hero-note {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.8);
}

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

.btn--on-dark:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.chip-strip--on-dark .chip {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: transparent;
}

.hero-note {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  color: rgba(250,249,247,0.65);
}

button.btn {
  font: inherit;
  cursor: pointer;
}

/* —— Proof chips —— */
.chip-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid #e5cfcf;
  padding: 0.35rem 0.7rem;
  white-space: nowrap;
}

.chip--ink {
  color: var(--ink);
  background: var(--card);
  border-color: var(--line);
}

/* —— BIO layout —— */
.bio-layout {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.bio-layout__img {
  background: #f3efe8;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

.bio-layout__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 760px) {
  .bio-layout {
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }

  .bio-layout__img {
    aspect-ratio: auto;
    min-height: 420px;
  }
}

/* —— EPK one-pager —— */
.epk-hero {
  padding: clamp(1.25rem, 3vw, 2rem) 0 0;
}

.epk-hero__img {
  background: #f3efe8;
  overflow: hidden;
  max-height: min(52vh, 480px);
}

.epk-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.epk-body {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  display: grid;
  gap: 1.75rem;
}

.epk-block h2 {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.epk-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.epk-highlights li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 0.55rem 0.85rem;
}

.epk-highlights .dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.booking-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.booking-line a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent);
}

.booking-line a:hover { color: var(--accent); }

/* Social icon row */
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--line);
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 7.5rem;
}

.social-row a:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.social-row svg {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.social-row .ph {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #fff3cd;
  color: #6b5300;
  padding: 0.1rem 0.3rem;
}

/* —— Photo placeholder (fallback) —— */
.photo-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(240px, 50vw, 480px);
  background:
    repeating-linear-gradient(
      -45deg,
      #f3efe8,
      #f3efe8 12px,
      #ebe6dc 12px,
      #ebe6dc 24px
    );
  border: 1px dashed #c9c2b6;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 1.5rem;
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
}

.site-footer__inner {
  width: min(100% - 2 * var(--space), var(--wide));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover { color: var(--accent); }

@media print {
  .site-header { position: static; }
  .btn--ghost { display: none; }
}


/* Show photo strip */
.show-strip { padding: 0 0 3rem; }
.show-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}
.show-strip__grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.show-strip__grid--epk img { height: 160px; }
.home-hero__visual img,
.bio-layout__img img {
  object-fit: cover;
}
@media (max-width: 800px) {
  .show-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .show-strip__grid img { height: 140px; }
}


/* Videoclip feature */
.video-feature {
  display: grid;
  gap: 1.25rem;
  padding: 2.5rem 0 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.video-feature__copy h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.2rem 0 0.6rem;
}
.video-feature__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 6px;
  overflow: hidden;
}
.video-feature__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media (min-width: 900px) {
  .video-feature {
    grid-template-columns: 0.9fr 1.4fr;
    align-items: center;
  }
}


.epk-block > h1 {
  font-family: var(--brand-font);
  font-weight: 400;
  letter-spacing: 0.01em;
}


/* Próximos eventos */
.dates {
  padding: 2.75rem 0 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.dates__head h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.2rem 0 1.25rem;
}
.dates__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.dates__item {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.dates__item:last-child { border-bottom: 1px solid rgba(0,0,0,0.08); }
.dates__when {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent, #8b1e1e);
}
.dates__where strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
}
.dates__where span {
  color: var(--muted);
  font-size: 0.95rem;
}
.dates__link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.dates__link:hover { opacity: 0.7; }
.dates__empty {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.dates__book { margin: 1.1rem 0 0; }
.dates__empty p {
  margin: 0;
  color: var(--muted);
  max-width: 36em;
}
.dates__empty--compact {
  border: 0;
  padding: 0.25rem 0 0;
  display: block;
}
.dates__empty--compact .booking-line { margin-top: 0.5rem; }
.dates__list--compact .dates__item {
  grid-template-columns: 4.5rem 1fr;
  padding: 0.7rem 0;
}
@media (max-width: 640px) {
  .dates__item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
  .dates__empty { flex-direction: column; align-items: flex-start; }
}


/* Ambient videoclip backgrounds (Zarzuela + Memoria y Punyal)
   Video visible in the margins; text sits on frosted glass panels. */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.site-bg__vid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
  filter: saturate(0.92) contrast(1.05);
}
.site-bg__vid.is-active { opacity: 1; }
.site-bg__scrim {
  position: absolute;
  inset: 0;
  /* Light veil only — video should read in the gutters */
  background:
    radial-gradient(120% 80% at 50% 20%, rgba(250,249,247,0.25) 0%, rgba(250,249,247,0.45) 55%, rgba(250,249,247,0.55) 100%);
}
body.has-site-bg {
  background: transparent;
}
body.has-site-bg .site-header,
body.has-site-bg .site-footer,
body.has-site-bg main {
  position: relative;
  z-index: 1;
}
body.has-site-bg .site-header {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
body.has-site-bg .site-footer {
  background: rgba(250,249,247,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
}
body.has-site-bg .home-hero--video {
  position: relative;
  z-index: 2;
}

/* Frosted glass for copy — readable type, video peeks through */
body.has-site-bg .wrap.video-feature,
body.has-site-bg .wrap.dates,
body.has-site-bg .wrap.bio-layout,
body.has-site-bg .wrap.epk-body,
body.has-site-bg .epk-hero.wrap {
  background: rgba(255,255,255,0.48);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-radius: 14px;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  margin-top: 1.15rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255,255,255,0.55);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.65) inset,
    0 18px 40px rgba(17,17,17,0.08);
}
/* Photo strip: more open so video frames the stills */
body.has-site-bg .wrap.show-strip {
  background: rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.85rem;
  margin: 1rem auto 1.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 12px 28px rgba(17,17,17,0.06);
}
/* Keep body copy dark and crisp on glass (not the video hero) */
body.has-site-bg .short,
body.has-site-bg .dates__empty p,
body.has-site-bg .epk-block p {
  color: #1a1a1a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}
body.has-site-bg .wrap .one-liner {
  color: #1a1a1a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}
body.has-site-bg .wrap h1,
body.has-site-bg .wrap h2,
body.has-site-bg .wrap .brand-name {
  color: #111;
  text-shadow: 0 1px 0 rgba(255,255,255,0.4);
}

/* iOS often has Reduce Motion on — do NOT hide ambient videos (that left a blank cream void).
   Only kill the crossfade transition; bg.js also skips the interval. */
@media (prefers-reduced-motion: reduce) {
  .site-bg__vid { transition: none; }
}


/* Photo gallery */
.gallery {
  padding: 2.5rem 0 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery__head h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0.2rem 0 1.25rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.55rem;
}
.gallery__item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1 / 1;
}
.gallery__item:nth-child(1),
.gallery__item:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__grid--epk {
  grid-template-columns: repeat(4, 1fr);
}
.gallery__grid--epk .gallery__item:nth-child(1),
.gallery__grid--epk .gallery__item:nth-child(8) {
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 1 / 1;
}
.gallery--compact { padding-top: 1.5rem; }
body.has-site-bg .wrap.gallery {
  background: rgba(255,255,255,0.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 1.1rem clamp(0.85rem, 2vw, 1.25rem) 1.35rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 12px 28px rgba(17,17,17,0.06);
}
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery__grid--epk { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:nth-child(1),
  .gallery__item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 10;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery__item:hover img { transform: none; }
}


/* Ababoles disc */
.disc-feature {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin: 2.5rem auto;
}
@media (min-width: 720px) {
  .disc-feature {
    grid-template-columns: minmax(180px, 280px) 1fr;
    gap: 2rem;
  }
}
.disc-feature__art img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  display: block;
}
.disc-feature__copy h2 {
  margin: 0.15rem 0 0.5rem;
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}
.disc-epk__row {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}
.disc-epk__art {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
body.has-site-bg .wrap.disc-feature {
  /* frosted like other wraps if needed via existing .wrap rules */
}

.short--muted{opacity:.75;font-size:.92em;margin-top:-.35rem;}

/* —— EPK fact lists (ficha / rider / caché) —— */
.epk-factlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.epk-factlist li {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--ink);
  padding-left: 0.9rem;
  position: relative;
}
.epk-factlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent);
}
.epk-cta .btn {
  margin-top: 0.15rem;
}
body.has-site-bg .epk-factlist li {
  color: inherit;
}


/* —— Soft dynamic pack: reveal / hero / lightbox / Spotify —— */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.hero-enter {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--hero-delay, 0ms),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--hero-delay, 0ms);
}
.hero-enter.is-in {
  opacity: 1;
  transform: none;
}

.gallery__img--zoom {
  cursor: zoom-in;
}

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}
.lb[hidden] { display: none !important; }
.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lb__figure {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: min(92vw, 1100px);
  max-height: 88vh;
}
.lb__img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  display: block;
}
.lb__close,
.lb__nav {
  position: absolute;
  z-index: 3;
  border: 0;
  background: rgba(250, 249, 247, 0.12);
  color: #faf9f7;
  font-size: 1.6rem;
  line-height: 1;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.lb__close:hover,
.lb__nav:hover {
  background: rgba(250, 249, 247, 0.22);
  color: #fff;
}
.lb__close {
  top: 1rem;
  right: 1rem;
  font-size: 1.85rem;
}
.lb__nav--prev { left: 0.75rem; top: 50%; transform: translateY(-50%); }
.lb__nav--next { right: 0.75rem; top: 50%; transform: translateY(-50%); }
body.lb-open { overflow: hidden; }

@media (max-width: 640px) {
  .lb__nav { display: none; }
}

/* Spotify embed */
.spotify-embed {
  margin-top: 0.95rem;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}
.spotify-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 12px;
  vertical-align: top;
}
.spotify-embed--compact {
  max-width: 420px;
}
.disc-epk .spotify-embed {
  margin-top: 0.75rem;
  max-width: 380px;
}

/* Frost disc feature like other wraps when ambient bg is on */
body.has-site-bg .wrap.disc-feature {
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-radius: 14px;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  margin-top: 1.15rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 18px 40px rgba(17, 17, 17, 0.08);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-enter {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* iOS Low Power Mode: no autoplay → hide native play glyph; poster via CSS */
.home-hero__bg {
  background-color: #111;
  background-image: url("https://floridayhermosso.com/wp-content/uploads/fh-redesign/img/show/show-01.jpg");
  background-size: cover;
  background-position: center;
}
.home-hero__bg video {
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.home-hero__bg video.is-playing {
  opacity: 1;
}
.home-hero__bg video::-webkit-media-controls {
  display: none !important;
}
.home-hero__bg video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
.home-hero__tap {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.35);
  color: #faf9f7;
  font: 600 0.85rem/1 "DM Sans", system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.home-hero__tap[hidden] { display: none !important; }


/* More motion without hiding content */
.site-header {
  transition: box-shadow 0.25s ease, background-color 0.25s ease, backdrop-filter 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(17,17,17,0.08);
}
body.has-site-bg .site-header.is-scrolled {
  background: rgba(255,255,255,0.9);
}
.site-bg {
  will-change: transform;
}
.nav a {
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.15em;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  opacity: 0.55;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.disc-epk__art,
.disc-feature img,
.disc-feature__art {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (pointer: fine) {
  .disc-epk__art:hover,
  .disc-feature img:hover,
  .disc-feature__art:hover {
    transform: scale(1.03);
  }
}
@keyframes fh-soft-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (prefers-reduced-motion: no-preference) {
  .disc-epk__art,
  .disc-feature__art {
    animation: fh-soft-float 5.5s ease-in-out infinite;
  }
}
.chip,
.festival-chip,
.home-hero .chip {
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.epk-block .short + .short { margin-top: 0.85rem; }

/* —— Downloads pack —— */
.downloads__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 1.25rem;
}
@media (min-width: 720px) {
  .downloads__grid { grid-template-columns: repeat(3, 1fr); }
}
.downloads__card {
  border: 1px solid rgba(18,16,14,.14);
  background: rgba(245,239,230,.82);
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.downloads__card h3 {
  font-size: 1.05rem;
  margin: 0;
}
.downloads__card p {
  margin: 0;
  font-size: .9rem;
  opacity: .85;
}
.downloads__card .btn { align-self: flex-start; margin-top: auto; }
body.has-site-bg .wrap.downloads {
  position: relative;
  z-index: 1;
}
