*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette — forest green + cream. Calm, growth, trust. */
  --cream:        oklch(97.5% 0.008 120);
  --cream-warm:   oklch(94% 0.014 130);
  --terra:        oklch(40% 0.095 148);
  --terra-light:  oklch(82% 0.048 148);
  --terra-dark:   oklch(30% 0.085 148);
  --terra-pale:   oklch(95% 0.018 148);
  --terra-mid:    oklch(62% 0.065 148);
  --ink:          oklch(18% 0.020 148);
  --ink-soft:     oklch(40% 0.022 148);
  --ink-muted:    oklch(58% 0.016 148);
  --border:       oklch(88% 0.014 140);
  --border-warm:  oklch(84% 0.024 140);
  --gold:         oklch(78% 0.130 82);
  --serif:        'Young Serif', Georgia, serif;
  --sans:         'DM Sans', system-ui, sans-serif;
  --r:            14px;
  --r-lg:         22px;
  --r-xl:         32px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TEXTURE ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1000; pointer-events: none;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideUp { from { opacity:0; transform:translateY(28px) scale(0.98); } to { opacity:1; transform:none; } }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px oklch(52% 0.18 145 / 0.4), 0 0 0 0 oklch(52% 0.18 145 / 0.3); }
  55%      { box-shadow: 0 4px 20px oklch(52% 0.18 145 / 0.4), 0 0 0 9px oklch(52% 0.18 145 / 0); }
}
@keyframes bridgeDraw {
  from { stroke-dashoffset: 500; opacity: 0; }
  to   { stroke-dashoffset: 0;   opacity: 1; }
}

.fu { opacity:0; animation: fadeUp 550ms cubic-bezier(0.16,1,0.3,1) forwards; }
.fu.d1 { animation-delay: 60ms;  }
.fu.d2 { animation-delay: 160ms; }
.fu.d3 { animation-delay: 260ms; }
.fu.d4 { animation-delay: 360ms; }
.fu.d5 { animation-delay: 460ms; }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 580ms cubic-bezier(0.16,1,0.3,1), transform 580ms cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  background: oklch(97.5% 0.010 72 / 0.90);
  backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--border-warm);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav-logo {
  width: 62px; height: 62px;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-name {
  font-family: var(--serif);
  font-size: 0.98rem;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.nav-sub {
  font-size: 0.58rem; font-weight: 500;
  color: var(--ink-muted); letter-spacing: 0.09em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 400; color: var(--ink-soft);
  text-decoration: none; transition: color 150ms;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  background: var(--terra); color: white;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 500;
  padding: 0.48rem 1.25rem; border-radius: 999px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: background 150ms, transform 130ms, box-shadow 150ms;
  box-shadow: 0 2px 10px oklch(40% 0.095 148 / 0.25);
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  background: var(--terra-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 18px oklch(40% 0.095 148 / 0.35);
}
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px; margin-left: 0.4rem; z-index: 210;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; gap: 1.5rem;
    padding: 5.5rem 2rem 2rem; background: var(--cream);
    box-shadow: -10px 0 40px oklch(18% 0.02 148 / 0.15);
    transform: translateX(100%); transition: transform .32s ease; z-index: 200;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.05rem; }
  body.nav-open { overflow: hidden; }
}

/* ── HERO ── */
.hero-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-scatter {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  overflow: hidden;
}
.hero {
  max-width: 1140px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1.4rem, 5vw, 4rem) clamp(2.5rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  position: relative; z-index: 1;
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 2rem; }
  .hero-visual { display: none; }
}

/* Tag */
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border: 1.5px solid var(--border-warm);
  border-radius: 999px; padding: 0.28rem 0.85rem 0.28rem 0.5rem;
  font-size: 0.68rem; font-weight: 500;
  color: var(--ink-muted); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 1.6rem;
  background: var(--cream);
}
.hero-tag-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--terra-pale); border: 1.5px solid var(--terra-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Headline */
h1.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
h1.hero-headline .terra { color: var(--terra); }
.hero-hl-sub {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 400;
  color: var(--ink-soft);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 1.8rem;
  display: block;
}
/* hand-drawn wavy underline SVG on accent text */
.underline-terra {
  position: relative;
  display: inline;
}
.underline-terra svg {
  position: absolute;
  bottom: -8px; left: -2px; right: -2px;
  width: calc(100% + 4px);
  height: 10px;
  pointer-events: none;
  overflow: visible;
}

/* Body + actions */
.hero-sub {
  font-size: 1rem; color: var(--ink-soft); line-height: 1.78;
  max-width: 480px; margin-bottom: 2rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; margin-bottom: 2.8rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  border-radius: 999px; font-family: var(--sans); font-weight: 500;
  text-decoration: none; transition: all 160ms; cursor: pointer; border: none;
  letter-spacing: 0.01em; font-size: 0.88rem;
}
.btn-terra {
  background: var(--terra); color: white;
  padding: 0.78rem 1.75rem;
  box-shadow: 0 3px 14px oklch(40% 0.095 148 / 0.28);
}
.btn-terra:hover {
  background: var(--terra-dark); transform: translateY(-2px);
  box-shadow: 0 6px 22px oklch(40% 0.095 148 / 0.38);
}
.btn-outline {
  background: transparent; color: var(--ink-soft);
  padding: 0.76rem 1.4rem;
  border: 1.5px solid var(--border-warm);
  font-weight: 400;
}
.btn-outline:hover { border-color: var(--terra-light); color: var(--terra); }

/* Proof strip */
.hero-proof {
  display: flex; gap: 2rem; flex-wrap: nowrap; align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-warm);
}
.hero-proof-item { display: flex; flex-direction: column; gap: 0.1rem; }
.hero-proof-item strong {
  font-family: var(--serif); font-size: 1.55rem;
  color: var(--ink); line-height: 1; letter-spacing: -0.02em;
}
.hero-proof-item span {
  font-size: 0.65rem; font-weight: 500; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: 0.07em;
}
.proof-sep { width: 1px; height: 30px; background: var(--border-warm); flex-shrink: 0; }

/* ── HERO VISUAL ── */
.hero-visual {
  position: relative;
  height: 530px;
}

/* Main photo container — soft organic shape */
.hero-photo-wrap {
  position: absolute;
  bottom: 0; right: 0;
  width: 380px; height: 490px;
  background: var(--cream-warm);
  border-radius: 200px 200px 28px 28px;
  overflow: hidden;
  border: 1.5px solid var(--border-warm);
}
.hero-photo-wrap::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 80%, oklch(40% 0.095 148 / 0.07) 0%, transparent 70%);
}
.hero-photo {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 90%; z-index: 1;
  filter: drop-shadow(0 -6px 28px oklch(40% 0.095 148 / 0.12));
}

/* Floating info card */
.hero-card {
  position: absolute;
  top: 2rem; left: -1.5rem; z-index: 5;
  background: white;
  border-radius: 18px; padding: 1rem 1.2rem;
  border: 1.5px solid var(--border-warm);
  box-shadow: 0 8px 32px oklch(22% 0.016 52 / 0.08);
  min-width: 165px;
}
.hero-card p { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.2rem; }
.hero-card strong { font-family: var(--serif); font-size: 1rem; color: var(--terra); display: block; line-height: 1.2; }

/* Bottom name bar */
.hero-name-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0; z-index: 5;
  padding: 0.9rem 1.2rem;
  background: oklch(22% 0.016 52 / 0.82);
  backdrop-filter: blur(8px);
  border-radius: 0 0 28px 28px;
  display: flex; justify-content: space-between; align-items: center;
}
.hero-name-bar span { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.hero-name-bar strong { font-family: var(--serif); font-size: 0.88rem; color: white; letter-spacing: -0.01em; }

/* Bridge illustration — hero decoration */
.hero-bridge {
  position: absolute;
  bottom: 1.5rem; left: -3.5rem; z-index: 6;
  width: 120px; opacity: 0.55;
}
.bridge-path {
  stroke-dasharray: 500;
  animation: bridgeDraw 2s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}

/* Scattered small doodles */
.doodle-star-1 {
  position: absolute; top: 2.5rem; right: 1rem; z-index: 6;
  width: 28px; opacity: 0.55;
}
.doodle-star-2 {
  position: absolute; top: 8rem; left: -4rem; z-index: 0;
  width: 18px; opacity: 0.25;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--ink);
  padding: 0.85rem clamp(1.4rem, 5vw, 4rem);
}
.trust-strip-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: oklch(78% 0.012 52); white-space: nowrap;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-sep { color: oklch(38% 0.010 52); font-size: 0.65rem; }

/* ── SHARED SECTION STYLES ── */
.section {
  padding: clamp(3.2rem, 6vw, 5.5rem) clamp(1.4rem, 5vw, 4rem);
  max-width: 1140px; margin: 0 auto;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 1.4rem;
}
.eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--terra); border-radius: 2px; flex-shrink: 0; }
.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.12;
  letter-spacing: -0.025em; margin-bottom: 1rem;
}
.section-h2 .terra { color: var(--terra); }
.section-intro {
  font-size: 1rem; color: var(--ink-soft); line-height: 1.78;
  max-width: 510px; margin-bottom: 2.8rem; font-weight: 300;
}

/* ── SEÑALES ── */
.senales-wrap {
  background: var(--cream-warm);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
}
.senales-inner {
  max-width: 1140px; margin: 0 auto;
  padding: clamp(3rem, 5.5vw, 5rem) clamp(1.4rem, 5vw, 4rem);
}
.senales-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-left: 1px solid var(--border-warm);
  border-top: 1px solid var(--border-warm);
  border-radius: var(--r-lg); overflow: hidden;
}
@media (max-width: 640px) { .senales-grid { grid-template-columns: 1fr; } }
.senal-card {
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  background: white;
  transition: background 200ms;
  position: relative;
}
.senal-card:hover { background: var(--terra-pale); }
.senal-n {
  font-family: var(--serif); font-size: 0.95rem;
  color: var(--terra); letter-spacing: 0.02em;
  margin-bottom: 1rem; display: block;
}
.senal-icon { margin-bottom: 0.75rem; color: var(--terra); }
.senal-card h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
  margin-bottom: 0.45rem; line-height: 1.25; color: var(--ink);
}
.senal-card p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.72; font-weight: 300; }

/* ── SERVICES ── */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
@media (max-width: 860px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .svc-grid { grid-template-columns: 1fr; } }

/* Secondary service cards */
.svc-card {
  background: white; border: 1.5px solid var(--border-warm);
  border-radius: var(--r-lg); padding: 1.6rem;
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.svc-card:hover {
  border-color: var(--terra-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px oklch(22% 0.016 52 / 0.06);
}
.svc-num {
  font-family: var(--serif); font-size: 0.78rem;
  color: var(--terra); letter-spacing: 0.05em;
  margin-bottom: 0.8rem; display: block;
}
.svc-card h3 {
  font-family: var(--serif); font-size: 1.1rem; font-weight: 400;
  margin-bottom: 0.4rem; line-height: 1.2; color: var(--ink);
}
.svc-card p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.68; font-weight: 300; }
.svc-tag {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  background: var(--terra-pale); color: var(--terra);
  padding: 0.2rem 0.65rem; border-radius: 999px;
}

/* ── SECCIÓN RED INTERDISCIPLINARIA (standalone, hero-weight) ── */
.red-section {
  background: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.4rem, 5vw, 4rem);
  position: relative; overflow: hidden;
}
.red-section::before {
  content: 'RED';
  position: absolute; top: -0.1em; right: -0.05em;
  font-family: var(--serif); font-size: clamp(10rem, 22vw, 22rem);
  font-weight: 400; line-height: 1;
  color: oklch(100% 0 0 / 0.025);
  pointer-events: none; user-select: none;
  letter-spacing: -0.04em;
}
.red-inner { max-width: 1100px; margin: 0 auto; }
.red-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--terra-light); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.6rem;
}
.red-eyebrow::before { content: ''; width: 22px; height: 1.5px; background: var(--terra-mid); display: block; }
.red-h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.08; letter-spacing: -0.03em;
  color: white; margin-bottom: 1.4rem;
}
.red-h2 span { color: var(--terra-light); }
.red-lead {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: oklch(68% 0.014 148); line-height: 1.75; font-weight: 300;
  max-width: 600px; margin-bottom: 3.5rem;
}
.red-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
@media (max-width: 700px) { .red-cards { grid-template-columns: 1fr; } }
.red-card {
  background: oklch(24% 0.022 148); border-radius: var(--r-xl);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  border: 1.5px solid oklch(32% 0.030 148);
  position: relative; overflow: hidden;
}
.red-card::after {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, oklch(40% 0.095 148 / 0.14) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.red-card-eyebrow {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--terra-mid);
  margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.5rem;
}
.red-card-eyebrow::before { content: ''; width: 14px; height: 1px; background: var(--terra-mid); display: block; }
.red-card h3 {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 400; color: white; margin-bottom: 1rem;
  line-height: 1.25; letter-spacing: -0.02em;
}
.red-card-lead {
  font-size: 0.9rem; color: oklch(62% 0.012 148);
  line-height: 1.7; font-weight: 300; margin-bottom: 1.4rem;
}
.red-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.red-tag {
  display: inline-block; font-size: 0.7rem; font-weight: 500;
  padding: 0.28rem 0.75rem; border-radius: 999px;
  background: oklch(32% 0.038 148); color: var(--terra-light);
  border: 1px solid oklch(38% 0.045 148); letter-spacing: 0.02em;
}
.red-divider {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, oklch(40% 0.040 148 / 0.5), transparent);
  margin: 1.4rem 0;
}

/* ── DIFERENCIAL INGLÉS ── */
.dif-wrap {
  background: var(--terra-pale); border-radius: var(--r-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1.5px solid var(--terra-light);
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  align-items: start; margin-top: 1.5rem; position: relative; overflow: hidden;
}
@media (max-width: 700px) { .dif-wrap { grid-template-columns: 1fr; } }
.dif-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--terra); color: white; border-radius: 999px;
  padding: 0.25rem 0.85rem; font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem;
}
.dif-h3 { font-family: var(--serif); font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 400; line-height: 1.2; color: var(--ink); margin-bottom: 0.8rem; letter-spacing: -0.02em; }
.dif-h3 .terra { color: var(--terra); }
.dif-p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 1.2rem; font-weight: 300; }
.dif-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.dif-list li { font-size: 0.84rem; color: var(--ink-soft); font-weight: 300; display: flex; align-items: baseline; gap: 0.6rem; line-height: 1.55; }
.dif-list li::before { content: '→'; color: var(--terra); font-size: 0.72rem; flex-shrink: 0; }

.marisol-card {
  background: white; border-radius: var(--r-lg); padding: 1.4rem;
  margin-bottom: 1rem; border: 1.5px solid var(--terra-light);
}
.marisol-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.75rem; }
.marisol-avatar {
  width: 40px; height: 40px; background: var(--terra); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; color: white; flex-shrink: 0;
}
.marisol-info strong { display: block; font-family: var(--serif); font-size: 0.92rem; font-weight: 400; margin-bottom: 0.05rem; }
.marisol-info span { font-size: 0.72rem; color: var(--ink-muted); }
.marisol-card p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.65; font-weight: 300; }

.science-box {
  background: var(--terra-dark); border-radius: var(--r); padding: 1rem 1.2rem;
  display: flex; gap: 0.8rem; align-items: flex-start;
}
.science-box p { font-size: 0.8rem; color: white; line-height: 1.62; font-weight: 300; }
.science-box p strong { color: var(--terra-light); font-weight: 600; }

/* ── PROCESO ── */
.proceso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .proceso-grid { grid-template-columns: 1fr; } }
.paso-card {
  background: white; border: 1.5px solid var(--border-warm);
  border-radius: var(--r-lg); padding: 1.8rem 1.6rem;
  transition: border-color 200ms, transform 180ms;
  position: relative; overflow: hidden;
}
.paso-card:hover { border-color: var(--terra-light); transform: translateY(-2px); }
.paso-n {
  font-family: var(--serif); font-size: 3.5rem; font-weight: 400;
  color: oklch(90% 0.022 65); line-height: 1; margin-bottom: 0.6rem;
  letter-spacing: -0.03em; display: block;
}
.paso-card:nth-child(1) .paso-n { color: oklch(86% 0.045 38); }
.paso-card:nth-child(2) .paso-n { color: oklch(90% 0.030 38); }
.paso-card:nth-child(3) .paso-n { color: oklch(86% 0.045 38); }
.paso-card:nth-child(4) .paso-n { color: oklch(90% 0.030 38); }
.paso-card h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; }
.paso-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.68; font-weight: 300; }

/* ── QUOTE SECTION ── */
.quote-wrap {
  background: var(--terra);
  position: relative; overflow: hidden;
  padding: clamp(4rem, 7vw, 6.5rem) clamp(1.4rem, 5vw, 4rem);
}
.quote-deco-left {
  position: absolute; left: clamp(1rem, 4vw, 3rem); top: -1.5rem;
  font-family: var(--serif); font-size: clamp(10rem, 18vw, 15rem);
  color: oklch(32% 0.085 148); line-height: 1; pointer-events: none; z-index: 0;
  font-weight: 400;
}
.quote-deco-right {
  position: absolute; right: -2rem; bottom: -3rem;
  width: 260px; height: 260px; border-radius: 50%;
  background: oklch(32% 0.085 148 / 0.4); pointer-events: none; z-index: 0;
}
.quote-inner {
  max-width: 900px; margin: 0 auto; position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: end;
}
@media (max-width: 680px) { .quote-inner { grid-template-columns: 1fr; } }
.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  color: white; font-weight: 400; line-height: 1.35;
  letter-spacing: -0.02em;
}
.quote-text .highlight { color: oklch(92% 0.040 148); }
.quote-attr { text-align: right; flex-shrink: 0; }
.quote-attr img {
  width: 82px; height: 98px; object-fit: contain;
  object-position: bottom; border-radius: 14px;
  background: oklch(32% 0.085 148 / 0.45);
  border: 2px solid oklch(72% 0.055 148); margin-bottom: 0.5rem;
  display: block; margin-left: auto;
}
.quote-attr strong { display: block; font-family: var(--serif); font-size: 0.88rem; color: white; }
.quote-attr span { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(78% 0.045 148); }

/* ── INFO BAND ── */
.info-band {
  background: var(--cream-warm);
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-warm);
  padding: 1.8rem clamp(1.4rem, 5vw, 4rem);
}
.info-band-inner {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem; align-items: center;
}
.info-item label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 0.22rem;
}
.info-item span { font-size: 0.88rem; color: var(--ink); font-weight: 400; }

/* ── BRAND STRIP ── */
.brand-strip {
  background: var(--ink);
  padding: 4rem clamp(1.4rem, 5vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
}
.brand-strip::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, oklch(40% 0.095 148 / 0.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 130px; height: 130px;
  background: white; border-radius: 24px;
  margin-bottom: 1.4rem;
  box-shadow: 0 8px 28px oklch(40% 0.095 148 / 0.3);
  padding: 12px;
}
.brand-strip h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: white; font-weight: 400; line-height: 1;
  letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.brand-strip h2 .terra { color: var(--terra-light); }
.brand-strip p {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: oklch(52% 0.012 52); margin-bottom: 2.2rem;
}
.brand-pills { display: flex; gap: 0.55rem; justify-content: center; flex-wrap: wrap; }
.brand-pill {
  background: oklch(28% 0.014 52); border: 1px solid oklch(35% 0.012 52);
  border-radius: 999px; padding: 0.32rem 0.9rem;
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: oklch(65% 0.010 52);
}

/* ── CONTACTO ── */
.contacto-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start;
}
@media (max-width: 720px) { .contacto-grid { grid-template-columns: 1fr; } }

.contacto-left h2 {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 1rem; letter-spacing: -0.025em;
}
.contacto-left h2 .terra { color: var(--terra); }
.contacto-left p { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.76; margin-bottom: 2rem; font-weight: 300; }

.alejandra-block {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--terra-pale); border-radius: var(--r-lg);
  border: 1.5px solid var(--terra-light); margin-bottom: 1.8rem; overflow: hidden;
}
.alejandra-block img { width: 66px; height: 76px; object-fit: contain; object-position: bottom; border-radius: 10px; flex-shrink: 0; }
.alejandra-block div strong { display: block; font-family: var(--serif); font-size: 0.94rem; margin-bottom: 0.08rem; }
.alejandra-block div span { font-size: 0.74rem; color: var(--ink-soft); }
.tag-row { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.4rem; }
.mini-tag {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: white; border: 1.5px solid var(--terra-light); color: var(--terra);
  padding: 0.16rem 0.55rem; border-radius: 999px;
}

.contact-links { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-link {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--ink); font-size: 0.88rem;
  padding: 0.85rem 1rem; border: 1.5px solid var(--border-warm);
  border-radius: var(--r-lg); transition: all 150ms; background: white; font-weight: 400;
}
.contact-link:hover { border-color: var(--terra-light); background: var(--terra-pale); }
.cl-icon {
  width: 34px; height: 34px; background: var(--cream-warm); border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid var(--border);
}
.cl-meta { display: flex; flex-direction: column; }
.cl-label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.cl-val { font-size: 0.88rem; }
.cl-arrow { margin-left: auto; color: var(--ink-muted); font-size: 0.85rem; }

/* FORM */
.form-box {
  background: white; border: 1.5px solid var(--border-warm);
  border-radius: var(--r-xl); padding: 2.2rem;
}
.form-box h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; margin-bottom: 1.5rem; }
.fg { margin-bottom: 1rem; }
.fg label { display: block; font-size: 0.74rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 0.32rem; letter-spacing: 0.01em; }
.fg input, .fg select, .fg textarea {
  width: 100%; background: var(--cream-warm); border: 1.5px solid var(--border-warm);
  border-radius: 11px; padding: 0.68rem 0.9rem;
  font-family: var(--sans); font-size: 0.88rem; color: var(--ink);
  transition: border-color 150ms; outline: none; resize: vertical; font-weight: 300;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--terra-light); background: white; }
.fg textarea { min-height: 90px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
@media (max-width: 480px) { .fg-row { grid-template-columns: 1fr; } }
.btn-submit {
  width: 100%; background: var(--terra); color: white;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  padding: 0.88rem; border: none; border-radius: 999px; cursor: pointer;
  letter-spacing: 0.02em; transition: all 160ms; margin-top: 0.4rem;
  box-shadow: 0 3px 14px oklch(40% 0.095 148 / 0.28);
}
.btn-submit:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 6px 22px oklch(40% 0.095 148 / 0.38); }

/* ── BOOKING MODAL ── */
#booking-modal {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: oklch(12% 0.015 52 / 0.55); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
}
#booking-modal.open { display: flex; animation: fadeIn 200ms ease; }
.modal-box {
  background: var(--cream); border-radius: var(--r-xl);
  width: 100%; max-width: 700px; max-height: 92vh; overflow-y: auto;
  box-shadow: 0 32px 80px oklch(12% 0.015 52 / 0.22);
  animation: slideUp 320ms cubic-bezier(0.16,1,0.3,1);
  border: 1.5px solid var(--border-warm);
}
.modal-head {
  padding: 1.8rem 2rem 1.4rem;
  display: flex; align-items: flex-start; justify-content: space-between;
  border-bottom: 1px solid var(--border-warm);
  position: sticky; top: 0; background: var(--cream); z-index: 2;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.modal-head-left h2 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.modal-head-left p { font-size: 0.76rem; color: var(--ink-muted); margin-top: 0.1rem; }
.modal-close {
  width: 32px; height: 32px; background: var(--cream-warm);
  border: 1.5px solid var(--border-warm); border-radius: 999px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--ink-soft); transition: all 150ms; flex-shrink: 0; margin-left: 1rem;
}
.modal-close:hover { background: var(--terra-pale); border-color: var(--terra-light); color: var(--terra); }
.modal-body { padding: 1.8rem 2rem 2.2rem; display: flex; flex-direction: column; gap: 1.8rem; }

.step-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.85rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; background: var(--terra);
  color: white; border-radius: 999px; font-size: 0.58rem;
}
.service-opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 0.6rem; }
.service-opt {
  padding: 0.85rem 1rem; border: 1.5px solid var(--border-warm);
  border-radius: var(--r); cursor: pointer; transition: all 150ms; background: white;
}
.service-opt:hover { border-color: var(--terra-light); }
.service-opt.selected { border-color: var(--terra); background: var(--terra-pale); }
.service-opt h4 { font-family: var(--serif); font-size: 0.9rem; font-weight: 400; margin-bottom: 0.12rem; }
.service-opt p { font-size: 0.7rem; color: var(--ink-muted); font-weight: 300; }

.mod-toggle { display: flex; gap: 0.5rem; }
.mod-btn {
  flex: 1; padding: 0.65rem; border: 1.5px solid var(--border-warm);
  border-radius: 10px; background: white; cursor: pointer;
  font-family: var(--sans); font-size: 0.82rem; color: var(--ink-soft);
  transition: all 150ms; text-align: center; font-weight: 400;
}
.mod-btn.selected { border-color: var(--terra); background: var(--terra-pale); color: var(--ink); font-weight: 500; }

.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; }
.cal-nav {
  background: white; border: 1.5px solid var(--border-warm); border-radius: 9px;
  width: 32px; height: 32px; cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 0.9rem; color: var(--ink-soft); transition: all 150ms;
}
.cal-nav:hover { border-color: var(--terra-light); color: var(--terra); }
.cal-month { font-family: var(--serif); font-size: 1rem; font-weight: 400; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-day-name { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-muted); text-align: center; padding: 0.3rem 0; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 8px; font-size: 0.82rem; cursor: pointer;
  transition: all 150ms; border: 1.5px solid transparent;
}
.cal-day:hover:not(.disabled):not(.empty) { border-color: var(--terra-light); background: var(--terra-pale); }
.cal-day.selected { background: var(--terra); color: white; border-color: var(--terra); }
.cal-day.today { font-weight: 700; color: var(--terra); }
.cal-day.disabled { color: oklch(86% 0.010 65); cursor: not-allowed; }
.cal-day.empty { cursor: default; }

.slots-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 0.5rem; }
.slot {
  padding: 0.52rem; border: 1.5px solid var(--border-warm); border-radius: 8px;
  font-size: 0.78rem; text-align: center; cursor: pointer; transition: all 150ms;
  color: var(--ink-soft); background: white;
}
.slot:hover { border-color: var(--terra-light); color: var(--terra); }
.slot.selected { background: var(--terra); color: white; border-color: var(--terra); }
.slot.busy { background: var(--cream-warm); color: oklch(80% 0.010 65); cursor: not-allowed; border-color: var(--border); }

.booking-summary {
  background: var(--terra-pale); border: 1.5px solid var(--terra-light);
  border-radius: var(--r); padding: 1.1rem;
}
.summary-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.32rem 0; border-bottom: 1px dashed var(--terra-light); }
.summary-row:last-child { border-bottom: none; }
.summary-key { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.summary-val { font-size: 0.86rem; font-weight: 500; }

.book-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
@media (max-width: 480px) { .book-fields { grid-template-columns: 1fr; } }

.btn-book {
  width: 100%; background: var(--terra); color: white;
  font-family: var(--sans); font-size: 0.9rem; font-weight: 500;
  padding: 0.9rem; border: none; border-radius: 999px; cursor: pointer;
  letter-spacing: 0.02em; transition: all 160ms;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  box-shadow: 0 3px 14px oklch(40% 0.095 148 / 0.28);
}
.btn-book:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 6px 22px oklch(40% 0.095 148 / 0.38); }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; z-index: 900;
  display: flex; align-items: center; justify-content: center;
  background: oklch(52% 0.18 145); color: white; text-decoration: none;
  border-radius: 999px; padding: 1rem;
  width: 56px; height: 56px;
  box-shadow: 0 4px 20px oklch(52% 0.18 145 / 0.4), 0 1px 6px oklch(10% 0.02 145 / 0.15);
  transition: transform 200ms cubic-bezier(0.16,1,0.3,1), box-shadow 200ms;
  animation: waPulse 3.5s ease-in-out infinite;
}
.wa-float span { display: none; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); animation: none; box-shadow: 0 10px 36px oklch(52% 0.18 145 / 0.5); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border-warm);
  padding: 1.6rem clamp(1.4rem, 5vw, 4rem);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem; background: var(--cream);
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo {
  width: 36px; height: 36px; background: transparent;
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-text strong { display: block; font-family: var(--serif); font-size: 0.88rem; color: var(--ink); }
.footer-brand-text span { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
footer a { font-size: 0.76rem; color: var(--ink-muted); text-decoration: none; transition: color 150ms; }
footer a:hover { color: var(--terra); }

/* ── DIVIDER ── */
hr.div { border: none; border-top: 1px solid var(--border-warm); margin: 0; }

/* ── TPY SIGNATURE ── */
.tpy-sig {
  background: var(--ink);
  padding: 1.4rem clamp(1.4rem, 5vw, 4rem);
  display: flex; align-items: center; justify-content: center;
}
.tpy-sig-inner {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none;
  opacity: 0.55;
  transition: opacity 220ms ease;
}
.tpy-sig-inner:hover { opacity: 1; }
.tpy-sig-bolt {
  width: 14px; height: 14px; flex-shrink: 0;
}
.tpy-sig-text {
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: oklch(72% 0.014 148);
}
.tpy-sig-brand {
  font-family: var(--serif); font-size: 0.82rem; font-weight: 400;
  color: white; letter-spacing: -0.01em;
}
.tpy-sig-sep {
  width: 1px; height: 14px;
  background: oklch(40% 0.020 148);
  flex-shrink: 0;
}