@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Caveat:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");

:root {
  --ff-sans: "Manrope", system-ui, sans-serif;
  --ff-display: "Playfair Display", Georgia, serif;
  --ff-script: "Caveat", "Segoe Script", cursive;

  --c-bg: #FBF4F1;
  --c-bg-soft: #F5E7E2;
  --c-bg-card: #FFFCFB;
  --c-ink: #2A1A1E;
  --c-ink-soft: #5A4045;
  --c-ink-mute: #9A7E84;
  --c-border: rgba(42, 26, 30, 0.08);
  --c-border-strong: rgba(42, 26, 30, 0.18);
  --c-primary: #6B2438;
  --c-primary-deep: #4A1526;
  --c-accent: #C5685C;
  --c-accent-soft: #D89384;
  --c-success: #4F7A5B;
  --c-tint: #F2D5CE;
  --c-header: #FEF6F2;
  --c-hairline: #EFD1C9;
  --c-rose: #A64260;
  --c-white: #fff;
  --c-on-dark: #F6E4E9;
  --c-on-dark-mute: #E2BAC7;
  --max: 1340px;
  --gutter: clamp(18px, 3vw, 36px);
  --r-pill: 999px;
  --bp: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink-soft);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: var(--c-primary); text-decoration: none; }
a:hover { color: var(--c-primary-deep); }
h1, h2, h3, h4 { margin: 0; font-family: var(--ff-display); font-weight: 500; color: var(--c-primary); }
h2 { font-size: clamp(26px, 2.8vw, 38px); line-height: 1.16; }
h3 { font-size: clamp(18px, 1.6vw, 24px); line-height: 1.2; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
}
.skip-link:focus { top: 12px; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-header);
  border-bottom: 1px solid #F4DED7;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 13px var(--gutter);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
  color: inherit;
}
.brand img { height: 46px; width: auto; }
.brand-name {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.brand-name strong {
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--c-primary);
  line-height: 1;
  white-space: nowrap;
}
.brand-name span {
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--c-ink-mute);
  line-height: 1;
  text-transform: uppercase;
}
.nav-links {
  display: none;
  align-items: center;
  gap: clamp(10px, 1.2vw, 22px);
  margin-left: auto;
}
.nav-link {
  display: block;
  font-size: 14.5px;
  font-weight: 500;
  color: #7A5C66;
  padding-bottom: 5px;
  border-bottom: 1.5px solid transparent;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--c-primary);
}
.nav-link.active { border-bottom-color: var(--c-primary); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: #7A5C66;
  padding: 0 0 5px;
  border-bottom: 1.5px solid transparent;
  white-space: nowrap;
}
.nav-dropdown-toggle:hover,
.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown-toggle.active {
  color: var(--c-primary);
}
.nav-dropdown-toggle.active { border-bottom-color: var(--c-primary); }
.nav-dropdown-toggle svg { flex: none; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: var(--c-header);
  border: 1px solid var(--c-hairline);
  border-radius: 14px;
  padding: 10px 0;
  box-shadow: 0 16px 40px rgba(42, 26, 30, 0.1);
  z-index: 20;
}
.nav-dropdown.is-open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: 14.5px;
  color: #7A5C66;
}
.nav-dropdown-menu a:hover { color: var(--c-primary); background: var(--c-bg-soft); }
.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
  flex: none;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink-mute);
  min-width: 31px;
  min-height: 31px;
  border-radius: 50%;
}
.lang-toggle button.active {
  background: var(--c-primary);
  color: var(--c-white);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-pill);
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 14.5px;
  padding: 13px 27px;
}
.btn-primary:hover { background: var(--c-primary-deep); color: var(--c-white); }
.btn-outline {
  border-color: #C99A90;
  color: var(--c-primary);
  background: rgba(255, 255, 255, 0.55);
  font-size: 15.5px;
  padding: 16px 30px;
}
.btn-outline:hover { background: var(--c-white); color: var(--c-primary); }
.btn-coral {
  background: var(--c-accent);
  color: var(--c-primary-deep);
  font-size: 15px;
  padding: 15px 28px;
}
.btn-coral:hover { background: var(--c-accent-soft); color: var(--c-primary-deep); }
.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--c-white);
  font-size: 15px;
  padding: 15px 28px;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.14); color: var(--c-white); }
.header-mobile {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #E3BFB6;
  background: var(--c-white);
  color: var(--c-primary);
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
}
.icon-btn:hover { color: var(--c-primary); }

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--c-header);
  flex-direction: column;
  padding: 20px 22px 32px;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-top img { height: 42px; width: auto; }
.nav-drawer nav {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
}
.nav-drawer a.drawer-link {
  font-family: var(--ff-display);
  font-size: 26px;
  color: var(--c-primary);
  padding: 15px 0;
  border-bottom: 1px solid #F1DBD4;
}
.nav-drawer .drawer-group {
  border-bottom: 1px solid #F1DBD4;
  padding: 8px 0 12px;
}
.nav-drawer .drawer-group-label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-mute);
  margin-bottom: 8px;
}
.nav-drawer .drawer-sub {
  display: block;
  font-family: var(--ff-display);
  font-size: 22px;
  color: var(--c-primary);
  padding: 8px 0;
}
.nav-drawer .btn { width: 100%; margin-top: 14px; padding: 17px 26px; font-size: 16px; }
.drawer-lang { margin-top: 22px; }

@media (min-width: 1180px) {
  .nav-links, .header-actions { display: flex; }
  .header-mobile { display: none; }
  .nav-drawer { display: none !important; }
}

/* Home hero */
.home-hero {
  position: relative;
  overflow: hidden;
  background: #FDF2ED;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 100% at 76% 45%, #FBE3DC 0%, #FDF2ED 62%);
}
.home-hero-mark {
  position: absolute;
  right: -4%;
  top: 6%;
  height: 86%;
  opacity: 0.13;
  filter: saturate(0.35);
  pointer-events: none;
}
.home-hero-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: clamp(20px, 3vw, 40px);
}
.home-hero-copy {
  flex: 1 1 460px;
  min-width: 0;
  padding: clamp(40px, 5vw, 74px) 0 clamp(44px, 5vw, 80px);
}
.home-hero h1 {
  font-size: clamp(32px, 4.5vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.lead {
  margin-top: clamp(18px, 2.4vw, 30px);
  max-width: 29em;
  font-size: clamp(16.5px, 1.2vw, 18.5px);
  color: var(--c-ink-soft);
  line-height: 1.65;
}
.cta-row {
  margin-top: clamp(24px, 3vw, 38px);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.home-hero .cta-row .btn-primary,
.home-hero .cta-row .btn-outline {
  font-size: 20px;
  padding: 20px 40px;
}
.home-hero .cta-row .btn-outline svg {
  width: 22px;
  height: 22px;
}
.home-hero-photo {
  flex: 1 1 380px;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.home-hero-photo img {
  width: auto;
  max-width: 100%;
  height: clamp(320px, 42vw, 580px);
  object-fit: contain;
  object-position: bottom;
}

.section { padding: clamp(38px, 4.4vw, 70px) 0; }
.section-blush { background: #FBE9E4; }
.section-cream { background: #FDF4F1; }
.section-paper { background: #FFF9F6; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: clamp(30px, 3.4vw, 48px);
}
.section-head h2 { font-size: clamp(29px, 3.1vw, 42px); line-height: 1.1; }
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15.5px;
}
.link-more:hover { color: var(--c-primary); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  margin-left: -1px;
  clip-path: inset(0 0 0 1px);
  row-gap: 34px;
}
.area-card {
  border-left: 1px solid var(--c-hairline);
  padding: 0 clamp(12px, 1.5vw, 24px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: inherit;
}
.area-card h3 {
  font-size: clamp(20px, 1.7vw, 24px);
  margin: 20px 0 12px;
}
.area-card p { font-size: 16px; line-height: 1.55; color: var(--c-ink-soft); }
.icon-disc {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--c-tint);
  display: grid;
  place-items: center;
  color: var(--c-primary);
  flex: none;
}
.icon-disc.lg { width: 80px; height: 80px; }
.icon-disc.sm { width: 64px; height: 64px; }
.icon-disc svg { display: block; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-left: -1px;
  clip-path: inset(0 0 0 1px);
  row-gap: 34px;
}
.feature-wide {
  border-left: 1px solid #EFD5CD;
  padding: 0 clamp(14px, 2vw, 34px);
  display: flex;
  gap: clamp(16px, 1.8vw, 26px);
  align-items: flex-start;
}
.feature-wide h3 { font-size: clamp(21px, 1.8vw, 26px); margin-bottom: 10px; }
.feature-wide p { font-size: 16.5px; line-height: 1.6; }
.section-features {
  padding: clamp(16px, 1.8vw, 24px) 0;
}
.section-features .features-grid { row-gap: 12px; }
.section-features .icon-disc.lg { width: 70px; height: 70px; }
.section-features .feature-wide h3 {
  font-size: clamp(24px, 2.1vw, 30px);
  margin-bottom: 10px;
}
.section-features .feature-wide p {
  font-size: clamp(16.5px, 1.3vw, 18.5px);
  line-height: 1.55;
}

.quote-band {
  position: relative;
  overflow: hidden;
  background: #FBE4DF;
  padding: clamp(40px, 4.6vw, 64px) 0;
}
.quote-band img.watermark {
  position: absolute;
  left: -6%;
  top: -30%;
  height: 170%;
  opacity: 0.16;
  filter: saturate(0.4);
  pointer-events: none;
}
.quote-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 4vw, 60px);
}
.quote-inner h2 {
  flex: 0 1 620px;
  font-style: italic;
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.22;
  text-align: center;
}
.rule {
  display: block;
  width: 74px;
  height: 2px;
  background: #B3536E;
  margin: 22px auto 0;
}
.quote-cta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: max-content;
  max-width: 100%;
  gap: 18px;
}
.quote-cta .btn {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
  font-size: 20px;
  padding: 20px 40px;
}
.quote-cta p {
  margin: 0;
  font-size: 16px;
  color: #6E4C57;
  line-height: 1.45;
  width: 100%;
  text-align: center;
}
.quote-cta p span {
  display: block;
}

/* Inner split hero */
.split-hero { background: #FDF2ED; }
.split-hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: clamp(22px, 3vw, 44px);
}
.split-copy {
  flex: 1 1 440px;
  min-width: 0;
  padding: clamp(32px, 4.4vw, 64px) 0;
  align-self: center;
}
.eyebrow {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--c-rose);
  margin-bottom: 12px;
}
.split-copy h1 {
  font-size: clamp(31px, 3.8vw, 54px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.kicker {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.1vw, 29px);
  color: var(--c-rose);
  line-height: 1.2;
  margin-top: 6px;
}
.split-media {
  flex: 1 1 360px;
  min-width: 0;
  position: relative;
  min-height: clamp(280px, 29vw, 430px);
}
.split-media img.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.split-hero.area-hero { overflow: hidden; }
@media (min-width: 900px) {
  .split-hero.area-hero .split-hero-inner {
    position: relative;
    display: block;
    min-height: clamp(380px, 42vw, 540px);
  }
  .split-hero.area-hero .split-copy {
    position: relative;
    z-index: 2;
    width: min(680px, 62%);
    padding-right: 6%;
    background: none;
  }
  .split-hero.area-hero .split-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 54%;
    min-height: 0;
    z-index: 1;
  }
  .split-hero.area-hero .hero-photo {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 16%, rgba(0, 0, 0, 0.7) 36%, #000 55%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 16%, rgba(0, 0, 0, 0.7) 36%, #000 55%);
    object-position: center 40%;
  }
  .split-hero.area-hero.about-hero .hero-photo {
    object-position: 68% 52%;
  }
}
.script-note {
  position: absolute;
  right: 5%;
  top: 14%;
  pointer-events: none;
  font-family: var(--ff-script);
  font-size: clamp(19px, 1.85vw, 27px);
  line-height: 1.3;
  color: var(--c-primary);
  transform: rotate(-7deg);
  text-align: center;
}
.script-note.left { left: 4%; right: auto; text-align: left; }
.script-note.inline {
  position: static;
  display: block;
  margin-top: clamp(24px, 2.8vw, 36px);
  transform: rotate(-4deg);
  transform-origin: left center;
  text-align: left;
}
.script-underline {
  display: block;
  width: 62%;
  height: 9px;
  border-bottom: 1.6px solid #A63A55;
  border-radius: 0 0 50% 50%;
  margin: 5px auto 0;
}
.script-note.left .script-underline,
.script-note.inline .script-underline { margin-left: 0; }

.prose { display: flex; flex-direction: column; gap: 16px; max-width: 44em; margin-top: 22px; }
.prose p { font-size: 17px; line-height: 1.65; }

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(26px, 3.4vw, 52px);
}
.two-col > * { flex: 1 1 340px; min-width: 0; }
.round-photo {
  width: 100%;
  height: clamp(240px, 26vw, 290px);
  object-fit: cover;
  border-radius: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-left: -1px;
  clip-path: inset(0 0 0 1px);
}
.value-item {
  border-left: 1px solid var(--c-hairline);
  padding: clamp(12px, 1.6vw, 22px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-item:nth-child(-n+2) { border-bottom: 1px solid var(--c-hairline); }
.value-item h3 { font-size: clamp(18px, 1.5vw, 22px); margin: 15px 0 8px; }
.value-item p { font-size: 16px; line-height: 1.55; }

.steps {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 20px);
}
.step {
  flex: 1 1 150px;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-num {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--c-tint);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-size: 27px;
  color: var(--c-primary);
}
.step h3 { font-size: clamp(18px, 1.5vw, 22px); margin: 16px 0 8px; }
.step p { font-size: 16px; line-height: 1.55; }
.step-arrow {
  flex: none;
  color: #C08A97;
  font-size: 19px;
  margin-top: 26px;
}

.icon-copy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 2.6vw, 40px);
}
.icon-copy .icon-disc { margin-top: 4px; }
.icon-copy .grow { flex: 1 1 380px; min-width: 0; }
.icon-copy h2 { font-size: clamp(26px, 2.7vw, 36px); line-height: 1.14; }

.callout {
  margin-top: 20px;
  background: #F9E3DE;
  border-left: 3px solid #C0567A;
  padding: 16px 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-primary);
}
.soft-card {
  background: #F9E3DE;
  border-radius: 16px;
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.soft-card p { flex: 1 1 190px; font-size: 16.5px; line-height: 1.6; color: var(--c-primary); }

.check-list { display: flex; flex-direction: column; gap: 11px; }
.check-list.gap-lg { gap: 14px; }
.check-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check-item span:last-child { font-size: 16.5px; line-height: 1.55; }
.check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-tint);
  color: var(--c-primary);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.check svg { width: 12px; height: 12px; }

.list-pane {
  flex: 1 1 380px;
  min-width: 0;
  border-left: 1px solid #EFD5CD;
  padding-left: clamp(0px, 2vw, 32px);
}
.list-pane h3 {
  font-family: var(--ff-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 16px;
}

.cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  margin-left: -1px;
  clip-path: inset(0 0 0 1px);
  row-gap: 32px;
}
.cols-3 > div,
.cols-4 > div {
  border-left: 1px solid #EFD5CD;
  padding: 0 clamp(13px, 1.6vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cols-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-left: -1px;
  clip-path: inset(0 0 0 1px);
  row-gap: 34px;
}
.cols-3 h3, .cols-4 h3 { font-size: clamp(19px, 1.7vw, 24px); margin: 18px 0 12px; }
.cols-3 p, .cols-4 p { font-size: 16px; line-height: 1.6; text-align: left; }
.rule-sm { display: block; width: 52px; height: 2px; background: #C08A97; margin: 16px 0 0; }

.obesidad-grid {
  margin-top: clamp(26px, 3vw, 42px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 2.2vw, 32px);
}
.obesidad-col { border-left: 1px solid #EFD5CD; padding-left: clamp(16px, 1.8vw, 26px); }
.obesidad-col h3, .obesidad-card h3 { font-size: clamp(21px, 1.9vw, 26px); }
.dash { display: block; width: 38px; height: 2px; background: #C08A97; margin: 14px 0 16px; }
.obesidad-card {
  background: #F9E3DE;
  border-radius: 18px;
  padding: clamp(22px, 2.4vw, 32px);
}

.help-box {
  background: #FBE9E4;
  border-radius: 22px;
  padding: clamp(26px, 3.2vw, 46px) clamp(22px, 3vw, 44px);
}
.help-grid {
  margin-top: clamp(22px, 2.6vw, 34px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 2.6vw, 42px);
}
.help-grid .split-list { border-left: 1px solid #EFD1C9; padding-left: clamp(0px, 2vw, 32px); }
@media (max-width: 700px) {
  .help-grid .split-list { border-left: 0; padding-left: 0; }
  .list-pane { border-left: 0; padding-left: 0; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-bottom: 1px solid var(--c-hairline); }
  .step-arrow { display: none; }
}

.leaf-split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}
.leaf-split .leaf {
  flex: 1 1 300px;
  min-width: 0;
  min-height: clamp(200px, 20vw, 260px);
  align-self: stretch;
  border-radius: 16px;
  overflow: hidden;
}
.leaf-split .leaf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leaf-copy {
  flex: 1 1 460px;
  min-width: 0;
  padding: clamp(28px, 3.4vw, 48px) var(--gutter);
  max-width: 760px;
  text-align: center;
}
.leaf-copy h2 { font-size: clamp(24px, 2.7vw, 36px); line-height: 1.16; }
.leaf-copy p { margin-inline: auto; }

.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(100deg, var(--c-primary-deep) 0%, #8A2049 100%);
  padding: clamp(26px, 3.2vw, 46px) clamp(22px, 3vw, 50px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}
.cta-banner .watermark {
  position: absolute;
  right: 14%;
  bottom: -45%;
  height: 190%;
  opacity: 0.13;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.cta-banner h2 { color: var(--c-white); font-size: clamp(24px, 2.6vw, 36px); line-height: 1.16; }
.cta-banner p { margin-top: 12px; max-width: 34em; margin-inline: auto; font-size: 16.5px; color: #F0CFD9; line-height: 1.6; }
.cta-banner .script-note {
  position: relative;
  flex: 0 1 230px;
  right: auto;
  top: auto;
  color: #F8D7CD;
}
.cta-banner .script-underline { border-bottom-color: #EFA79B; }
.cta-banner-copy { flex: 1 1 380px; min-width: 0; position: relative; z-index: 1; text-align: center; }
.cta-banner-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; justify-content: center; }
.check-list.cols-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 11px 28px;
}
.map-btn-row { margin-top: 24px; }
.form-panel {
  background: var(--c-bg-card);
  border: 1px solid var(--c-hairline);
  border-radius: 22px;
  padding: clamp(22px, 3vw, 40px);
}
.icon-copy p { font-size: 16.5px; line-height: 1.65; max-width: 44em; }
.channel-hours { font-size: 15px; color: var(--c-ink-mute); margin-top: 8px; white-space: pre-line; }
.split-media .hero-photo.contain {
  object-fit: contain;
  object-position: bottom;
  background: #FDF2ED;
}
.nav-dropdown-menu a.active { color: var(--c-primary); font-weight: 600; }

/* Footer */
.site-footer {
  background: linear-gradient(105deg, var(--c-primary-deep) 0%, #7C1A3E 100%);
  color: var(--c-on-dark);
  padding: clamp(40px, 4.6vw, 64px) 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.site-footer,
.site-footer * {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: clamp(28px, 3vw, 44px);
}
.footer-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}
.footer-lockup img { height: 52px; width: auto; filter: brightness(0) invert(1); }
.footer-lockup strong {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
}
.footer-lockup span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #E8BFCC;
  text-transform: uppercase;
  margin-top: 4px;
}
.footer-tagline { margin-top: 16px; font-size: 13.5px; color: var(--c-on-dark-mute); }
.footer-col h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #EDC9D4;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a, .footer-contact span { font-size: 14.5px; color: #F3DDE3; }
.footer-col a:hover { color: var(--c-white); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 2px; }
.footer-social { display: flex; gap: 11px; }
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.13);
  display: grid;
  place-items: center;
  color: var(--c-white);
}
.footer-social a:hover { background: rgba(255, 255, 255, 0.25); color: var(--c-white); }
.footer-script {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  color: #F7D9CF;
  margin-top: 26px;
  transform: none;
}
.footer-bottom {
  margin-top: clamp(30px, 3.4vw, 46px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #DCB3C1;
}
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 10px 16px; }
.footer-legal-links a { color: #DCB3C1; font-size: 13px; }
.footer-legal-links a:hover { color: var(--c-white); }

/* FAQ / contact extras */
.page-hero {
  background: #FDF2ED;
  padding: clamp(40px, 5vw, 72px) 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(32px, 4vw, 50px); line-height: 1.12; max-width: 16em; margin: 0 auto; }
.page-hero .lead { max-width: 38em; margin-left: auto; margin-right: auto; }
.help-box .check-list { margin-top: 22px; }
.help-box > p { margin-top: 12px; font-size: 16.5px; line-height: 1.65; max-width: 46em; }
.obesidad-col p, .obesidad-card p { font-size: 16.5px; line-height: 1.65; }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 800px) { .faq-grid { grid-template-columns: 1fr; } }
.accordion-item { border-bottom: 1px solid var(--c-hairline); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  color: var(--c-primary);
  font-weight: 500;
}
.accordion-num { color: var(--c-rose); margin-right: 10px; font-size: 13px; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.accordion-body-inner { padding: 0 0 18px; font-size: 16.5px; line-height: 1.65; color: var(--c-ink-soft); }

.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}
.channel {
  background: var(--c-bg-card);
  border: 1px solid var(--c-hairline);
  border-radius: 16px;
  padding: 22px;
}
.channel-label { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-ink-mute); margin: 12px 0 6px; }
.channel-val { font-size: 16px; color: var(--c-primary); font-weight: 500; }
.map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}
.map-visual { min-height: 320px; border-radius: 16px; overflow: hidden; }
.map-info { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.map-info li { display: flex; gap: 12px; align-items: flex-start; font-size: 16.5px; }
@media (max-width: 800px) { .map-grid { grid-template-columns: 1fr; } }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.form-full { grid-column: 1 / -1; }
.form-group label { font-size: 14px; font-weight: 500; color: var(--c-primary); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--c-hairline);
  border-radius: 12px;
  padding: 12px 14px;
  background: var(--c-white);
  min-height: 48px;
  font-size: 16px;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-status { margin-top: 16px; font-size: 15px; }
.form-status.ok { color: var(--c-success); }
.form-status.err { color: var(--c-primary); }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.legal-content { max-width: 46em; }
.legal-content h2 { font-size: 26px; margin: 32px 0 12px; }
.legal-content h3 { font-size: 20px; margin: 22px 0 10px; }
.legal-content p, .legal-content li { font-size: 16.5px; line-height: 1.7; }
.legal-content ul { list-style: disc; padding-left: 1.2em; display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.legal-updated { margin-top: 16px; font-size: 14px; color: var(--c-ink-mute); }

body.menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
