/* ============================================================
   VAMOS JUNTOS — amoracción · Mentoría grupal online
   Sistema editorial: verde profundo + naranja tierra + crema
   ============================================================ */

:root {
  /* Color */
  --green:        #1C3D2E;
  --green-deep:   #10241B;
  --green-ink:    #0B1813;
  --olive:        #3A4A28;
  --sage:         #3C6650;
  --orange:       #C4622D;
  --orange-soft:  #D6794A;
  --cream:        #F4EFE6;
  --cream-2:      #EDE4D3;
  --sand:         #D8C7A6;
  --paper:        #FBF8F2;
  --ink:          #18211C;
  --ink-soft:     #46524B;
  --line-dark:    rgba(244,239,230,0.16);
  --line-light:   rgba(24,33,28,0.14);

  /* Type */
  --display: "Archivo", system-ui, sans-serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;
  --mono:    "Space Mono", ui-monospace, monospace;

  /* Layout */
  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 72px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

::selection { background: var(--orange); color: var(--cream); }

/* ---------- Helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
}
.kicker::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  display: inline-block;
}
.kicker--center { justify-content: center; }

.section-no {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 700;
  opacity: 0.5;
}

.h-display {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 125%;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.lead {
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 56ch;
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  padding: 17px 30px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--orange { background: var(--orange); color: var(--cream); box-shadow: 0 12px 30px -14px rgba(196,98,45,0.8); }
.btn--orange:hover { background: var(--orange-soft); }

.btn--cream { background: var(--cream); color: var(--green-deep); }
.btn--cream:hover { background: #fff; }

.btn--green { background: var(--green); color: var(--cream); }
.btn--green:hover { background: var(--green-deep); }

.btn--ghost-light { background: transparent; color: var(--cream); border-color: var(--line-dark); }
.btn--ghost-light:hover { border-color: var(--cream); }

.btn--ghost-dark { background: transparent; color: var(--green); border-color: var(--line-light); }
.btn--ghost-dark:hover { border-color: var(--green); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad);
  background: rgba(16,36,27,0);
  transition: background .3s, padding .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(16,36,27,0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line-dark);
  padding-top: 14px; padding-bottom: 14px;
}
.brand {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.brand .dot { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 17px;
  font-weight: 600;
  color: rgba(244,239,230,0.92);
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cream);
  border: 1px solid var(--line-dark);
  padding: 10px 18px;
  border-radius: 2px;
  transition: background .25s, border-color .25s;
}
.nav-cta:hover { background: var(--orange); border-color: var(--orange); }
@media (max-width: 860px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--olive);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  margin-top: -82px;
  padding-top: 82px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 80% -10%, rgba(196,98,45,0.18), transparent 55%),
    radial-gradient(90% 60% at 0% 110%, rgba(60,102,80,0.35), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--pad) clamp(40px, 6vw, 72px);
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 5vw, 52px);
}
.hero-tag .kicker { color: var(--orange-soft); }
.hero-tag .modality {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.55);
}
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 125%;
  font-size: clamp(76px, 18vw, 280px);
  line-height: 0.82;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.hero-title .l2 { color: var(--orange); -webkit-text-stroke: 0; }
.hero-title .hash { font-size: 0.42em; vertical-align: super; color: var(--orange); font-stretch: 100%; }

.hero-bottom {
  margin-top: clamp(36px, 6vw, 64px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(28px, 4vw, 44px);
}
.hero-bottom .lead { color: rgba(244,239,230,0.78); }
.hero-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hero-actions .meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(244,239,230,0.5);
}
@media (max-width: 760px) {
  .hero-bottom { grid-template-columns: 1fr; align-items: start; }
}

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding: clamp(72px, 11vw, 150px) 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--green { background: var(--green); color: var(--cream); }
.section--deep { background: var(--cream-2); color: var(--ink); }

.section-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head .meta-line { flex: 1; height: 1px; background: var(--line-light); align-self: center; }
.section--green .section-head .meta-line { background: var(--line-dark); }
.section--deep .section-head .meta-line { background: var(--line-light); }

/* Section titles: bigger + bolder */
.section-head .kicker {
  font-size: 15px;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.section-head .section-no {
  font-size: 15px;
  font-weight: 700;
  opacity: 0.6;
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background:
    repeating-linear-gradient(135deg, #15291f 0 14px, #18301f 14px 28px);
  border: 1px solid var(--line-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.video-frame .play {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--orange);
  display: grid; place-items: center;
  box-shadow: 0 20px 50px -18px rgba(196,98,45,0.9);
  transition: transform .3s, background .3s;
  z-index: 2;
}
.video-frame:hover .play { transform: scale(1.07); background: var(--orange-soft); }
.video-frame .play::after {
  content: "";
  width: 0; height: 0;
  border-left: 22px solid var(--cream);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.video-frame .ph-label {
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.45);
}
.video-frame .dur {
  position: absolute;
  bottom: 18px; right: 18px;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(244,239,230,0.6);
}

/* ============================================================
   DOLOR / PROBLEMA
   ============================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.pain-statement {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0;
}
.pain-statement em {
  font-style: normal;
  color: var(--orange);
}
.pain-list { display: flex; flex-direction: column; gap: 0; }
.pain-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line-light);
}
.pain-item:last-child { border-bottom: 1px solid var(--line-light); }
.pain-item .ix {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--orange);
  padding-top: 4px;
  min-width: 28px;
}
.pain-item p { margin: 0; color: var(--ink-soft); font-size: 17px; }
.pain-item strong { color: var(--ink); font-weight: 600; }
@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MÉTODO SPAM — 4 bloques de color
   ============================================================ */
.spam-intro {
  max-width: 60ch;
}
.spam-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: clamp(40px, 5vw, 60px);
}
.spam-block {
  padding: clamp(26px, 2.6vw, 38px);
  min-height: clamp(340px, 36vw, 480px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  background: var(--sand);
  color: var(--ink);
}
.spam-block .letter {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 125%;
  font-size: clamp(90px, 9vw, 150px);
  line-height: 0.8;
  letter-spacing: -0.03em;
}
.spam-block .word {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 115%;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--green-deep);
}
.spam-block p { margin: 0 0 7px; font-size: 15.5px; line-height: 1.5; color: var(--ink-soft); }
.spam-block p:last-child { margin-bottom: 0; }
.spam-block .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
  max-width: 50%;
  line-height: 1.6;
}
.spam-block .body-top { display: flex; justify-content: space-between; align-items: flex-start; }

/* Fixed gap between body-top (letter) and bottom content (title + text) */
.spam-block > div:last-child { margin-top: clamp(32px, 3.5vw, 52px); }

.spam-block--s { background: var(--sand); color: var(--ink); }
.spam-block--s .letter { color: var(--orange); }
.spam-block--p { background: var(--sand); color: var(--ink); }
.spam-block--p .letter { color: var(--green-deep); }
.spam-block--a { background: var(--sand); color: var(--ink); }
.spam-block--a .letter { color: var(--orange); }
.spam-block--m { background: var(--sand); color: var(--ink); }
.spam-block--m .letter { color: var(--green-deep); }

@media (max-width: 920px) { .spam-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .spam-grid { grid-template-columns: 1fr; } }

/* ============================================================
   6 ETAPAS
   ============================================================ */
.stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stage {
  background: var(--sand);
  border: 1.5px solid var(--green);
  border-radius: 3px;
  padding: clamp(30px, 3vw, 44px);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background .3s, box-shadow .3s;
}
.stage:hover { background: var(--cream-2); box-shadow: 0 10px 28px -14px rgba(28,61,46,0.28); }
.stage .num {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 125%;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1;
  color: var(--orange);
  margin-bottom: auto;
}
.stage .et-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.stage h3 {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 110%;
  font-size: clamp(21px, 2vw, 26px);
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--green-deep);
}
.stage p { margin: 0; font-size: 15.5px; line-height: 1.5; color: var(--ink-soft); }
.stage .shift {
  display: inline-block;
  margin-top: 10px;
  color: var(--orange);
  font-weight: 500;
}
@media (max-width: 860px) { .stages { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .stages { grid-template-columns: 1fr; } }

/* ============================================================
   QUÉ INCLUYE
   ============================================================ */
.includes {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.includes-media {
  aspect-ratio: 3/4;
  border-radius: 4px;
  background: repeating-linear-gradient(135deg, #e7ddc9 0 16px, #ece3d1 16px 32px);
  border: 1px solid var(--line-light);
  position: relative;
  display: grid;
  place-items: center;
}
.includes-media .ph-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(24,33,28,0.4);
  text-align: center;
  padding: 0 24px;
}
.inc-list { display: flex; flex-direction: column; }
.inc-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: flex-start;
}
.inc-item:first-child { border-top: 1px solid var(--line-light); }
.inc-check {
  width: 30px; height: 30px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  display: grid; place-items: center;
  margin-top: 2px;
}
.inc-check::after {
  content: "";
  width: 11px; height: 6px;
  border-left: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(-45deg) translate(1px,-1px);
}
.inc-item h4 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.inc-item p { margin: 0; font-size: 15.5px; color: var(--ink-soft); }
@media (max-width: 820px) {
  .includes { grid-template-columns: 1fr; }
  .includes-media { aspect-ratio: 16/10; max-height: 320px; }
}

/* ============================================================
   PRECIOS
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  padding: clamp(28px, 2.6vw, 40px);
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -30px rgba(24,33,28,0.4); }
.price-card.featured {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
  position: relative;
}
.price-card.featured .price-meta,
.price-card.featured .price-feat li { color: rgba(244,239,230,0.82); }
.price-badge {
  position: absolute;
  top: -11px; left: clamp(28px,2.6vw,40px);
  background: var(--orange);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 2px;
}
.price-name {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.price-tag { display: flex; align-items: baseline; gap: 8px; }
.price-amount {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 120%;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-cur { font-family: var(--mono); font-size: 15px; opacity: 0.7; }
.price-meta { font-size: 14px; color: var(--ink-soft); margin: 8px 0 24px; }
.price-feat { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.price-feat li {
  font-size: 15.5px;
  color: var(--ink-soft);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.4;
}
.price-feat li::before {
  content: "";
  width: 7px; height: 7px;
  margin-top: 7px;
  flex: none;
  background: var(--orange);
  border-radius: 50%;
}
.price-card .btn { width: 100%; justify-content: center; }
.price-note { text-align: center; margin-top: 28px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; color: var(--ink-soft); }

.pay-strip {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-align: center;
}
.pay-strip strong { color: var(--green); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }
@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(36px,5vw,72px); align-items: start; }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  padding: 26px 0;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-q .sign {
  margin-left: auto;
  flex: none;
  width: 22px; height: 22px;
  position: relative;
  transition: transform .3s;
}
.faq-q .sign::before, .faq-q .sign::after {
  content: ""; position: absolute; background: var(--orange);
  left: 50%; top: 50%;
}
.faq-q .sign::before { width: 16px; height: 2px; transform: translate(-50%,-50%); }
.faq-q .sign::after { width: 2px; height: 16px; transform: translate(-50%,-50%); transition: transform .3s; }
.faq-item.open .faq-q .sign::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { overflow: hidden; height: 0; transition: height .35s ease; }
.faq-a-inner { padding: 0 42px 28px 0; color: var(--ink-soft); font-size: 16.5px; line-height: 1.55; max-width: 64ch; }
.faq-a-inner p { margin: 0 0 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
@media (max-width: 820px) { .faq-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ¿ES PARA VOS?
   ============================================================ */
.paravos-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.paravos-title { color: var(--green-deep); }
.paravos-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 3vw, 52px);
  align-items: start;
}
.paravos-col-head {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--line-light);
  margin-bottom: 22px;
}
.paravos-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.paravos-label.yes { color: var(--green); }
.paravos-label.no  { color: var(--orange); }
.paravos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.paravos-list li {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-light);
  text-wrap: pretty;
  position: relative;
  padding-left: 18px;
}
.paravos-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 17px;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}
.paravos-list.no li::before { color: var(--orange); }
.paravos-list li:first-child { border-top: 1px solid var(--line-light); }
@media (max-width: 900px) {
  .paravos-grid { grid-template-columns: 1fr; }
  .paravos-title { font-size: clamp(42px, 12vw, 80px) !important; }
}
@media (max-width: 640px) {
  .paravos-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   ANCLA
   ============================================================ */
.ancla-quote {
  margin: 0 auto;
  max-width: 72ch;
  text-align: center;
  padding: clamp(20px, 4vw, 48px) 0;
}
.ancla-quote p {
  font-family: var(--display);
  font-weight: 700;
  font-stretch: 112%;
  font-size: clamp(26px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--cream);
  margin: 0 0 0.3em;
  text-wrap: balance;
}
.ancla-quote p:last-child {
  color: var(--orange);
  margin-bottom: 0;
}

/* ============================================================
   QUIÉN ES IZĒKI
   ============================================================ */
.izeki {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.izeki-media { position: sticky; top: 100px; }
.izeki-media image-slot {
  display: block;
  width: 100%;
  height: clamp(440px, 42vw, 600px);
  border: 1px solid var(--line-light);
  border-radius: 4px;
  --is-placeholder-color: rgba(24,33,28,0.35);
}
.izeki-name {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 118%;
  font-size: clamp(40px, 5.4vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--green-deep);
}
.izeki-name .alt { color: var(--orange); font-stretch: 100%; font-weight: 700; }
.izeki-roles {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 26px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line-light);
}
.izeki-roles span {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.izeki-roles span:first-child { color: var(--orange); }
.izeki-body { display: flex; flex-direction: column; gap: 12px; }
.izeki-body p {
  margin: 0;
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-soft);
  max-width: 62ch;
  text-wrap: pretty;
}
.izeki-body .izeki-emph {
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 106%;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--green-deep);
  padding-left: 22px;
  border-left: 2px solid var(--orange);
  margin-top: 8px;
}
.izeki-formacion {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}
.izeki-formacion-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
}
.izeki-formacion ul {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.izeki-formacion li {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.izeki-formacion li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
}
@media (max-width: 860px) {
  .izeki { grid-template-columns: 1fr; }
  .izeki-media { position: static; max-width: 380px; }
}

/* ============================================================
   GARANTÍA
   ============================================================ */
.guarantee {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}
.guarantee .kicker { justify-content: center; margin-bottom: 28px; }
.guarantee-quote {
  font-family: var(--display);
  font-weight: 600;
  font-stretch: 108%;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
  color: var(--green-deep);
}
.guarantee-sign {
  display: block;
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--orange);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 80% at 50% 110%, rgba(196,98,45,0.10), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; text-align: center; padding: clamp(80px,12vw,150px) var(--pad); }
.cta-title {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 125%;
  font-size: clamp(54px, 11vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.02em;
  margin: 22px 0 0;
  color: var(--green-deep);
}
.cta-title .o { color: var(--orange); }
.cta .lead { color: var(--ink-soft); margin: 28px auto 40px; text-align: center; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--olive);
  color: rgba(244,239,230,0.6);
  padding: 56px var(--pad) 40px;
}
.footer-top {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}
.footer .brand { font-size: 30px; }
.footer-tag { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; max-width: 30ch; }
.footer-bottom {
  max-width: var(--maxw);
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.footer-bottom a:hover { color: var(--cream); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
