/* ==========================================================================
   Nutrisana Logroño — Hoja de estilos global
   Sistema de diseño: verde nutrición · tipografía Outfit + Work Sans
   ========================================================================== */

:root {
  /* Paleta */
  --primary: #1E3A2F;          /* verde bosque profundo */
  --primary-light: #2C5440;
  --accent: #5BA572;           /* verde fresco */
  --accent-hover: #4a8c5e;     /* accent -10% */
  --accent-soft: #E6F2EA;      /* verde muy claro para fondos */
  --sage: #8FAE9B;             /* verde grisáceo */
  --warm-bg: #F7FAF5;          /* fondo cálido */
  --gold: #C9A24B;             /* detalle cálido puntual */
  --text: #1A2620;
  --text-muted: #5C6B63;
  --border: #E2E8E2;
  --white: #FFFFFF;

  /* Tipografía */
  --font-head: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Espaciado (sistema 8pt) */
  --s-1: 0.5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4rem;
  --s-7: 6rem;

  /* Radios y sombras */
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(30, 58, 47, 0.08), 0 1px 2px rgba(30, 58, 47, 0.06);
  --shadow-md: 0 8px 28px rgba(30, 58, 47, 0.12);

  --container: 1200px;
  --transition: 180ms ease;
}

/* ---------- Reset mínimo ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ---------- Tipografía ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.18; color: var(--primary); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--text); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin-inline: auto; padding-inline: 1.25rem; }
.section { padding-block: clamp(3rem, 7vw, 6rem); }
.section--soft { background: var(--warm-bg); }
.section--accent { background: var(--accent-soft); }
.section--dark { background: var(--primary); color: #dfe9e2; }
.section--dark h2, .section--dark h3 { color: var(--white); }
.grid { display: grid; gap: var(--s-3); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex { display: flex; gap: var(--s-2); }
.eyebrow { font-family: var(--font-head); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: var(--accent); }
.section-head { max-width: 640px; margin-bottom: var(--s-5); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; margin-top: var(--s-1); }
.lead { font-size: 1.15rem; color: var(--text-muted); }
.text-center { text-align: center; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 0.85rem 1.6rem; border-radius: var(--radius-pill);
  transition: var(--transition); cursor: pointer; text-align: center;
  line-height: 1.2;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--primary); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent-hover); }
.btn-ghost { background: rgba(255,255,255,0.14); color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { background: rgba(255,255,255,0.24); }
.btn-light { background: var(--white); color: var(--primary); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa { background: #25D366; color: #fff; }
.btn-wa:hover { background: #1ebb56; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37,211,102,0.35); }
.btn-wa svg { flex: none; }
.btn-link { color: var(--accent-hover); font-weight: 600; padding: 0.5rem 0; }
.btn-link:hover { text-decoration: underline; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Topbar ---------- */
.topbar { background: var(--primary); color: #cfe0d5; font-size: 0.86rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.topbar a { color: #e7f0ea; transition: var(--transition); }
.topbar a:hover { color: var(--accent); }
.topbar-info { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.topbar-info span, .topbar-info a { display: inline-flex; align-items: center; gap: 0.4rem; }
.topbar-hours { color: #9fb8a8; }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem; color: var(--primary); }
.brand .logo-mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: 1.6rem; }
.nav-menu a { font-family: var(--font-head); font-weight: 500; color: var(--text); font-size: 0.98rem; transition: var(--transition); position: relative; }
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--accent-hover); }
.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: var(--radius-sm); align-items: center; justify-content: center; color: var(--primary); }
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(160deg, var(--warm-bg) 0%, var(--accent-soft) 100%); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s-5); align-items: center; padding-block: clamp(2.5rem, 6vw, 5rem); }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); border: 1px solid var(--border); color: var(--primary); padding: 0.4rem 0.9rem; border-radius: var(--radius-pill); font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow-sm); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
.hero h1 { margin: var(--s-3) 0 var(--s-2); }
.hero h1 span { color: var(--accent); }
.hero-tagline { font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; color: var(--primary); margin: 0 0 var(--s-2); }
.hero-services { font-family: var(--font-head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.82rem; font-weight: 600; color: var(--sage); margin-bottom: var(--s-2); }
.hero-subtitle { font-size: 1.12rem; color: var(--text-muted); max-width: 30rem; margin-bottom: var(--s-4); }
.hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-media img { border-radius: 20px; box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 3/2; }
.hero-floatcard { position: absolute; bottom: -18px; left: -18px; background: var(--white); border-radius: var(--radius); padding: 0.9rem 1.2rem; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 0.7rem; }
.hero-floatcard strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--primary); display: block; line-height: 1; }
.hero-floatcard span { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- Cards ---------- */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s-4); transition: var(--transition); height: 100%; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.card .icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent-hover); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: var(--s-2); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-muted); font-size: 0.97rem; margin-bottom: var(--s-2); }
.card .card-link { font-family: var(--font-head); font-weight: 600; color: var(--accent-hover); font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.card .card-link:hover { gap: 0.6rem; }
.card-img { border-radius: var(--radius); overflow: hidden; margin: calc(-1 * var(--s-4)) calc(-1 * var(--s-4)) var(--s-3); }
.card-img img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }

/* ---------- Badges / chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: 0.45rem 1rem; font-size: 0.9rem; font-weight: 500; color: var(--primary); }
.chip--accent { background: var(--accent-soft); border-color: transparent; color: var(--accent-hover); }
.badge { display: inline-block; background: var(--accent-soft); color: var(--accent-hover); font-size: 0.78rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: var(--radius-pill); font-family: var(--font-head); }

/* ---------- Pasos / proceso ---------- */
.steps { counter-reset: step; display: grid; gap: var(--s-3); }
.step { display: flex; gap: var(--s-2); align-items: flex-start; }
.step-num { counter-increment: step; flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--primary); color: var(--white); font-family: var(--font-head); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step-num::before { content: counter(step); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }
.step p { color: var(--text-muted); font-size: 0.96rem; }

/* ---------- Listas con check ---------- */
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: 0.7rem; color: var(--text-muted); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.35em; width: 1.1rem; height: 1.1rem; background: var(--accent); border-radius: 50%; }
.check-list li::after { content: ""; position: absolute; left: 0.34rem; top: 0.62em; width: 0.42rem; height: 0.22rem; border-left: 2px solid var(--white); border-bottom: 2px solid var(--white); transform: rotate(-45deg); }
.check-list strong { color: var(--text); }

/* ---------- Testimonios / reseñas ---------- */
.testimonial { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s-4); }
.testimonial .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.6rem; }
.testimonial blockquote { font-size: 1.02rem; color: var(--text); margin-bottom: var(--s-2); }
.testimonial .who { display: flex; align-items: center; gap: 0.7rem; }
.testimonial .who .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); color: var(--accent-hover); display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; }
.testimonial .who strong { display: block; font-size: 0.95rem; }
.testimonial .who span { font-size: 0.82rem; color: var(--text-muted); }

/* ---------- FAQ acordeón ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--primary); }
.faq-q .icon { flex: none; width: 26px; height: 26px; position: relative; transition: var(--transition); }
.faq-q .icon::before, .faq-q .icon::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; left: 50%; top: 50%; }
.faq-q .icon::before { width: 14px; height: 2px; transform: translate(-50%, -50%); }
.faq-q .icon::after { width: 2px; height: 14px; transform: translate(-50%, -50%); transition: var(--transition); }
.faq-item.open .faq-q .icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 250ms ease; }
.faq-a p { padding-bottom: 1.25rem; color: var(--text-muted); }

/* ---------- Formularios ---------- */
.form { background: var(--white); border-radius: var(--radius); padding: var(--s-4); box-shadow: var(--shadow-md); }
.form-row { margin-bottom: var(--s-2); }
.form label { display: block; font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--primary); }
.form-input, .form textarea, .form select {
  width: 100%; padding: 0.8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--warm-bg); transition: var(--transition); color: var(--text);
}
.form-input:focus, .form textarea:focus, .form select:focus { outline: none; border-color: var(--accent); background: var(--white); }
.form textarea { resize: vertical; min-height: 110px; }
.form-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--text-muted); }
.form-check input { margin-top: 0.25rem; flex: none; width: 18px; height: 18px; accent-color: var(--accent); }
.form-check a { color: var(--accent-hover); text-decoration: underline; }
.form-note { font-size: 0.84rem; color: var(--text-muted); margin-top: 0.75rem; }
.form .error { border-color: #d9534f; }
.form-msg { padding: 0.8rem 1rem; border-radius: var(--radius-sm); margin-top: var(--s-2); font-size: 0.92rem; display: none; }
.form-msg.ok { display: block; background: var(--accent-soft); color: var(--accent-hover); }
.form-msg.fail { display: block; background: #fdecea; color: #c0392b; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--primary); color: #dfe9e2; border-radius: var(--radius); padding: clamp(2rem, 5vw, 3.5rem); text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: var(--s-2); }
.cta-band p { max-width: 40rem; margin-inline: auto; margin-bottom: var(--s-3); }
.cta-band .hero-ctas { justify-content: center; }

/* ---------- Mapa / contacto ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; border: 0; }
.contact-card { display: flex; gap: 0.9rem; align-items: flex-start; margin-bottom: var(--s-3); }
.contact-card .icon { flex: none; width: 46px; height: 46px; border-radius: var(--radius-sm); background: var(--accent-soft); color: var(--accent-hover); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
.contact-card p, .contact-card a { color: var(--text-muted); font-size: 0.97rem; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 1rem 0; font-size: 0.86rem; color: var(--text-muted); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center; }
.breadcrumb a:hover { color: var(--accent-hover); }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: 0.4rem; color: var(--sage); }

/* ---------- Page hero (interiores) ---------- */
.page-hero { background: linear-gradient(160deg, var(--warm-bg), var(--accent-soft)); padding-block: clamp(2rem, 5vw, 3.5rem); }
.page-hero h1 { margin-bottom: var(--s-2); }
.page-hero p { color: var(--text-muted); max-width: 44rem; font-size: 1.1rem; }
.page-hero--split .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s-5); align-items: center; }
.page-hero-img { border-radius: 18px; box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 3/2; object-fit: cover; }
@media (max-width: 820px) {
  .page-hero--split .container { grid-template-columns: 1fr; }
  .page-hero--split .page-hero-media { order: -1; max-width: 460px; }
}
/* imagen destacada en secciones de dos columnas */
.feature-img { border-radius: 18px; box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* ---------- Article (blog) ---------- */
.article { max-width: 760px; margin-inline: auto; }
.article img { border-radius: var(--radius); margin-block: var(--s-3); }
.article h2 { margin: var(--s-4) 0 var(--s-2); }
.article h3 { margin: var(--s-3) 0 var(--s-1); }
.article p, .article li { color: #333d37; }
.article ul { margin: var(--s-2) 0; }
.article ul li { position: relative; padding-left: 1.5rem; margin-bottom: 0.5rem; }
.article ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.article table { width: 100%; border-collapse: collapse; margin: var(--s-3) 0; font-size: 0.95rem; }
.article th, .article td { border: 1px solid var(--border); padding: 0.7rem 0.9rem; text-align: left; }
.article th { background: var(--accent-soft); color: var(--primary); font-family: var(--font-head); }
.post-meta { color: var(--text-muted); font-size: 0.88rem; margin-bottom: var(--s-2); }

/* ---------- Footer ---------- */
.site-footer { background: var(--primary); color: #b9cabf; padding-top: var(--s-6); }
.site-footer a { color: #cfe0d5; transition: var(--transition); }
.site-footer a:hover { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-4); padding-bottom: var(--s-5); }
.footer-brand .brand { color: var(--white); margin-bottom: var(--s-2); }
.footer-brand .brand small { color: var(--accent); }
.footer-brand p { font-size: 0.92rem; }
.footer-col h4, .footer-col .footer-col-title { color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1rem; margin-bottom: var(--s-2); }
.footer-col ul li { margin-bottom: 0.6rem; font-size: 0.92rem; }
.footer-contact li { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; font-size: 0.92rem; align-items: flex-start; }
.footer-social { display: flex; gap: 0.6rem; margin-top: var(--s-2); }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--accent); color: var(--white); }
.sub-footer { border-top: 1px solid rgba(255,255,255,0.12); padding-block: var(--s-3); font-size: 0.84rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.sub-footer-links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- WhatsApp FAB + Modal "estamos a tope" ---------- */
.wa-fab {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; border: none; cursor: pointer;
  box-shadow: 0 6px 16px rgba(37,211,102,0.4), 0 2px 4px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 10px 24px rgba(37,211,102,0.5); }
.wa-fab:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; }
.wa-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wa-modal[hidden] { display: none; }
.wa-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 1rem;
}
.wa-modal-backdrop { position: absolute; inset: 0; background: rgba(15,25,20,0.6); backdrop-filter: blur(3px); }
.wa-modal-card {
  position: relative; background: #fff; border-radius: 18px;
  max-width: 460px; width: 100%; padding: 2rem 1.6rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3); text-align: center;
  animation: wa-pop 200ms ease-out;
}
@keyframes wa-pop { from { transform: translateY(20px) scale(0.95); opacity: 0; } to { transform: none; opacity: 1; } }
.wa-modal-icon {
  width: 68px; height: 68px; margin: 0 auto 1rem;
  background: #25D366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wa-modal-card h2 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.35rem; }
.wa-modal-card > p { color: var(--text-muted); margin-bottom: 1.4rem; }
.wa-modal-ctas { display: flex; flex-direction: column; gap: 0.55rem; }
.wa-modal-ctas .btn { justify-content: center; width: 100%; }
.wa-modal-close {
  position: absolute; top: 10px; right: 10px;
  width: 38px; height: 38px; border: none; background: none;
  font-size: 1.8rem; color: var(--text-muted); cursor: pointer; line-height: 1;
}
.wa-modal-close:hover { color: var(--primary); }
.wa-modal-note { font-size: 0.84rem; color: var(--text-muted); margin-top: 1rem; }
@media (max-width: 600px) {
  .wa-fab { bottom: 16px; right: 16px; width: 54px; height: 54px; }
}

/* ---------- Utilidades ---------- */
.mt-2 { margin-top: var(--s-2); } .mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); }
.mb-0 { margin-bottom: 0; }
.hide-mobile { display: initial; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 440px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .topbar-hours { display: none; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch;
    background: var(--white); padding: var(--s-2) 1.25rem var(--s-4); gap: 0; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform 280ms ease; max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu a { padding: 0.9rem 0; border-bottom: 1px solid var(--border); }
  .nav-menu .btn { margin-top: var(--s-2); }
  .nav-cta .btn-secondary { display: none; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .sub-footer { flex-direction: column; }
  .topbar-info { gap: 0.9rem; font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto; }
}
