/* Heroes Divers – Brand tokens (Manual de Marca 2025) */
:root {
  --color-blue: #0b46a2;
  --color-blue-dark: #083580;
  --color-blue-light: #1a6fd4;
  --color-red: #e72428;
  --color-yellow: #f9e951;
  --color-white: #ffffff;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f7fa;
  --color-text: #1a1a2e;
  --color-text-muted: #5a6278;
  --color-text-light: #8b93a8;
  --color-border: #e2e6ef;
  --font-display: 'Passion One', Impact, sans-serif;
  --font-body: 'Nunito', 'Helvetica Neue', sans-serif;
  --header-top-height: 64px;
  --header-nav-height: 52px;
  --header-height: calc(var(--header-top-height) + var(--header-nav-height));
  --section-padding: clamp(2.5rem, 6vw, 5rem);
  --container-max: 1280px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-duration: 0.75s;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(11, 70, 162, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-red);
  color: #fff;
  border-radius: 4px;
}
.skip-link:focus { top: 1rem; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-blue);
}

.header__top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header__top-inner,
.header__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.header__top-inner {
  height: var(--header-top-height);
}

.header__utilities {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 120px;
}

.header__utilities--right {
  justify-content: flex-end;
}

.header__utility {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-yellow);
  transition: opacity var(--transition);
}

.header__utility:hover { opacity: 0.75; }

.header__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
}

.header__logo-img,
.footer__logo {
  height: 36px;
  width: auto;
  mix-blend-mode: lighten;
}

.quick-service__icon,
.gift-card img,
.method-banner__isotipo {
  object-fit: contain;
}

.method-banner__isotipo {
  flex-shrink: 0;
  mix-blend-mode: lighten;
}

.mega-menu__card-gift img {
  mix-blend-mode: lighten;
}

.header__tagline {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.lang-selector__btn {
  color: rgba(255, 255, 255, 0.6);
  padding: 0.25rem;
  transition: color var(--transition);
}

.lang-selector__btn--active,
.lang-selector__btn:hover {
  color: var(--color-yellow);
}

.lang-selector__sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.625rem;
}

.header__nav-bar {
  background: var(--color-blue);
}

.header__nav-inner {
  height: var(--header-nav-height);
  position: relative;
}

.header__nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-blue-dark);
  padding: 1rem 1.25rem 1.5rem;
  border-bottom: 2px solid var(--color-yellow);
}

.header__nav--open { display: block; }

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link--active { color: var(--color-yellow); }

.nav-list__item--mega { position: relative; }

.nav-link__chevron {
  transition: transform var(--transition);
}

.nav-list__item--mega.is-open .nav-link__chevron {
  transform: rotate(180deg);
}

/* Mega menu – mobile accordion */
.mega-menu {
  display: none;
  padding: 0.5rem 0 1rem;
}

.nav-list__item--mega.is-open > .mega-menu {
  display: block;
}

.mega-menu__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.mega-menu__grid {
  display: grid;
  gap: 1.25rem;
}

.mega-menu__heading {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-yellow);
  margin-bottom: 0.625rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mega-menu__links a {
  display: block;
  padding: 0.4375rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.mega-menu__links a:hover {
  color: var(--color-yellow);
}

.mega-menu__featured {
  margin-top: 0.5rem;
}

.mega-menu__card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition);
}

.mega-menu__card:hover {
  transform: translateY(-2px);
}

.mega-menu__card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.mega-menu__card-body {
  padding: 1rem;
}

.mega-menu__card-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-yellow);
  margin-bottom: 0.375rem;
}

.mega-menu__card-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.mega-menu__card-cta {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.65);
}

.mega-menu__card-gift {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--color-red);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
}

.mega-menu-backdrop {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  z-index: 150;
  background: rgba(11, 70, 162, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.mega-menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.header__menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
}

@media (min-width: 1024px) {
  .header__menu-btn { display: none; }

  .header {
    transition: box-shadow var(--transition);
  }

  .header--mega-open {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  }

  .header__nav-inner {
    justify-content: center;
  }

  .header__nav {
    display: block;
    position: static;
    background: none;
    padding: 0;
    border: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }

  .nav-list__item--mega {
    position: static;
  }

  .nav-link { padding: 0; font-size: 0.6875rem; }

  /* Mega menu – desktop full-width panel */
  .nav-list__item--mega.is-open > .mega-menu,
  .nav-list__item--mega:hover > .mega-menu,
  .nav-list__item--mega:focus-within > .mega-menu {
    display: block;
  }

  .mega-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 160;
    padding: 0;
    background: var(--color-white);
    border-top: 3px solid var(--color-yellow);
    box-shadow: 0 16px 48px rgba(11, 70, 162, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
  }

  .nav-list__item--mega.is-open > .mega-menu,
  .nav-list__item--mega:hover > .mega-menu,
  .nav-list__item--mega:focus-within > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mega-menu__inner {
    padding: 2rem 1.25rem;
  }

  .mega-menu__grid {
    grid-template-columns: repeat(3, 1fr) minmax(220px, 280px);
    gap: 2rem;
    align-items: start;
  }

  .mega-menu__grid--2col {
    grid-template-columns: repeat(2, 1fr) minmax(220px, 280px);
  }

  .mega-menu__heading {
    color: var(--color-blue);
    border-bottom-color: var(--color-border);
    font-size: 0.75rem;
  }

  .mega-menu__links a {
    color: var(--color-text-muted);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.375rem 0;
  }

  .mega-menu__links a:hover {
    color: var(--color-red);
    padding-left: 0.25rem;
  }

  .mega-menu__featured {
    margin-top: 0;
  }

  .mega-menu__card {
    background: var(--color-bg-alt);
    border-color: var(--color-border);
    box-shadow: var(--shadow);
  }

  .mega-menu__card-label {
    color: var(--color-red);
  }

  .mega-menu__card-title {
    color: var(--color-blue);
    font-size: 1.25rem;
  }

  .mega-menu__card-cta {
    color: var(--color-blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.6875rem;
  }

  .mega-menu__card:hover .mega-menu__card-cta {
    color: var(--color-red);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-white);
}
.btn--primary:hover { background: #c41f22; transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.btn--reserve {
  background: var(--color-white);
  color: var(--color-blue);
  padding: 0.5rem 1.25rem;
  font-size: 0.6875rem;
}
.btn--reserve:hover { background: var(--color-yellow); }

.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-blue);
}
.btn--yellow:hover { background: #f5df30; }

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}
.btn--whatsapp:hover { background: #1fb855; }

.btn--lg { padding: 1rem 2rem; font-size: 0.8125rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 900px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero__track { position: absolute; inset: 0; }

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero__slide--active { opacity: 1; }

.hero__image,
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video {
  display: block;
  background: var(--color-blue-dark);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 70, 162, 0.85) 0%,
    rgba(11, 70, 162, 0.3) 45%,
    rgba(0, 0, 0, 0.15) 100%
  );
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 var(--section-padding) 5rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-yellow);
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--color-white);
  text-transform: uppercase;
  max-width: 800px;
  margin-bottom: 1rem;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #fff;
  transition: all var(--transition);
}
.hero__arrow:hover { background: rgba(255, 255, 255, 0.15); }

.hero__dots { display: flex; gap: 0.5rem; }

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all var(--transition);
}
.hero__dot--active {
  background: var(--color-yellow);
  transform: scale(1.3);
}

/* ===== QUICK SERVICES (mobile) ===== */
.quick-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--color-bg-alt);
}

@media (min-width: 768px) {
  .quick-services { display: none; }
}

.quick-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: var(--color-white);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent, var(--color-blue));
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.quick-service:hover { transform: translateY(-2px); }

.quick-service__icon { width: 36px; height: 36px; object-fit: contain; }
.quick-service__emoji { font-size: 1.75rem; }

/* ===== SECTIONS ===== */
.section {
  padding: var(--section-padding) 1.25rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section--values { background: var(--color-bg-alt); max-width: none; padding-left: max(1.25rem, calc((100vw - var(--container-max)) / 2)); padding-right: max(1.25rem, calc((100vw - var(--container-max)) / 2)); }
.section--experiences { max-width: none; padding-left: max(1.25rem, calc((100vw - var(--container-max)) / 2)); padding-right: max(1.25rem, calc((100vw - var(--container-max)) / 2)); }
.section--method { max-width: none; padding: 0; }
.section--gift { max-width: none; padding: 0; }
.section--cta { max-width: none; padding: 0; }

.section__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.section__header--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-red);
  margin-bottom: 0.5rem;
}

.section__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-red);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.section__eyebrow--light { color: var(--color-yellow); }
.section__eyebrow--light::before { background: var(--color-yellow); }
.section__eyebrow--yellow { color: var(--color-yellow); }
.section__eyebrow--yellow::before { background: var(--color-yellow); }

.section__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-blue);
}

.section__title--display {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
}

.section__title--light { color: var(--color-white); }

.section__lead {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.section__link {
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--color-red);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: opacity var(--transition);
}
.section__link:hover { opacity: 0.75; }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: var(--container-max);
  margin: 0 auto;
}

@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

/* Hero power cards – valors de marca */
.power-card {
  position: relative;
  background: var(--color-white);
  padding: 1.5rem 1.5rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid var(--color-border);
  box-shadow: 4px 4px 0 var(--color-blue);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.power-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-blue);
}

.power-card--yellow { box-shadow: 4px 4px 0 var(--color-red); }
.power-card--yellow:hover { box-shadow: 6px 6px 0 var(--color-red); }
.power-card--red { box-shadow: 4px 4px 0 var(--color-blue-dark); }
.power-card--red:hover { box-shadow: 6px 6px 0 var(--color-blue-dark); }
.power-card--blue-alt { box-shadow: 4px 4px 0 var(--color-yellow); }
.power-card--blue-alt:hover { box-shadow: 6px 6px 0 var(--color-yellow); }

.power-card__watermark {
  position: absolute;
  top: -1rem;
  right: -1.5rem;
  width: 7rem;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  transform: rotate(12deg);
}

.power-card__header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.power-card__mission {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-blue);
  opacity: 0.12;
}

.power-card--yellow .power-card__mission { color: var(--color-red); }
.power-card--red .power-card__mission { color: var(--color-blue); }
.power-card--blue-alt .power-card__mission { color: var(--color-red); }

.power-card__shield {
  position: relative;
  width: 72px;
  height: 80px;
  margin: 0 auto 1.25rem;
  z-index: 1;
}


.power-card--blue {
  --shield-burst: var(--color-yellow);
}

.power-card--yellow {
  --shield-burst: var(--color-red);
}

.power-card--red {
  --shield-burst: var(--color-yellow);
}

.power-card--blue-alt {
  --shield-burst: var(--color-yellow);
}

.power-card--blue .power-card__shield-shape { color: var(--color-blue); }
.power-card--yellow .power-card__shield-shape { color: var(--color-yellow); }
.power-card--red .power-card__shield-shape { color: var(--color-red); }
.power-card--blue-alt .power-card__shield-shape { color: var(--color-blue-dark); }

.power-card__burst {
  position: absolute;
  inset: -35%;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
  background: repeating-conic-gradient(
    from -22.5deg at 50% 50%,
    var(--shield-burst) 0deg 11deg,
    transparent 11deg 45deg
  );
  -webkit-mask: radial-gradient(circle, #000 18%, transparent 72%);
  mask: radial-gradient(circle, #000 18%, transparent 72%);
}

.power-card__shield-shape {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 8px rgba(11, 70, 162, 0.2));
  transform-origin: center center;
}

.power-card[data-reveal]:not(.is-revealed) .power-card__shield-shape {
  opacity: 0;
  transform: scale(0) rotate(-95deg);
}

.power-card__glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -46%);
  transform-origin: center center;
}

.power-card[data-reveal]:not(.is-revealed) .power-card__glyph {
  opacity: 0;
  transform: translate(-50%, -46%) scale(0);
}

.power-card.is-revealed .power-card__burst {
  animation: power-burst 0.75s ease-out forwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 0.05s);
}

.power-card.is-revealed .power-card__shield-shape {
  animation: power-shield-in 0.7s var(--reveal-ease) forwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 0.12s);
}

.power-card.is-revealed .power-card__glyph {
  animation: power-glyph-in 0.5s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 0.42s);
}

@keyframes power-burst {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  35% {
    opacity: 0.9;
    transform: scale(1.05) rotate(18deg);
  }
  100% {
    opacity: 0;
    transform: scale(1.45) rotate(40deg);
  }
}

@keyframes power-shield-in {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-95deg);
  }
  55% {
    opacity: 1;
    transform: scale(1.18) rotate(6deg);
  }
  75% {
    transform: scale(0.94) rotate(-3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes power-glyph-in {
  0% {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0) rotate(50deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -46%) scale(1) rotate(0deg);
  }
}

.power-card__title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-blue);
  text-align: center;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.power-card--red .power-card__title { color: var(--color-red); }

.power-card__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Filter pills */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-pill {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: var(--color-white);
  transition: all var(--transition);
}

.filter-pill--active,
.filter-pill:hover {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}

/* Experience cards */
.experiences-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) { .experiences-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .experiences-grid { grid-template-columns: repeat(3, 1fr); } }

.experience-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--color-white);
  transition: transform var(--transition);
}
.experience-card:hover { transform: translateY(-4px); }
.experience-card[hidden] { display: none; }

.experience-card__visual {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-blue-dark);
  background-size: cover;
  background-position: center;
}

.experience-card__visual--c01 { background-image: url('../assets/images/client/client-01.jpg'); }
.experience-card__visual--c04 { background-image: url('../assets/images/client/client-04.jpg'); }
.experience-card__visual--c05 { background-image: url('../assets/images/client/client-05.jpg'); }
.experience-card__visual--c06 { background-image: url('../assets/images/client/client-06.jpg'); }
.experience-card__visual--c08 { background-image: url('../assets/images/client/client-08.jpg'); }
.experience-card__visual--c09 { background-image: url('../assets/images/client/client-09.jpg'); }

.experience-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.experience-card:hover .experience-card__photo {
  transform: scale(1.06);
}

.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11, 70, 162, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.experience-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.experience-card__badge--yellow { background: var(--color-yellow); color: var(--color-blue); }
.experience-card__badge--blue { background: var(--color-blue-dark); color: #fff; }
.experience-card__badge--red { background: #9b1518; color: #fff; }
.experience-card__badge--white { background: rgba(255,255,255,0.9); color: var(--color-blue); }
.experience-card__badge--green { background: #0d6b42; color: #fff; }
.experience-card__badge--purple { background: #4e2d7a; color: #fff; }

.experience-card__age {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.experience-card__body { padding: 1.25rem; }

.experience-card__title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.experience-card__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.experience-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.experience-card__price {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color-red);
}

.experience-card__cta {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-blue);
  transition: color var(--transition);
}
.experience-card__cta:hover { color: var(--color-red); }

/* Costa Brava */
.costa-brava {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .costa-brava { grid-template-columns: 1fr 1fr; }
}

.costa-brava__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.costa-brava__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.costa-brava__highlights {
  margin: 1.5rem 0;
}

.costa-brava__highlights li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.costa-brava__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-yellow);
  border-radius: 50%;
}

/* Method banner */
.method-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: var(--section-padding) 1.25rem;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  text-align: center;
}

@media (min-width: 768px) {
  .method-banner {
    flex-direction: row;
    text-align: left;
    padding-left: max(1.25rem, calc((100vw - var(--container-max)) / 2));
    padding-right: max(1.25rem, calc((100vw - var(--container-max)) / 2));
  }
}

.method-banner__content {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.85);
}

.method-banner__content p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: var(--color-bg-alt);
  padding: 1.75rem;
  border-radius: var(--radius);
  border-top: 3px solid var(--color-yellow);
}

.testimonial-card__stars {
  color: var(--color-yellow);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--color-blue);
}

.testimonial-card__author span {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* Gift banner */
.gift-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: var(--section-padding) 1.25rem;
  background: var(--color-red);
  color: var(--color-white);
}

@media (min-width: 768px) {
  .gift-banner {
    grid-template-columns: 1.2fr 1fr;
    padding-left: max(1.25rem, calc((100vw - var(--container-max)) / 2));
    padding-right: max(1.25rem, calc((100vw - var(--container-max)) / 2));
  }
}

.gift-banner__content p {
  margin: 1rem 0 1.5rem;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.65;
}

.gift-banner__visual {
  display: flex;
  justify-content: center;
  padding-top: 0.75rem;
}

.gift-card {
  position: relative;
  background: var(--color-white);
  color: var(--color-blue);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: rotate(-4deg);
  transform-origin: top center;
  min-width: 220px;
}

.gift-card::before {
  content: '';
  position: absolute;
  top: -0.75rem;
  left: 50%;
  width: 2px;
  height: 0.75rem;
  background: rgba(255, 255, 255, 0.55);
  transform: translateX(-50%);
  border-radius: 1px;
}

.gift-banner__visual.is-revealed .gift-card {
  animation: gift-bell-swing 2.6s ease-in-out infinite;
}

@keyframes gift-bell-swing {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.gift-card img { margin: 0 auto 1rem; }
.gift-card__title { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; }
.gift-card__subtitle { font-size: 0.75rem; font-weight: 700; color: var(--color-text-muted); margin-top: 0.25rem; }

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem 3rem;
  }

  .partner-logo {
    height: 7.5rem;
  }

  .partner-logo img {
    max-height: 5.5rem;
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6.5rem;
  margin: 0;
  padding: 0.5rem;
}

.partner-logo img {
  display: block;
  max-width: 100%;
  max-height: 4.5rem;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: opacity var(--transition);
}

.partner-logo:hover img {
  opacity: 0.8;
}

.partner-logo--tall {
  height: auto;
  min-height: 6.5rem;
}

.partner-logo--tall img {
  max-height: 7.5rem;
  max-width: 9rem;
}

@media (min-width: 768px) {
  .partner-logo--tall {
    min-height: 7.5rem;
  }

  .partner-logo--tall img {
    max-height: 10rem;
    max-width: 11rem;
  }
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card__link { display: block; }

.blog-card__image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.875rem;
}

.blog-card__image-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__image-wrap img { transform: scale(1.05); }

.blog-card__category {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-red);
}

.blog-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-blue);
  margin: 0.375rem 0;
  line-height: 1.35;
  transition: color var(--transition);
}
.blog-card:hover .blog-card__title { color: var(--color-red); }

.blog-card__read-time {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

/* CTA banner */
.cta-banner {
  padding: var(--section-padding) 1.25rem;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  text-align: center;
  color: var(--color-white);
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cta-banner__text {
  font-size: 1.0625rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-blue-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem 2rem;
}

@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; } }

.footer__logo {
  margin-bottom: 0.75rem;
  height: auto;
  max-width: 180px;
}

.footer__slogan {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-yellow);
}

.footer__social { display: flex; gap: 0.75rem; }

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--color-white);
  transition: all var(--transition);
}
.footer__social-link:hover {
  background: var(--color-yellow);
  color: var(--color-blue);
  border-color: var(--color-yellow);
}

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer__address,
.footer__col p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0.375rem;
}

.footer__col a:hover { color: var(--color-yellow); }

.footer__links li { margin-bottom: 0.5rem; }
.footer__links a {
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer__newsletter-text {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-form__input {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.newsletter-form__input::placeholder { color: rgba(255, 255, 255, 0.45); }
.newsletter-form__input:focus {
  outline: none;
  border-color: var(--color-yellow);
}

.newsletter-form__btn { width: 100%; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.875rem 1.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer__bottom-line {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  max-width: var(--container-max);
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.footer__bottom-line::-webkit-scrollbar { display: none; }

.footer__bottom-line a {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transition: color var(--transition);
  flex-shrink: 0;
}

.footer__bottom-line a:hover { color: var(--color-yellow); }

.footer__bottom-line > span:not(.footer__bottom-sep) {
  white-space: nowrap;
  flex-shrink: 0;
}

.footer__bottom-sep {
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  user-select: none;
}

/* ===== BOOKING WIDGET ===== */
.mega-menu--booking .mega-menu__inner--booking {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 1.25rem;
}

.booking-widget__footer-note {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-align: center;
}

.booking-widget__footer-note a {
  color: var(--color-blue);
  font-weight: 700;
}

.booking-widget__footer-note a:hover { color: var(--color-red); }

.section--booking {
  background: var(--color-bg-alt);
}

.booking-section__actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.booking-widget {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.section--booking .booking-widget {
  padding: 1.5rem;
}

.mega-menu--booking .booking-widget {
  box-shadow: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.booking-widget__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
}

.mega-menu--booking .booking-widget__toolbar {
  padding: 0 0 0.75rem;
}

.booking-widget__filter {
  flex: 1;
  min-width: 200px;
  max-width: 360px;
}

.booking-widget__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  margin-bottom: 0.375rem;
}

.booking-widget__select {
  width: 100%;
  padding: 0.625rem 2rem 0.625rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  border: 2px solid var(--color-border);
  border-radius: 6px;
  background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%235a6278' fill='none' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  appearance: none;
  cursor: pointer;
}

.booking-widget__select:focus {
  outline: none;
  border-color: var(--color-blue);
}

.booking-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.booking-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.booking-legend__dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}

.booking-legend__dot--available { background: #2ecc71; }
.booking-legend__dot--full { background: #e74c3c; }

.booking-widget__body {
  display: grid;
  gap: 1.25rem;
  padding: 1.25rem;
}

.mega-menu--booking .booking-widget__body {
  padding: 0.75rem 0 0;
}

@media (min-width: 900px) {
  .booking-widget__body {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.booking-calendar-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.booking-calendar-nav__btn {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-blue);
  padding: 0.375rem 0.5rem;
  border-radius: 4px;
  transition: background var(--transition);
}

.booking-calendar-nav__btn:hover {
  background: var(--color-bg-alt);
}

.booking-calendars {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .booking-calendars {
    grid-template-columns: 1fr 1fr;
  }
}

.booking-widget--compact .booking-calendars {
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.booking-calendar__title {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
  text-align: center;
}

.booking-widget--compact .booking-calendar__title {
  font-size: 0.8125rem;
}

.booking-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.booking-calendar__weekdays span {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--color-text-light);
  text-transform: uppercase;
}

.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.booking-calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: all 0.15s ease;
  min-height: 32px;
}

.booking-widget--compact .booking-calendar__day {
  font-size: 0.75rem;
  min-height: 28px;
}

.booking-calendar__day--empty {
  pointer-events: none;
}

.booking-calendar__day--past,
.booking-calendar__day--unavailable {
  color: var(--color-text-light);
  cursor: not-allowed;
  opacity: 0.45;
}

.booking-calendar__day--available {
  background: rgba(46, 204, 113, 0.15);
  color: #1a7a42;
  cursor: pointer;
}

.booking-calendar__day--available:hover {
  background: rgba(46, 204, 113, 0.35);
  border-color: #2ecc71;
}

.booking-calendar__day--full {
  background: rgba(231, 76, 60, 0.12);
  color: #b52d20;
  cursor: pointer;
}

.booking-calendar__day--full:hover {
  background: rgba(231, 76, 60, 0.22);
}

.booking-calendar__day--selected {
  border-color: var(--color-blue) !important;
  box-shadow: 0 0 0 2px rgba(11, 70, 162, 0.2);
  background: var(--color-blue) !important;
  color: var(--color-white) !important;
}

.booking-day-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-yellow);
}

.booking-widget--compact .booking-day-title {
  font-size: 0.875rem;
}

.booking-slots__empty {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.booking-widget__slots {
  min-height: 120px;
}

.booking-widget--compact .booking-widget__slots {
  max-height: 280px;
  overflow-y: auto;
}

.booking-slots-table-wrap {
  overflow-x: auto;
}

.booking-slots-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.booking-slots-table th {
  text-align: left;
  padding: 0.5rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-border);
  white-space: nowrap;
}

.booking-slots-table td {
  padding: 0.625rem;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  line-height: 1.4;
}

.booking-slots-table__row--full td {
  opacity: 0.65;
}

.booking-slots__soldout {
  color: var(--color-red);
  font-weight: 800;
  font-size: 0.75rem;
}

.booking-slots__full-label {
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-text-light);
}

.btn--sm {
  padding: 0.4rem 0.75rem;
  font-size: 0.625rem;
}

@media (max-width: 768px) {
  .booking-slots-table thead { display: none; }

  .booking-slots-table tr {
    display: block;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
  }

  .booking-slots-table td {
    display: block;
    border: none;
    padding: 0.25rem 0;
  }

  .booking-slots-table td::before {
    content: attr(data-label) ": ";
    font-weight: 800;
    font-size: 0.6875rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
  }

  .booking-slots-table td:last-child {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }

  .booking-slots-table td:last-child::before { display: none; }
}

/* ===== SCROLL REVEAL ===== */
[data-reveal] {
  opacity: 0;
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}

[data-reveal="fade-up"] { transform: translateY(2.5rem); }
[data-reveal="fade-down"] { transform: translateY(-2rem); }
[data-reveal="fade-left"] { transform: translateX(-3rem); }
[data-reveal="fade-right"] { transform: translateX(3rem); }
[data-reveal="zoom-in"] { transform: scale(0.92); }

.experience-card[data-reveal].is-revealed:hover {
  transform: translateY(-4px);
}

.power-card[data-reveal].is-revealed:hover {
  transform: translate(-2px, -2px);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .gift-banner__visual.is-revealed .gift-card {
    animation: none;
    transform: rotate(-3deg);
  }

  .power-card__burst {
    animation: none !important;
    opacity: 0 !important;
  }

  .power-card__shield-shape {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .power-card__glyph {
    opacity: 1;
    transform: translate(-50%, -46%);
    animation: none !important;
  }
}
