/* ==========================================================================
   Yuyitos Materos — Hoja de estilos
   CSS puro, mobile-first. Escala de espaciado en múltiplos de 8px.
   ========================================================================== */

:root {
  /* Paleta de marca — tomada del logo: mate marrón + hojas verdes sobre neutros cálidos */
  --color-forest: #8A5A34;
  --color-forest-dark: #6B4526;
  --color-forest-light: #C99A6C;
  --color-terracotta: #6F8F52;
  --color-terracotta-dark: #55703D;
  --color-terracotta-darker: #3F5A30;
  --color-alert: #B4693E;
  --color-alert-on-dark: #EAB88F;
  --color-cream: #FAF3E7;
  --color-cream-alt: #F1E6D3;
  --color-white: #FFFFFF;
  --color-text: #2B2620;
  --color-text-muted: #6B5F4F;
  --color-border: #E3D5BC;

  /* Tipografía */
  --font-heading: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Escala de espaciado (múltiplos de 8px) */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 40px;
  --sp-6: 48px;
  --sp-7: 64px;
  --sp-8: 80px;
  --sp-9: 96px;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(43, 38, 32, 0.06);
  --shadow-md: 0 8px 24px rgba(43, 38, 32, 0.10);
  --container: 1160px;
}

/* ---------- Reset básico ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; }

/* Iconos: sprite de img/icons.svg. Cada <symbol> define su propio fill/stroke;
   acá sólo el tamaño por defecto (cada contenedor puede ajustarlo). */
.icon {
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; }

html, body { height: 100%; }
html { overflow-x: hidden; overflow-y: visible; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-forest-dark);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.9rem; }
h3 { font-size: 1.3rem; }

p { color: var(--color-text-muted); }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-terracotta-dark);
  margin-bottom: var(--sp-1);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Foco visible accesible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-terracotta);
  outline-offset: 2px;
}

/* ---------- Layout utilitario ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-2);
}

.section {
  padding-block: var(--sp-7);
}

.section--alt {
  background: var(--color-cream-alt);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--sp-5);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn--primary {
  background: var(--color-forest);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--color-forest-dark); box-shadow: var(--shadow-md); }

.btn--whatsapp {
  background: var(--color-terracotta-dark);
  color: var(--color-white);
}
.btn--whatsapp:hover { background: var(--color-terracotta-darker); }

.btn--outline {
  background: transparent;
  color: var(--color-forest-dark);
  border: 1.5px solid var(--color-forest);
}
.btn--outline:hover { background: var(--color-forest); color: var(--color-white); }

.btn--sm {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn--block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--sp-2);
  gap: var(--sp-2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-forest-dark);
}

.brand img {
  display: block;
  height: 56px;
  width: auto;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle:hover { background: var(--color-cream-alt); }

.main-nav {
  position: fixed;
  inset: 0 0 0 30%;
  background: var(--color-cream);
  padding: var(--sp-8) var(--sp-3) var(--sp-3);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 99;
  border-left: 1px solid var(--color-border);
}

.main-nav.is-open { transform: translateX(0); }

.main-nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.main-nav__list a {
  display: block;
  padding: 14px var(--sp-1);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-forest-dark);
  border-radius: var(--radius-sm);
  min-height: 44px;
}
.main-nav__list a:hover,
.main-nav__list a[aria-current="page"] { background: var(--color-cream-alt); color: var(--color-terracotta-dark); }

.main-nav__cta { margin-top: var(--sp-3); }

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(43, 38, 32, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  z-index: 98;
}
.nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

.header-cta { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding-block: var(--sp-7) var(--sp-6);
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-alt) 100%);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}

.hero__content h1 { margin-bottom: var(--sp-2); }
.hero__lead { font-size: 1.1rem; max-width: 46ch; margin-bottom: var(--sp-3); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.hero__meta li { display: flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 18px; height: 18px; color: var(--color-forest); flex-shrink: 0; }

.hero__art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__art-frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
}

.hero__art-frame img {
  width: 80%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(43, 38, 32, 0.18));
}

/* ---------- Cards de categoría ---------- */
.cards-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
}

.cat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.cat-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-cream-alt);
  color: var(--color-forest);
}
.cat-card__icon svg { width: 30px; height: 30px; }

.cat-card h3 { margin-bottom: 4px; }
.cat-card p { font-size: 0.94rem; }
.cat-card__link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-terracotta-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.cat-card__link svg { width: 16px; height: 16px; transition: transform 0.15s ease; }
.cat-card:hover .cat-card__link svg { transform: translateX(3px); }

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

.feature {
  display: flex;
  gap: var(--sp-2);
}
.feature__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-white);
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 4px; }
.feature p { font-size: 0.92rem; }

/* ---------- CTA banda ---------- */
.cta-band {
  background: var(--color-forest);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-3);
  text-align: center;
}
.cta-band h2 { color: var(--color-white); margin-bottom: var(--sp-1); }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: var(--sp-3); max-width: 52ch; margin-inline: auto; }
.cta-band .btn--primary { background: var(--color-terracotta-dark); }
.cta-band .btn--primary:hover { background: var(--color-terracotta-darker); }

/* ---------- Catálogo ---------- */
.catalog-intro { max-width: 68ch; }

.catalog-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1);
  margin-block: var(--sp-3) var(--sp-6);
}
.catalog-nav a {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--color-forest-dark);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.catalog-nav a:hover { background: var(--color-forest); color: var(--color-white); border-color: var(--color-forest); }

.product-flavors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: var(--sp-3);
}

.flavor-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-text);
  min-height: 44px;
}

.flavor-chip__ask {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-cream-alt);
  color: var(--color-terracotta-dark);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.flavor-chip__ask svg { width: 16px; height: 16px; }
.flavor-chip__ask:hover { background: var(--color-terracotta-dark); color: var(--color-white); }

.product-cards {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: 1fr;
  margin-top: var(--sp-3);
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.product-card__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-cream-alt);
  color: var(--color-forest);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-1);
}
.product-card__icon svg { width: 34px; height: 34px; }

.product-card h3 { margin-bottom: 2px; }
.product-card__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-terracotta-dark);
}
.product-card p { font-size: 0.94rem; }
.product-card .btn { margin-top: var(--sp-1); align-self: flex-start; }

.section-note {
  margin-top: var(--sp-4);
  background: var(--color-cream-alt);
  border: 1px dashed var(--color-forest-light);
  border-radius: var(--radius);
  padding: var(--sp-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}
.section-note p { color: var(--color-text); font-weight: 500; margin: 0; }

/* ---------- Precios ---------- */
.price-callout {
  margin-top: var(--sp-3);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-3);
}
.price-callout__title {
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 4px;
}
.price-callout p { font-size: 0.9rem; margin: 0; }

.price-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: var(--sp-2);
}
.price-tier {
  background: var(--color-cream-alt);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.price-tier span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.price-tier strong {
  display: block;
  margin-top: 2px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-forest-dark);
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-forest-dark);
  margin: 2px 0 0;
}
.product-card__price small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ---------- Combos ---------- */
.combo-cards {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: var(--sp-3);
}
.combo-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.combo-card--featured {
  border-color: var(--color-forest);
  box-shadow: var(--shadow-md);
}
.combo-card__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-terracotta-dark);
  border-radius: 999px;
  padding: 4px 10px;
}
.combo-card h3 { margin-bottom: 2px; }
.combo-card__price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-forest-dark);
}
.combo-card__price del {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-left: 8px;
}
.combo-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: var(--sp-1) 0;
}
.combo-card__list li {
  display: flex;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--color-text);
}
.combo-card__list .icon {
  width: 18px; height: 18px;
  color: var(--color-terracotta);
  margin-top: 2px;
}
.combo-card .btn { margin-top: auto; align-self: flex-start; }

/* Foto arriba de mate/yerba/combo cards */
.product-card__media,
.combo-card__media {
  margin: calc(var(--sp-3) * -1) calc(var(--sp-3) * -1) 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-cream-alt);
}
.product-card__media img,
.combo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__media--placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-forest-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.product-card__media--placeholder .icon { width: 34px; height: 34px; }

/* ---------- Tarjetas con foto (mixes, ruedas, accesorios) ---------- */
.photo-cards {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: var(--sp-3);
}
.photo-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.photo-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-cream-alt);
}
.photo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.photo-card:hover .photo-card__media img { transform: scale(1.04); }
.photo-card__body {
  padding: var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.photo-card__body h3 { margin-bottom: 2px; }
.photo-card__compo {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.photo-card__price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-forest-dark);
}
.photo-card__price small {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.photo-card .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Galería de fotos (inicio) ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
}

/* ---------- Contacto ---------- */
.contact-grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}

.contact-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--sp-4);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-method:last-child { border-bottom: none; }

.contact-method__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method__icon svg { width: 24px; height: 24px; }

.contact-method__body h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-method__body p { font-size: 0.9rem; margin-bottom: 6px; }

.info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.info-list li {
  display: flex;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--color-text);
}
.info-list svg { width: 20px; height: 20px; color: var(--color-forest); flex-shrink: 0; margin-top: 2px; }

.pending {
  color: var(--color-alert);
  font-style: italic;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--sp-2);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-item h3 { font-size: 1rem; margin-bottom: 6px; }
.faq-item p { font-size: 0.92rem; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-forest-dark);
  color: rgba(255,255,255,0.82);
  margin-top: var(--sp-7);
}
.site-footer a { color: rgba(255,255,255,0.82); }
.site-footer a:hover { color: var(--color-white); }

.footer-grid {
  display: grid;
  gap: var(--sp-4);
  padding-block: var(--sp-6);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: var(--sp-2);
}

.footer-brand + p,
.footer-col p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .pending {
  color: var(--color-alert-on-dark);
}

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 0.92rem; display: flex; align-items: flex-start; gap: 8px; }
.footer-col svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-block: var(--sp-2);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

/* ---------- Botón flotante de WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: var(--sp-2);
  right: var(--sp-2);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-terracotta-dark);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 90;
  transition: transform 0.15s ease, background-color 0.15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); background: var(--color-terracotta-darker); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ==========================================================================
   Tablet ≥768px
   ========================================================================== */
@media (min-width: 768px) {
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2.2rem; }

  .section { padding-block: var(--sp-9); }

  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    inset: auto;
    transform: none;
    background: transparent;
    padding: 0;
    border-left: none;
  }
  .main-nav__list { flex-direction: row; align-items: center; gap: var(--sp-3); }
  .main-nav__list a { padding: 8px 4px; min-height: auto; }
  .main-nav__list a:hover,
  .main-nav__list a[aria-current="page"] { background: none; color: var(--color-terracotta-dark); }
  .main-nav__cta { display: none; }
  .nav-backdrop { display: none; }
  .header-cta { display: inline-flex; }

  .hero__grid { grid-template-columns: 1.1fr 0.9fr; }

  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .product-flavors { grid-template-columns: repeat(3, 1fr); }
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .contact-grid { grid-template-columns: 1.1fr 0.9fr; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

/* ==========================================================================
   Desktop ≥1200px
   ========================================================================== */
@media (min-width: 1200px) {
  .product-flavors { grid-template-columns: repeat(4, 1fr); }
  .cards-grid { gap: var(--sp-4); }
  .gallery { grid-template-columns: repeat(4, 1fr); }
}
