/* ==========================================================================
   MitterSpa — Marketing site
   Implements the "Mitter Spa Design System" (claude.ai/design)
   Foundations: warm cream paper, lawn-green hero ramp, lime new-growth accent,
   green-tinted ink. Bricolage Grotesque (display) / Hanken Grotesk (body) /
   JetBrains Mono (specs & prices).
   ========================================================================== */

/* ----------------------------- Design tokens ---------------------------- */
:root {
  /* Brand greens — the hero ramp */
  --green-500: #3A9130;   /* primary lawn green */
  --green-600: #327E29;
  --green-700: #275f20;
  --green-800: #1B4719;   /* deep forest */
  --green-900: #122f12;   /* darkest band */

  /* Accent — lime "new growth" */
  --accent: #A9DB3B;
  --accent-deep: #8FBE2A;

  /* Earth / soil — warmth & grounding */
  --earth-700: #6F5640;
  --earth-500: #9A7B5C;
  --earth-100: #EFE6DA;

  /* Sky / water — used rarely (freshness, riego) */
  --sky-500: #4FA3C4;

  /* Neutrals — warm cream paper, green-tinted ink (no pure grey/black/white) */
  --cream-50:  #FBF9F3;
  --cream-100: #F4F0E6;
  --cream-200: #ECE6D7;
  --ink-900: #13231A;
  --ink-700: #2C3D33;
  --ink-500: #5A6B60;

  --whatsapp: #25D366;
  --whatsapp-deep: #1ebe5a;

  /* Semantic roles — reference these in layout */
  --bg: var(--cream-50);
  --surface: #FFFFFF;
  --surface-card: #FFFEFB;
  --surface-brand-soft: #EDF5E4;
  --text-body: var(--ink-700);
  --text-strong: var(--ink-900);
  --text-muted: var(--ink-500);
  --border: #E7E0D2;          /* warm sand */
  --border-brand: #BFD9A6;
  --focus-ring: rgba(58,145,48,.45);

  /* Type */
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --tracking-caps: .14em;

  /* Spacing — 4px base */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;  --space-4: 16px;
  --space-5: 24px;  --space-6: 32px;  --space-7: 48px;  --space-8: 64px;
  --space-9: 96px;  --space-10: 128px;
  --container-max: 1200px;

  /* Radii — generous, friendly (turf rolls have no sharp edges) */
  --radius-sm: 10px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-2xl: 36px;
  --radius-pill: 999px;

  /* Shadows — soft, low, warm/green-tinted (never harsh black) */
  --shadow-sm: 0 1px 2px rgba(19,35,26,.06), 0 2px 8px -4px rgba(27,71,25,.10);
  --shadow-md: 0 6px 24px -10px rgba(27,71,25,.20);
  --shadow-lg: 0 22px 56px -20px rgba(27,71,25,.28);
  --shadow-brand: 0 12px 28px -10px rgba(58,145,48,.50);

  /* Motion — quick & natural */
  --dur-fast: 120ms;
  --dur-base: 220ms;
  --ease-out: cubic-bezier(.2,.7,.2,1);
}

/* ------------------------------- Reset ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font: inherit; }
:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; border-radius: 6px; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; }
.skip-link:focus { position: fixed; left: 16px; top: 16px; background: #fff; color: var(--green-800); padding: 10px 16px; border-radius: 10px; box-shadow: var(--shadow-md); font-weight: 700; }

/* ----------------------------- Typography ------------------------------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); letter-spacing: -.01em; }
p  { font-size: 1.0625rem; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--green-600);
}
.mono { font-family: var(--font-mono); font-feature-settings: "tnum" 1; }

/* ------------------------------- Layout --------------------------------- */
.container { width: 100%; max-width: var(--container-max); margin-inline: auto; padding-inline: var(--space-6); }
section { padding-block: clamp(var(--space-8), 8vw, var(--space-10)); }
.section-head { max-width: 60ch; margin-bottom: var(--space-7); }
.section-head p { margin-top: var(--space-3); color: var(--text-muted); font-size: 1.125rem; }

/* ------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.btn:active { transform: translateY(1px) scale(.985); }
.btn--primary { background: var(--green-600); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--green-900); }
.btn--accent:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--green-700); box-shadow: inset 0 0 0 1.5px var(--border-brand); }
.btn--ghost:hover { background: var(--surface-brand-soft); }
.btn--whatsapp { background: var(--whatsapp); color: var(--green-900); box-shadow: 0 12px 26px -12px rgba(37,211,102,.7); }
.btn--whatsapp:hover { background: var(--whatsapp-deep); transform: translateY(-2px); }
.btn--lg { padding: 17px 32px; font-size: 1.0625rem; }
.btn svg { width: 20px; height: 20px; }

/* ------------------------------- Header --------------------------------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,249,243,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: var(--space-5); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo { height: 46px; width: auto; display: block; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: -.03em; color: var(--green-800); }
.brand__name b { color: var(--green-500); font-weight: 800; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 9px 14px; border-radius: var(--radius-pill); font-weight: 500; color: var(--ink-700); transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out); }
.nav a:hover { background: var(--surface-brand-soft); color: var(--green-700); }
.header__cta { display: flex; align-items: center; gap: var(--space-3); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--green-800); width: 46px; height: 46px; border-radius: var(--radius-pill); align-items: center; justify-content: center; transition: background var(--dur-base) var(--ease-out); }
.nav-toggle:hover { background: var(--surface-brand-soft); }
.nav-toggle:active { transform: scale(.94); }

/* -------------------------------- Hero ---------------------------------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(var(--space-7), 6vw, var(--space-9)); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 85% 0%, rgba(169,219,59,.18), transparent 60%),
    radial-gradient(50% 60% at 0% 100%, rgba(58,145,48,.10), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(var(--space-6), 5vw, var(--space-9)); align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: var(--space-4); }
.hero h1 { margin-bottom: var(--space-5); }
.hero h1 .accent-word { color: var(--green-500); }
.hero__sub { font-size: 1.2rem; color: var(--ink-700); max-width: 46ch; margin-bottom: var(--space-6); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6); }
.hero__benes { list-style: none; padding: 0; margin: 0 0 var(--space-6); display: flex; flex-wrap: wrap; gap: 10px 18px; }
.hero__benes li { display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--green-800); font-size: .98rem; }
.hero__benes li::before { content: "✓"; color: var(--green-500); font-weight: 800; }

.hero__media { position: relative; }
.hero__photo {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.hero__chip {
  position: absolute; left: -14px; bottom: 26px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero__chip .num { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--green-600); line-height: 1; }
.hero__chip .lbl { font-size: .82rem; color: var(--text-muted); line-height: 1.2; }

/* ----------------------------- Proof strip ------------------------------ */
/* Proof strip — clonado del Design System (Hero ProofStrip + componente Stat) */
.proof-section { padding-block: 0; }
.proof {
  width: 100%; margin: 4rem auto 0; padding: var(--space-6);
  background: var(--green-800);
  background-image: radial-gradient(60% 100% at 50% 0%, rgba(169,219,59,0.12), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5);
}
.proof > * { position: relative; }
.proof > *:not(:last-child)::after { content: ""; position: absolute; right: calc(var(--space-5) / -2); top: 15%; height: 70%; width: 1px; background: rgba(255,255,255,0.14); }
.ms-stat { display: flex; flex-direction: column; gap: 2px; font-family: var(--font-body); }
.ms-stat--center { align-items: center; text-align: center; }
.ms-stat__value { font-family: var(--font-display); font-weight: 800; line-height: 1; letter-spacing: -0.02em; font-size: clamp(1.9rem, 5vw, 2.25rem); color: var(--green-800); }
.ms-stat--on-dark .ms-stat__value { color: var(--accent); }
.ms-stat__label { font-size: .875rem; font-weight: 600; color: var(--text-strong); }
.ms-stat--on-dark .ms-stat__label { color: #fff; }
@media (max-width: 760px) { .proof { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); } .proof > *:nth-child(2n)::after { display: none; } }

/* Showcase band "Del predio en Temuco" — clonado del Design System (Sections.jsx → Showcase) */
.showcase { position: relative; height: 460px; overflow: hidden; }
.showcase__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showcase__overlay { position: absolute; inset: 0; display: flex; align-items: flex-end; padding-bottom: var(--space-8); background: linear-gradient(90deg, rgba(17,48,15,0.86), rgba(17,48,15,0.45) 55%, rgba(17,48,15,0.1)); }
.showcase__overlay .container { width: 100%; }
.eyebrow--light { color: var(--accent); }
.showcase__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 6vw, 3.875rem); color: #fff; letter-spacing: -0.02em; line-height: 1.05; margin: 10px 0 0; max-width: 18ch; text-wrap: balance; }
.showcase__text { color: rgba(255,255,255,0.88); font-size: 1.125rem; margin: 14px 0 0; max-width: 50ch; line-height: 1.45; }

/* Video */
.video__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(var(--space-6), 5vw, var(--space-8)); align-items: center; }
.video__intro p { color: var(--text-muted); font-size: 1.0625rem; margin: var(--space-3) 0 var(--space-5); max-width: 46ch; line-height: 1.5; }
.video__player { display: flex; justify-content: center; }
.video__frame { position: relative; width: 100%; max-width: 300px; aspect-ratio: 9 / 16; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
@media (max-width: 760px) { .video__grid { grid-template-columns: 1fr; gap: var(--space-5); } }
@media (max-width: 600px) { .showcase { height: 420px; } }

/* Ubicación "Visítanos en el predio" — clonado del Design System (Extras.jsx → Location) */
.loc { padding: 5rem 0; background: var(--cream-100); }
.loc__grid { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-6); display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.loc__info .section-title { font-size: clamp(2rem, 4.5vw, 3rem); margin: 8px 0 var(--space-4); }
.loc__pill { display: inline-flex; align-items: center; gap: 7px; background: var(--surface-brand-soft); color: var(--green-700); font-size: .875rem; font-weight: 700; padding: 7px 14px; border-radius: var(--radius-pill); margin-bottom: var(--space-5); }
.loc__rows { list-style: none; margin: 0 0 var(--space-6); padding: 0; display: flex; flex-direction: column; gap: var(--space-4); }
.loc__rows li { display: flex; align-items: flex-start; gap: 12px; }
.loc__rows svg { color: var(--green-500); flex: none; margin-top: 2px; }
.loc__rows strong { display: block; font-size: 1rem; color: var(--text-strong); }
.loc__rows span { font-size: .875rem; color: var(--text-muted); }
.loc__map { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.loc__map iframe { display: block; width: 100%; height: 420px; border: 0; }
@media (max-width: 820px) { .loc__grid { grid-template-columns: 1fr; gap: var(--space-6); } }

/* Instagram · feed de comunidad */
.ig { padding-block: clamp(var(--space-8), 8vw, var(--space-9)); }
.ig__head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--space-5); flex-wrap: wrap; margin-bottom: var(--space-6); }
.ig__head .section-title { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.ig__lead { color: var(--text-muted); margin-top: var(--space-2); font-size: 1.05rem; }
.ig__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-3); }
.ig__item { position: relative; aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.ig__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-base) var(--ease-out); }
.ig__item:hover img { transform: scale(1.06); }
.ig__ov { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(27,71,25,0); transition: background var(--dur-base) var(--ease-out); }
.ig__ov svg { opacity: 0; transform: scale(.8); transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out); }
.ig__item:hover .ig__ov { background: rgba(27,71,25,.5); }
.ig__item:hover .ig__ov svg { opacity: 1; transform: scale(1); }
@media (max-width: 900px) { .ig__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .ig__grid { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------- Quote calculator --------------------------- */
.quote { background: var(--surface-brand-soft); }
.quote__card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-2xl); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr 1fr; overflow: hidden;
}
.quote__form { padding: clamp(var(--space-6), 4vw, var(--space-8)); }
.quote__form label { display: block; font-weight: 600; color: var(--text-strong); margin-bottom: var(--space-2); }
.field {
  display: flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 4px 6px 4px 16px; background: #fff;
  transition: border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.field:focus-within { border-color: var(--green-500); box-shadow: 0 0 0 4px var(--focus-ring); }
.field input { border: none; outline: none; width: 100%; padding: 12px 0; font-size: 1.25rem; font-family: var(--font-mono); color: var(--text-strong); background: transparent; }
.field .unit { font-family: var(--font-mono); color: var(--text-muted); padding-right: 12px; font-size: 1rem; }
.quote__hint { margin-top: var(--space-3); font-size: .9rem; color: var(--text-muted); }
.quote__form .btn--whatsapp { margin-top: var(--space-5); width: 100%; justify-content: center; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--space-4); }
.chip { border: 1px solid var(--border-brand); background: #fff; color: var(--green-700); border-radius: var(--radius-pill); padding: 6px 14px; font-size: .85rem; font-weight: 600; font-family: var(--font-mono); transition: background var(--dur-fast) var(--ease-out); }
.chip:hover { background: var(--surface-brand-soft); }

.quote__result {
  background: linear-gradient(160deg, var(--green-700), var(--green-900));
  color: #eaf3e4; padding: clamp(var(--space-6), 4vw, var(--space-8));
  display: flex; flex-direction: column; justify-content: center; gap: var(--space-3);
}
.quote__result .eyebrow { color: var(--accent); }

/* ------------------------------- Pledge --------------------------------- */
.pledge__head h2 { max-width: 16ch; }
.pledge__head h2 em { font-style: normal; color: var(--green-500); }
.pledge__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); margin-top: var(--space-7); }
.pledge__item { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--space-6); box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.pledge__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.pledge__emoji { font-size: 1.8rem; line-height: 1; }
.pledge__item h3 { margin: var(--space-4) 0 var(--space-2); }
.pledge__item p { color: var(--text-muted); font-size: 1rem; }

/* ------------------------------ Products -------------------------------- */
.products__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-6); }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 16/10; position: relative; background: linear-gradient(135deg, var(--green-600), var(--green-800)); display: flex; align-items: flex-end; padding: var(--space-5); }
.card__media--turf { background: linear-gradient(135deg, #6fae4e, #1B4719); }
.card__media--fert { background: linear-gradient(135deg, var(--earth-500), var(--earth-700)); }
.card__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgba(19,35,26,.5)); }
.card__media .tag { position: relative; z-index: 2; background: rgba(255,255,255,.92); color: var(--green-800); font-weight: 700; font-size: .78rem; padding: 6px 14px; border-radius: var(--radius-pill); }
.card__body { padding: var(--space-6); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.card__body h3 { font-size: 1.45rem; }
.card__specs { list-style: none; padding: 0; display: grid; gap: 10px; margin-top: var(--space-2); }
.card__specs li { display: flex; gap: 10px; align-items: flex-start; font-size: .98rem; color: var(--ink-700); }
.card__specs li::before { content: ""; flex: none; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); margin-top: 8px; }
.card__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-5) var(--space-6); border-top: 1px solid var(--border); margin-top: auto; }
.price { display: flex; flex-direction: column; }
.price .amount { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--green-700); line-height: 1; }
.price .per { font-family: var(--font-mono); font-size: .82rem; color: var(--text-muted); }

/* ----------------------------- Pricing band ----------------------------- */
.pricing { background: var(--green-800); color: #eaf3e4; }
.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-6), 5vw, var(--space-8)); align-items: center; }
.pricing h2 { color: #fff; }
.pricing__list { list-style: none; padding: 0; margin: var(--space-5) 0 0; display: grid; gap: var(--space-4); }
.pricing__list li { display: flex; align-items: baseline; justify-content: space-between; gap: var(--space-4); padding-bottom: var(--space-4); border-bottom: 1px solid rgba(255,255,255,.14); }
.pricing__list .name { color: #eaf3e4; }
.pricing__list .name b { color: #fff; font-weight: 600; }
.pricing__list .val { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--accent); white-space: nowrap; }
.pricing__aside { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-2xl); padding: clamp(var(--space-6), 4vw, var(--space-7)); }
.pay { display: flex; flex-wrap: wrap; gap: 8px; margin: var(--space-4) 0 var(--space-5); }
.pay span { background: #fff; color: var(--ink-700); border-radius: 8px; padding: 6px 12px; font-size: .8rem; font-weight: 700; }
.pricing__aside .small { font-size: .9rem; color: #c7dcbb; }

/* ------------------------------ Gallery --------------------------------- */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-base) var(--ease-out); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px 18px 14px; color: #fff; font-size: .92rem; font-weight: 600; background: linear-gradient(transparent, rgba(19,35,26,.78)); }
@media (max-width: 900px) { .gallery__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .gallery__grid { grid-template-columns: 1fr; } .gallery__item--wide { grid-column: span 1; } }

/* ------------------------ Cuidados / pasos ------------------------------ */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.step { display: flex; gap: var(--space-4); align-items: flex-start; background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--space-5) var(--space-6); box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.step__n { flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--surface-brand-soft); color: var(--green-700); font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.step__body h3 { font-size: 1.12rem; margin-bottom: 6px; }
.step__body p { font-size: .95rem; color: var(--text-muted); }

/* ----------------------------- Fertilización ---------------------------- */
.fert { background: var(--surface-brand-soft); }
.fert__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(var(--space-6), 5vw, var(--space-8)); align-items: center; }
.fert__intro p { color: var(--text-body); font-size: 1.125rem; margin: var(--space-4) 0 var(--space-6); }
.fert__tips { display: grid; gap: var(--space-4); }
.tip { display: flex; gap: var(--space-4); align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-5); box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.tip:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.tip__ic { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--surface-brand-soft); color: var(--green-600); display: grid; place-items: center; }
.tip__ic svg { width: 24px; height: 24px; }
.tip h3 { font-size: 1.05rem; margin-bottom: 4px; }
.tip p { font-size: .95rem; color: var(--text-body); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } .fert__grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* ------------------------------- FAQ ------------------------------------ */
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.faq__item { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-5) var(--space-6); box-shadow: var(--shadow-sm); transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.faq__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.faq__item h3 { font-size: 1.08rem; margin-bottom: 8px; display: flex; gap: 10px; align-items: center; }
.faq__item h3::before { content: "?"; flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--green-500); color: #fff; font-size: .95rem; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.faq__item p { font-size: .96rem; color: var(--text-muted); }

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

/* ------------------------- Polish / extras ------------------------------ */
.chip.is-active { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.no-js .reveal { opacity: 1; transform: none; }
@media (max-width: 540px) { .chip { padding: 11px 16px; font-size: .9rem; } .chips { gap: 10px; } .hero__chip { left: 12px; bottom: 12px; padding: 10px 14px; } .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; } body { padding-bottom: 76px; } }

/* ---------------------- Cotizador mejorado ------------------------------ */
.quote__fields { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field--select { padding: 0; }
.field--select select { border: none; outline: none; width: 100%; padding: 13px 16px; font-size: 1.05rem; font-family: var(--font-body); color: var(--text-strong); background: transparent; cursor: pointer; }
.check { display: flex; align-items: center; gap: 10px; margin-top: var(--space-4); cursor: pointer; font-weight: 600; color: var(--text-strong); }
.check input { width: 20px; height: 20px; accent-color: var(--green-600); flex: none; }
.check__sub { color: var(--text-muted); font-weight: 400; font-size: .9rem; }
.quote__items { list-style: none; padding: 0; margin: 0 0 var(--space-4); }
.quote__items li { display: flex; justify-content: space-between; gap: var(--space-4); align-items: baseline; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.16); color: #eaf3e4; }
.quote__items li[hidden] { display: none !important; }
.quote__items li .mono { color: #fff; font-weight: 600; }
.quote__items li:last-child { border-bottom: none; }
.quote__items-sub, .quote__items-sub .mono { color: #c7dcbb !important; font-size: .92rem; border-bottom: none !important; }
.eyebrow--accent { color: var(--accent); }
.quote__result .quote__price { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 6vw, 3.4rem); color: var(--accent); line-height: 1; margin-bottom: var(--space-4); }
.quote__result .btn--whatsapp { width: 100%; justify-content: center; }
.quote__phone { text-align: center; margin-top: 10px; font-family: var(--font-mono); font-size: .95rem; }
.quote__phone a { color: #c7dcbb; }
.quote__phone a:hover { color: #fff; }
.quote__alt { text-align: center; margin-top: 6px; }
.quote__alt a { color: #c7dcbb; font-size: .9rem; text-decoration: underline; }
.quote__alt a:hover { color: #fff; }

/* ------------------------------ Top bar --------------------------------- */
.topbar { background: var(--green-900); color: #cfe3c2; font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); height: 38px; }
.topbar__group { display: flex; align-items: center; gap: var(--space-5); min-width: 0; }
.topbar__item { display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.topbar__item b { color: #fff; font-weight: 600; }
.topbar .accent { color: var(--accent); }
.topbar a:hover { color: var(--accent); }
.topbar__ig { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: var(--green-900); font-weight: 700; padding: 4px 12px; border-radius: var(--radius-pill); transition: background var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
.topbar__ig:hover { background: #fff; color: var(--green-900); }
.topbar__ig svg { width: 15px; height: 15px; }
@media (max-width: 760px) { .topbar__hide { display: none; } .topbar__inner { justify-content: center; gap: var(--space-3); height: auto; padding-block: 6px; flex-wrap: wrap; } }
@media (max-width: 540px) { .quote__fields { grid-template-columns: 1fr; } }

/* ------------------------------ Reviews --------------------------------- */
.reviews__top { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-5); margin-bottom: var(--space-7); }
.rating { display: flex; align-items: center; gap: var(--space-3); }
.rating .score { font-family: var(--font-display); font-weight: 800; font-size: 3rem; color: var(--green-700); line-height: 1; }
.stars { color: var(--green-600); font-size: 1.3rem; letter-spacing: 2px; }
.rating .count { font-size: .9rem; color: var(--text-muted); }
.reviews__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.review { background: var(--surface-card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: var(--space-6); box-shadow: var(--shadow-sm); }
.review p { font-size: 1rem; color: var(--ink-700); }
.review .who { margin-top: var(--space-4); font-weight: 700; color: var(--text-strong); font-size: .92rem; }
.review .where { color: var(--text-muted); font-size: .82rem; }


/* ------------------------------- Footer --------------------------------- */
.footer { background: var(--green-900); color: #bcd1b0; padding-block: var(--space-8) var(--space-6); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-6); }
.footer .brand__name { color: #fff; }
.footer .brand__name b { color: var(--accent); }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: var(--tracking-caps); margin-bottom: var(--space-4); }
.footer ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer a:hover { color: var(--accent); }
.footer__about p { margin: var(--space-4) 0; max-width: 36ch; font-size: .95rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,.12); color: #eaf3e4; display: grid; place-items: center; transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
.socials a:hover { background: var(--accent); color: var(--green-900); transform: translateY(-2px); }
.socials svg { width: 21px; height: 21px; }
.footer__bar { margin-top: var(--space-7); padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-3); font-size: .85rem; color: #9bb38f; }

/* ------------------------- Floating WhatsApp ---------------------------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; background: var(--whatsapp); color: var(--green-900); display: grid; place-items: center; box-shadow: 0 14px 30px -8px rgba(37,211,102,.6); transition: transform var(--dur-base) var(--ease-out); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* ------------------------------ Reveal ---------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ----------------------------- Responsive ------------------------------- */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__photo { height: auto; aspect-ratio: 16/10; }
  .quote__card { grid-template-columns: 1fr; }
  .products__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .proof { grid-template-columns: 1fr 1fr; gap: var(--space-5); }
  .pledge__grid, .reviews__cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-flex; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; max-height: calc(100dvh - 72px); overflow-y: auto; flex-direction: column; align-items: stretch; gap: 4px; background: rgba(251,249,243,.98); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--border); padding: var(--space-3) var(--space-5) var(--space-5); box-shadow: var(--shadow-md); display: none; }
  .nav.open { display: flex; }
  .nav a { padding: 14px 14px; border-radius: var(--radius-sm); font-size: 1.05rem; }
}
@media (max-width: 540px) {
  .container { padding-inline: var(--space-5); }
  .header__cta .btn span { display: none; }
}
