/* Reset y estilos base */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scrollbar-color: var(--alpha-gold) var(--alpha-navy-deep);
  scrollbar-width: thin;
}

/* Footer contact CTA: compact on tablet and desktop. */
@media (min-width: 768px) {
  .footer__contact .footer__whatsapp {
    width: fit-content;
    max-width: 100%;
    justify-self: start;
  }
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track { background: var(--alpha-navy-deep); }
::-webkit-scrollbar-thumb {
  background: var(--alpha-gold);
  border: 2px solid var(--alpha-navy-deep);
  border-radius: var(--r-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--alpha-gold-bright); }
::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}
::-webkit-scrollbar-corner { background: var(--alpha-navy-deep); }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.5;
  color: var(--on-neutral);
  background: var(--alpha-white);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection { background: var(--alpha-gold); color: var(--alpha-navy); }

:focus-visible {
  outline: 2px solid var(--alpha-gold);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--sp-2xl); }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--alpha-navy);
  color: var(--on-primary);
  height: var(--header-h);
  transition: background var(--dur-base) var(--ease-default),
              backdrop-filter var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.header--scrolled {
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--sh-md);
}
.header__topbar {
  position: relative;
  height: var(--header-topbar-h);
  overflow: hidden;
  background: var(--alpha-white);
  color: var(--alpha-navy);
  border-bottom: 1px solid rgba(11, 31, 58, 0.14);
  box-shadow: inset 0 -1px 0 rgba(245, 197, 24, 0.28);
}
.header__ticker {
  width: 100%;
  height: 100%;
  padding-right: 160px;
  box-sizing: border-box;
  overflow: hidden;
  outline-offset: -2px;
}
.header__social-ribbon {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  width: 152px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-left: 10px;
  background: var(--alpha-gold);
  box-shadow: -10px 0 18px rgba(11, 31, 58, 0.18);
}
.header__social-ribbon::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 14px;
  height: 100%;
  background: var(--alpha-gold);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.header__social-ribbon a {
  width: 34px;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--alpha-navy-deep);
  border-radius: var(--r-sm);
  transition: background var(--dur-fast) var(--ease-default),
              transform var(--dur-fast) var(--ease-default);
}
.header__social-ribbon a:hover,
.header__social-ribbon a:focus-visible {
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
  outline: 2px solid var(--alpha-navy-deep);
  outline-offset: -3px;
}
.header__social-ribbon a:active {
  transform: translateY(1px);
}
.header__social-ribbon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}
.header__ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  will-change: transform;
  animation: headerTicker 42s linear infinite;
}
.header__ticker.is-stepped .header__ticker-track {
  animation: none;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}
.header__ticker.is-static .header__ticker-track {
  animation: none;
  transform: none;
  transition: none;
  will-change: auto;
}
.header__ticker.is-stepped .header__ticker-item {
  min-width: max-content;
}
.header__ticker:hover .header__ticker-track,
.header__ticker:focus-within .header__ticker-track {
  animation-play-state: paused;
}
.header__ticker-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  height: 100%;
}
.header__ticker-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  height: 100%;
  margin-right: clamp(2rem, 5vw, 4.5rem);
  color: var(--alpha-navy);
  font-size: clamp(0.69rem, 1.05vw, 0.78rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.015em;
  white-space: nowrap;
}
a.header__ticker-item {
  transition: color var(--dur-fast) var(--ease-default);
}
a.header__ticker-item:hover,
a.header__ticker-item:focus-visible {
  color: var(--alpha-navy-deep);
}
.header__ticker-item::after {
  content: "";
  position: absolute;
  right: calc(clamp(2rem, 5vw, 4.5rem) / -2);
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--alpha-gold);
  opacity: 0.7;
}
.header__ticker-item strong {
  color: var(--alpha-navy);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--alpha-gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
@keyframes headerTicker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .header__ticker {
    overflow-x: auto;
    scrollbar-width: none;
  }
  .header__ticker::-webkit-scrollbar { display: none; }
  .header__ticker-track {
    animation: none;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .header__ticker-group[aria-hidden="true"] { display: none; }
}
.header__inner {
  max-width: none;
  height: var(--header-main-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-lg);
  background: var(--alpha-navy);
}
@media (min-width: 1024px) {
  .header__inner { padding: 0 var(--sp-xl); }
}
.header__brand {
  display: flex; align-items: center; gap: var(--sp-sm);
  padding: 4px 10px 4px 4px;
  border-radius: var(--r-full);
  flex: 0 0 auto;
  transition: transform var(--dur-base) var(--ease-bounce),
              background var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__brand:hover {
  transform: translateY(-3px) scale(1.04);
  background: rgba(245, 197, 24, 0.10);
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.25);
}
.header__brand:active { transform: translateY(-1px) scale(0.99); }
.header__logo {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: transform var(--dur-slow) var(--ease-default);
}
.header__brand:hover .header__logo { transform: rotate(-8deg); }
.header__logo--img {
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  object-fit: cover;
  object-position: center;
  border: 2.5px solid var(--alpha-gold);
  background: var(--alpha-gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.25), 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform var(--dur-slow) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__logo--official {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  border-radius: var(--r-full);
  background: var(--alpha-white);
  border: 2.5px solid var(--alpha-gold);
  box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.18), 0 4px 12px rgba(0, 0, 0, 0.35);
  transition: transform var(--dur-slow) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__brand:hover .header__logo--img {
  transform: rotate(-12deg) scale(1.1);
  box-shadow: 0 0 0 5px rgba(245, 197, 24, 0.4), 0 12px 28px rgba(245, 197, 24, 0.55);
}
.header__brand:hover .header__logo--official {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.30), 0 10px 24px rgba(245, 197, 24, 0.35);
}
.header__brand-text {
  display: flex; flex-direction: column; line-height: 0.95;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--alpha-white);
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .header__brand-text { font-size: 1.4rem; }
}
@media (min-width: 1180px) {
  .header__brand-text { font-size: 1.58rem; }
}
.header__brand-line1 {
  color: var(--alpha-white);
  white-space: nowrap;
}
.header__brand-line2 {
  color: var(--alpha-gold);
  font-size: 0.78em;
  white-space: nowrap;
  text-shadow: 0 0 12px rgba(245, 197, 24, 0.4), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header__nav {
  display: none;
  gap: var(--sp-xl);
  align-items: center;
}
@media (min-width: 1180px) {
  .header__nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 1vw, var(--sp-xl));
    height: 100%;
    min-width: 0;
  }
}
.header__nav-menu {
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 1180px) {
  .header__nav-menu {
    height: 100%;
  }
}
.header__submenu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  z-index: 120;
  min-width: 220px;
  padding: var(--sp-sm);
  border-radius: var(--r-md);
  background: rgba(6, 19, 40, 0.98);
  border: 1px solid rgba(245, 197, 24, 0.22);
  box-shadow: var(--sh-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-default);
}
.header__submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}
.header__nav-menu:not(.is-hover-suppressed):hover .header__submenu,
.header__nav-menu:focus-within .header__submenu,
.header__nav-menu.is-open .header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.header__submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  color: var(--alpha-white);
  font-size: var(--text-sm);
  font-weight: 700;
  white-space: nowrap;
}
.header__submenu a:hover,
.header__submenu a:focus-visible {
  background: rgba(245, 197, 24, 0.14);
  color: var(--alpha-gold);
}
.header__link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  position: relative;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-md);
  transition: color var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-bounce),
              background var(--dur-base) var(--ease-default),
              text-shadow var(--dur-base) var(--ease-default);
  overflow: hidden;
  isolation: isolate;
}
.header__link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(245, 197, 24, 0.18), transparent 70%);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-default);
  z-index: -1;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  height: 2px; width: 0;
  background: var(--alpha-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__link:hover {
  color: var(--alpha-gold);
  transform: translateY(-3px);
  text-shadow: 0 0 18px rgba(245, 197, 24, 0.6);
}
.header__link:hover::before { opacity: 1; transform: scale(1); }
.header__link:hover::after {
  width: 70%;
  box-shadow: 0 0 12px rgba(245, 197, 24, 0.8);
}
.header__link:active { transform: translateY(-1px) scale(0.97); }

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--sp-sm);
  flex-shrink: 0;
  margin-left: auto;
  height: 100%;
}

.header__icon-btn.header__menu-btn {
  display: none;
  order: 1;
}
.site-search-toggle { order: -1; }
.menu-icon--close { display: none; }
.nav-open .menu-icon--open { display: none; }
.nav-open .menu-icon--close { display: block; }

@media (max-width: 767px) {
  body.nav-open { overflow: hidden; }
  .header__ticker { padding-right: 128px; }
  .header__social-ribbon {
    width: 122px;
    gap: 2px;
    padding-left: 6px;
  }
  .header__social-ribbon::before { width: 10px; }
  .header__social-ribbon a { width: 30px; }
  .header__social-ribbon svg {
    width: 16px;
    height: 16px;
  }
  .header__inner { gap: var(--sp-sm); }
  .header__brand-text { font-size: 1.2rem; }
  .header__logo--official {
    width: 46px;
    height: 46px;
  }
  .header__icon-btn.header__menu-btn { display: grid; }
  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: var(--sp-md);
    background: rgba(6, 19, 40, 0.98);
    box-shadow: var(--sh-lg);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--dur-base) var(--ease-default),
                transform var(--dur-base) var(--ease-default),
                visibility var(--dur-base) var(--ease-default);
  }
  .nav-open .header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .header__link {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  }
  .header__link::after { display: none; }
  .header__actions {
    margin-left: auto;
    gap: 4px;
  }
  .header__nav-menu {
    display: grid;
  }
  .header__submenu {
    position: static;
    min-width: 0;
    padding: 0 0 8px;
    border: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .header__submenu::before { display: none; }
  .header__submenu a {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: var(--text-xs);
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1179px) {
  .header__inner {
    gap: 6px;
  }
  .header__brand-text {
    display: none;
  }
  .header__logo--official {
    width: 44px;
    height: 44px;
  }
  .header__nav {
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 100%;
    min-width: 0;
  }
  .header__link {
    min-height: 40px;
    padding: 4px 5px;
    font-size: clamp(0.64rem, 1.1vw, 0.76rem);
    letter-spacing: 0;
    white-space: nowrap;
  }
  .header__actions {
    gap: 2px;
  }
  .header__calendar-cta {
    min-height: 36px;
    padding-inline: 10px;
    font-size: 0.74rem;
  }
}

/* === Social en topbar (derecha) === */
.header__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  margin-left: 0;
  padding-left: 0;
  border-left: 0;
}
.header__actions .header__social {
  display: none;
}
.header__top-phone {
  color: var(--alpha-navy);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.header__top-phone:hover {
  color: var(--alpha-gold);
}
.header__top-separator {
  width: 1px;
  height: 18px;
  background: rgba(11, 31, 58, 0.22);
  flex: 0 0 auto;
}
.header__social-btn {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  background: rgba(11, 31, 58, 0.08);
  color: var(--alpha-navy);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease-bounce),
              background var(--dur-base) var(--ease-default),
              color var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
@media (min-width: 768px) {
  .header__social-btn { width: 28px; height: 28px; }
}
.header__social-btn:hover {
  transform: translateY(-4px) rotate(-6deg) scale(1.1);
  background: var(--alpha-gold);
  color: var(--alpha-navy);
  box-shadow: 0 8px 18px rgba(245, 197, 24, 0.45);
}
.header__social-btn:active { transform: translateY(-1px) scale(0.95); }

/* === Barra de teléfono en header (solo número) === */
.header__phone-bar {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(245, 197, 24, 0.4);
  color: var(--alpha-white);
  border-radius: var(--r-full);
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--dur-base) var(--ease-default),
              border-color var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-default);
}
@media (min-width: 1180px) { .header__phone-bar { display: inline-flex; } }
.header__phone-bar:hover {
  background: var(--alpha-gold);
  border-color: var(--alpha-gold);
  color: var(--alpha-navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(245, 197, 24, 0.4);
}
.header__phone-bar:active { transform: translateY(-1px) scale(0.97); }
.header__phone-bar svg { flex-shrink: 0; }
.header__phone-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.header__icon-btn {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  position: relative;
  color: var(--alpha-white);
  border: 1.5px solid transparent;
  transition: background var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-bounce),
              border-color var(--dur-base) var(--ease-default),
              color var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.header__icon-btn::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--r-full);
  background: radial-gradient(circle, rgba(245, 197, 24, 0.4), transparent 70%);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity var(--dur-base) var(--ease-default),
              transform var(--dur-base) var(--ease-default);
  z-index: -1;
  pointer-events: none;
}
.header__icon-btn:hover {
  background: rgba(245, 197, 24, 0.15);
  border-color: var(--alpha-gold);
  color: var(--alpha-gold);
  transform: translateY(-4px) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.35);
}
.header__icon-btn:hover::after { opacity: 1; transform: scale(1.2); }
.header__icon-btn:active { transform: translateY(-1px) scale(0.92); }
/* ============================================================
   SECTION
   ============================================================ */
.section { padding: var(--sp-3xl) 0; }
@media (min-width: 1024px) { .section { padding: var(--sp-4xl) 0; } }

.section__head { text-align: center; margin-bottom: var(--sp-2xl); }
.section__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  letter-spacing: 0.01em;
  color: var(--alpha-navy);
  margin-bottom: var(--sp-sm);
}
.section__sub {
  font-size: var(--text-base);
  color: var(--alpha-graphite);
  max-width: 540px;
  margin: 0 auto;
}

/* ============================================================
   FILTERS
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
  margin-bottom: var(--sp-2xl);
}
.filter {
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-full);
  background: transparent;
  border: 1.5px solid var(--alpha-mist);
  color: var(--alpha-graphite);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--dur-base) var(--ease-default);
}
.filter:hover {
  border-color: var(--alpha-navy);
  color: var(--alpha-navy);
  transform: translateY(-2px);
}
.filter--active {
  background: var(--alpha-navy);
  border-color: var(--alpha-navy);
  color: var(--alpha-white);
}

/* ============================================================
   GRID
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}
@media (min-width: 768px)  { .grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-xl); } }
@media (min-width: 1280px) { .grid { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-md);
  margin-top: var(--sp-2xl);
}
.page-btn {
  padding: var(--sp-sm) var(--sp-md);
  font-size: var(--text-sm);
  color: var(--alpha-graphite);
  border-radius: var(--r-md);
  transition: all var(--dur-base) var(--ease-default);
}
.page-btn:not(:disabled):hover { background: var(--alpha-mist); color: var(--alpha-navy); }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }
.page-num {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-default);
}
.page-num:hover { background: var(--alpha-mist); }
.page-num--active { background: var(--alpha-navy); color: var(--alpha-white); }

/* ============================================================
   CULTURE / STATS
   ============================================================ */
.culture { background: var(--alpha-cream); border-radius: var(--r-xl); padding: var(--sp-3xl) var(--sp-xl); margin-top: var(--sp-3xl); }
.culture__head { max-width: 720px; margin: 0 auto var(--sp-2xl); text-align: center; }
.culture__kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--alpha-gold-bright);
  background: var(--alpha-navy);
  padding: var(--sp-xs) var(--sp-md);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}
.culture__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  line-height: 1.05;
  color: var(--alpha-navy);
  margin-bottom: var(--sp-md);
}
.culture__lead {
  font-size: var(--text-lg);
  color: var(--alpha-graphite);
  line-height: 1.6;
}
.culture__lead-sub {
  margin-top: var(--sp-md);
  font-size: var(--text-base);
  color: var(--alpha-navy);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  padding-top: var(--sp-md);
}
.culture__lead-sub::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--alpha-gold);
  border-radius: 2px;
}

.culture__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
}
@media (min-width: 768px) { .culture__stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  text-align: center;
  padding: var(--sp-lg);
  background: var(--alpha-white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--dur-base) var(--ease-default), box-shadow var(--dur-base) var(--ease-default);
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  color: var(--alpha-navy);
  line-height: 1;
  margin-bottom: var(--sp-xs);
}
.stat__label {
  font-size: var(--text-sm);
  color: var(--alpha-graphite);
  font-weight: 500;
}

/* ============================================================
   SEDES
   ============================================================ */
.sedes { padding: var(--sp-3xl) 0 var(--sp-4xl); }
.sedes__head { text-align: center; max-width: 720px; margin: 0 auto var(--sp-2xl); }
.sedes__kicker {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alpha-gold-bright);
  background: var(--alpha-navy);
  padding: 6px var(--sp-md);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
}
.sedes__title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  letter-spacing: 0.01em;
  color: var(--alpha-navy);
  margin-bottom: var(--sp-sm);
  line-height: 1.05;
}
.sedes__sub {
  font-size: var(--text-base);
  color: var(--alpha-graphite);
}

.sedes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  max-width: 760px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .sedes__grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
}

.club-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  max-width: 1080px;
  margin: 0 auto var(--sp-2xl);
}

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

.club-info-card {
  min-height: 190px;
  padding: var(--sp-lg);
  border: 1px solid rgba(11, 31, 58, 0.10);
  border-radius: var(--r-md);
  background: var(--alpha-white);
  box-shadow: var(--sh-sm);
}

.club-info-card span {
  display: inline-block;
  margin-bottom: var(--sp-sm);
  color: var(--alpha-gold);
  font-size: var(--text-xs);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.club-info-card h3 {
  color: var(--alpha-navy);
  font-size: var(--text-xl);
  line-height: 1.2;
}

.club-info-card p {
  margin-top: var(--sp-sm);
  color: var(--alpha-graphite);
  line-height: 1.55;
}

.sede {
  position: relative;
  padding: var(--sp-2xl) var(--sp-xl);
  background: linear-gradient(180deg, var(--alpha-navy) 0%, var(--alpha-navy-deep) 100%);
  color: var(--alpha-white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
  isolation: isolate;
}
.sede::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(245,197,24,0.18) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(245,197,24,0.08) 0%, transparent 60%);
  z-index: -1;
  transition: opacity var(--dur-slow) var(--ease-default);
}
.sede:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(11, 31, 58, 0.35),
              0 0 0 2px rgba(245, 197, 24, 0.4);
}
.sede:hover::before { opacity: 1.5; }

/* Balón Asomado Alpha: efecto reutilizable para tarjetas con overflow oculto. */
.fx-ball-peek::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 58px);
  bottom: 0;
  z-index: 0;
  width: clamp(150px, 19vw, 210px);
  aspect-ratio: 1;
  background: url("../img/hero/volleyball-panel-mikasa.avif") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 108%, 0) rotate(14deg) scale(0.9);
  transform-origin: 50% 100%;
  transition: opacity 220ms var(--ease-default),
              transform 420ms var(--ease-bounce);
  will-change: transform, opacity;
}
.fx-ball-peek > * {
  position: relative;
  z-index: 1;
}
.fx-ball-peek.is-visible::after,
.fx-ball-peek:hover::after,
.fx-ball-peek:focus-within::after {
  opacity: 0.92;
  transform: translate3d(0, 67%, 0) rotate(-8deg) scale(1);
}
.fx-ball-peek:hover::after,
.fx-ball-peek:focus-within::after {
  transform: translate3d(0, 67%, 0) rotate(-12deg) scale(1);
}

@media (max-width: 520px) {
  .fx-ball-peek::after {
    right: 50%;
    transform: translate3d(50%, 108%, 0) rotate(14deg) scale(0.9);
  }
  .fx-ball-peek.is-visible::after,
  .fx-ball-peek:hover::after,
  .fx-ball-peek:focus-within::after {
    transform: translate3d(50%, 67%, 0) rotate(-8deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-ball-peek::after {
    transition: none;
    will-change: auto;
  }
}

.sede__num {
  position: absolute;
  top: var(--sp-lg);
  right: var(--sp-xl);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(245, 197, 24, 0.18);
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: transform var(--dur-slow) var(--ease-default), color var(--dur-base) var(--ease-default);
}
.sede:hover .sede__num {
  transform: scale(1.1) rotate(-4deg);
  color: rgba(245, 197, 24, 0.32);
}

.sede__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--alpha-navy);
  background: var(--alpha-gold);
  padding: 4px 12px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-md);
  box-shadow: 0 4px 12px rgba(245, 197, 24, 0.4);
}

.sede__name {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  letter-spacing: 0.01em;
  color: var(--alpha-white);
  line-height: 1.05;
  margin-bottom: var(--sp-sm);
}

.sede__city {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-sm);
  color: var(--alpha-gold);
  font-weight: 600;
  margin-bottom: var(--sp-lg);
}

.sede__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sede__features li {
  font-size: var(--text-sm);
  color: var(--alpha-mist);
  padding-left: var(--sp-md);
  position: relative;
}
.sede__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--alpha-gold);
}

.sede__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--alpha-gold);
  color: var(--alpha-navy);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.04em;
  border-radius: var(--r-md);
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(245, 197, 24, 0.35);
  transition: transform var(--dur-base) var(--ease-bounce),
              background var(--dur-base) var(--ease-default),
              box-shadow var(--dur-base) var(--ease-default);
}
.sede__cta:hover {
  background: var(--alpha-gold-bright);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(245, 197, 24, 0.55);
}
.sede__cta:active { transform: translateY(-1px) scale(0.98); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--alpha-navy-deep);
  color: var(--on-primary);
  padding: clamp(28px, 4vw, 46px) 0 var(--sp-sm);
  margin-top: var(--sp-xl);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(16px, 2.4vw, 30px);
}
@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-areas:
      "brand brand brand contact contact contact"
      "club club more more social social";
    column-gap: 18px;
    row-gap: 24px;
  }
  .footer__brand { grid-area: brand; }
  .footer__inner > .footer__links:nth-child(2) { grid-area: club; }
  .footer__inner > .footer__links:nth-child(3) { grid-area: more; }
  .footer__inner > .footer__links:nth-child(4) { grid-area: social; }
  .footer__contact { grid-area: contact; }
}
@media (min-width: 860px) {
  .footer__inner {
    grid-template-columns: minmax(190px, 1.35fr) repeat(3, minmax(76px, 0.62fr)) minmax(190px, 1.2fr);
    grid-template-areas: "brand club more social contact";
    column-gap: clamp(14px, 2vw, 28px);
    row-gap: 0;
  }
  .footer__inner:not(:has(> .footer__links)) {
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 320px);
    grid-template-areas: "brand contact";
  }
}
.footer__brand { max-width: 240px; }
.footer__logo { margin-bottom: var(--sp-sm); filter: drop-shadow(0 8px 24px rgba(245,197,24,0.35)); }
.footer__logo--img {
  width: 72px;
  height: 72px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 3px solid var(--alpha-gold);
  background: var(--alpha-gold);
}
.footer__logo--white {
  width: 180px;
  height: auto;
  max-width: 100%;
  display: block;
  background: transparent;
  transition: transform var(--dur-slow) var(--ease-bounce), filter var(--dur-base) var(--ease-default);
}
.footer__logo--white:hover {
  transform: scale(1.05) rotate(-2deg);
  filter: drop-shadow(0 12px 32px rgba(245,197,24,0.55));
}
.footer__logo--official {
  width: 88px;
  height: 88px;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-full);
  border: 4px solid var(--alpha-gold);
  background: var(--alpha-white);
  box-shadow: 0 0 0 6px rgba(245, 197, 24, 0.12), 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform var(--dur-slow) var(--ease-bounce), filter var(--dur-base) var(--ease-default);
}
.footer__logo--official:hover {
  transform: scale(1.04) rotate(-2deg);
  filter: drop-shadow(0 12px 32px rgba(245,197,24,0.55));
}
.footer__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  margin-bottom: var(--sp-xs);
}
.footer__tagline { color: var(--alpha-gold); font-size: var(--text-sm); margin-bottom: var(--sp-sm); font-weight: 500; }
.footer__copy { font-size: var(--text-xs); opacity: 0.6; line-height: 1.6; }

.footer__heading {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alpha-gold);
  margin-bottom: var(--sp-sm);
}
.footer__links { display: flex; flex-direction: column; gap: 6px; }
.footer__links a {
  font-size: var(--text-sm);
  opacity: 0.8;
  transition: opacity var(--dur-base) var(--ease-default), color var(--dur-base) var(--ease-default), transform var(--dur-base) var(--ease-default);
}
.footer__links a:hover { opacity: 1; color: var(--alpha-gold); transform: translateX(4px); }

/* Footer contact: compact and integrated with the link columns. */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.footer__whatsapp {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  background: rgba(37, 211, 102, 0.08);
  color: var(--alpha-white);
  border: 1px solid rgba(37, 211, 102, 0.46);
  border-radius: var(--r-sm);
  text-decoration: none;
  white-space: nowrap;
  width: fit-content;
  max-width: 100%;
  min-width: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-bounce),
              box-shadow var(--dur-base) var(--ease-default);
}
.footer__whatsapp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-default);
  pointer-events: none;
}
.footer__whatsapp:hover {
  transform: translateY(-2px);
  background: rgba(37, 211, 102, 0.16);
  border-color: rgba(37, 211, 102, 0.78);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}
.footer__whatsapp:hover::before { transform: translateX(100%); }
.footer__whatsapp svg {
  flex-shrink: 0;
  color: #25D366;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.footer__whatsapp-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: max-content;
  gap: 2px;
}
.footer__whatsapp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}
.footer__whatsapp-num {
  position: relative;
  z-index: 1;
  display: block;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.footer__whatsapp-num:hover,
.footer__whatsapp-num:focus-visible {
  color: var(--alpha-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer__note {
  font-size: var(--text-xs);
  color: var(--alpha-mist);
  opacity: 0.7;
  padding-left: 0;
}

.footer__bottom {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: var(--text-xs);
  opacity: 0.7;
}
.footer__bottom p {
  max-width: 72ch;
  margin-inline: auto;
  line-height: 1.5;
  text-wrap: balance;
}

@media (max-width: 767px) {
  .footer {
    padding: var(--sp-lg) 0 var(--sp-xs);
    margin-top: var(--sp-xl);
  }
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 12px;
  }
  .footer__brand {
    grid-column: 1 / -1;
    max-width: none;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    text-align: left;
  }
  .footer__logo--img,
  .footer__logo--white,
  .footer__logo--official {
    grid-column: 1;
    grid-row: 1 / 5;
    width: 64px;
    height: 64px;
    margin: 0;
  }
  .footer__logo--white { height: auto; }
  .footer__brand > :not(.footer__logo) { grid-column: 2; }
  .footer__title {
    align-self: end;
    font-size: 1.05rem;
    line-height: 1.15;
    margin-bottom: 2px;
  }
  .footer__tagline {
    font-size: var(--text-xs);
    margin-bottom: 2px;
  }
  .footer__copy {
    align-self: start;
    max-width: none;
    font-size: 10px;
    line-height: 1.3;
  }
  .footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
    gap: 4px 8px;
    min-width: 0;
    text-align: left;
  }
  .footer__links .footer__heading {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }
  .footer__links a {
    font-size: 11px;
    line-height: 1.25;
  }
  .footer__links a:hover { transform: none; }
  .footer__inner > .footer__links:nth-child(4) {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: center;
  }
  .footer__inner > .footer__links:nth-child(4) a {
    padding: 5px 8px;
    border: 1px solid rgba(245, 197, 24, 0.28);
    border-radius: var(--r-full);
    background: rgba(245, 197, 24, 0.06);
  }
  .footer__contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(112px, auto) minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    gap: 2px 10px;
    padding-right: 58px;
  }
  .footer__contact .footer__heading {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
  }
  .footer__whatsapp {
    grid-column: 2;
    grid-row: 1 / 3;
    width: fit-content;
    max-width: 100%;
    min-width: 0;
    justify-self: start;
    justify-content: flex-start;
    gap: 7px;
    padding: 7px 8px;
  }
  .footer__note {
    grid-column: 1;
    grid-row: 2;
    font-size: 10px;
    line-height: 1.25;
    text-align: left;
  }
  .footer__bottom {
    margin-top: 12px;
    padding: 8px var(--sp-md) 0;
    font-size: 10px;
    line-height: 1.35;
  }
}

.footer__inner > .footer__links.footer__social-links {
  display: grid;
  grid-template-columns: repeat(3, 36px);
  width: fit-content;
  max-width: 100%;
  align-content: start;
  justify-self: start;
  justify-content: start;
  gap: 6px;
  text-align: left;
}
.footer__links.footer__social-links .footer__heading {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}
.footer__inner > .footer__links.footer__social-links a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: var(--r-full);
  background: transparent;
  color: var(--alpha-white);
  opacity: 0.78;
  transform: none;
}
.footer__inner > .footer__links.footer__social-links a:hover,
.footer__inner > .footer__links.footer__social-links a:focus-visible {
  background: rgba(245, 197, 24, 0.1);
  color: var(--alpha-gold);
  opacity: 1;
  transform: none;
}
.footer__social-links svg {
  display: block;
}

/* ============================================================
   SEARCH
   ============================================================ */
.site-search {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  padding: calc(var(--header-h) + var(--sp-md)) var(--sp-md) var(--sp-md);
  background: rgba(6, 19, 40, 0.72);
}
.site-search.is-open { display: block; }
.site-search__dialog {
  max-width: 760px;
  margin: 0 auto;
  background: var(--alpha-white);
  color: var(--alpha-charcoal);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  overflow: hidden;
}
.site-search__bar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-sm);
  padding: var(--sp-md);
  border-bottom: 1px solid var(--alpha-mist);
}
.site-search__label {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alpha-navy);
}
.site-search__input {
  min-height: 48px;
  width: 100%;
  border: 1.5px solid var(--alpha-mist);
  border-radius: var(--r-md);
  padding: 0 var(--sp-md);
  font: inherit;
  color: var(--alpha-charcoal);
}
.site-search__input:focus {
  outline: 2px solid var(--alpha-gold);
  outline-offset: 2px;
  border-color: var(--alpha-gold);
}
.site-search__close {
  min-height: 48px;
  padding: 0 var(--sp-md);
  border-radius: var(--r-md);
  background: var(--alpha-navy);
  color: var(--alpha-white);
  font-weight: 700;
}
.site-search__results {
  display: grid;
  gap: 1px;
  max-height: min(56vh, 520px);
  overflow-y: auto;
  background: var(--alpha-mist);
}
.site-search__result {
  display: grid;
  gap: 2px;
  padding: var(--sp-md);
  background: var(--alpha-white);
  transition: background var(--dur-base) var(--ease-default),
              color var(--dur-base) var(--ease-default);
}
.site-search__result:hover,
.site-search__result:focus-visible {
  background: var(--alpha-cream);
  color: var(--alpha-navy);
}
.site-search__result span { font-weight: 700; color: var(--alpha-navy); }
.site-search__result small { color: var(--alpha-graphite); line-height: 1.4; }
.site-search__empty {
  background: var(--alpha-white);
  padding: var(--sp-lg);
  color: var(--alpha-graphite);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  top: calc(var(--header-h) + var(--sp-md));
  right: var(--sp-md);
  background: var(--color-success);
  color: var(--alpha-white);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  font-weight: 600;
  font-size: var(--text-sm);
  transform: translateX(calc(100% + var(--sp-md)));
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease-default), opacity var(--dur-slow) var(--ease-default);
  z-index: 200;
}
.toast.is-visible { transform: translateX(0); opacity: 1; }
.header__calendar-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: var(--r-full);
  background: var(--alpha-gold);
  color: var(--alpha-navy);
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(245, 197, 24, 0.28);
  transition: transform var(--dur-base) var(--ease-bounce), box-shadow var(--dur-base) var(--ease-default), background var(--dur-base) var(--ease-default);
}

.header__actions .header__calendar-cta,
.header__actions .header__icon-btn {
  align-self: center;
  flex: 0 0 auto;
}

.header__calendar-cta:hover {
  transform: translateY(-3px);
  background: var(--alpha-gold-bright);
  box-shadow: 0 12px 28px rgba(245, 197, 24, 0.48);
}

.header__calendar-cta:active {
  transform: translateY(-1px) scale(0.98);
}

@media (max-width: 520px) {
  .header__calendar-cta {
    min-height: 34px;
    padding: 0 11px;
    font-size: 0.72rem;
  }
}
