/* ==========================================================================
   Amma — salud y bienestar integral
   Implementation of Amma.dc.html (Claude Design canvas project).
   ========================================================================== */

:root {
  /* Neutrals & surfaces */
  --cream:        #FBF9F6;
  --white:        #FFFFFF;
  --lilac-50:     #F2EEF7;
  --lilac-100:    #E7E0EF;
  --lilac-200:    #E4D9F0;

  /* Brand */
  --purple:       #A088BF;
  --purple-deep:  #6E5590;
  --green:        #5F7740;
  --green-light:  #C9DCA8;

  /* Ink */
  --plum:         #3A2F49;
  --ink:          #2E2736;
  --slate:        #4A4152;
  --muted:        #7A7186;

  --rule:         rgba(160, 136, 191, .28);
  --rule-strong:  rgba(160, 136, 191, .34);

  /* One family across the site. --display is kept separate from --body so a
     distinct headline face can be reintroduced by changing this line alone. */
  --display: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sans:    'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --header-h: 84px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Shared rhythm */
  --pad-x:  clamp(20px, 6vw, 64px);
  --pad-y:  clamp(80px, 12vw, 150px);
  --maxw:   1200px;
}

/* --------------------------------- Base --------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* iOS ignores `overflow: hidden` on body, so the page behind an overlay
   still scrolls. Pinning body and offsetting it by the saved scroll
   position is the technique that holds on mobile. */
body.is-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

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

a { color: var(--purple-deep); text-decoration: none; transition: color .3s ease, background-color .3s ease, border-color .3s ease; }
a:hover { color: var(--green); }

button { font: inherit; color: inherit; }

/* The UA default for b/strong is `bolder`, which is RELATIVE to the parent.
   Body copy is 300, and bolder maps 300 -> 400 — nearly invisible. Pin it. */
b, strong { font-weight: 700; }

:focus-visible {
  outline: 2px solid var(--purple-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 200;
  padding: 12px 20px;
  background: var(--white);
  color: var(--plum);
  border-radius: 0 0 12px 12px;
  font-size: 14px;
  transition: top .25s ease;
}
.skip-link:focus { top: 0; }

/* ------------------------------- Layout --------------------------------- */

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; }
.wrap--narrow { max-width: 1000px; }
.wrap--wide   { max-width: 1400px; }

.section { padding: var(--pad-y) var(--pad-x); }
.section--cream { background: var(--cream); }
.section--lilac { background: var(--lilac-50); }
.section--green { background: var(--green); color: var(--white); padding-block: clamp(80px, 12vw, 140px); }

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(36px, 6vw, 80px);
}
.split--center { align-items: center; }
.split--start  { align-items: start; gap: clamp(36px, 5vw, 72px); }

/* ------------------------------ Typography ------------------------------ */

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--green);
}
.eyebrow--light { color: rgba(255, 255, 255, .75); }

.h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(34px, 5.4vw, 66px);
  line-height: 1.04;
  color: var(--plum);
  text-wrap: pretty;
}
.h2 em { font-style: italic; color: var(--purple); }

.prose {
  margin: 28px 0 0;
  max-width: 36em;
  font-size: 17px;
  line-height: 1.75;
  color: var(--slate);
  text-wrap: pretty;
}
.prose + .prose { margin-top: 18px; }
.prose--tight { margin: 24px 0 34px; max-width: 30em; }

.section-intro {
  margin: 14px 0 clamp(38px, 5vw, 60px);
  max-width: 32em;
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
}

/* The intro copy sits under the heading rather than beside it: as a short
   one-line aside a side column worked, but at this length a ~416px column
   ran far taller than the heading next to it. */
.section-head {
  margin-bottom: clamp(44px, 6vw, 72px);
}
.section-head__aside {
  margin: 26px 0 0;
  /* max-width: 68ch; */
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  color: var(--slate);
}

/* -------------------------------- Buttons ------------------------------- */

.btn {
  display: inline-block;
  padding: 17px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
}
.btn--sm      { padding: 12px 22px; }
.btn--block   { display: block; text-align: center; padding: 18px; }

.btn--solid   { background: var(--purple); color: var(--white); }
.btn--solid:hover { background: var(--green); color: var(--white); }

.btn--white   { background: var(--white); color: var(--plum); }
.btn--white:hover { background: var(--green); color: var(--white); }

.btn--ghost   { border-color: rgba(255, 255, 255, .55); color: var(--white); }
.btn--ghost:hover { background: rgba(255, 255, 255, .14); color: var(--white); }

.btn--outline { border-color: rgba(110, 85, 144, .4); color: var(--purple-deep); }
.btn--outline:hover { background: var(--white); color: var(--green); }

.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

/* On the narrowest phones a nowrap pill is wider than the content column and
   pushes the whole page sideways. Let the label wrap instead. */
@media (max-width: 380px) {
  .btn {
    max-width: 100%;
    padding-left: 22px;
    padding-right: 22px;
    white-space: normal;
    text-align: center;
  }
}
.btn-row--after { margin-top: 44px; }
.btn-row--contact { margin-bottom: 40px; }
.btn-row__note { font-size: 14px; color: var(--muted); }

/* -------------------------------- Header -------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 56px);
  transition: background-color .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.site-header.is-stuck {
  background: rgba(251, 249, 246, .88);
  box-shadow: 0 1px 0 var(--rule);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(46, 39, 54, .45));
  transition: filter .4s ease;
}
.site-header.is-stuck .site-header__logo img { filter: none; }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.site-nav__link {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 1px 8px rgba(46, 39, 54, .4);
}
.site-nav__link:hover { color: var(--green-light); }
.site-header.is-stuck .site-nav__link { color: var(--slate); text-shadow: none; }
.site-header.is-stuck .site-nav__link:hover { color: var(--green); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  cursor: pointer;
}
.menu-toggle span { display: block; height: 1.5px; width: 100%; background: var(--slate); }
.menu-toggle span:last-child { width: 70%; }

@media (max-width: 899px) {
  .site-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ----------------------------- Mobile menu ------------------------------ */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  padding: 22px clamp(20px, 7vw, 48px) 48px;
  background: var(--lilac-50);
}
.mobile-menu[hidden] { display: none; }

.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__top img { height: 52px; width: auto; }

.mobile-menu__close {
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  font-size: 30px;
  line-height: 1;
  color: var(--purple-deep);
  cursor: pointer;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-block: auto;
}
.mobile-menu__nav a {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule-strong);
  font-family: var(--display);
  font-size: clamp(30px, 9vw, 38px);
  color: var(--plum);
}
.mobile-menu__nav a:last-child { border-bottom: none; }
.mobile-menu__nav a:hover { color: var(--green); }

/* --------------------------------- Hero --------------------------------- */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--plum);
}

.hero__media {
  position: absolute;
  top: -12%;
  left: 0;
  right: 0;
  height: 124%;
  will-change: transform;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hero__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top,
    rgba(46, 39, 54, .82) 0%,
    rgba(46, 39, 54, .52) 52%,
    rgba(58, 47, 73, .30) 100%);
}

.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(72px, 11vh, 120px);
}

.hero .eyebrow { color: rgba(255, 255, 255, .82); }

.hero__title {
  margin: 0;
  max-width: 16em;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(46px, 9vw, 104px);
  line-height: .98;
  letter-spacing: -.02em;
  color: var(--white);
  text-wrap: pretty;
}
.hero__title em { font-style: italic; color: var(--lilac-200); }

.hero__title-brand,
.hero__title-rest { display: block; }

/* The h1's -.02em is tuned for mixed case; all-caps needs a little air. */
.hero__title-brand { letter-spacing: .01em; }

.hero__title-rest {
  margin-top: .08em;
  font-size: clamp(34px, 6.4vw, 74px);
}

.hero__lead {
  margin: 26px 0 0;
  max-width: 34em;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
  color: rgba(255, 255, 255, .9);
  text-wrap: pretty;
}

.hero .btn-row { margin-top: 38px; }

.hero__cue {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 44px 0 0;
  font-size: 14px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.hero__cue-line {
  display: block;
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, .5);
  animation: ammaBob 2.6s ease-in-out infinite;
}

@keyframes ammaBob {
  0%, 100% { transform: translateY(0);   opacity: .55; }
  50%      { transform: translateY(9px); opacity: 1; }
}

/* -------------------------------- Figures ------------------------------- */

.figure { position: relative; margin: 0; overflow: hidden; will-change: transform; }
.figure img { width: 100%; height: 100%; object-fit: cover; }

.figure--arch { height: clamp(340px, 46vw, 520px); border-radius: 260px 260px 18px 18px; }
.figure--soft { height: clamp(360px, 48vw, 560px); border-radius: 18px; }

/* --------------------------------- Cards -------------------------------- */

/* The track floor decides the row shape. With six spaces, 360px yields an even
   3 + 3 at desktop widths; anything lower gives 4 + 2 or a row of six at about
   200px each, which is too narrow for the titles and copy. The min(...,100%)
   matters on phones: a bare 360px floor cannot shrink to fit a 343px column,
   so the card overflowed to the right and sat off-centre. */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
  gap: clamp(20px, 2vw, 28px);
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px -24px rgba(58, 47, 73, .45); }

/* Tinted, so a slide whose media has not painted yet reads as a
   placeholder rather than a blank hole in the card. */
.card__media { position: relative; height: clamp(240px, 22vw, 340px); overflow: hidden; background: var(--lilac-100); }

/* Scroll-snap carousel: swipes natively with no JS, and the arrows just
   drive scrollBy. Without JS the arrows are hidden and it still scrolls. */
.card__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.card__track::-webkit-scrollbar { display: none; }

.card__slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: center;
  cursor: zoom-in;
}
.card__slide img,
.card__slide video { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }

.card__slide--video { position: relative; }

/* Play badge, so a video slide reads as a video before anything loads. */
.card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(251, 249, 246, .9);
  box-shadow: 0 2px 16px -4px rgba(46, 39, 54, .6);
  transition: opacity .3s ease, transform .3s var(--ease);
}
.card__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--plum);
}
.card:hover .card__play { opacity: 0; }
.card:hover .card__slide img { transform: scale(1.04); }

.card__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0 0 3px;
  border: none;
  border-radius: 50%;
  background: rgba(251, 249, 246, .88);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px -4px rgba(46, 39, 54, .5);
  color: var(--plum);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity .3s ease, background-color .3s ease;
}
.card__arrow--prev { left: 12px; }
.card__arrow--next { right: 12px; }
.card__arrow:hover { background: var(--white); }

/* Always visible on touch, where there is no hover to reveal them. */
.card:hover .card__arrow,
.card__arrow:focus-visible { opacity: 1; }
@media (hover: none) {
  .card__arrow { opacity: 1; }
}
html:not(.js) .card__arrow { display: none; }

.card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 26px clamp(20px, 1.8vw, 26px) 30px;
}

.card__meta {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green);
}

.card__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: 29px;
  color: var(--plum);
}

.card__text { margin: 0; font-size: 15px; line-height: 1.7; color: var(--slate); }

.card__ideal {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.card__ideal strong { color: var(--green); font-weight: 600; }

.card__note {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}
.card__note strong { color: var(--purple-deep); font-weight: 600; }

.card__link {
  margin-top: auto;
  padding-top: 16px;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple-deep);
}
.card__link:hover { color: var(--green); }

/* --------------------------- Marquee band ------------------------------- */

.band {
  position: relative;
  height: clamp(300px, 52vw, 540px);
  overflow: hidden;
  background: var(--green);
}
.band__media {
  position: absolute;
  top: -14%;
  left: 0;
  right: 0;
  height: 128%;
  will-change: transform;
}
.band__media img { width: 100%; height: 100%; object-fit: cover; }

.band__scrim { position: absolute; inset: 0; background: rgba(58, 47, 73, .42); }

.band__marquee {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
}
.band__track {
  display: flex;
  width: max-content;
  opacity: .9;
  animation: ammaMarquee 34s linear infinite;
}
.band__track span {
  padding-right: .4em;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(48px, 10vw, 120px);
  color: var(--white);
  white-space: nowrap;
}

@keyframes ammaMarquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ------------------------------- Accordion ------------------------------ */

.accordion { display: flex; flex-direction: column; }

.acc { border-top: 1px solid var(--rule-strong); }
.acc--last { border-bottom: 1px solid var(--rule-strong); }

.acc__heading { margin: 0; font-weight: inherit; }

.acc__trigger {
  display: flex;
  align-items: baseline;
  gap: 18px;
  width: 100%;
  padding: 26px 4px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
}
.acc__trigger:hover .acc__name { color: var(--purple-deep); }

.acc__label { flex: 1; min-width: 0; }

.acc__name {
  display: block;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  color: var(--plum);
  transition: color .3s ease;
}

.acc__detail {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--muted);
}

.acc__price {
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--green);
  white-space: nowrap;
}

.acc__chev {
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  font-size: 22px;
  line-height: 20px;
  text-align: center;
  color: var(--purple);
  transition: transform .4s var(--ease);
}
.acc__trigger[aria-expanded="true"] .acc__chev { transform: rotate(135deg); }

.acc__panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease), opacity .45s ease;
}
.acc__panel p {
  margin: 0 0 26px;
  max-width: 44em;
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate);
}
/* Without JS every panel stays open, so the schedule is still readable. */
html:not(.js) .acc__panel { max-height: none; opacity: 1; }
html:not(.js) .acc__chev { display: none; }

/* ------------------------------ Testimonios ----------------------------- */

.quotes__eyebrow { margin-bottom: clamp(40px, 5vw, 64px); }

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(30px, 4vw, 56px);
}

.quote { margin: 0; }
.quote p {
  margin: 0;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.45;
  color: var(--white);
  text-wrap: pretty;
}
.quote footer {
  margin-top: 20px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .65);
}

/* --------------------------------- Bios --------------------------------- */

.bios {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.bio { display: flex; align-items: center; gap: 14px; }

.bio__avatar {
  width: 76px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}

.bio__name {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--plum);
}
.bio__role {
  display: block;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------- Contacto ------------------------------- */

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: 26px;
  margin: 0;
}
.facts dt {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green);
}
.facts dd { margin: 0; font-size: 16px; line-height: 1.6; color: var(--plum); }

.map {
  border-radius: 18px;
  overflow: hidden;
  background: var(--lilac-100);
  min-height: 340px;
}
.map iframe {
  width: 100%;
  height: clamp(340px, 44vw, 480px);
  border: 0;
  filter: saturate(.8);
}

/* -------------------------------- Footer -------------------------------- */

.site-footer {
  padding: clamp(48px, 7vw, 80px) var(--pad-x) 40px;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
.site-footer__logo { height: 56px; width: auto; }

.site-footer__nav { display: flex; flex-wrap: wrap; gap: 22px; }
.site-footer__nav a {
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--slate);
}
.site-footer__nav a:hover { color: var(--green); }

.site-footer__legal { margin: 0; font-size: 13px; color: var(--muted); }

/* ---------------------------- WhatsApp FAB ------------------------------ */

/* Sits under the header (90), the mobile menu (100) and the lightbox (200),
   so it never floats on top of an overlay. */
.wa-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  /* Clear the iOS home indicator when there is one. */
  bottom: max(clamp(16px, 3vw, 28px), env(safe-area-inset-bottom, 0px) + 12px);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 6px 20px -6px rgba(37, 211, 102, .7), 0 2px 10px -2px rgba(46, 39, 54, .3);
  transition: transform .3s var(--ease), box-shadow .3s ease, opacity .3s ease;
}
.wa-fab:hover,
.wa-fab:focus-visible {
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 26px -6px rgba(37, 211, 102, .8), 0 3px 12px -2px rgba(46, 39, 54, .35);
}
.wa-fab svg { display: block; }

/* Hidden while an overlay owns the screen — the scroll lock marks both the
   mobile menu and the lightbox. */
body.is-locked .wa-fab { opacity: 0; pointer-events: none; }

@media (prefers-reduced-motion: reduce) {
  .wa-fab:hover,
  .wa-fab:focus-visible { transform: none; }
}

/* ------------------------------ Lightbox -------------------------------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 56px);
  background: rgba(30, 25, 36, .92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }

.lightbox__img,
.lightbox__video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, .8);
}
.lightbox__img[hidden],
.lightbox__video[hidden] { display: none; }

.lightbox__close {
  position: absolute;
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .3s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, .24); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0 0 4px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .3s ease;
}
.lightbox__nav:hover { background: rgba(255, 255, 255, .24); }
.lightbox__nav[hidden] { display: none; }
.lightbox__nav--prev { left: clamp(8px, 2.5vw, 28px); }
.lightbox__nav--next { right: clamp(8px, 2.5vw, 28px); }

.lightbox__counter {
  position: absolute;
  bottom: clamp(12px, 3vw, 28px);
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: .16em;
  color: rgba(255, 255, 255, .7);
}

/* ------------------------------- Reveal --------------------------------- */

/* Only armed once main.js confirms it is running, so a JS failure never
   leaves the page blank. */
html.reveal-armed [data-reveal]:not(.is-visible) {
  opacity: 0;
  transform: translateY(26px);
}
html.reveal-armed [data-reveal] {
  transition: opacity .9s var(--ease) var(--reveal-delay, 0s),
              transform 1s var(--ease) var(--reveal-delay, 0s);
}

/* --------------------------- Reduced motion ----------------------------- */

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

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

  .band__track { animation: none; transform: none; }
  .hero__cue-line { animation: none; }
  .card:hover { transform: none; }
  .card:hover .card__media img { transform: none; }

  html.reveal-armed [data-reveal]:not(.is-visible) { opacity: 1; transform: none; }
}
