/* ════════════════════════════════════════════════════════════
   SALAS DE INFORMACIÓN — Landing Page CSS
   Estética: Warm luxury · Informational · Conversion-focused
   Basado en el sistema de Las Loicas / Ictinos Smart
═══════════════════════════════════════════════════════════════ */

:root {
  --si-warm:       #C4956A;
  --si-warm-light: #D4A87A;
  --si-warm-dark:  #A07850;
  --si-cream:      #F5F0EA;
  --si-cream-dark: #EDE6DC;
  --si-dark:       #1A1A1A;
  --si-dark-soft:  #2A2A2A;
  --si-text:       #333333;
  --si-text-muted: #777777;
  --si-white:      #FFFFFF;
  --si-orange:     #FF8800;
  --si-orange-deep:#FF6600;

  --font-display: 'Bodoni Moda', 'Playfair Display', Georgia, serif;
  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --container-max: 1280px;
  --header-h: 82px;
}

/* ═══════ RESET ═══════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); overflow-x: hidden; }
body { font-family: var(--font-body); font-size: 1rem; line-height: 1.65; color: var(--si-text); background: var(--si-cream); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); margin-bottom: 0.5rem; }
a { color: inherit; text-decoration: none; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ═══════ UTILITIES ═══════ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; width: 100%; }
@media (max-width: 767px) { .container { padding: 0 16px; } }
.text-center { text-align: center; }
.text-white { color: var(--si-white); }
.text-light { color: #EAEAEA; }
.text-light--soft { opacity: 0.85; }
.text-muted-dark { color: var(--si-text-muted); }
.text-muted-footer { color: #999999; transition: color 0.2s ease; }
.text-muted-footer:hover { color: var(--si-orange); }
.mb-50 { margin-bottom: 2rem; }
.skip-link { position: absolute; top: -100px; left: 0; background: var(--si-orange); color: var(--si-white); padding: 12px 20px; z-index: 9999; font-weight: 600; }
.skip-link:focus { top: 0; }
*:focus-visible { outline: 2px solid var(--si-orange); outline-offset: 3px; border-radius: 4px; }

/* ═══════ SECTIONS ═══════ */
.si-section { padding: 60px 0; }
@media (min-width: 768px) { .si-section { padding: 80px 0; } }
.si-section--light { background: var(--si-white); }
.si-section--cream { background: var(--si-cream); }
.si-section--dark  { background: var(--si-dark); color: #EAEAEA; }

.si-eyebrow {
  display: inline-block; font-family: var(--font-heading); font-size: 0.7rem;
  letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700;
  margin-bottom: 1rem;
}
.si-eyebrow--orange { color: var(--si-orange); }
.si-eyebrow--warm { color: var(--si-warm); }
.section-header__subtitle { max-width: 620px; margin-left: auto; margin-right: auto; font-size: 0.95rem; line-height: 1.7; }

/* ═══════ BUTTONS ═══════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 32px; font-family: var(--font-heading); font-size: 0.875rem;
  font-weight: 600; border-radius: var(--radius-sm); text-transform: uppercase;
  letter-spacing: 0.05em; white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary { background: linear-gradient(135deg, #FF9900 0%, #FF8800 100%); color: var(--si-white); box-shadow: 0 4px 18px rgba(255,136,0,0.25); }
.btn-golden-glow:hover { background: linear-gradient(135deg, #FF8800 0%, #FF6600 100%); box-shadow: 0 0 24px rgba(255,136,0,0.35); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid rgba(0,0,0,0.15); color: var(--si-text); }
.btn-outline:hover { border-color: var(--si-orange); color: var(--si-orange); transform: translateY(-2px); }
.btn-outline--dark { border-color: rgba(255,255,255,0.18); color: var(--si-white); backdrop-filter: blur(8px); }
.btn-outline--dark:hover { border-color: var(--si-orange); color: var(--si-orange); box-shadow: 0 0 18px rgba(255,136,0,0.2); }
.btn-wsp { background: var(--si-dark); color: var(--si-white); border: 1px solid rgba(255,255,255,0.1); }
.btn-wsp:hover { background: var(--si-dark-soft); box-shadow: 0 4px 18px rgba(0,0,0,0.2); transform: translateY(-2px); }
.btn-wsp svg { color: #25D366; }
.btn--sm { padding: 10px 18px; font-size: 0.8rem; }
.btn--full { width: 100%; }

/* ═══════ HEADER ═══════ */
.si-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 14px 0;
  background: rgba(26,26,26,0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.si-header.scrolled {
  background: rgba(26,26,26,0.96);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  padding: 8px 0;
}
.si-header__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.si-nav { display: flex; align-items: center; gap: 14px; }
.si-nav__logo img { height: 30px; width: auto; }

.si-nav__links { display: none; margin-left: auto; gap: 22px; align-items: center; }
@media (min-width: 1024px) { .si-nav__links { display: flex; } }
.si-nav__link {
  color: var(--si-white); font-family: var(--font-heading);
  font-size: 0.72rem; font-weight: 500; opacity: 0.8;
  transition: all 0.2s ease; position: relative; padding: 4px 0;
  letter-spacing: 0.02em;
}
.si-nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--si-orange); transition: width 0.3s ease; }
.si-nav__link:hover { color: var(--si-orange); opacity: 1; }
.si-nav__link:hover::after { width: 100%; }
.si-nav__link.is-active { color: var(--si-orange); opacity: 1; }

/* Dropdown */
.si-nav__item--dropdown { position: relative; }
.si-nav__link--dropdown { display: inline-flex; align-items: center; gap: 4px; }
.si-dropdown-chevron { transition: transform 0.3s ease; }
.si-nav__link--dropdown[aria-expanded="true"] .si-dropdown-chevron { transform: rotate(180deg); }
.si-nav-dropdown {
  position: absolute; top: calc(100% + 16px); left: -16px;
  min-width: 280px;
  background: rgba(26,26,26,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 12px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  z-index: 100;
}
.si-nav__item--dropdown:hover .si-nav-dropdown,
.si-nav__link--dropdown[aria-expanded="true"] + .si-nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.si-nav-dropdown__link {
  display: flex; flex-direction: column; padding: 12px 16px;
  border-radius: var(--radius-sm); transition: all 0.2s ease;
}
.si-nav-dropdown__link:hover { background: rgba(255,136,0,0.08); }
.si-nav-dropdown__label { font-family: var(--font-heading); font-weight: 600; color: var(--si-white); font-size: 0.9rem; }
.si-nav-dropdown__sub { font-size: 0.72rem; color: #999999; margin-top: 2px; }
.si-nav-dropdown__link--all { color: var(--si-orange) !important; font-weight: 600; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 6px; padding-top: 16px; font-family: var(--font-heading); font-size: 0.82rem; }

.si-nav__cta {
  margin-left: auto;
  background: var(--si-orange-deep); color: var(--si-white);
  padding: 9px 20px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all 0.3s ease; display: none;
}
@media (min-width: 1024px) { .si-nav__cta { display: inline-flex; margin-left: 0; } }
.si-nav__cta:hover { background: #E67A00; box-shadow: 0 0 24px rgba(255,136,0,0.35); }

/* Mobile toggle */
.si-nav__toggle { display: flex; flex-direction: column; gap: 5px; padding: 6px; z-index: 1001; margin-left: auto; }
.si-nav__bar { width: 24px; height: 2px; background: var(--si-white); border-radius: 2px; transition: all 0.3s ease; }
@media (min-width: 1024px) { .si-nav__toggle { display: none; } }
@media (max-width: 1023px) {
  .si-nav__links {
    position: fixed; top: 0; right: 0; width: min(85%, 360px); height: 100vh;
    background: rgba(26,26,26,0.98); backdrop-filter: blur(20px);
    display: flex; flex-direction: column;
    padding: 100px 32px 32px; gap: 8px;
    transform: translateX(100%); transition: transform 0.4s ease;
    border-left: 1px solid rgba(255,255,255,0.08);
  }
  .si-nav__links.is-open { transform: translateX(0); }
  .si-nav__links > li { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .si-nav-dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: transparent; backdrop-filter: none; border: none; box-shadow: none;
    padding: 8px 0 0 16px; min-width: 0; display: none;
  }
  .si-nav__link--dropdown[aria-expanded="true"] + .si-nav-dropdown { display: block; }
}

/* ═══════ HERO (compact, page-header style) ═══════ */
.si-hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  overflow: hidden; background: var(--si-dark);
}
.si-hero__media { position: absolute; inset: 0; z-index: 1; }
.si-hero__media picture { display: block; width: 100%; height: 100%; }
.si-hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.si-hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.6) 45%, rgba(26,26,26,0.3) 100%); }
.si-hero__content { position: relative; z-index: 2; width: 100%; padding: calc(var(--header-h) + 48px) 0 56px; }
.si-hero__eyebrow {
  display: block; font-family: var(--font-heading); font-size: 0.75rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--si-orange); margin-bottom: 4px; font-weight: 600;
}
.si-hero__title {
  font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700; color: var(--si-white); line-height: 1.05;
  margin-bottom: 16px; text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.si-hero__desc { font-size: clamp(0.95rem, 1.3vw, 1.1rem); color: #EAEAEA; max-width: 520px; margin-bottom: 24px; opacity: 0.9; line-height: 1.7; }
.si-hero__schedule {
  display: inline-flex; flex-direction: column; gap: 4px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
}
.si-hero__schedule-title {
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--si-orange); margin-bottom: 4px;
}
.si-hero__schedule-line { font-size: 0.85rem; color: #EAEAEA; opacity: 0.9; }
.si-hero__schedule-line strong { color: var(--si-white); font-weight: 600; }
@media (max-width: 767px) {
  .si-hero { min-height: 60vh; }
  .si-hero__overlay { background: linear-gradient(180deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.6) 60%, rgba(26,26,26,0.4) 100%); }
}

/* ═══════ SALA CARDS ═══════ */
.si-salas-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .si-salas-grid { grid-template-columns: repeat(2, 1fr); } }

.si-sala-card {
  background: var(--si-white); border-radius: var(--radius-lg);
  overflow: hidden; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 6px 24px rgba(0,0,0,0.04);
  transition: all 0.4s ease; display: flex; flex-direction: column;
}
.si-sala-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: rgba(255,136,0,0.2); }

/* Map embed */
.si-sala-card__map {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: var(--si-cream-dark);
}
.si-sala-card__iframe {
  width: 100%; height: 100%; border: 0;
  filter: brightness(0.85) contrast(1.1) saturate(0.35);
  transition: filter 0.4s ease;
}
.si-sala-card:hover .si-sala-card__iframe { filter: brightness(0.9) contrast(1.1) saturate(0.5); }
.si-sala-card__map-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(26,26,26,0.85) 100%);
}
.si-sala-card__map-tag {
  font-family: var(--font-heading); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--si-orange);
}

/* Info block */
.si-sala-card__info { padding: 28px 24px; display: flex; flex-direction: column; flex: 1; }
.si-sala-card__info h3 { font-size: 1.2rem; font-weight: 800; color: var(--si-text); margin-bottom: 6px; }

.si-sala-card__address {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.85rem; color: var(--si-text-muted); margin-bottom: 20px; line-height: 1.5;
}
.si-sala-card__address svg { flex-shrink: 0; margin-top: 2px; color: var(--si-orange); }
.si-sala-card__address a { color: var(--si-text-muted); transition: color 0.2s ease; }
.si-sala-card__address a:hover { color: var(--si-orange); }

/* Contact channels list */
.si-sala-card__channels { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.si-sala-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px; border-radius: var(--radius-md);
  background: var(--si-cream); border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.si-sala-channel:hover { border-color: rgba(255,136,0,0.25); background: rgba(255,136,0,0.04); transform: translateX(4px); }
.si-sala-channel__icon {
  width: 40px; height: 40px; flex-shrink: 0; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,136,0,0.08); color: var(--si-orange);
}
.si-sala-channel__icon--wsp { background: rgba(37,211,102,0.08); color: #25D366; }
.si-sala-channel__text { display: flex; flex-direction: column; }
.si-sala-channel__label { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--si-text-muted); }
.si-sala-channel__value { font-size: 0.9rem; font-weight: 600; color: var(--si-text); }

/* CTA row */
.si-sala-card__ctas { display: flex; gap: 10px; border-top: 1px solid rgba(0,0,0,0.06); padding-top: 20px; margin-top: auto; }
.si-sala-card__ctas .btn { flex: 1; justify-content: center; }

/* ═══════ CONTACT FORM SECTION ═══════ */
.si-contact-layout { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 1024px) { .si-contact-layout { grid-template-columns: 1fr 1fr; gap: 72px; } }

.si-contact-copy { }
.si-contact-copy h2 { color: var(--si-white); }
.si-contact-copy p { color: #EAEAEA; opacity: 0.85; margin-bottom: 28px; max-width: 440px; }

.si-contact-channels { display: flex; flex-direction: column; gap: 12px; }
.si-contact-channel {
  display: flex; align-items: center; gap: 16px;
  color: var(--si-white); padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
}
.si-contact-channel:hover { border-color: var(--si-orange); background: rgba(255,136,0,0.08); transform: translateX(4px); }
.si-contact-channel svg { color: var(--si-orange); flex-shrink: 0; }
.si-contact-channel div { display: flex; flex-direction: column; }
.si-contact-channel strong { font-size: 1rem; font-weight: 600; }
.si-contact-channel span { font-size: 0.75rem; color: #999999; }

/* Form card */
.si-form-card {
  background: rgba(255,255,255,0.04); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.si-form-card__title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--si-white); margin-bottom: 28px; }
.si-form-group { margin-bottom: 18px; }
.si-form-label {
  display: block; font-size: 0.75rem; color: #EAEAEA; margin-bottom: 8px;
  letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; opacity: 0.85;
}
.si-form-label span[aria-hidden] { color: var(--si-orange); }
.si-form-input, .si-form-textarea, .si-form-select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm); color: var(--si-white);
  font-size: 1rem; transition: all 0.2s ease;
}
.si-form-input::placeholder, .si-form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.si-form-input:focus, .si-form-textarea:focus, .si-form-select:focus { border-color: var(--si-orange); background: rgba(255,255,255,0.1); outline: none; box-shadow: 0 0 0 3px rgba(255,136,0,0.15); }
.si-form-textarea { resize: vertical; min-height: 80px; }
.si-form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FF8800' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 44px; }
.si-form-select option { background: var(--si-dark); color: var(--si-white); }

/* Radio group */
.si-form-radios { display: flex; gap: 16px; flex-wrap: wrap; }
.si-form-radio { position: relative; cursor: pointer; }
.si-form-radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.si-form-radio__label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15); color: #EAEAEA;
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  transition: all 0.3s ease; cursor: pointer;
}
.si-form-radio__label:hover { border-color: var(--si-orange); color: var(--si-orange); }
.si-form-radio input:checked + .si-form-radio__label {
  background: var(--si-orange); border-color: var(--si-orange); color: var(--si-white);
}
.si-form-radio input:focus-visible + .si-form-radio__label { outline: 2px solid var(--si-orange); outline-offset: 3px; }

/* Checkbox */
.si-form-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; margin-bottom: 28px; }
.si-form-check input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--si-orange); cursor: pointer;
}
.si-form-check label { font-size: 0.8rem; color: rgba(234,234,234,0.7); cursor: pointer; line-height: 1.5; }

/* ═══════ FOOTER (Replicado del index — main.css) ═══════ */
.bg-dark { background-color: var(--si-dark); color: #EAEAEA; }
.text-muted { color: #999; }
.hover-primary { transition: color 0.2s ease; }
.hover-primary:hover { color: var(--si-orange); }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.border-top-subtle { border-top: 1px solid rgba(255,255,255,0.08); }
.site-footer { padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 38px; width: auto; }
.footer-brand__tagline { margin-top: 1rem; font-size: 0.875rem; max-width: 260px; line-height: 1.7; color: #999999; }
.footer-contact { margin-top: 1.5rem; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item.align-top { align-items: flex-start; }
.icon-primary { color: var(--si-orange); flex-shrink: 0; }
.mt-fix { margin-top: 1px; }
.footer-links h5, .footer-social h5 { color: var(--si-orange); margin-bottom: 18px; letter-spacing: 0.18em; font-size: 0.75rem; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #999999; font-size: 0.85rem; transition: all 0.2s ease; display: inline-block; }
.footer-links a:hover { color: var(--si-orange); padding-left: 5px; }
.social-icons { display: flex; gap: 16px; margin-top: 4px; }
.social-icons a { color: #999; transition: all 0.3s ease; }
.social-icons a:hover { color: var(--si-orange); transform: translateY(-2px); }
.footer-wsp { margin-top: 1.5rem; }
.footer-wsp h5 { color: var(--si-orange); margin-bottom: 0.5rem; letter-spacing: 0.18em; font-size: 0.75rem; font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; }
.footer-wsp-link { display: block; font-size: 0.75rem; color: #999999; margin-top: 6px; transition: all 0.2s ease; }
.footer-wsp-link:hover { color: var(--si-orange); }
.footer-bottom { padding-top: 2rem; margin-top: 2rem; }
.footer-bottom__copy { font-size: 0.8rem; }
.footer-bottom__copy a { color: #999999; transition: color 0.2s ease; }
.footer-bottom__copy a:hover { color: var(--si-orange); }
.footer-bottom__disclaimer { font-size: 0.75rem; max-width: 400px; text-align: right; color: #666666; }
@media (max-width: 767px) {
  .flex-between { flex-direction: column; align-items: flex-start; }
  .footer-bottom__disclaimer { text-align: left; max-width: 100%; }
}

/* ═══════ FADE ANIMATIONS ═══════ */
.js-fade { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-fade.is-visible { opacity: 1; transform: translateY(0); }
.fade-delay-1 { transition-delay: 0.15s; }
.fade-delay-2 { transition-delay: 0.3s; }

/* ═══════ REDUCED MOTION ═══════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .js-fade { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}