/* ==========================================================
   FSPR v2 — Animations: hero entrance + scroll reveals
   Respects prefers-reduced-motion.
   ========================================================== */

@media (prefers-reduced-motion: no-preference) {
  /* Hero entrance — staggered fade-up */
  .hero__logo-center,
  .hero__title,
  .hero__text {
    opacity: 0;
    transform: translateY(20px);
    animation: fspr-hero-rise 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .hero__logo-center {
    animation-delay: 0.05s;
  }
  .hero__title {
    animation-delay: 0.2s;
  }
  .hero__text {
    animation-delay: 0.35s;
  }

  /* Hero buttons bar enters slightly later */
  .hero__buttons-bar {
    opacity: 0;
    animation: fspr-hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
  }

  /* Subhero (subpages) entrance */
  .subhero__crumbs,
  .subhero__title,
  .subhero__lede,
  .subhero__meta {
    opacity: 0;
    transform: translateY(16px);
    animation: fspr-hero-rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .subhero__crumbs {
    animation-delay: 0.05s;
  }
  .subhero__title {
    animation-delay: 0.15s;
  }
  .subhero__lede {
    animation-delay: 0.3s;
  }
  .subhero__meta {
    animation-delay: 0.45s;
  }

  /* Scroll reveal — applied via JS observer */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Stagger groups (siblings reveal one after another) */
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
  }
  .reveal-stagger.visible > *:nth-child(1) {
    transition-delay: 0s;
  }
  .reveal-stagger.visible > *:nth-child(2) {
    transition-delay: 0.08s;
  }
  .reveal-stagger.visible > *:nth-child(3) {
    transition-delay: 0.16s;
  }
  .reveal-stagger.visible > *:nth-child(4) {
    transition-delay: 0.24s;
  }
  .reveal-stagger.visible > *:nth-child(5) {
    transition-delay: 0.32s;
  }
  .reveal-stagger.visible > *:nth-child(6) {
    transition-delay: 0.4s;
  }
  .reveal-stagger.visible > *:nth-child(n + 7) {
    transition-delay: 0.48s;
  }

  /* Card hover lift (already exists for biblio-card; add to service-item + testimonial + team) */
  .service-item,
  .testimonial-card,
  .team-card,
  .resource-card {
    transition:
      transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
      box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .service-item:hover,
  .testimonial-card:hover,
  .team-card:hover,
  .resource-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
  }

  /* Subtle shine on CTA buttons */
  .btn--accent,
  .btn--primary,
  .header__cta {
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;
  }
  .btn--accent:hover,
  .btn--primary:hover {
    transform: translateY(-2px) scale(1.02);
  }

  /* Interdisciplinary callout subtle pulse on chips */
  .interdisciplinary__chips span {
    transition:
      transform 0.25s ease,
      background 0.25s ease;
  }
  .interdisciplinary__chips span:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.18);
  }
}

@keyframes fspr-hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduce-motion fallback: ensure content is always visible */
@media (prefers-reduced-motion: reduce) {
  .hero__logo-center,
  .hero__title,
  .hero__text,
  .hero__buttons-bar,
  .subhero__crumbs,
  .subhero__title,
  .subhero__lede,
  .subhero__meta,
  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* ==========================================================
   FSPR v2 — Tier 3 additions
   Reuses tokens from styles.css, adds page-level components.
   ========================================================== */

/* Sub-page hero (servicios/*, nosotras, biblioteca, agendar) */
.subhero {
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
  background: var(--light-bg);
  border-bottom: 4px solid var(--lime);
}
.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/img/hero-bg.png") no-repeat right -120px
    bottom -100px;
  background-size: 600px auto;
  opacity: 0.1;
  pointer-events: none;
}
.subhero .container {
  position: relative;
  z-index: 1;
}
.subhero__crumbs {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 14px;
}
.subhero__crumbs a {
  color: var(--orange);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}
.subhero__crumbs a:hover {
  border-bottom-color: var(--orange);
}
.subhero__title {
  font-family: "Bagel Fat One", cursive;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 16px;
  max-width: 22ch;
}
.subhero__title em {
  color: var(--coral);
  font-style: normal;
}
.subhero__lede {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  color: var(--text-light);
  max-width: 60ch;
  line-height: 1.65;
}
.subhero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
}
.subhero__meta span {
  background: var(--white);
  border: 2px solid var(--lime);
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
}

/* Section helper for subpages */
.subsection {
  padding: 60px 0;
}
.subsection--alt {
  background: var(--light-bg);
}
.subsection__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 860px) {
  .subsection__inner--split {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
  }
}
.subsection h2 {
  font-family: "Bagel Fat One", cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 22px;
}
.subsection h3 {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.15rem;
  margin: 18px 0 8px;
}
.subsection p {
  color: var(--text-light);
  margin-bottom: 14px;
}
.subsection ul {
  margin: 0 0 14px;
  padding-left: 0;
}
.subsection ul li {
  list-style: none;
  padding: 10px 0 10px 32px;
  position: relative;
  color: var(--text-dark);
  border-top: 1px dashed rgba(45, 46, 107, 0.12);
}
.subsection ul li:first-child {
  border-top: none;
}
.subsection ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 3px var(--lime-bg);
}

/* Pull-quote callout (use real client voice) */
.pullquote {
  background: var(--white);
  border-left: 6px solid var(--coral);
  padding: 22px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  margin: 24px 0;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.65;
}
.pullquote::before {
  content: "\201C";
  font-family: "Bagel Fat One", cursive;
  font-size: 3.4rem;
  line-height: 0;
  color: var(--lime);
  margin-right: 4px;
  vertical-align: -22px;
}
.pullquote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  counter-reset: step;
}
@media (min-width: 720px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.process-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  counter-increment: step;
  position: relative;
}
.process-card::before {
  content: counter(step, decimal-leading-zero);
  font-family: "Bagel Fat One", cursive;
  font-size: 2.2rem;
  color: var(--lime-dark);
  position: absolute;
  top: 12px;
  right: 18px;
  opacity: 0.55;
}
.process-card h3 {
  color: var(--navy);
  margin: 0 0 8px;
  font-size: 1.08rem;
}
.process-card p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Related capsules grid (mini biblioteca on service pages) */
.related-capsules {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (min-width: 720px) {
  .related-capsules {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Biblioteca page */
.biblio-toolbar {
  position: sticky;
  top: 70px;
  background: var(--white);
  z-index: 50;
  padding: 16px 0;
  border-bottom: 1px solid rgba(45, 46, 107, 0.1);
  margin-bottom: 32px;
}
.biblio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.biblio-filters button {
  border: 2px solid var(--lime);
  background: var(--white);
  color: var(--navy);
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--transition);
}
.biblio-filters button:hover {
  background: var(--lime-bg);
}
.biblio-filters button.active {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--navy);
}
.biblio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 60px;
}
@media (min-width: 720px) {
  .biblio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1080px) {
  .biblio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.biblio-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.biblio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.biblio-card.hidden {
  display: none;
}
.biblio-card__tag {
  align-self: flex-start;
  background: var(--lime-bg);
  color: var(--lime-dark);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.biblio-card__tag--alimentacion {
  background: rgba(248, 130, 32, 0.14);
  color: var(--orange);
}
.biblio-card__tag--habla {
  background: rgba(45, 181, 160, 0.14);
  color: var(--teal);
}
.biblio-card__tag--neuro {
  background: rgba(232, 77, 61, 0.12);
  color: var(--coral);
}
.biblio-card__tag--familias {
  background: rgba(45, 46, 107, 0.1);
  color: var(--navy);
}
.biblio-card__title {
  font-family: "Bagel Fat One", cursive;
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 10px;
  flex-grow: 0;
}
.biblio-card__excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 14px;
  flex-grow: 1;
}
.biblio-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-light);
}
.biblio-card__link {
  color: var(--orange);
  font-weight: 800;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition);
}
.biblio-card__link:hover {
  border-bottom-color: var(--orange);
}

/* Booking simulator */
.booking-shell {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  max-width: 980px;
  margin: 0 auto 60px;
}
.booking-stepper {
  display: flex;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: thin;
}
.booking-stepper::-webkit-scrollbar {
  height: 4px;
}
.booking-stepper::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 4px;
}
.booking-stepper__item {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  background: var(--light-bg);
  white-space: nowrap;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.booking-stepper__num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(45, 46, 107, 0.12);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0;
}
.booking-stepper__label {
  min-width: 0;
}
@media (max-width: 720px) {
  .booking-stepper__label {
    display: none;
  }
  .booking-stepper__item {
    padding: 8px;
  }
}
.booking-stepper__item.active .booking-stepper__num {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
}
.booking-stepper__item.done .booking-stepper__num {
  background: var(--lime);
  color: var(--navy);
}
.booking-stepper__item.active {
  color: var(--white);
  background: var(--lime-dark);
  border-color: var(--lime-dark);
}
.booking-stepper__item.done {
  color: var(--lime-dark);
  background: var(--lime-bg);
  border-color: var(--lime);
}
.booking-step {
  display: none;
}
.booking-step.active {
  display: block;
}

.booking-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 600px) {
  .booking-options {
    grid-template-columns: repeat(2, 1fr);
  }
}
.booking-option {
  background: var(--light-bg);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  font-family: "Nunito", sans-serif;
  color: var(--navy);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.booking-option:hover {
  border-color: var(--lime);
}
.booking-option.selected {
  background: var(--lime-bg);
  border-color: var(--lime-dark);
  box-shadow: 0 0 0 3px rgba(197, 217, 45, 0.2);
}
.booking-option strong {
  font-size: 1.02rem;
  font-weight: 800;
}
.booking-option span {
  color: var(--text-light);
  font-size: 0.88rem;
}

.booking-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}
.booking-calendar__head {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  padding: 8px 0;
}
.booking-day {
  background: var(--light-bg);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 10px 0;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.booking-day:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.booking-day:not(:disabled):hover {
  border-color: var(--lime);
}
.booking-day.selected {
  background: var(--lime-dark);
  border-color: var(--lime-dark);
  color: var(--white);
}

.booking-times {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}
@media (min-width: 600px) {
  .booking-times {
    grid-template-columns: repeat(3, 1fr);
  }
}
.booking-time {
  background: var(--light-bg);
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: all var(--transition);
}
.booking-time.selected {
  background: var(--lime-bg);
  border-color: var(--lime-dark);
}

.booking-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: space-between;
  align-items: center;
}
.booking-actions button.ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(45, 46, 107, 0.2);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: all var(--transition);
}
.booking-actions button.ghost:hover {
  border-color: var(--navy);
}

.booking-confirm {
  text-align: center;
  padding: 32px 20px;
}
.booking-confirm__check {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.booking-confirm h3 {
  font-family: "Bagel Fat One", cursive;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.booking-confirm__code {
  display: inline-block;
  background: var(--lime-bg);
  color: var(--lime-dark);
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 8px 18px;
  border-radius: 999px;
  margin: 14px 0;
  font-size: 1.05rem;
}
.booking-confirm__summary {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 16px auto 0;
  text-align: left;
  max-width: 420px;
}
.booking-confirm__summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(45, 46, 107, 0.12);
  font-size: 0.95rem;
}
.booking-confirm__summary div:last-child {
  border-bottom: none;
}
.booking-confirm__summary strong {
  color: var(--text-light);
  font-weight: 700;
}
.booking-confirm__demo-banner {
  background: rgba(248, 130, 32, 0.1);
  border: 1px dashed var(--orange);
  color: var(--orange);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 18px;
  display: inline-block;
}

/* Form fields inside booking */
.booking-form {
  display: grid;
  gap: 14px;
}
.booking-form .form-group {
  margin-bottom: 0;
}

/* Testimonials */
.testimonials {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}
@media (min-width: 760px) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
  }
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 5px solid var(--orange);
}
.testimonial-card p {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.65;
  font-style: italic;
}
.testimonial-card cite {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-style: normal;
  font-weight: 800;
  color: var(--text-light);
  font-size: 0.88rem;
}
.testimonial-card cite::before {
  content: "";
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime-bg);
  border: 2px solid var(--lime);
  flex-shrink: 0;
}

/* Team profile cards (interdisciplinary) */
.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}
@media (min-width: 820px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.team-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--lime-bg);
  border: 4px solid var(--lime);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bagel Fat One", cursive;
  font-size: 1.8rem;
  color: var(--navy);
}
.team-card__role {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.team-card__name {
  font-family: "Bagel Fat One", cursive;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.1;
}
.team-card__creds {
  list-style: none;
  margin-top: 14px;
  padding: 0;
}
.team-card__creds li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}
.team-card__creds li svg {
  flex-shrink: 0;
  color: var(--lime-dark);
  margin-top: 2px;
}

/* Interdisciplinary callout (homepage + nosotras) */
.interdisciplinary {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 44px);
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}
.interdisciplinary h2 {
  font-family: "Bagel Fat One", cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: var(--lime);
  margin-bottom: 12px;
  position: relative;
}
.interdisciplinary p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  max-width: 60ch;
  line-height: 1.65;
  position: relative;
}
.interdisciplinary__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  position: relative;
}
.interdisciplinary__chips span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(197, 217, 45, 0.45);
  color: var(--lime);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

/* CTA blocks */
.cta-strip {
  background: linear-gradient(135deg, var(--lime) 0%, var(--lime-dark) 100%);
  padding: 44px clamp(20px, 4vw, 36px);
  border-radius: var(--radius);
  margin: 32px 0;
  color: var(--navy);
  text-align: center;
}
.cta-strip h3 {
  font-family: "Bagel Fat One", cursive;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 8px;
  color: var(--navy);
}
.cta-strip p {
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Header booking button */
.header__cta {
  background: var(--orange);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}
.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(248, 130, 32, 0.35);
  color: var(--white);
}

/* Reduce-motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
