/* ============================================================
   ESTACIONAMIENTO ALVEAR — Stylesheet
   Design: Premium / Luxury / Mobile First
   Colores: Negro #0D0D0D · Dorado #BF935E · Blanco #F2F2F2
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:        #0D0D0D;
  --black-soft:   #161616;
  --black-card:   #1A1A1A;
  --gold:         #BF935E;
  --gold-light:   #D4AC7A;
  --gold-dark:    #9E7444;
  --white:        #F2F2F2;
  --white-muted:  #C8C8C8;
  --cream:        #F7F3EE;
  --border:       rgba(191, 147, 94, 0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --nav-h:        80px;
  --section-pad:  clamp(60px, 8vw, 120px);
  --container:    1200px;
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:      var(--font-body);
  background-color: var(--black);
  color:            var(--white);
  line-height:      1.6;
  overflow-x:       hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display:   block;
}

a {
  text-decoration: none;
  color:           inherit;
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ── Utility ──────────────────────────────────────────────── */
.text-gold   { color: var(--gold); }
.text-muted  { color: var(--white-muted); }

.section-badge {
  display:          inline-block;
  font-family:      var(--font-body);
  font-size:        0.72rem;
  font-weight:      600;
  letter-spacing:   0.18em;
  text-transform:   uppercase;
  color:            var(--gold);
  border:           1px solid var(--border);
  padding:          6px 16px;
  border-radius:    50px;
  margin-bottom:    20px;
}

.section-badge--dark {
  color:       var(--gold);
  border-color: rgba(191, 147, 94, 0.35);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display:         inline-flex;
  align-items:     center;
  gap:             8px;
  font-family:     var(--font-body);
  font-size:       0.9rem;
  font-weight:     600;
  letter-spacing:  0.05em;
  cursor:          pointer;
  border:          2px solid transparent;
  border-radius:   var(--radius-sm);
  padding:         12px 24px;
  transition:      all var(--transition);
  white-space:     nowrap;
  text-decoration: none;
}

.btn--gold {
  background:   var(--gold);
  color:        var(--black);
  border-color: var(--gold);
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background:   var(--gold-light);
  border-color: var(--gold-light);
  transform:    translateY(-2px);
  box-shadow:   0 8px 30px rgba(191, 147, 94, 0.35);
}

.btn--outline {
  background:   transparent;
  color:        var(--white);
  border-color: rgba(242, 242, 242, 0.4);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  border-color: var(--gold);
  color:        var(--gold);
  transform:    translateY(-2px);
}

/* Ghost: borde dorado tenue — para botón secundario "Reservar habitación" */
.btn--ghost {
  background:   transparent;
  color:        var(--white-muted);
  border-color: var(--border);
}
.btn--ghost:hover,
.btn--ghost:focus-visible {
  background:   rgba(191, 147, 94, 0.08);
  border-color: var(--gold);
  color:        var(--gold);
  transform:    translateY(-2px);
}

.btn--large  { padding: 14px 32px; font-size: 0.95rem; }
.btn--xlarge { padding: 18px 42px; font-size: 1rem;    border-radius: var(--radius); }

/* ── Navbar ───────────────────────────────────────────────── */
.navbar {
  position:   fixed;
  top:        0;
  left:       0;
  width:      100%;
  z-index:    1000;
  height:     var(--nav-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(191, 147, 94, 0.15);
}

.navbar__container {
  max-width:      var(--container);
  margin:         0 auto;
  padding:        0 clamp(16px, 4vw, 40px);
  height:         100%;
  display:        flex;
  align-items:    center;
  justify-content: space-between;
}

.navbar__logo {
  display:     flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo-img {
  height:        64px;
  width:         auto;
  object-fit:    contain;
  border-radius: 50%;
  border:        1px solid rgba(191, 147, 94, 0.22);
  padding:       4px 6px;
  background:    rgba(13, 13, 13, 0.35);
  transition:    opacity var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.navbar__logo-img:hover {
  opacity:      0.9;
  border-color: rgba(191, 147, 94, 0.5);
  box-shadow:   0 0 14px rgba(191, 147, 94, 0.15);
}

.navbar__nav {
  display:     flex;
  align-items: center;
  gap:         36px;
}

.navbar__links {
  display: flex;
  gap:     32px;
}

.navbar__link {
  font-size:      0.875rem;
  font-weight:    500;
  letter-spacing: 0.04em;
  color:          var(--white-muted);
  position:       relative;
  transition:     color var(--transition);
}
.navbar__link::after {
  content:     '';
  position:    absolute;
  bottom:      -4px;
  left:        0;
  width:       0;
  height:      1.5px;
  background:  var(--gold);
  transition:  width var(--transition);
}
.navbar__link:hover { color: var(--white); }
.navbar__link:hover::after { width: 100%; }

.navbar__cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.navbar__cta-hotel {
  padding:   9px 18px;
  font-size: 0.82rem;
  gap:       6px;
}

/* Hamburger */
.navbar__hamburger {
  display:         none;
  flex-direction:  column;
  gap:             5px;
  background:      none;
  border:          none;
  cursor:          pointer;
  padding:         6px;
  border-radius:   var(--radius-sm);
}
.hamburger__bar {
  display:    block;
  width:      24px;
  height:     2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Hamburger → X */
.navbar__hamburger.is-open .hamburger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.is-open .hamburger__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-open .hamburger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  display:    none;
  position:   absolute;
  top:        100%;
  left:       0;
  width:      100%;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(16px);
  padding:    24px clamp(16px, 5vw, 40px) 32px;
  border-top: 1px solid var(--border);
  transform:  translateY(-10px);
  opacity:    0;
  transition: all var(--transition);
  pointer-events: none;
}
.navbar__mobile.is-open {
  display:        block;
  opacity:        1;
  transform:      translateY(0);
  pointer-events: auto;
}

.navbar__mobile-links {
  display:       flex;
  flex-direction: column;
  gap:           0;
  margin-bottom: 24px;
}
.navbar__mobile-link {
  display:    block;
  padding:    14px 0;
  font-size:  1rem;
  font-weight: 500;
  color:      var(--white-muted);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.navbar__mobile-link:hover { color: var(--gold); }

.navbar__mobile-ctas {
  display:        flex;
  flex-direction: column;
  gap:            10px;
}

.navbar__mobile-cta,
.navbar__mobile-cta-hotel {
  width:           100%;
  justify-content: center;
  padding:         14px;
  text-align:      center;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position:        relative;
  min-height:      100vh;
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  padding-top:     var(--nav-h);
  overflow:        hidden;
}

/* Imagen de fondo */
.hero__bg-image {
  position:   absolute;
  inset:      0;
  width:      100%;
  height:     100%;
  object-fit: cover;
  object-position: center 30%;
  z-index:    0;
  transform:  scale(1.1); /* margen extra para que el parallax no deje bordes blancos */
  will-change: transform;
}

/* Overlay: degradado de abajo hacia arriba + oscuro general */
.hero__overlay {
  position:   absolute;
  inset:      0;
  z-index:    1;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 1)    0%,
    rgba(13, 13, 13, 0.72) 40%,
    rgba(13, 13, 13, 0.45) 70%,
    rgba(13, 13, 13, 0.25) 100%
  );
}

/* Contenido central */
.hero__content {
  position:      relative;
  z-index:       2;
  text-align:    center;
  max-width:     720px;
  padding:       clamp(40px, 8vw, 80px) clamp(20px, 5vw, 40px);
  padding-bottom: 120px; /* espacio para las stats */
}

.hero__badge {
  display:        inline-block;
  font-size:      0.7rem;
  font-weight:    600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color:          var(--gold);
  border:         1px solid rgba(191, 147, 94, 0.4);
  padding:        6px 18px;
  border-radius:  50px;
  margin-bottom:  28px;
  backdrop-filter: blur(6px);
  background:     rgba(13,13,13,0.3);
}

.hero__title {
  font-family:    var(--font-display);
  font-size:      clamp(2.6rem, 6vw, 5rem);
  font-weight:    700;
  line-height:    1.06;
  color:          var(--white);
  margin-bottom:  20px;
  letter-spacing: -0.01em;
  text-shadow:    0 2px 24px rgba(0,0,0,0.4);
}

.hero__title--accent {
  color:      var(--gold);
  font-style: italic;
  display:    block;
}

.hero__subtitle {
  font-size:     clamp(1rem, 1.6vw, 1.15rem);
  color:         rgba(242, 242, 242, 0.8);
  line-height:   1.7;
  margin-bottom: 40px;
  text-shadow:   0 1px 10px rgba(0,0,0,0.4);
}

/* CTAs */
.hero__ctas {
  display:         flex;
  gap:             14px;
  flex-wrap:       wrap;
  justify-content: center;
}

/* Stats bar en la parte inferior del hero */
.hero__stats {
  position:        absolute;
  bottom:          0;
  left:            0;
  right:           0;
  z-index:         2;
  display:         flex;
  align-items:     stretch;
  justify-content: center;
  background:      rgba(13, 13, 13, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top:      1px solid rgba(191, 147, 94, 0.2);
}

.hero__stat-item {
  display:         flex;
  flex-direction:  column;
  align-items:     center;
  justify-content: center;
  padding:         22px clamp(28px, 5vw, 64px);
  gap:             4px;
  flex:            1;
  max-width:       200px;
}

.hero__stat-divider {
  width:      1px;
  background: rgba(191, 147, 94, 0.2);
  align-self: stretch;
  margin:     14px 0;
}

.hero__stat-number {
  font-family:   var(--font-display);
  font-size:     clamp(1.8rem, 3vw, 2.4rem);
  font-weight:   700;
  color:         var(--gold);
  line-height:   1;
}

.hero__stat-label {
  font-size:      0.72rem;
  font-weight:    500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          var(--white-muted);
}

/* ── Steps / Proceso ─────────────────────────────────────── */
.steps {
  background: var(--black);
  padding:    var(--section-pad) clamp(16px, 4vw, 40px);
  border-top: 1px solid var(--border);
}

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

.steps__header {
  text-align:    center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.steps__title {
  font-family: var(--font-display);
  font-size:   clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color:       var(--white);
  line-height: 1.2;
}

/* Horizontal list: paso — conector — paso — conector — paso */
.steps__list {
  display:         flex;
  align-items:     flex-start;
  justify-content: center;
  gap:             0;
  list-style:      none;
  margin-bottom:   clamp(40px, 5vw, 60px);
}

/* Cada paso */
.steps__item {
  flex:       1;
  max-width:  280px;
  display:    flex;
  flex-direction: column;
  align-items:    center;
  text-align:     center;
  padding:        0 16px;
  position:       relative;
}

/* Ícono circular */
.steps__icon {
  width:            72px;
  height:           72px;
  display:          flex;
  align-items:      center;
  justify-content:  center;
  background:       rgba(191, 147, 94, 0.1);
  border:           1px solid var(--border);
  border-radius:    50%;
  color:            var(--gold);
  margin-bottom:    20px;
  transition:       background var(--transition), border-color var(--transition);
}
.steps__item:hover .steps__icon {
  background:   rgba(191, 147, 94, 0.18);
  border-color: var(--gold);
}

/* Número de paso */
.steps__number {
  font-family:    var(--font-display);
  font-size:      0.72rem;
  font-weight:    700;
  letter-spacing: 0.15em;
  color:          var(--gold);
  opacity:        0.6;
  margin-bottom:  10px;
}

.steps__item-title {
  font-family:   var(--font-display);
  font-size:     1.1rem;
  font-weight:   600;
  color:         var(--white);
  margin-bottom: 10px;
}

.steps__item-desc {
  font-size:  0.875rem;
  color:      var(--white-muted);
  line-height: 1.65;
}

/* Conector entre pasos */
.steps__connector {
  display:     flex;
  align-items: center;
  padding-top: 36px;         /* alinear visualmente con los íconos */
  flex-shrink: 0;
  opacity:     0.5;
}

/* CTA centrado */
.steps__cta {
  display:         flex;
  justify-content: center;
}

/* Responsive: stack en mobile */
@media (max-width: 768px) {
  .steps__list {
    flex-direction: column;
    align-items:    center;
    gap:            8px;
  }
  .steps__connector {
    padding-top:  0;
    transform:    rotate(90deg);
  }
  .steps__item { max-width: 100%; padding: 0; }
}

/* ── Info Section ─────────────────────────────────────────── */
.info {
  background:  var(--cream);
  padding:     var(--section-pad) clamp(16px, 4vw, 40px);
}

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

.info__header {
  text-align:    center;
  max-width:     640px;
  margin:        0 auto clamp(48px, 6vw, 80px);
}

.info__title {
  font-family:   var(--font-display);
  font-size:     clamp(2rem, 3.5vw, 3rem);
  font-weight:   700;
  color:         var(--black);
  line-height:   1.15;
  margin-bottom: 20px;
}

.info__subtitle {
  font-size:  1rem;
  color:      #555;
  line-height: 1.7;
}

.info__cards {
  display:               grid;
  grid-template-columns: repeat(3, 1fr);
  gap:                   28px;
}

.info__card {
  background:    #fff;
  border-radius: var(--radius);
  padding:       40px 32px;
  text-align:    center;
  border:        1px solid rgba(0,0,0,0.06);
  transition:    transform var(--transition), box-shadow var(--transition);
  position:      relative;
  overflow:      hidden;
}
.info__card::before {
  content:    '';
  position:   absolute;
  bottom:     0;
  left:       0;
  width:      100%;
  height:     3px;
  background: var(--gold);
  transform:  scaleX(0);
  transition: transform var(--transition);
}
.info__card:hover {
  transform:  translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.info__card:hover::before { transform: scaleX(1); }

.info__card--featured {
  background:  var(--black);
  border-color: var(--gold);
}
.info__card--featured .info__card-number,
.info__card--featured .info__card-title { color: var(--white); }
.info__card--featured .info__card-text  { color: var(--white-muted); }
.info__card--featured::before           { background: var(--gold); }

.info__card-icon {
  display:       flex;
  justify-content: center;
  margin-bottom: 20px;
}

.info__card-number {
  display:       block;
  font-family:   var(--font-display);
  font-size:     clamp(2.4rem, 4vw, 3.2rem);
  font-weight:   700;
  color:         var(--gold);
  line-height:   1;
  margin-bottom: 8px;
}

.info__card-title {
  font-family:   var(--font-display);
  font-size:     1.15rem;
  font-weight:   600;
  color:         var(--black);
  margin-bottom: 12px;
}

.info__card-text {
  font-size:  0.875rem;
  color:      #666;
  line-height: 1.65;
}

/* ── Benefits Section ─────────────────────────────────────── */
.benefits {
  background: var(--black-soft);
  padding:    var(--section-pad) clamp(16px, 4vw, 40px);
  position:   relative;
  overflow:   hidden;
}

.benefits__container {
  max-width:             var(--container);
  margin:                0 auto;
  display:               grid;
  grid-template-columns: 1fr 1fr;
  gap:                   clamp(40px, 6vw, 100px);
  align-items:           center;
  position:              relative;
  z-index:               2;
}

.benefits__title {
  font-family:   var(--font-display);
  font-size:     clamp(2rem, 3.5vw, 3rem);
  font-weight:   700;
  color:         var(--white);
  line-height:   1.15;
  margin-bottom: 20px;
}

.benefits__desc {
  font-size:     1rem;
  color:         var(--white-muted);
  line-height:   1.7;
  margin-bottom: 36px;
  max-width:     420px;
}

.benefits__ctas {
  display:   flex;
  gap:       12px;
  flex-wrap: wrap;
}

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

.benefits__item {
  display:     flex;
  align-items: flex-start;
  gap:         18px;
  padding:     22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition:  background var(--transition);
}
.benefits__item:last-child { border-bottom: none; }

.benefits__item-icon {
  flex-shrink:  0;
  width:        48px;
  height:       48px;
  display:      flex;
  align-items:  center;
  justify-content: center;
  background:   rgba(191, 147, 94, 0.1);
  border:       1px solid var(--border);
  border-radius: var(--radius-sm);
  transition:   background var(--transition);
}
.benefits__item:hover .benefits__item-icon {
  background: rgba(191, 147, 94, 0.2);
}

.benefits__item-title {
  font-size:     0.95rem;
  font-weight:   600;
  color:         var(--white);
  margin-bottom: 4px;
}
.benefits__item-desc {
  font-size:  0.85rem;
  color:      var(--white-muted);
  line-height: 1.55;
}

/* Background image decoration */
.benefits__bg-image {
  position: absolute;
  right:    3%;
  top:      0;
  width:    45%;
  height:   100%;
  z-index:  1;
  opacity:  0.08;
  pointer-events: none;
}
.benefits__bg-img {
  width:      100%;
  height:     100%;
  object-fit: cover;
}

/* ── Location Section ─────────────────────────────────────── */
.location {
  background: var(--cream);
  padding:    var(--section-pad) clamp(16px, 4vw, 40px);
}

.location__container {
  max-width:             var(--container);
  margin:                0 auto;
  display:               grid;
  grid-template-columns: 1fr 1.1fr;
  gap:                   clamp(40px, 6vw, 80px);
  align-items:           center;
}

.location__title {
  font-family:   var(--font-display);
  font-size:     clamp(2rem, 3.5vw, 2.8rem);
  font-weight:   700;
  color:         var(--black);
  line-height:   1.15;
  margin-bottom: 20px;
}

.location__desc {
  font-size:     1rem;
  color:         #555;
  line-height:   1.7;
  margin-bottom: 36px;
}

.location__address {
  display:        flex;
  flex-direction: column;
  gap:            14px;
}

.location__address-item {
  display:     flex;
  align-items: center;
  gap:         12px;
  font-size:   0.9rem;
  color:       #333;
}
.location__address-item a {
  color:      var(--black);
  transition: color var(--transition);
}
.location__address-item a:hover { color: var(--gold); }

.location__map {
  height:        480px;
  border-radius: var(--radius);
  overflow:      hidden;
  border:        1px solid rgba(0,0,0,0.1);
  box-shadow:    0 20px 60px rgba(0,0,0,0.12);
}
.location__map iframe {
  border: none;
  width:  100%;
  height: 100%;
  display: block;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta {
  background:  var(--black);
  padding:     var(--section-pad) clamp(16px, 4vw, 40px);
  position:    relative;
  overflow:    hidden;
  border-top:  1px solid var(--border);
}

.cta__container {
  max-width:             var(--container);
  margin:                0 auto;
  display:               grid;
  grid-template-columns: 1fr 0.85fr;
  gap:                   clamp(40px, 6vw, 80px);
  align-items:           center;
  position:              relative;
  z-index:               2;
}

.cta__title {
  font-family:   var(--font-display);
  font-size:     clamp(2.2rem, 4vw, 3.6rem);
  font-weight:   700;
  color:         var(--white);
  line-height:   1.1;
  margin-bottom: 20px;
}

.cta__subtitle {
  font-size:     1rem;
  color:         var(--white-muted);
  line-height:   1.7;
  margin-bottom: 40px;
  max-width:     480px;
}

.cta__actions {
  display:   flex;
  gap:       16px;
  flex-wrap: wrap;
}

.cta__image {
  position:      relative;
  border-radius: var(--radius);
  overflow:      hidden;
  aspect-ratio:  4/3;
}
.cta__img {
  width:      100%;
  height:     100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cta__image:hover .cta__img { transform: scale(1.04); }

.cta__image-glow {
  position: absolute;
  inset:    0;
  background: linear-gradient(135deg, rgba(191,147,94,0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Decorative orbs */
.cta__deco {
  position:      absolute;
  border-radius: 50%;
  pointer-events: none;
  filter:        blur(80px);
}
.cta__deco--1 {
  width:      400px;
  height:     400px;
  background: rgba(191, 147, 94, 0.07);
  top:        -100px;
  left:       -100px;
}
.cta__deco--2 {
  width:      300px;
  height:     300px;
  background: rgba(191, 147, 94, 0.05);
  bottom:     -80px;
  right:      10%;
}

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background:   var(--black-soft);
  border-top:   1px solid var(--border);
  padding:      clamp(48px, 6vw, 80px) clamp(16px, 4vw, 40px) 0;
}

.footer__container {
  max-width:             var(--container);
  margin:                0 auto;
  display:               grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap:                   clamp(40px, 5vw, 80px);
  padding-bottom:        clamp(40px, 5vw, 64px);
  border-bottom:         1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  height:        64px;
  width:         auto;
  object-fit:    contain;
  border-radius: 50%;
  border:        1px solid rgba(191, 147, 94, 0.22);
  padding:       4px 6px;
  background:    rgba(13, 13, 13, 0.35);
  margin-bottom: 16px;
}

.footer__socials {
  display:   flex;
  gap:       10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer__social-link {
  display:      flex;
  align-items:  center;
  gap:          7px;
  font-size:    0.8rem;
  font-weight:  500;
  color:        var(--white-muted);
  border:       1px solid var(--border);
  border-radius: var(--radius-sm);
  padding:      7px 13px;
  transition:   color var(--transition), border-color var(--transition), background var(--transition);
}
.footer__social-link:hover {
  color:        var(--gold);
  border-color: var(--gold);
  background:   rgba(191, 147, 94, 0.08);
}

.footer__tagline {
  font-size:  0.85rem;
  color:      var(--white-muted);
  line-height: 1.5;
  max-width:  220px;
}

.footer__nav-title,
.footer__contact-title {
  font-family:    var(--font-display);
  font-size:      0.95rem;
  font-weight:    600;
  color:          var(--white);
  margin-bottom:  20px;
  padding-bottom: 10px;
  border-bottom:  1px solid var(--border);
}

.footer__nav-list {
  display:        flex;
  flex-direction: column;
  gap:            10px;
}
.footer__nav-link {
  font-size:  0.875rem;
  color:      var(--white-muted);
  transition: color var(--transition);
}
.footer__nav-link:hover { color: var(--gold); }

.footer__contact-list {
  display:        flex;
  flex-direction: column;
  gap:            14px;
}
.footer__contact-list li {
  display:     flex;
  align-items: center;
  gap:         10px;
  font-size:   0.875rem;
  color:       var(--white-muted);
}
.footer__contact-list a {
  color:      var(--white-muted);
  transition: color var(--transition);
}
.footer__contact-list a:hover { color: var(--gold); }

.footer__bottom {
  max-width: var(--container);
  margin:    0 auto;
  padding:   20px 0;
  text-align: center;
}
.footer__copy,
.footer__dev {
  font-size: 0.8rem;
  color:     rgba(242,242,242,0.3);
}

.footer__dev { margin-top: 6px; }

.footer__dev-link {
  color:           #0511F2;
  font-weight:     600;
  text-decoration: none;
  transition:      opacity var(--transition);
}
.footer__dev-link:hover { opacity: 0.8; }

/* ── Scroll Reveal Animation ──────────────────────────────── */
.reveal {
  opacity:    0;
  transform:  translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity:   1;
  transform: translateY(0);
}

/* Stagger delays for cards */
.reveal-stagger:nth-child(1) { transition-delay: 0s;    }
.reveal-stagger:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger:nth-child(5) { transition-delay: 0.48s; }

/* ============================================================
   RESPONSIVE — Breakpoints
   ============================================================ */

/* ── Tablet: ≤ 1024px ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__stats { max-width: 100%; }
  .benefits__container,
  .location__container,
  .cta__container {
    grid-template-columns: 1fr;
  }
  .benefits__bg-image { display: none; }
  .cta__image { max-height: 340px; }
  .info__cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ── Mobile: ≤ 768px ──────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  /* Navbar */
  .navbar__nav     { display: none; }
  .navbar__hamburger { display: flex; }

  /* Hero */
  .hero__ctas { display: none; }
  .hero__stat-item { padding: 18px 20px; }
  .hero__content { padding-bottom: 100px; }

  /* Info */
  .info { padding-top: clamp(60px, 10vw, 90px); }
  .info__cards { max-width: 100%; }

  /* Benefits */
  .benefits__list { gap: 0; }

  /* Location */
  .location__map { height: 280px; }

  /* CTA */
  .cta__actions { flex-direction: column; }
  .cta__actions .btn { justify-content: center; }
  .cta__image { display: none; }

  /* Footer */
  .footer__container {
    grid-template-columns: 1fr;
    gap:                   32px;
  }
}

/* ── Small mobile: ≤ 480px ────────────────────────────────── */
@media (max-width: 480px) {
  .hero__title    { font-size: 2rem; }
  .hero__search   { flex-direction: column; border-radius: var(--radius-sm); }
  .hero__search-btn { justify-content: center; }
  .btn--xlarge    { padding: 16px 28px; }
}

/* ── Focus styles (accessibility) ────────────────────────── */
:focus-visible {
  outline:        2px solid var(--gold);
  outline-offset: 3px;
  border-radius:  3px;
}
