/* ============================================================
   Mindful Healing NC — Stylesheet (rediseño basado en mockups)
   "Heal. Grow. Thrive." — wellness premium, tonos tierra pastel,
   verde salvia, cascada y bosque, formas orgánicas suaves.
   ============================================================ */

/* ---- Tokens de diseño ---- */
:root {
  --sage:        #8a9a82;
  --sage-deep:   #5a6b52;   /* verde texto/títulos del mockup */
  --sage-btn:    #7d8c6f;   /* verde de botones */
  --forest:      #3f5240;
  --water:       #7fa39c;
  --water-soft:  #aac4be;
  --terra:       #c08a5e;   /* acento terracota (Instagram, Book) */
  --terra-soft:  #d9b48a;
  --blue-soft:   #8fb0b5;
  --beige:       #e7ddc9;
  --cream:       #f4efe4;   /* fondo principal */
  --cream-soft:  #faf6ec;
  --card:        #fbf8f0;
  --brown:       #6a5f50;   /* texto cuerpo soft brown */
  --brown-soft:  #968b78;
  --line:        rgba(122,140,111,0.20);

  --radius:    20px;
  --radius-lg: 28px;
  --radius-sm: 14px;
  --shadow:    0 24px 60px -28px rgba(74, 88, 64, 0.45);
  --shadow-sm: 0 12px 32px -16px rgba(74, 88, 64, 0.40);
  --shadow-card: 0 18px 44px -24px rgba(74, 88, 64, 0.40);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans:  "Nunito Sans", system-ui, sans-serif;
  --maxw: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.1;
  color: var(--sage-deep);
  letter-spacing: 0.2px;
}
em, .ital { font-style: italic; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* Eyebrow espaciado (mayúsculas con tracking, como el mockup) */
.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 18px;
}
.eyebrow--center { text-align: center; }

/* Adorno de ramita (sprig) — separador decorativo */
.sprig { display: inline-block; width: 64px; height: 14px; margin: 6px 0 4px; }
.sprig svg { width: 100%; height: 100%; stroke: var(--sage); fill: none; }
/* ramita como separador cuando va justo bajo el eyebrow (sin título) */
.aboutme__body .eyebrow + .sprig { display: block; margin: 10px 0 18px; }
/* ramita ancha: abarca todo el ancho del texto */
.sprig--wide { display: block; width: 100%; height: 18px; margin: 10px 0 18px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(244, 239, 228, 0.86);
  backdrop-filter: blur(14px);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand__mark { width: 42px; height: 42px; max-width: 42px; max-height: 42px; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--serif); font-size: 1.5rem; color: var(--sage-deep); font-weight: 600; }
.brand__tag { font-size: 0.72rem; letter-spacing: 1.5px; color: var(--brown-soft); font-weight: 600; }

.nav__links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav__links a {
  font-size: 0.96rem; font-weight: 600; color: var(--brown); position: relative; padding: 4px 0;
  transition: color 0.25s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px;
  background: var(--sage); border-radius: 2px; transition: width 0.3s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--sage-deep); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__cta {
  background: var(--sage-btn); color: var(--cream) !important;
  padding: 12px 26px; border-radius: 999px; font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--sage-deep); transform: translateY(-2px); }

/* Botón de idioma (ES/EN) */
.nav__lang {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1.5px solid var(--sage); color: var(--sage-deep) !important;
  padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: 0.86rem;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.nav__lang::after { display: none; }
.nav__lang svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.nav__lang:hover { background: var(--sage); color: var(--cream) !important; transform: translateY(-2px); }

.nav__toggle { display: none; background: none; border: none; cursor: pointer; width: 42px; height: 42px; position: relative; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 9px; width: 24px; height: 2px;
  background: var(--sage-deep); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav__toggle span { top: 20px; }
.nav__toggle span::before { top: -7px; }
.nav__toggle span::after { top: 7px; }
.nav__toggle.open span { background: transparent; }
.nav__toggle.open span::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span::after { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BOTONES
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  cursor: pointer; border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn--primary { background: var(--sage-btn); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--sage-deep); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost-play {
  display: inline-flex; align-items: center; gap: 12px; font-weight: 600; color: var(--brown);
  background: none; border: none; cursor: pointer; transition: color 0.25s ease;
}
.btn--ghost-play .play {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.7); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease;
}
.btn--ghost-play:hover { color: var(--sage-deep); }
.btn--ghost-play:hover .play { transform: scale(1.08); }
.play svg { width: 14px; height: 14px; fill: var(--sage-deep); }

/* ============================================================
   HERO — escena de cascada/bosque en SVG + atmósfera
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--cream); padding-bottom: 0; }
.hero__scene {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
}
.hero__copy { position: relative; z-index: 4; padding: 84px 0 200px 0; max-width: 560px; }
.hero__copy h1 { font-size: clamp(2.6rem, 5.5vw, 4.3rem); margin-bottom: 6px; }
.hero__copy h1 .ital { color: var(--sage-deep); }
.hero__lead { font-size: 1.12rem; color: var(--brown); margin: 26px 0 32px; max-width: 440px; }
.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Lienzo de la escena natural a la derecha (SVG a pantalla) */
.hero__art {
  position: absolute; inset: 0; left: 42%;
  z-index: 1;
  overflow: hidden;
}
.hero__art svg { width: 100%; height: 100%; object-fit: cover; }
/* velo cálido que difumina hacia la izquierda (luz de bosque) */
.hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, var(--cream) 30%, rgba(244,239,228,0.4) 48%, rgba(244,239,228,0) 62%);
}

/* Hojas decorativas en esquinas del hero */
.corner-leaves { position: absolute; z-index: 3; pointer-events: none; opacity: 0.9; }
.corner-leaves svg { width: 100%; height: 100%; overflow: visible; }
.corner-leaves--tl { top: -10px; left: -10px; width: 220px; height: 220px; }
.corner-leaves--tr { top: -10px; right: -10px; width: 240px; height: 240px; transform: scaleX(-1); }

/* Borde ondulado inferior del hero */
.hero__wave { position: relative; z-index: 5; display: block; width: 100%; height: 90px; margin-top: -90px; }
.hero__wave path { fill: var(--cream); }

/* ============================================================
   Movimiento de agua (cascada animada) y elementos vivos
   ============================================================ */
.fall { animation: fall-shimmer 3s linear infinite; }
@keyframes fall-shimmer { 0% { opacity: 0.55; } 50% { opacity: 0.95; } 100% { opacity: 0.55; } }
.fall-stream { stroke-dasharray: 4 8; animation: stream 1.2s linear infinite; }
@keyframes stream { to { stroke-dashoffset: -24; } }
.ripple { animation: ripple 4s ease-in-out infinite; transform-origin: center; }
@keyframes ripple { 0%,100% { transform: scaleX(1); opacity: 0.6; } 50% { transform: scaleX(1.12); opacity: 0.9; } }
.sway { transform-origin: bottom center; animation: sway 6s ease-in-out infinite; }
@keyframes sway { 0%,100% { transform: rotate(-2.5deg); } 50% { transform: rotate(2.5deg); } }
.pulse { animation: pulse 4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.glow { animation: glow 6s ease-in-out infinite; transform-origin: center; }
@keyframes glow { 0%,100% { opacity: 0.25; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.06); } }
/* bruma que sube suavemente en la base de la cascada */
.mist { transform-origin: center; animation: mist 7s ease-in-out infinite; }
@keyframes mist { 0%,100% { opacity: 0.45; transform: translateY(0) scale(1); } 50% { opacity: 0.85; transform: translateY(-10px) scale(1.1); } }
/* ondas concentricas que se expanden desde donde cae el agua */
.ring { transform-origin: 300px 496px; animation: ring 4s ease-out infinite; }
@keyframes ring { 0% { transform: scale(0.4); opacity: 0.7; } 100% { transform: scale(1.3); opacity: 0; } }

/* hojas que caen suavemente */
.leaf { position: absolute; z-index: 3; opacity: 0; animation: float-leaf linear infinite; }
.leaf svg { width: 100%; height: 100%; }
@keyframes float-leaf {
  0% { transform: translateY(-20px) rotate(0); opacity: 0; }
  12% { opacity: 0.6; }
  88% { opacity: 0.5; }
  100% { transform: translateY(78vh) rotate(300deg); opacity: 0; }
}

/* partículas atmosféricas suaves (motas de luz que flotan) */
.particle { position: absolute; z-index: 3; border-radius: 50%; background: #ffffff; pointer-events: none; opacity: 0; animation: drift-particle ease-in-out infinite; }
@keyframes drift-particle {
  0% { transform: translate(0,0) scale(0.8); opacity: 0; }
  20% { opacity: 0.55; }
  80% { opacity: 0.4; }
  100% { transform: translate(18px,-60px) scale(1.1); opacity: 0; }
}

/* ============================================================
   TARJETAS DE ELECCIÓN (sobre el hero, glassmorphism)
   ============================================================ */
.choice-band { position: relative; z-index: 10; margin-top: -150px; }
.choice-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.choice {
  position: relative; overflow: hidden;
  background: rgba(251, 248, 240, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 32px 30px 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.choice:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.choice__top { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.choice__icon { width: 44px; height: 44px; max-width: 44px; max-height: 44px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.choice__icon svg { width: 24px; height: 24px; stroke-width: 1.6; fill: none; }
.choice--green .choice__icon { background: #d9e2cf; } .choice--green .choice__icon svg { stroke: var(--sage-deep); }
.choice--blue  .choice__icon { background: #d2e0df; } .choice--blue  .choice__icon svg { stroke: var(--water); }
.choice--terra .choice__icon { background: #ecd9c0; } .choice--terra .choice__icon svg { stroke: var(--terra); }
.choice h3 { font-size: 1.55rem; }
.choice p { color: var(--brown-soft); font-size: 0.95rem; max-width: 80%; }
.choice__art { position: absolute; right: -6px; bottom: -6px; width: 120px; height: 110px; opacity: 0.7; pointer-events: none; }
.choice__art svg { width: 100%; height: 100%; }
.choice__go {
  position: absolute; right: 28px; bottom: 26px;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); transition: transform 0.25s ease;
}
.choice--green .choice__go { background: var(--sage-btn); }
.choice--blue  .choice__go { background: var(--water); }
.choice--terra .choice__go { background: var(--terra); }
.choice:hover .choice__go { transform: translateX(4px); }
.choice__go svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ============================================================
   SECCIONES GENERALES
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section--tint { background: var(--cream-soft); }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__head h2 { font-size: clamp(2.1rem, 4vw, 3rem); margin-bottom: 14px; }
.section__head p { color: var(--brown-soft); font-size: 1.06rem; }

/* divisor de onda orgánica entre secciones */
.wave { display: block; width: 100%; height: 80px; }
.wave path { fill: var(--cream-soft); }
.wave--up path { fill: var(--cream); }

/* ============================================================
   WHO WE ARE (home) — piedras zen + cita
   ============================================================ */
.who { display: grid; grid-template-columns: 0.85fr 1.1fr 0.85fr; gap: 40px; align-items: center; }
.who__art svg { width: 100%; height: auto; }
.who__body h2 { font-size: clamp(2rem, 3.6vw, 2.7rem); margin-bottom: 12px; }
.who__body p { color: var(--brown-soft); margin: 18px 0 26px; }
.quote {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 30px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.quote__mark { font-family: var(--serif); font-size: 3.4rem; color: var(--water-soft); line-height: 0.5; }
.quote p { font-family: var(--serif); font-size: 1.5rem; color: var(--sage-deep); margin: 14px 0; }
.quote__heart { color: var(--sage); font-size: 1.2rem; }

/* ============================================================
   FRANJA DE ÍCONOS (challenges / values)
   ============================================================ */
.iconrow {
  display: grid; grid-template-columns: repeat(var(--cols, 5), 1fr);
  gap: 8px; text-align: center;
}
.iconrow__item { padding: 10px 14px; border-right: 1px solid var(--line); }
.iconrow__item:last-child { border-right: none; }
.iconrow__icon { width: 40px; height: 40px; margin: 0 auto 12px; }
.iconrow__icon svg { width: 100%; height: 100%; stroke: var(--sage); fill: none; stroke-width: 1.4; }
.iconrow__item h4 { font-family: var(--serif); font-size: 1.15rem; color: var(--sage-deep); margin-bottom: 4px; font-weight: 600; }
.iconrow__item p { font-size: 0.86rem; color: var(--brown-soft); }

/* variante en línea (values con icono a la izquierda) */
.valuerow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.value { display: flex; gap: 14px; align-items: flex-start; }
.value__icon { width: 44px; height: 44px; flex-shrink: 0; }
.value__icon svg { width: 100%; height: 100%; stroke: var(--sage); fill: none; stroke-width: 1.4; }
.value h4 { font-family: var(--serif); font-size: 1.2rem; color: var(--sage-deep); margin-bottom: 2px; font-weight: 600; }
.value p { font-size: 0.88rem; color: var(--brown-soft); }

/* chips de áreas de apoyo (About) */
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; max-width: 760px; margin: 0 auto; }
.chip {
  background: var(--card); border: 1px solid var(--line); color: var(--sage-deep);
  font-family: var(--serif); font-size: 1.12rem; font-weight: 600;
  padding: 12px 26px; border-radius: 999px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.chip:hover { transform: translateY(-3px); background: var(--cream-soft); box-shadow: var(--shadow-card); }
.chips-label { text-align: center; font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--brown-soft); font-weight: 700; margin-bottom: 16px; }
.chip--top { background: var(--sage-btn); color: var(--cream); border-color: transparent; }
.chip--top:hover { background: var(--sage-deep); }

/* About Me: retrato + texto */
.aboutme { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: center; }
.aboutme__portrait svg { width: 100%; max-width: 340px; height: auto; margin: 0 auto; display: block; border-radius: 24px; box-shadow: var(--shadow-card); }
.aboutme__body h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 12px; }
.aboutme__body p { color: var(--brown-soft); margin: 16px 0; }
.aboutme__body .btn { margin-top: 8px; }

/* mini-cards de enfoques (iconos pequeños, elegantes) */
.mini-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.mini-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 20px; text-align: center; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.mini-card__ic { width: 44px; height: 44px; border-radius: 50%; background: #e2e8d8; display: flex; align-items: center; justify-content: center; }
.mini-card__ic svg { width: 22px; height: 22px; stroke: var(--sage-deep); }
.mini-card h4 { font-family: var(--serif); font-size: 1.08rem; color: var(--sage-deep); font-weight: 600; line-height: 1.25; }

/* variante compacta para muchos enfoques */
.mini-cards--tight { grid-template-columns: repeat(5, 1fr); gap: 14px; }
.mini-cards--tight .mini-card { padding: 18px 14px; }
.mini-cards--tight .mini-card h4 { font-size: 0.98rem; }

/* datos profesionales */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fact {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 22px; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow-sm);
}
.fact__k { font-size: 0.74rem; letter-spacing: 2px; text-transform: uppercase; color: var(--sage); font-weight: 700; }
.fact__v { font-family: var(--serif); font-size: 1.16rem; color: var(--sage-deep); font-weight: 600; line-height: 1.3; }

/* tarjetas de opciones de terapia (con texto) */
.opt-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.opt-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.opt-card h4 { font-family: var(--serif); font-size: 1.24rem; color: var(--sage-deep); font-weight: 600; }
.opt-card p { font-size: 0.92rem; color: var(--brown-soft); }

/* banda de consulta gratuita */
.consult {
  display: flex; align-items: center; gap: 30px;
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.consult__art { flex-shrink: 0; width: 90px; }
.consult__art svg { width: 100%; height: auto; }
.consult__body h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.consult__body p { color: var(--brown-soft); margin: 12px 0 20px; }

/* botones de contacto en el aside del formulario */
.aside__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.aside__actions .btn { justify-content: center; }

/* ============================================================
   PAGE HERO (subpáginas con escena + recorte ondulado)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; }
.page-hero__scene { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; min-height: 440px; }
.page-hero__copy { position: relative; z-index: 4; padding: 80px 0 100px; max-width: 520px; }
.page-hero__copy h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); margin-bottom: 8px; }
.page-hero__copy p { color: var(--brown); font-size: 1.08rem; margin-top: 22px; max-width: 440px; }
.page-hero__art { position: absolute; inset: 0; left: 46%; z-index: 1; overflow: hidden; }
.page-hero__art svg { width: 100%; height: 100%; }
.page-hero__veil {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg, var(--cream) 32%, rgba(244,239,228,0.35) 50%, rgba(244,239,228,0) 64%);
}
.page-hero__wave { position: relative; z-index: 5; display: block; width: 100%; height: 80px; margin-top: -80px; }
.page-hero__wave path { fill: var(--cream-soft); }

/* ============================================================
   SERVICES (página) — tarjetas verticales con ilustración
   ============================================================ */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex; flex-direction: column;
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.svc__head { display: flex; align-items: center; gap: 14px; padding: 26px 28px 6px; }
.svc__badge { width: 44px; height: 44px; max-width: 44px; max-height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.svc__badge svg { width: 24px; height: 24px; stroke-width: 1.5; fill: none; }
.svc--a .svc__badge { background: #d9e2cf; } .svc--a .svc__badge svg { stroke: var(--sage-deep); }
.svc--b .svc__badge { background: #d2e0df; } .svc--b .svc__badge svg { stroke: var(--water); }
.svc--c .svc__badge { background: #ecd9c0; } .svc--c .svc__badge svg { stroke: var(--terra); }
.svc__head h3 { font-size: 1.55rem; }
.svc__scene { margin: 14px 22px 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 11; }
.svc__scene svg { width: 100%; height: 100%; }
.svc__body { padding: 20px 28px 8px; }
.svc__body p { color: var(--brown-soft); font-size: 0.96rem; }
.svc__foot { margin-top: auto; padding: 14px 28px 26px; display: flex; align-items: center; justify-content: space-between; }
.svc__link { font-weight: 700; color: var(--sage-deep); border-bottom: 1.5px solid var(--sage); padding-bottom: 2px; }
.svc__arrow { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cream); }
.svc--a .svc__arrow { background: var(--sage-btn); }
.svc--b .svc__arrow { background: var(--water); }
.svc--c .svc__arrow { background: var(--terra); }
.svc__arrow svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* banda CTA con piedras */
.cta-band { position: relative; background: var(--cream-soft); padding: 70px 0; overflow: hidden; }
.cta-band__inner { text-align: center; position: relative; z-index: 2; }
.cta-band__inner h2 { font-size: 2.1rem; margin-bottom: 6px; }
.cta-band__inner p { color: var(--brown-soft); margin-bottom: 26px; }
.cta-band__leaf { position: absolute; top: 50%; transform: translateY(-50%); width: 180px; opacity: 0.8; z-index: 1; }
.cta-band__leaf--l { left: 0; }
.cta-band__leaf--r { right: 0; transform: translateY(-50%) scaleX(-1); }

/* ============================================================
   CONTACT (página)
   ============================================================ */
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; }
.ccard {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px 70px; box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ccard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ccard__top { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.ccard__icon { width: 44px; height: 44px; max-width: 44px; max-height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ccard__icon svg { width: 22px; height: 22px; stroke: var(--cream); fill: none; stroke-width: 1.8; }
.ccard--email .ccard__icon { background: var(--sage-btn); }
.ccard--wa    .ccard__icon { background: var(--sage); }
.ccard--ig    .ccard__icon { background: var(--terra); }
.ccard--fb    .ccard__icon { background: var(--blue-soft); }
.ccard--phone .ccard__icon { background: var(--water); }
.ccard--pt    .ccard__icon { background: var(--sage-deep); }
.ccard--tt    .ccard__icon { background: var(--terra); }
.ccard__btn { display: inline-block; margin-top: 4px; padding: 9px 20px; background: var(--sage-btn); color: var(--cream) !important; border-radius: 999px; font-size: 0.9rem; border-top: none !important; transition: background 0.25s ease, transform 0.25s ease; }
.ccard__btn:hover { background: var(--sage-deep); transform: translateY(-2px); }
.ccard h3 { font-size: 1.3rem; }
.ccard__desc { font-size: 0.9rem; color: var(--brown-soft); margin-bottom: 16px; }
.ccard__val { display: block; padding-top: 16px; border-top: 1px solid var(--line); font-weight: 700; color: var(--brown); word-break: break-word; font-size: 0.94rem; }
.ccard__val:hover { color: var(--sage-deep); }
.ccard__deco { position: absolute; right: -4px; bottom: -6px; width: 120px; height: 90px; opacity: 0.8; pointer-events: none; }
.ccard__deco svg { width: 100%; height: 100%; }

/* bloque FAQ */
.faq-wrap {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 40px; align-items: start;
  background: var(--cream-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 48px; position: relative; overflow: hidden;
}
.faq-intro h2 { font-size: 1.9rem; margin-bottom: 6px; }
.faq-intro p { color: var(--brown-soft); margin: 16px 0 22px; }
.faq-intro__art { width: 150px; margin-bottom: 18px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 4px; text-align: left;
  font-family: var(--serif); font-size: 1.2rem; color: var(--sage-deep); font-weight: 600;
}
.faq__q span.plus { font-size: 1.5rem; color: var(--sage); transition: transform 0.3s ease; flex-shrink: 0; }
.faq__item.open .faq__q span.plus { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__a p { padding: 0 4px 20px; color: var(--brown-soft); font-size: 0.96rem; }

/* ============================================================
   APPOINTMENT (página) — dos columnas
   ============================================================ */
.appt { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: start; }
.form-wrap {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 46px 44px;
}
.form-wrap__head { text-align: center; margin-bottom: 30px; }
.form-wrap__head h2 { font-size: 2.2rem; }
.form-wrap__head p { color: var(--brown-soft); font-size: 0.98rem; margin-top: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 20px; display: flex; flex-direction: column; }
.field label { font-weight: 700; font-size: 0.86rem; color: var(--sage-deep); margin-bottom: 8px; }
.field label .req { color: var(--terra); }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap svg { position: absolute; left: 14px; width: 18px; height: 18px; stroke: var(--brown-soft); fill: none; stroke-width: 1.6; pointer-events: none; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.98rem; color: var(--brown);
  background: var(--cream-soft); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px 13px 42px; transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.field textarea { padding-left: 16px; resize: vertical; min-height: 120px; }
.field select { appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px rgba(125,140,111,0.14);
}
.field__count { text-align: right; font-size: 0.78rem; color: var(--brown-soft); margin-top: 6px; }
.form-submit { width: 100%; justify-content: center; }
.form-secure { text-align: center; font-size: 0.84rem; color: var(--brown-soft); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-secure svg { width: 14px; height: 14px; stroke: var(--brown-soft); fill: none; }
.form-status { text-align: center; color: var(--sage-deep); font-weight: 600; margin-top: 12px; min-height: 1.2em; }

/* panel lateral "Your Well-Being Matters" */
.aside {
  background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 34px; position: relative; overflow: hidden;
}
.aside__head { text-align: center; margin-bottom: 26px; }
.aside__head h2 { font-size: 1.7rem; }
.aside__list { display: flex; flex-direction: column; gap: 20px; }
.aside__item { display: flex; gap: 14px; align-items: flex-start; }
.aside__icon { width: 44px; height: 44px; border-radius: 50%; background: #e2e8d8; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.aside__icon svg { width: 22px; height: 22px; stroke: var(--sage-deep); fill: none; stroke-width: 1.5; }
.aside__item h4 { font-family: var(--serif); font-size: 1.16rem; color: var(--sage-deep); font-weight: 600; }
.aside__item p { font-size: 0.88rem; color: var(--brown-soft); }
.aside__quote { margin-top: 26px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; text-align: center; }
.aside__quote .quote__mark { font-size: 2.6rem; }
.aside__quote p { font-family: var(--serif); font-size: 1.2rem; color: var(--sage-deep); }

/* banda CTA verde inferior */
.greenband { background: var(--sage-btn); color: var(--cream); border-radius: var(--radius-lg); padding: 26px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.greenband__txt { display: flex; align-items: center; gap: 16px; }
.greenband__txt svg { width: 34px; height: 34px; stroke: var(--cream); fill: none; opacity: 0.85; }
.greenband__txt h3 { color: var(--cream); font-size: 1.4rem; }
.greenband__txt p { color: rgba(244,239,228,0.85); font-size: 0.92rem; }
.greenband .btn { background: var(--cream); color: var(--sage-deep); }
.greenband .btn:hover { background: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest); color: var(--cream); padding: 56px 0 30px; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 22px; }
.footer .brand__name { color: var(--cream); }
.footer .brand__tag { color: rgba(244,239,228,0.6); }
.footer__links { display: flex; gap: 26px; list-style: none; flex-wrap: wrap; }
.footer__links a { color: rgba(244,239,228,0.85); font-weight: 600; font-size: 0.94rem; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px 28px; margin-top: 26px; padding-top: 24px; border-top: 1px solid rgba(244,239,228,0.16); }
.footer__contact a { display: inline-flex; align-items: center; gap: 8px; color: rgba(244,239,228,0.85); font-weight: 600; font-size: 0.92rem; }
.footer__contact a:hover { color: #fff; }
.footer__contact svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.7; }
.footer__emergency { text-align: center; margin-top: 20px; font-size: 0.82rem; color: rgba(244,239,228,0.75); font-weight: 600; }
.footer__copy { text-align: center; margin-top: 12px; font-size: 0.84rem; color: rgba(244,239,228,0.6); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .who { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .who__art { max-width: 320px; margin: 0 auto; }
  .valuerow { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { grid-template-columns: 1fr; gap: 28px; padding: 34px; }
  .appt { grid-template-columns: 1fr; }
  .aboutme { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .aboutme__body .btn { margin-left: auto; margin-right: auto; }
  .mini-cards { grid-template-columns: repeat(2, 1fr); }
  .mini-cards--tight { grid-template-columns: repeat(3, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .consult { flex-direction: column; text-align: center; gap: 20px; padding: 32px 24px; }
  .consult__body .hero__actions { justify-content: center; }
}
@media (max-width: 860px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; top: 84px; left: 0; right: 0;
    background: var(--cream-soft); flex-direction: column; gap: 0; padding: 8px 0;
    box-shadow: var(--shadow); transform: translateY(-150%); transition: transform 0.4s ease;
    border-bottom: 1px solid var(--line);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links li { width: 100%; text-align: center; }
  .nav__links a { display: block; padding: 16px 0; }
  .nav__links a::after { display: none; }

  .hero__scene { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { padding: 64px 0 120px; max-width: 100%; }
  .hero__art { position: relative; inset: auto; left: auto; height: 280px; margin: 0 -28px; }
  .hero__veil { display: none; }
  .choice-band { margin-top: -80px; }
  .choice-cards { grid-template-columns: 1fr; }
  .choice p { max-width: 100%; }

  .page-hero__scene { grid-template-columns: 1fr; min-height: auto; }
  .page-hero__copy { padding: 56px 0 80px; }
  .page-hero__art { position: relative; inset: auto; left: auto; height: 240px; margin: 0 -28px; }
  .page-hero__veil { display: none; }

  .svc-cards { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .iconrow { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .iconrow__item { border-right: none; border-bottom: 1px solid var(--line); padding-bottom: 20px; }
  .valuerow { grid-template-columns: 1fr; }
  .form-wrap { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer__inner { flex-direction: column; text-align: center; }
  .mini-cards, .mini-cards--tight { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact-cards { grid-template-columns: 1fr; }
  .mini-cards, .mini-cards--tight { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   SIZE GUARDS — ningún logo o ícono debe dominar la página
   ============================================================ */
/* Logo del header: nunca mayor a 42px */
.brand__mark { width: 42px !important; height: 42px !important; max-width: 42px !important; max-height: 42px !important; }
/* Contenedores de íconos de tarjeta: nunca mayores a 44px */
.choice__icon, .svc__badge, .ccard__icon, .mini-card__ic, .aside__icon {
  max-width: 44px !important; max-height: 44px !important;
}
/* Los SVG dentro de esos íconos se mantienen contenidos */
.choice__icon svg, .svc__badge svg, .ccard__icon svg, .mini-card__ic svg, .aside__icon svg {
  max-width: 26px; max-height: 26px;
}
