/* ==========================================================
   Destinos Ya — Hoja de estilos principal
   Colores de marca extraídos del logo y manual de marca:
   Azul  #0b6fe0  |  Teal #017c7a  |  Dorado #f3b745
   ========================================================== */

:root {
  --blue: #0b6fe0;
  --blue-dark: #045c9e;
  --teal: #017c7a;
  --gold: #f3b745;
  --navy: #10283a;
  --gray-bg: #f6f9fb;
  --gray-line: #e3e9ee;
  --text: #26333d;
  --text-light: #5c6b76;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(16, 40, 58, 0.08);
  --gradient: linear-gradient(135deg, var(--teal) 0%, var(--blue) 100%);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 0.5em;
  line-height: 1.2;
  color: var(--navy);
}

p { margin: 0 0 1em; }

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 72px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-light); font-size: 1.05rem; }

.bg-gray { background: var(--gray-bg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(243, 183, 69, 0.35);
}
.btn-gold:hover { box-shadow: 0 12px 24px rgba(243, 183, 69, 0.45); }

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 111, 224, 0.3);
}
.btn-blue:hover { background: var(--blue-dark); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: #1fb959; }

.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.top-bar {
  background: var(--navy);
  color: #cfe3f0;
  font-size: 0.82rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: #cfe3f0; }
.top-bar .top-links { display: flex; gap: 18px; flex-wrap: wrap; }
.top-bar .top-links span { opacity: 0.85; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(16,40,58,0.07);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo img { height: 52px; width: auto; }

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

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav.main-nav a.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
nav.main-nav a.nav-link:hover,
nav.main-nav a.nav-link.active {
  color: var(--blue);
  border-color: var(--gold);
}

.nav-cta { display: flex; align-items: center; gap: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  background: var(--gradient);
  color: #fff;
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 680px; }

.hero-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-split .hero-inner { max-width: none; }

.hero-carousel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  aspect-ratio: 4 / 3;
  border: 4px solid rgba(255,255,255,0.25);
}
.hero-carousel-track { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-color: var(--teal);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(16,40,58,0.5);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}
.hero-carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.hero-carousel-dots .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-carousel-dots .dot.is-active {
  background: var(--gold);
  transform: scale(1.25);
}
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-style: italic;
  margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); font-style: normal; }
.hero p.lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-small {
  padding: 60px 0 70px;
}
.hero-small h1 { color: #fff; font-style: italic; font-size: clamp(2rem, 4vw, 2.8rem); }
.hero-small p { color: rgba(255,255,255,0.9); max-width: 560px; }

/* breadcrumbs-ish */
.crumb { font-size: 0.85rem; opacity: 0.85; margin-bottom: 14px; }
.crumb a { text-decoration: underline; }

/* ---------- Why book with us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16,40,58,0.12);
}
.why-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  text-align: center;
  line-height: 1;
}
.why-card h3 { font-size: 1.08rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin-bottom: 8px; text-align: center; }
.why-card p { color: var(--text-light); font-size: 0.92rem; margin: 0; text-align: center; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16,40,58,0.12);
}
.service-card .num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #5a5a5a;
  font-size: 2.2rem;
  margin-bottom: 6px;
}
.service-card h3 { font-size: 1.1rem; font-family: 'Poppins', sans-serif; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.92rem; }

/* ---------- Promos ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1px solid var(--gray-line);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16,40,58,0.14);
}
.promo-media {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  text-align: center;
  padding: 10px;
}
#promociones .promo-media {
  height: calc(130px + 4cm);
}
.promo-body { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.promo-body h3 { font-size: 1rem; font-family: 'Poppins', sans-serif; font-weight: 600; margin: 0; }
.promo-price {
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
}
.promo-actions { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.promo-actions .btn { padding: 10px 16px; font-size: 0.82rem; justify-content: center; }

/* ---------- About / nosotros ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-visual {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: 24px;
  padding: 48px;
  color: var(--navy);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1,124,122,0.06), rgba(11,111,224,0.06));
  pointer-events: none;
}
.about-visual img { width: 120px; margin-bottom: 20px; position: relative; }
.about-visual .quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--navy);
  position: relative;
}
.about-copy h2 { font-size: 2rem; }
.about-copy p { color: var(--text-light); font-size: 1.02rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.value-item {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--gray-bg);
  text-align: center;
}
.value-item .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  line-height: 1;
}
.value-item h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--blue-dark); }
.value-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.8); margin: 0; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contenido con formato (descripción de paquete desde el panel) ---------- */
.rich-content { font-size: 1.02rem; color: var(--text); }
.rich-content p { margin: 0 0 1em; }
.rich-content h1, .rich-content h2, .rich-content h3, .rich-content h4 {
  font-family: 'Poppins', sans-serif;
  margin: 1em 0 0.5em;
}
.rich-content ul, .rich-content ol { margin: 0 0 1em; padding-left: 1.4em; }
.rich-content a { color: var(--blue); text-decoration: underline; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.contact-card .icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.contact-card h4 { margin: 0 0 4px; font-family: 'Poppins', sans-serif; font-size: 0.98rem; font-weight: 700; }
.contact-card p { margin: 0; color: var(--text-light); font-size: 0.92rem; }
.contact-card a { color: var(--blue); font-weight: 600; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-line);
  margin-top: 8px;
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

.form-card {
  background: #fff;
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.2rem; margin-bottom: 6px; }
.form-card > p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 22px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-line);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray-bg);
  transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.note-edit {
  background: #fff7e6;
  border: 1px dashed var(--gold);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  color: #8a5b00;
  margin-top: 6px;
}

.alert-form {
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 20px;
  text-align: center;
}
.alert-form-success {
  background: #e9f9ee;
  color: #1a7f3c;
  border: 1px solid #bfe9cd;
}
.alert-form-error {
  background: #fdecec;
  color: #b23b3b;
  border: 1px solid #f3c2c2;
  font-weight: 600;
}

.g-recaptcha { transform-origin: left top; margin-bottom: 4px; }

/* ---------- Filtros de Promociones ---------- */
.promo-filters-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 28px 20px;
  box-shadow: 0 10px 30px rgba(16,40,58,0.08);
  margin-bottom: 36px;
}
.promo-filters-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.promo-filters-actions .muted.small {
  color: var(--text-light);
  font-size: 0.86rem;
}

/* ---------- Paginación de Promociones ---------- */
.promo-paginacion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.pagina-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid var(--gray-line);
  background: #fff;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.pagina-btn:hover:not(:disabled) {
  border-color: var(--blue);
  color: var(--blue);
}
.pagina-btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}
.pagina-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---------- Banner grande de página de paquete ---------- */
.paquete-banner {
  min-height: 630px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 40px 0 44px;
  background-color: var(--navy);
}
.paquete-banner h1 { color: var(--gold); font-style: italic; font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 6px; }
.paquete-banner p { color: rgba(255,255,255,0.92); font-size: 1.05rem; }
.paquete-banner .crumb { color: rgba(255,255,255,0.85); }

/* ---------- Layout de dos columnas (detalle + tarjeta lateral) ---------- */
.paquete-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
}
.paquete-main { max-width: 100%; }
.paquete-sidebar { position: sticky; top: 96px; }
.paquete-sidebar-card { padding: 26px; }

@media (max-width: 900px) {
  .paquete-banner { min-height: 480px; }
  .paquete-layout { grid-template-columns: 1fr; }
  .paquete-sidebar { position: static; }
}

.paquete-precio-fechas { margin-top: 24px; }
.paquete-precio-fechas p { margin-bottom: 4px; }

/* ---------- Lightbox (galería de fotos) ---------- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 20, 30, .92);
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-overlay img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 10px;
}
.lightbox-close:hover { color: var(--gold, #d4af37); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 18px; }
.lightbox-next { right: 18px; }
@media (max-width: 640px) {
  .lightbox-nav { width: 38px; height: 38px; font-size: 0.95rem; }
  .lightbox-prev { left: 6px; }
  .lightbox-next { right: 6px; }
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--navy);
  color: #b9c9d4;
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-grid img { height: 46px; margin-bottom: 14px; }
.footer-grid img.footer-logo-img { height: auto; width: 150px; max-width: 60%; margin-bottom: 16px; }
.footer-grid p { font-size: 0.88rem; color: #9fb2bf; }
.footer-grid h4 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: #b9c9d4; transition: color 0.15s ease; }
.footer-links a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.15s ease;
}
.social-row a:hover { background: var(--gold); color: var(--navy); }
.footer-instagram-col .lightwidget-widget {
  width: 100%;
  max-width: 230px;
  border: 0;
  overflow: hidden;
  display: block;
}
.footer-bottom {
  padding: 20px 0;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: #7f93a1;
}

/* floating whatsapp */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  z-index: 200;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-carousel { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 760px) {
  nav.main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 78%; max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 28px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    transition: right 0.25s ease;
    z-index: 150;
  }
  nav.main-nav.open { right: 0; }
  nav.main-nav ul { flex-direction: column; gap: 20px; }
  .hamburger { display: flex; }
  .nav-cta .btn span.txt { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .promo-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  section { padding: 52px 0; }
  .top-bar .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .promo-grid { grid-template-columns: 1fr; }
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(16,40,58,0.5);
  z-index: 140;
}
.nav-overlay.open { display: block; }
