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

:root {
  --orange: #E8611A;
  --orange-light: #F28C4E;
  --orange-glow: rgba(232, 97, 26, 0.15);
  --navy: #1B2B5E;
  --navy-dark: #111D42;
  --navy-light: #2A3F7A;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-50: #FAFAFA;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;

  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --space-xs: clamp(0.25rem, 0.2rem + 0.25vw, 0.5rem);
  --space-sm: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --space-md: clamp(1rem, 0.8rem + 1vw, 1.5rem);
  --space-lg: clamp(1.5rem, 1rem + 2.5vw, 3rem);
  --space-xl: clamp(2.5rem, 1.5rem + 5vw, 5rem);
  --space-2xl: clamp(4rem, 2.5rem + 7vw, 8rem);

  --text-sm: clamp(0.8rem, 0.77rem + 0.15vw, 0.875rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --text-3xl: clamp(2rem, 1.4rem + 3vw, 3rem);
  --text-hero: clamp(2.5rem, 1.5rem + 5vw, 4.5rem);

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(27, 43, 94, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 43, 94, 0.08);
  --shadow-lg: 0 8px 40px rgba(27, 43, 94, 0.12);
  --shadow-orange: 0 4px 24px rgba(232, 97, 26, 0.25);

  --transition-fast: 150ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 300ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: min(90%, 1200px);
  margin: 0 auto;
}

/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 43, 94, 0.06);
  transition: box-shadow var(--transition-normal);
}

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

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.header__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition-fast);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width var(--transition-normal);
}

.header__link:hover { color: var(--orange); }
.header__link:hover::after { width: 100%; }

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-orange);
}

.header__cta svg { width: 18px; height: 18px; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, rgba(232, 97, 26, 0.03) 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  min-height: calc(100vh - 72px);
}

.hero__content { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--orange-glow);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.hero__badge svg { width: 16px; height: 16px; }

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero__title span {
  color: var(--orange);
  position: relative;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover { box-shadow: var(--shadow-orange); }

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn svg { width: 20px; height: 20px; }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: float 4s ease-in-out infinite;
}

.hero__float-card--top {
  top: 8%;
  right: -10%;
}

.hero__float-card--bottom {
  bottom: 12%;
  left: -8%;
}

.hero__float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__float-icon--orange {
  background: var(--orange-glow);
  color: var(--orange);
}

.hero__float-icon--navy {
  background: rgba(27, 43, 94, 0.08);
  color: var(--navy);
}

.hero__float-icon svg { width: 22px; height: 22px; }

.hero__float-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--navy);
}

.hero__float-sub {
  font-size: 0.75rem;
  color: var(--gray-400);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── SECTIONS COMMON ─── */
.section {
  padding: var(--space-2xl) 0;
}

.section--gray { background: var(--gray-50); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section__eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

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

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--gray-600);
  max-width: 560px;
  margin: var(--space-sm) auto 0;
}

.section--navy .section__subtitle { color: rgba(255, 255, 255, 0.7); }

/* ─── SERVICES ─── */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card__img {
  height: 180px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card__img img {
  transform: scale(1.06);
}

.service-card__body {
  padding: var(--space-lg);
  flex: 1;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
}

.service-card__icon svg { width: 22px; height: 22px; }

.service-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.6;
}

/* ─── PROMOTIONS ─── */
.promos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.promo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.promo-card:hover img { transform: scale(1.05); }

.promo-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 29, 66, 0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

.promo-card__tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.promo-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--white);
}

.promo-card__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

/* ─── ABOUT ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__eyebrow {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.about__title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.about__text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stat__number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--orange);
}

.stat__label {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

/* ─── LOCATIONS ─── */
.locations__map-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-lg);
  align-items: stretch;
}

.locations__map {
  min-height: 480px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

/* ─── MAP MARKER ─── */
.map-marker { background: none; border: none; }

.locations__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  max-height: 520px;
  overflow-y: auto;
  padding-right: var(--space-xs);
}

.locations__cards::-webkit-scrollbar { width: 4px; }
.locations__cards::-webkit-scrollbar-track { background: transparent; }
.locations__cards::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
}

.location-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition-normal), border-color var(--transition-normal), transform var(--transition-fast);
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--orange);
}

.location-card--active {
  background: rgba(232, 97, 26, 0.12);
  border-color: var(--orange);
}

.location-card__phone {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.location-card__phone:hover { color: var(--orange); }

.location-card__badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.location-card__badge--24h {
  background: var(--orange);
  color: var(--white);
}

.location-card__badge--regular {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
}

.location-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.location-card__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.location-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.location-card__row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--orange);
}

.location-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--orange);
  transition: gap var(--transition-fast);
}

.location-card__link:hover { gap: 0.7rem; }
.location-card__link svg { width: 16px; height: 16px; }

/* ─── OBRAS SOCIALES ─── */
.obras__marquee {
  overflow: hidden;
  padding: var(--space-md) 0;
}

.obras__track {
  display: flex;
  gap: var(--space-xl);
  animation: marquee 30s linear infinite;
}

.obras__item {
  flex-shrink: 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: var(--text-sm);
  white-space: nowrap;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── CONTACT ─── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.form__group { margin-bottom: var(--space-md); }

.form__label {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--gray-800);
  background: var(--gray-50);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.form__textarea { resize: vertical; min-height: 120px; }

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

.contact__card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--orange-glow);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__card-icon svg { width: 22px; height: 22px; }

.contact__card-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.contact__card-text {
  font-size: var(--text-sm);
  color: var(--gray-600);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__logo img {
  height: 40px;
  margin-bottom: var(--space-md);
}

.footer__desc {
  font-size: var(--text-sm);
  line-height: 1.7;
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--white);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.footer__links { display: flex; flex-direction: column; gap: var(--space-sm); }

.footer__link {
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer__link:hover { color: var(--orange); }

.footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.footer__social a:hover { background: var(--orange); }
.footer__social svg { width: 18px; height: 18px; color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
}

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-fab svg { width: 30px; height: 30px; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE NAV ─── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(17, 29, 66, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85%, 360px);
  z-index: 100;
  background: var(--white);
  padding: var(--space-xl) var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
}

.mobile-menu__close svg { width: 28px; height: 28px; }

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--navy);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--transition-fast);
}

.mobile-menu__link:hover { color: var(--orange); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__visual { display: none; }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { order: -1; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .locations__map-layout { grid-template-columns: 1fr; }
  .locations__map { min-height: 350px; }
  .locations__cards { max-height: none; flex-direction: row; overflow-x: auto; overflow-y: hidden; padding-right: 0; padding-bottom: var(--space-xs); scroll-snap-type: x mandatory; }
  .location-card { min-width: 280px; scroll-snap-align: start; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .services__grid { grid-template-columns: 1fr; }
  .promos__grid { grid-template-columns: 1fr; }
  .locations__cards { flex-direction: column; }
  .location-card { min-width: 0; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
  .about__stats { grid-template-columns: repeat(3, 1fr); }
}
