/* =========================================================
   Viktoria Ventanas · Variante C "Hogar cálido"
   Cream + terracota + verde bosque · Fraunces + Figtree
   ========================================================= */

:root {
  --cream:      oklch(0.955 0.018 78);
  --cream-deep: oklch(0.935 0.022 76);
  --sand:       oklch(0.915 0.025 75);
  --sand-deep:  oklch(0.885 0.030 73);
  --ink:        oklch(0.28 0.022 45);
  --ink-soft:   oklch(0.34 0.022 47);
  --muted:      oklch(0.50 0.022 50);
  --clay:       oklch(0.60 0.13 45);
  --clay-deep:  oklch(0.52 0.135 42);
  --clay-soft:  oklch(0.90 0.045 55);
  --forest:     oklch(0.42 0.065 150);
  --forest-deep:oklch(0.34 0.060 150);
  --hairline:   oklch(0.84 0.02 72);
  --white-warm: oklch(0.99 0.008 80);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 30px;
  --r-xl: 44px;

  --shadow-soft: 0 18px 40px -28px oklch(0.40 0.05 50 / 0.45);
  --shadow-card: 0 22px 50px -34px oklch(0.40 0.06 48 / 0.55);
  --shadow-lift: 0 30px 70px -40px oklch(0.38 0.07 46 / 0.6);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

p { margin: 0 0 1em; }

.wrap { width: min(100% - 2.4rem, var(--maxw)); margin-inline: auto; }

.kicker {
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--clay);
  border-radius: 2px;
}

.eyebrow-green { color: var(--forest); }
.eyebrow-green::before { background: var(--forest); }

.lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 62ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Figtree", sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.85rem 1.55rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease), color 0.4s var(--ease);
}
.btn-primary {
  background: var(--clay);
  color: var(--white-warm);
  box-shadow: 0 14px 30px -16px var(--clay-deep);
}
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-ghost:hover { border-color: var(--clay); color: var(--clay-deep); transform: translateY(-2px); }
.btn-phone { gap: 0.5rem; }
.btn-phone svg { width: 17px; height: 17px; }

:focus-visible { outline: 3px solid var(--clay); outline-offset: 3px; border-radius: 6px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(0.955 0.018 78 / 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { height: 34px; width: auto; }
.brand .brand-name {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0; padding: 0;
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-links a {
  position: relative;
  color: var(--ink-soft);
  padding-block: 0.3rem;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--clay);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 0.8rem; }
.nav-phone {
  font-weight: 600;
  color: var(--clay-deep);
  white-space: nowrap;
}
.nav-toggle { display: none; }
.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero { padding-block: clamp(2.2rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4.5rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.5rem);
  font-weight: 400;
  margin-block: 1.2rem 1.1rem;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--clay-deep);
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.hero-trust {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-trust strong { color: var(--ink); font-weight: 600; font-family: "Fraunces", serif; }

.hero-media { position: relative; padding-bottom: 38px; }
.hero-media .frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 7px solid var(--white-warm);
}
.hero-media .frame img { width: 100%; height: clamp(380px, 46vw, 560px); object-fit: cover; }
.hero-badge {
  position: absolute;
  left: clamp(1.2rem, 4vw, 2.6rem);
  bottom: 0;
  background: var(--white-warm);
  border-radius: var(--r-md);
  padding: 1.05rem 1.35rem;
  box-shadow: 0 26px 55px -30px oklch(0.38 0.07 46 / 0.6);
  border: 1px solid oklch(0.92 0.02 72);
  display: flex;
  align-items: center;
  gap: 0.95rem;
  max-width: 320px;
}
.hero-badge .mark {
  width: 46px; height: 46px;
  border-radius: 13px;
  background: var(--clay-soft);
  color: var(--clay-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-badge .mark svg { width: 23px; height: 23px; }
.hero-badge b { display: block; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.04rem; line-height: 1.2; }
.hero-badge small { display: block; color: var(--muted); font-size: 0.82rem; line-height: 1.45; margin-top: 0.15rem; }

/* ---------- Section primitives ---------- */
section { position: relative; }
.section-pad { padding-block: clamp(3.4rem, 7vw, 6rem); }
.band-sand { background: var(--sand); }
.band-cream-deep { background: var(--cream-deep); }
.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin-block: 0.7rem 0.9rem; font-weight: 400; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }

/* ---------- Sobre nosotros ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.about-photo img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.about-copy h2 { font-size: clamp(2rem, 4vw, 3rem); margin-block: 0.7rem 1.1rem; font-weight: 400; }
.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem 2.6rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}
.about-stats div b {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--clay-deep);
  line-height: 1;
}
.about-stats div span { font-size: 0.88rem; color: var(--muted); }

/* ---------- Ventajas (editorial: lead benefit + warm numbered list) ---------- */
.mk { display: grid; place-items: center; flex-shrink: 0; }
.mk svg { width: 24px; height: 24px; }
.mk.green { background: oklch(0.88 0.04 150); color: var(--forest-deep); }
.mk.clay  { background: var(--clay-soft); color: var(--clay-deep); }
.mk.sand  { background: var(--sand-deep); color: var(--ink-soft); }

.ventajas-editorial {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: stretch;
}

/* Lead benefit (large, with photo) */
.ventaja-lead {
  background: var(--white-warm);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid oklch(0.91 0.02 72);
  display: flex;
  flex-direction: column;
}
.ventaja-lead .lead-photo { position: relative; }
.ventaja-lead .lead-photo img {
  width: 100%;
  height: clamp(220px, 24vw, 300px);
  object-fit: cover;
}
.ventaja-lead .lead-copy { padding: clamp(1.6rem, 2.6vw, 2.2rem); position: relative; }
.ventaja-lead .mk {
  width: 52px; height: 52px; border-radius: 15px;
  background: var(--clay-soft); color: var(--clay-deep);
  position: absolute;
  top: 0; left: clamp(1.6rem, 2.6vw, 2.2rem);
  transform: translateY(-50%);
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--white-warm);
}
.ventaja-lead .lead-num {
  display: inline-block;
  margin-top: 1rem;
  font-family: "Figtree", sans-serif;
  font-weight: 600; font-size: 0.74rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay-deep);
}
.ventaja-lead h3 { font-size: clamp(1.5rem, 2.6vw, 1.95rem); font-weight: 500; margin-block: 0.55rem 0.7rem; }
.ventaja-lead p { color: var(--muted); margin: 0; font-size: 1rem; }
.lead-figures {
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem;
  margin-top: 1.5rem; padding-top: 1.4rem;
  border-top: 1px solid var(--hairline);
}
.lead-figures b {
  display: block; font-family: "Fraunces", serif;
  font-size: 1.7rem; font-weight: 500; color: var(--forest); line-height: 1;
}
.lead-figures span { font-size: 0.85rem; color: var(--muted); }

/* Supporting benefits (warm numbered list, not cards) */
.ventajas-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 1rem;
}
.ventajas-list li {
  background: var(--white-warm);
  border-radius: var(--r-md);
  border: 1px solid oklch(0.92 0.02 72);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.5rem;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 0 1.1rem;
  flex: 1;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.ventajas-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.ventajas-list .vl-num {
  font-family: "Fraunces", serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--clay-soft);
  line-height: 1; align-self: center;
}
.ventajas-list .mk { width: 44px; height: 44px; border-radius: 13px; align-self: center; }
.ventajas-list h4 { font-family: "Fraunces", serif; font-size: 1.22rem; font-weight: 500; margin: 0 0 0.25rem; }
.ventajas-list p { color: var(--muted); margin: 0; font-size: 0.94rem; }

/* ---------- Asturias nature band ---------- */
.asturias {
  position: relative;
  overflow: hidden;
  color: var(--white-warm);
  border-radius: 0;
}
.asturias .bg { position: absolute; inset: 0; }
.asturias .bg img { width: 100%; height: 100%; object-fit: cover; }
.asturias .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg,
    oklch(0.30 0.060 150 / 0.92) 0%,
    oklch(0.34 0.060 150 / 0.78) 45%,
    oklch(0.38 0.055 150 / 0.45) 100%);
}
.asturias .content {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.asturias .inner { max-width: 56ch; }
.asturias .kicker { color: oklch(0.92 0.04 130); }
.asturias .kicker::before { background: oklch(0.92 0.04 130); }
.asturias h2 { color: var(--white-warm); font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 400; margin-block: 0.8rem 1rem; }
.asturias h2 em { font-style: italic; color: oklch(0.93 0.05 90); }
.asturias p { color: oklch(0.93 0.015 100); font-size: 1.1rem; }
.asturias .points { display: flex; flex-wrap: wrap; gap: 1rem 2rem; margin-top: 1.5rem; list-style: none; padding: 0; }
.asturias .points li { display: flex; align-items: center; gap: 0.6rem; font-weight: 500; }
.asturias .points svg { width: 18px; height: 18px; color: oklch(0.9 0.06 90); }

/* ---------- Featured systems ---------- */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.system-card {
  background: var(--white-warm);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid oklch(0.91 0.02 72);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.system-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.system-card .pic {
  background: linear-gradient(160deg, var(--cream) 0%, var(--sand) 100%);
  padding: 1.6rem;
  display: grid; place-items: center;
  height: 210px;
}
.system-card .pic img { max-height: 178px; width: auto; filter: drop-shadow(0 16px 22px oklch(0.4 0.04 50 / 0.22)); }
.system-card .body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.system-card .tag {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 0.5rem;
}
.system-card h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.4rem; }
.system-card .one { color: var(--muted); font-size: 0.96rem; margin-bottom: 1.1rem; }
.system-card .specs { list-style: none; margin: 0 0 1.3rem; padding: 0; display: grid; gap: 0.45rem; font-size: 0.9rem; }
.system-card .specs li { display: flex; align-items: baseline; gap: 0.6rem; color: var(--ink-soft); }
.system-card .specs li b { color: var(--clay-deep); font-family: "Fraunces", serif; font-weight: 600; }
.system-card .foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.1rem; border-top: 1px solid var(--hairline);
}
.system-card .price { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.15rem; }
.system-card .price small { display: block; font-family: "Figtree", sans-serif; font-weight: 500; font-size: 0.72rem; color: var(--muted); }
.see { color: var(--clay-deep); font-weight: 600; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 0.35rem; }
.see svg { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.system-card:hover .see svg, .see:hover svg { transform: translateX(4px); }
.systems-foot { margin-top: 2.2rem; text-align: center; }

/* ---------- Colores / acabados ---------- */
.colors-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.swatch { text-align: center; }
.swatch .chip {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 4px solid var(--white-warm);
  transition: transform 0.45s var(--ease);
}
.swatch:hover .chip { transform: translateY(-4px) scale(1.02); }
.swatch .chip img { width: 100%; height: 100%; object-fit: cover; }
.swatch span { display: block; margin-top: 0.6rem; font-size: 0.82rem; color: var(--muted); font-weight: 500; }

/* ---------- Partners trust band ---------- */
.partners { text-align: center; }
.partners .logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem 1.2rem;
  margin-top: 2rem;
}
.partner-pill {
  background: var(--white-warm);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  box-shadow: var(--shadow-soft);
}
.partner-pill .lbl { font-family: "Fraunces", serif; font-size: 1.05rem; }
.partner-pill .sub { font-family: "Figtree", sans-serif; font-weight: 500; font-size: 0.82rem; color: var(--muted); }
.partner-pill svg { width: 20px; height: 20px; color: var(--forest); }

/* ---------- Price tables ---------- */
.prices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.price-table {
  background: var(--white-warm);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid oklch(0.91 0.02 72);
}
.price-table.wide { grid-column: 1 / -1; }
.price-table .ph {
  background: var(--sand);
  padding: 1.2rem 1.6rem;
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--hairline);
}
.price-table .ph h3 { font-size: 1.3rem; font-weight: 500; }
.price-table .ph small { color: var(--muted); font-size: 0.85rem; white-space: nowrap; }
.price-table table { width: 100%; border-collapse: collapse; }
.price-table td, .price-table th { padding: 0.9rem 1.6rem; text-align: left; font-size: 0.97rem; }
.price-table thead th {
  font-family: "Figtree", sans-serif; font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted);
  padding-block: 0.8rem;
}
.price-table tbody tr { border-top: 1px solid var(--hairline); transition: background 0.3s var(--ease); }
.price-table tbody tr:hover { background: var(--cream); }
.price-table .sys { font-weight: 500; color: var(--ink); }
.price-table .from { font-family: "Fraunces", serif; font-weight: 600; color: var(--clay-deep); text-align: right; white-space: nowrap; }
.price-note { margin-top: 1.2rem; font-size: 0.85rem; color: var(--muted); text-align: center; }

/* ---------- Contacto ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
.contact-copy h2 { font-size: clamp(2rem, 4vw, 2.9rem); font-weight: 400; margin-block: 0.7rem 1rem; }
.contact-list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; align-items: center; gap: 0.9rem; }
.contact-list .ic {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  background: var(--clay-soft); color: var(--clay-deep);
  display: grid; place-items: center;
}
.contact-list .ic svg { width: 21px; height: 21px; }
.contact-list b { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-list a, .contact-list span { font-size: 1.08rem; color: var(--ink); font-weight: 500; }
.socials { display: flex; gap: 0.7rem; margin-top: 1.8rem; }
.socials a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--white-warm); border: 1px solid var(--hairline);
  color: var(--ink-soft);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.socials a:hover { color: var(--clay-deep); border-color: var(--clay); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

.contact-form {
  background: var(--white-warm);
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-card);
  border: 1px solid oklch(0.91 0.02 72);
}
.contact-form h3 { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.4rem; }
.contact-form .micro { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.5rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 0.4rem; }
.field input, .field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  padding: 0.85rem 1rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--hairline);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: oklch(0.62 0.02 60); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--clay);
  background: var(--white-warm);
  box-shadow: 0 0 0 4px oklch(0.60 0.13 45 / 0.14);
}
.field textarea { resize: vertical; min-height: 120px; }
.contact-form .btn-primary { width: 100%; justify-content: center; margin-top: 0.4rem; }
.form-reassure { text-align: center; font-size: 0.82rem; color: var(--muted); margin-top: 1rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: oklch(0.30 0.022 48);
  color: oklch(0.88 0.015 80);
  padding-block: clamp(2.8rem, 5vw, 4rem) 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid oklch(0.40 0.02 50);
}
.footer-brand .brand-name { font-family: "Fraunces", serif; font-size: 1.4rem; color: var(--white-warm); }
.footer-brand p { color: oklch(0.78 0.012 80); margin-top: 0.9rem; max-width: 40ch; font-size: 0.95rem; }
.footer-col h4 { font-family: "Figtree", sans-serif; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.72 0.04 60); margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: oklch(0.85 0.012 80); font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--clay-soft); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.8rem;
  padding-top: 1.6rem; font-size: 0.84rem; color: oklch(0.7 0.012 80);
}

/* ---------- Productos page ---------- */
.page-hero {
  padding-block: clamp(2.4rem, 5vw, 4rem);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; margin-block: 1rem; }
.page-hero h1 em { font-style: italic; color: var(--clay-deep); }
.page-hero .ph-media {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 6px solid var(--white-warm);
  box-shadow: var(--shadow-card);
}
.page-hero .ph-media img { width: 100%; height: clamp(260px, 30vw, 360px); object-fit: cover; }

.cat-nav {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: oklch(0.955 0.018 78 / 0.9);
  backdrop-filter: blur(10px);
  border-block: 1px solid var(--hairline);
}
.cat-nav .wrap { display: flex; flex-wrap: wrap; gap: 0.6rem; padding-block: 0.8rem; }
.cat-nav a {
  font-weight: 600; font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1px solid var(--hairline);
  background: var(--white-warm);
  color: var(--ink-soft);
  transition: all 0.35s var(--ease);
}
.cat-nav a:hover { border-color: var(--clay); color: var(--clay-deep); }

.cat-section { padding-block: clamp(2.8rem, 5vw, 4.5rem); scroll-margin-top: 130px; }
.cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cat-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 400; }
.cat-head .count { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.cat-head p { color: var(--muted); max-width: 50ch; margin: 0.5rem 0 0; }

.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.prod-grid.two { grid-template-columns: repeat(2, 1fr); }
.prod-card {
  background: var(--white-warm);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid oklch(0.91 0.02 72);
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.prod-card .pic {
  height: 200px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--sand) 100%);
  display: grid; place-items: center;
  padding: 1.3rem;
}
.prod-card .pic img { max-height: 168px; width: auto; filter: drop-shadow(0 14px 20px oklch(0.4 0.04 50 / 0.2)); }
.prod-card.has-video .pic { padding: 0; }
.prod-card.has-video video { width: 100%; height: 100%; object-fit: cover; }
.prod-card .body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.prod-card h3 { font-size: 1.35rem; font-weight: 500; margin-bottom: 0.35rem; }
.prod-card .one { color: var(--muted); font-size: 0.94rem; margin-bottom: 1rem; }
.prod-card .specs { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: 0.4rem; font-size: 0.88rem; }
.prod-card .specs li { display: flex; justify-content: space-between; gap: 0.8rem; color: var(--ink-soft); border-bottom: 1px dotted var(--hairline); padding-bottom: 0.4rem; }
.prod-card .specs li span:first-child { color: var(--muted); }
.prod-card .specs li b { color: var(--ink); font-weight: 600; text-align: right; }
.prod-card .foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--hairline); }
.prod-card .price { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.1rem; }
.prod-card .price small { display: block; font-family: "Figtree", sans-serif; font-weight: 500; font-size: 0.7rem; color: var(--muted); }
.prod-card .price.consult { font-size: 0.98rem; color: var(--forest); }

.cta-strip {
  background: var(--sand);
  border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  margin-block: clamp(2rem, 4vw, 3.5rem);
}
.cta-strip h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 400; margin-bottom: 0.7rem; }
.cta-strip p { color: var(--muted); max-width: 50ch; margin-inline: auto; margin-bottom: 1.5rem; }
.cta-strip .acts { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; }

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

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .colors-grid, .contact-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .systems-grid, .prod-grid, .prod-grid.two { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .ventajas-editorial { grid-template-columns: 1fr; }
  .about-photo { order: -1; }
  .about-photo img { min-height: 300px; }
}

@media (max-width: 760px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: var(--white-warm); border: 1px solid var(--hairline); cursor: pointer;
  }
  .nav-toggle svg { width: 22px; height: 22px; }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.6rem 1.2rem 1.2rem;
    border-top: 1px solid var(--hairline);
    background: var(--cream);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 0.7rem 0; font-weight: 500; border-bottom: 1px solid var(--hairline); }
  .mobile-menu .btn-primary { margin-top: 0.8rem; justify-content: center; }
  .prices-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .systems-grid, .prod-grid, .prod-grid.two, .swatches { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
  .ventajas-list li { grid-template-columns: auto 1fr; }
  .ventajas-list .vl-num { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .price-table .ph { flex-direction: column; gap: 0.3rem; align-items: flex-start; }
  .price-table td, .price-table th { padding-inline: 1.1rem; }
  .hero-badge { left: 8px; right: 8px; max-width: none; }
  .cat-nav { top: 60px; }
}
