/* ============================================================
   ELITIA — Premium editorial system (cream / clay / ink)
   Display: Cormorant Garamond · Body: Mulish
   ============================================================ */

:root {
  --paper: #F2EADD;
  --paper-deep: #EADFCB;
  --card: #FBF7EF;
  --ink: #221C15;
  --ink-2: #4C4339;
  --muted: #8C8073;
  --clay: #B0532F;
  --clay-deep: #8C3F22;
  --clay-soft: #C9744E;
  --sage: #5E7253;
  --line: rgba(34,28,21,.13);
  --line-soft: rgba(34,28,21,.08);
  --shadow: 0 30px 70px -40px rgba(60,40,20,.45);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Mulish', -apple-system, "Helvetica Neue", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- Typography primitives ---------- */
.display {
  font-family: 'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.02;
  color: var(--ink);
}
.it {
  font-style: italic;
  font-weight: 500;
  color: var(--clay);
}
.eyebrow {
  font-family: 'Mulish', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay);
}
.eyebrow.muted { color: var(--muted); }

p { color: var(--ink-2); }
.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  color: var(--ink-2);
  font-weight: 400;
}

/* ---------- Layout ---------- */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 40px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding: 0 40px; }
section { padding: 120px 0; position: relative; }

.sec-head { margin-bottom: 64px; }
.sec-head .eyebrow { display: block; margin-bottom: 22px; }
.sec-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  max-width: 16ch;
}
.sec-head.wide h2 { max-width: 20ch; }
.sec-head p { margin-top: 22px; max-width: 52ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid var(--clay);
  background: var(--clay);
  color: #FBF7EF;
  transition: background .3s ease, color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(140,63,34,.6); }
.btn .ar { transition: transform .3s ease; }
.btn:hover .ar { transform: translateX(4px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: transparent; color: var(--clay); border-color: var(--clay); box-shadow: none; }
.link-underline {
  font-family: 'Mulish', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--clay);
  transition: gap .3s ease;
}
.link-underline:hover { gap: 16px; }

/* ---------- Nav ---------- */
nav.top {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  padding: 22px 0;
  background: rgba(242,234,221,.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, padding .3s ease;
}
nav.top.scrolled { border-color: var(--line-soft); padding: 16px 0; }
nav.top .inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 3px;
}
.logo .dotmark { color: var(--clay); }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a.navlink {
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2);
  transition: color .2s ease; white-space: nowrap;
}
.nav-links a.navlink:hover { color: var(--clay); }

/* ---------- Hero ---------- */
.hero { padding: 190px 0 90px; position: relative; }
.hero .eyebrow { display: block; margin-bottom: 30px; }
.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  max-width: 17ch;
}
.hero h1 .it { display: inline; }
.hero-main {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: stretch;
  margin-top: 8px;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero-copy h1 { margin-bottom: 26px; max-width: 18ch; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: end;
  margin-top: 46px;
}
.hero-sub { max-width: 46ch; margin-bottom: 4px; }
.hero-cta-row { margin-top: 34px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.hero-note { font-size: 13px; color: var(--muted); letter-spacing: 0.02em; }
.hero-authority { list-style: none; display: flex; flex-direction: column; gap: 0; margin-top: 38px; width: 100%; border-top: 1px solid var(--line); }
.hero-authority li { display: flex; align-items: center; gap: 13px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
.hero-authority .ha-ic { font-size: 17px; line-height: 1; width: 22px; text-align: center; flex-shrink: 0; }
.hero-figure {
  position: relative;
  height: 100%;
  min-height: 540px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; display: block; }
.hero-figure .cap {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(251,247,239,.92);
  color: var(--ink);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  padding: 9px 14px; border-radius: 2px;
}
.hero-stats {
  display: flex; gap: 0; margin-top: 84px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.hero-stats .hs { flex: 1; padding: 32px 28px 32px 0; border-right: 1px solid var(--line); }
.hero-stats .hs:last-child { border-right: 0; padding-right: 0; }
.hero-stats .hs .v { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: clamp(34px, 4vw, 52px); line-height: 1; color: var(--ink); }
.hero-stats .hs .v em { font-style: italic; color: var(--clay); }
.hero-stats .hs .l { margin-top: 10px; font-size: 13.5px; color: var(--muted); max-width: 22ch; }

/* ---------- Manifesto ---------- */
.manifesto { background: var(--paper-deep); }
.manifesto .inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: start; }
.manifesto h2 {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500;
  font-size: clamp(36px, 5.2vw, 70px); line-height: 1.02; letter-spacing: -0.015em;
}
.manifesto .body p { margin-bottom: 22px; font-size: 16.5px; line-height: 1.7; }

/* ---------- Numbered value props ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.value { padding: 50px 38px 50px 0; border-right: 1px solid var(--line); }
.value:last-child { border-right: 0; padding-right: 0; }
.value .num { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 500; font-size: 64px; line-height: 1; color: var(--clay); margin-bottom: 26px; }
.value h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 27px; line-height: 1.12; letter-spacing: -0.01em; margin-bottom: 16px; }
.value p { font-size: 15px; line-height: 1.65; color: var(--ink-2); }

/* ---------- Marquee ---------- */
.marquee-band { background: var(--ink); color: var(--paper); padding: 30px 0; overflow: hidden; }
.marquee-band .track { display: flex; gap: 0; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee-band .track span {
  font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 500;
  font-size: clamp(28px, 3.4vw, 46px); white-space: nowrap; padding: 0 38px; color: var(--paper);
}
.marquee-band .track span::after { content: "✦"; font-style: normal; color: var(--clay-soft); margin-left: 76px; font-size: .55em; vertical-align: middle; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Problem list ---------- */
.problem-list { border-top: 1px solid var(--line); }
.problem-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 30px; align-items: baseline;
  padding: 34px 0; border-bottom: 1px solid var(--line);
  transition: padding-left .35s ease;
}
.problem-item:hover { padding-left: 14px; }
.problem-item .pn { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 26px; color: var(--clay); }
.problem-item .pb strong { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 25px; line-height: 1.2; margin-bottom: 7px; color: var(--ink); letter-spacing: -0.01em; }
.problem-item .pb p { font-size: 15px; color: var(--ink-2); max-width: 64ch; }
.pull {
  margin-top: 70px; padding: 56px 60px; background: var(--card);
  border-radius: 6px; box-shadow: var(--shadow); position: relative;
}
.pull q { quotes: none; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 500; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.2; color: var(--ink); display: block; letter-spacing: -0.01em; }
.pull .pf { margin-top: 26px; font-size: 15.5px; color: var(--ink-2); line-height: 1.7; max-width: 70ch; }

/* ---------- Cards grid ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: 6px; padding: 38px 36px;
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ci { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: 22px; color: var(--clay); margin-bottom: 16px; display: block; }
.card h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 25px; line-height: 1.16; letter-spacing: -0.01em; margin-bottom: 13px; }
.card p { font-size: 14.5px; line-height: 1.65; color: var(--ink-2); }
.conclude {
  margin-top: 40px; padding: 44px 48px; border: 1px solid var(--clay); border-radius: 6px;
  background: linear-gradient(180deg, rgba(176,83,47,.05), transparent); text-align: center;
}
.conclude strong { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.15; margin-bottom: 12px; }
.conclude p { font-size: 15.5px; max-width: 60ch; margin: 0 auto; color: var(--ink-2); }

/* services 3+2 */
.services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.services .card:nth-child(1), .services .card:nth-child(2), .services .card:nth-child(3) { grid-column: span 2; }
.services .card:nth-child(4), .services .card:nth-child(5) { grid-column: span 3; }
.closing-line { margin-top: 60px; text-align: center; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-size: clamp(24px, 3vw, 38px); line-height: 1.25; color: var(--ink); max-width: 28ch; margin-left: auto; margin-right: auto; }
.closing-line strong { font-style: normal; font-weight: 600; color: var(--clay); display: block; margin-top: 6px; }

/* ---------- Steps ---------- */
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 150px 1fr 1fr; gap: 48px; padding: 54px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step .sn { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; font-weight: 500; font-size: 80px; line-height: .9; color: var(--clay); }
.step .sn .lbl { display: block; font-family: 'Mulish', sans-serif; font-style: normal; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.step h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: clamp(26px, 2.4vw, 34px); line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 14px; }
.step .sbody p { font-size: 15px; color: var(--ink-2); line-height: 1.65; }
.step ul { list-style: none; }
.step ul li { font-size: 14.5px; color: var(--ink-2); padding: 7px 0 7px 24px; position: relative; line-height: 1.5; }
.step ul li::before { content: ""; position: absolute; left: 0; top: 15px; width: 11px; height: 1px; background: var(--clay); }

/* ---------- IA collapsible ---------- */
.ia { border: 1px solid var(--line); border-radius: 8px; background: var(--card); overflow: hidden; transition: box-shadow .35s ease; }
.ia.open { box-shadow: var(--shadow); }
.ia-trigger { display: flex; align-items: center; justify-content: space-between; gap: 36px; width: 100%; padding: 48px 52px; background: transparent; border: 0; text-align: left; cursor: pointer; font-family: inherit; }
.ia-trigger h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; font-size: clamp(28px, 3.8vw, 48px); line-height: 1.05; letter-spacing: -0.01em; margin-bottom: 14px; }
.ia-trigger p { font-size: 16px; color: var(--ink-2); max-width: 52ch; }
.ia-ic { flex-shrink: 0; width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--clay); display: flex; align-items: center; justify-content: center; color: var(--clay); transition: transform .4s cubic-bezier(.2,.7,.2,1), background .3s, color .3s; }
.ia.open .ia-ic { transform: rotate(180deg); background: var(--clay); color: var(--card); }
.ia-content { max-height: 0; overflow: hidden; transition: max-height .6s cubic-bezier(.2,.7,.2,1); }
.ia.open .ia-content { max-height: 1400px; }
.ia-inner { padding: 8px 52px 52px; border-top: 1px solid var(--line-soft); }
.ia-big { text-align: center; margin: 40px 0 36px; }
.ia-big .n { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: clamp(64px, 9vw, 120px); line-height: 1; color: var(--clay); }
.ia-big p { font-size: 15.5px; max-width: 50ch; margin: 14px auto 0; color: var(--ink-2); }
.ia-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.ia-checks .ck { display: flex; align-items: baseline; gap: 14px; padding: 15px 0; font-size: 15px; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.ia-checks .ck::before { content: ""; flex-shrink: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--clay); transform: translateY(-2px); }

/* ---------- Results ---------- */
.res-marquee { margin: 0 0 44px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.res-track { display: flex; gap: 26px; width: max-content; align-items: flex-start; animation: scroll-x 64s linear infinite; }
.res-marquee:hover .res-track { animation-play-state: paused; }
.res-card { flex-shrink: 0; width: clamp(560px, 62vw, 880px); background: var(--card); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.res-card.report { width: clamp(500px, 52vw, 680px); }
.res-card.report.tall { width: clamp(380px, 36vw, 500px); }
.res-card img { width: 100%; height: auto; display: block; background: #fff; }
.res-card figcaption { padding: 16px 22px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; color: var(--muted); border-top: 1px solid var(--line-soft); }
.res-conclude { padding: 44px 52px; border: 1px solid var(--sage); border-radius: 6px; background: linear-gradient(180deg, rgba(94,114,83,.06), transparent); }
.res-conclude strong { display: block; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.05; color: var(--sage); margin-bottom: 12px; }
.res-conclude p { font-size: 15.5px; color: var(--ink-2); max-width: 64ch; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 420px 1fr; gap: 70px; align-items: start; }
.about-photos { position: relative; aspect-ratio: 4/5; }
.pc { position: absolute; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); background: var(--card); transition: transform .5s cubic-bezier(.2,.7,.2,1), z-index .1s; }
.pc img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pc .pt { position: absolute; bottom: 10px; left: 10px; background: rgba(251,247,239,.92); color: var(--ink); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 6px 10px; border-radius: 2px; }
.pc1 { top: 0; left: 0; width: 68%; height: 54%; transform: rotate(-5deg); z-index: 1; }
.pc1 img { object-position: 60% center; }
.pc2 { top: 28%; right: 0; width: 60%; height: 56%; transform: rotate(4deg); z-index: 2; }
.pc3 { bottom: 0; left: 13%; width: 74%; height: 54%; transform: rotate(-2deg); z-index: 3; }
.pc3 img { object-position: center top; }
.about-photos:hover .pc1 { transform: rotate(-8deg) translate(-6px,-8px); }
.about-photos:hover .pc2 { transform: rotate(7deg) translate(6px,-4px); }
.about-photos:hover .pc3 { transform: rotate(-3deg) translateY(8px); }
.pc:hover { z-index: 10; }
.about-name { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 32px; letter-spacing: -0.01em; margin-bottom: 4px; }
.about-role { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--clay); font-weight: 600; margin-bottom: 30px; }
.about-body p { margin-bottom: 18px; font-size: 16px; line-height: 1.72; color: var(--ink-2); }
.about-body p .it { font-weight: 600; }
.mission { margin-top: 30px; padding: 30px 34px; background: var(--paper-deep); border-radius: 6px; font-size: 16.5px; line-height: 1.65; color: var(--ink); }
.mission .it { font-weight: 600; }
.badge-line { margin-top: 24px; display: inline-flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink-2); }
.badge-line .bi { width: 30px; height: 30px; border-radius: 50%; background: var(--clay); color: var(--card); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; }

/* ---------- Fichas de equipo (Andrea / Luis, misma jerarquía) ---------- */
.founder { display: grid; grid-template-columns: 420px 1fr; gap: 70px; align-items: start; padding-top: 64px; }
.founder + .founder { margin-top: 8px; border-top: 1px solid var(--line); }
.founder-visual { position: sticky; top: 110px; }
.founder-visual .about-photos { position: relative; aspect-ratio: 4/5; margin: 0; }
.founder-head { margin-bottom: 26px; }
.founder-tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--clay); margin-bottom: 16px; }
.about-body p .it { font-weight: 600; }

/* Foto de Luis (equivalente visual al collage de Andrea) */
.founder-photo { position: relative; aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block; }
.founder-photo .pt { position: absolute; bottom: 10px; left: 10px; background: rgba(251,247,239,.92); color: var(--ink); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; padding: 6px 10px; border-radius: 2px; }

/* Fila de credenciales (autoridad rápida bajo nombre/cargo) */
.cred-row { list-style: none; display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.cred-row li { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--ink-2); background: var(--paper-deep); border: 1px solid var(--line-soft); border-radius: 100px; padding: 8px 15px; line-height: 1.2; }
.cred-row .ha-ic { font-size: 14px; line-height: 1; }

/* Frase final integrada en cada ficha */
.founder-quote { margin-top: 34px; padding: 28px 32px; background: var(--paper-deep); border-left: 4px solid var(--clay); border-radius: 6px; }
.founder-quote p { font-family: 'Cormorant Garamond', serif; font-size: clamp(19px, 1.9vw, 25px); line-height: 1.32; color: var(--ink); letter-spacing: -0.01em; }
.founder-quote strong { font-weight: 600; }
.founder-quote .it { color: var(--clay); }

/* Acordeones premium */
.acc-label { margin-top: 36px; margin-bottom: 14px; font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.acc { border-top: 1px solid var(--line); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q { display: flex; align-items: center; gap: 18px; width: 100%; background: transparent; border: 0; cursor: pointer; padding: 18px 0; text-align: left; font-family: inherit; color: var(--ink); transition: padding-left .35s ease; }
.acc-item:hover .acc-q { padding-left: 8px; }
.acc-n { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; color: var(--clay); flex-shrink: 0; width: 24px; }
.acc-t { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 21px; line-height: 1.2; letter-spacing: -0.01em; flex: 1; }
.acc-tg { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--clay); transition: transform .3s ease, background .3s ease, color .3s ease; }
.acc-item.open .acc-tg { transform: rotate(45deg); background: var(--clay); color: var(--card); border-color: var(--clay); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .35s ease; }
.acc-a p { font-size: 15px; line-height: 1.65; color: var(--ink-2); padding-left: 42px; max-width: 60ch; }
.acc-item.open .acc-a { max-height: 240px; padding-bottom: 20px; }

/* Frase de equipo destacada */
.team-split { margin-top: 70px; padding: 56px 60px; background: var(--paper-deep); border-left: 4px solid var(--clay); border-radius: 6px; }
.team-split p { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 3vw, 36px); line-height: 1.28; color: var(--ink); letter-spacing: -0.01em; }
.team-split strong { font-weight: 600; }
.team-split .it { color: var(--clay); }

/* ---------- Clients ---------- */
.clients { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.client { background: var(--card); border: 1px solid var(--line-soft); border-radius: 6px; padding: 36px; }
.client .head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.client .av { width: 50px; height: 50px; border-radius: 50%; background: var(--paper-deep); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 20px; color: var(--clay); }
.client .nm { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 21px; }
.client .hd { font-size: 13px; color: var(--muted); }
.client .stars { margin-left: auto; color: var(--clay); letter-spacing: 2px; font-size: 13px; }
.client .vid { max-width: 260px; margin: 0 auto 24px; aspect-ratio: 9 / 16; border-radius: 8px; overflow: hidden; background: var(--paper-deep); border: 1px solid var(--line-soft); }
.client .vid iframe { display: block; width: 100%; height: 100%; }
.client ul { list-style: none; }
.client li { font-size: 14.5px; color: var(--ink-2); padding: 9px 0 9px 20px; position: relative; line-height: 1.55; }
.client li::before { content: "—"; position: absolute; left: 0; color: var(--clay); }
.client li strong { color: var(--ink); font-weight: 700; }

/* ---------- Yes / No ---------- */
.yesno { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.yn { background: var(--card); border: 1px solid var(--line-soft); border-radius: 6px; padding: 44px 40px; }
.yn.no { background: transparent; border-style: dashed; }
.yn h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 26px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; letter-spacing: -0.01em; }
.yn ul { list-style: none; }
.yn li { padding: 13px 0 13px 30px; position: relative; font-size: 15px; color: var(--ink-2); line-height: 1.5; border-bottom: 1px solid var(--line-soft); }
.yn li:last-child { border-bottom: 0; }
.yn.yes li::before { content: ""; position: absolute; left: 2px; top: 18px; width: 12px; height: 6px; border-left: 1.5px solid var(--sage); border-bottom: 1.5px solid var(--sage); transform: rotate(-45deg); }
.yn.no li::before { content: "×"; position: absolute; left: 4px; top: 11px; color: var(--clay); font-size: 18px; }

/* ---------- Exclusivity ---------- */
.excl-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.reason { padding-top: 24px; border-top: 1px solid var(--clay); }
.reason .num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 30px; color: var(--clay); margin-bottom: 12px; }
.reason .t { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 22px; line-height: 1.18; letter-spacing: -0.01em; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 30px 0; cursor: pointer; }
.faq-q h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(20px, 2vw, 27px); line-height: 1.2; letter-spacing: -0.01em; }
.faq-tg { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--clay); transition: transform .3s ease, background .3s ease, color .3s ease; }
.faq-item.open .faq-tg { transform: rotate(45deg); background: var(--clay); color: var(--card); border-color: var(--clay); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; }
.faq-a p { font-size: 15.5px; line-height: 1.7; color: var(--ink-2); max-width: 72ch; }
.faq-item.open .faq-a { max-height: 420px; padding: 0 60px 30px 0; }

/* ---------- Final CTA ---------- */
.final { background: var(--ink); color: var(--paper); text-align: center; padding: 150px 0; }
.final .eyebrow { color: var(--clay-soft); display: block; margin-bottom: 28px; }
.final h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(40px, 6vw, 82px); line-height: 1.0; letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto; color: var(--paper); }
.final h2 .it { color: var(--clay-soft); }
.final p { max-width: 56ch; margin: 30px auto 42px; font-size: 17px; line-height: 1.7; color: rgba(242,234,221,.74); }
.final .btn { background: var(--clay); border-color: var(--clay); }
.final .btn:hover { background: var(--clay-soft); border-color: var(--clay-soft); }
.final .guarantees { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; font-size: 13px; color: rgba(242,234,221,.6); letter-spacing: 0.04em; }
.final .guarantees span { display: inline-flex; align-items: center; gap: 9px; }
.final .guarantees span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--clay-soft); }

/* ---------- Footer ---------- */
footer.bottom { background: var(--ink); color: rgba(242,234,221,.5); padding: 60px 0; border-top: 1px solid rgba(242,234,221,.08); }
footer.bottom .inner { max-width: 1240px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
footer.bottom .logo { color: var(--paper); }
footer.bottom .meta { display: flex; gap: 30px; flex-wrap: wrap; font-size: 13px; }

/* ---------- Modal ---------- */
.modal { display: none; position: fixed; inset: 0; z-index: 100; background: rgba(34,28,21,.55); backdrop-filter: blur(8px); align-items: center; justify-content: center; padding: 24px; }
.modal .box { max-width: 500px; width: 100%; background: var(--card); border-radius: 10px; padding: 44px; position: relative; box-shadow: 0 40px 120px -30px rgba(34,28,21,.6); }
.modal .x { position: absolute; top: 18px; right: 18px; background: transparent; border: 0; font-size: 24px; color: var(--muted); cursor: pointer; width: 34px; height: 34px; }
.modal h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 32px; letter-spacing: -0.01em; margin-bottom: 8px; }
.modal .sub { font-size: 14.5px; color: var(--ink-2); margin-bottom: 26px; }
.modal form { display: grid; gap: 14px; }
.modal input { background: var(--paper); border: 1px solid var(--line); color: var(--ink); padding: 15px 17px; border-radius: 4px; font-family: 'Mulish', sans-serif; font-size: 15px; }
.modal input::placeholder { color: var(--muted); }
.modal input:focus { outline: none; border-color: var(--clay); }
.modal .done { display: none; text-align: center; padding: 16px 0; }
.modal .done .ic { width: 52px; height: 52px; border-radius: 50%; background: rgba(94,114,83,.12); color: var(--sage); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.modal .done strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 8px; }
.modal .done p { font-size: 14.5px; color: var(--ink-2); }

/* ---------- Reveal animation (fail-safe: opacity is ALWAYS 1; only transform animates) ---------- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal.in { animation: revUp .8s cubic-bezier(.2,.7,.2,1); }
}
@keyframes revUp { from { transform: translateY(24px); } to { transform: translateY(0); } }

/* ---------- Diagnóstico interactivo ---------- */
.diag-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.diag-card {
  text-align: left; background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: 40px 34px; cursor: pointer; font-family: inherit; color: inherit;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
  position: relative;
}
.diag-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--clay); }
.diag-card.active { border-color: var(--clay); background: var(--card); box-shadow: var(--shadow); }
.diag-card.active::after { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: var(--clay); border-radius: 8px 8px 0 0; }
.diag-card .dico { font-size: 34px; line-height: 1; margin-bottom: 22px; display: block; }
.diag-card h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 26px; line-height: 1.14; letter-spacing: -0.01em; }
.diag-card .pick { margin-top: 18px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: flex; align-items: center; gap: 8px; transition: color .3s ease; }
.diag-card:hover .pick, .diag-card.active .pick { color: var(--clay); }
.diag-response {
  margin-top: 26px; background: var(--paper-deep); border: 1px solid var(--line); border-left: 4px solid var(--clay);
  border-radius: 6px; padding: 0 40px; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .5s cubic-bezier(.2,.7,.2,1), opacity .4s ease, padding .4s ease;
}
.diag-response.show { max-height: 360px; opacity: 1; padding: 36px 40px; }
.diag-response p { font-size: clamp(18px, 2vw, 23px); font-family: 'Cormorant Garamond', serif; font-style: italic; line-height: 1.35; color: var(--ink); }
.diag-response .dr-cta { margin-top: 22px; }

/* ---------- Sistema Elitia Growth (oferta principal) ---------- */
.growth { background: var(--ink); color: var(--paper); }
.growth .eyebrow { color: var(--clay-soft); display: block; margin-bottom: 26px; }
.growth-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: start; }
.growth h2 { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: clamp(36px, 5vw, 64px); line-height: 1.02; letter-spacing: -0.015em; color: var(--paper); }
.growth h2 .it { color: var(--clay-soft); }
.growth .gsub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(20px, 2.2vw, 27px); color: var(--clay-soft); margin: 28px 0 22px; line-height: 1.3; }
.growth .gbody p { color: rgba(242,234,221,.78); font-size: 16.5px; line-height: 1.7; margin-bottom: 18px; }
.growth-benefits { background: rgba(242,234,221,.04); border: 1px solid rgba(242,234,221,.12); border-radius: 10px; padding: 40px 38px; }
.growth-benefits .gb-label { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--clay-soft); margin-bottom: 22px; }
.growth-benefits ul { list-style: none; }
.growth-benefits li { display: flex; align-items: baseline; gap: 14px; padding: 13px 0; font-size: 16px; color: var(--paper); border-bottom: 1px solid rgba(242,234,221,.1); }
.growth-benefits li:last-child { border-bottom: 0; }
.growth-benefits li::before { content: ""; flex-shrink: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--clay-soft); transform: translateY(-1px); }
.growth-result { margin-top: 36px; display: flex; gap: 0; border-top: 1px solid rgba(242,234,221,.14); }
.growth-result .gr { flex: 1; padding: 26px 20px 0 0; }
.growth-result .gr .v { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: clamp(24px, 2.6vw, 32px); color: var(--clay-soft); line-height: 1.1; }
.growth-cta-row { margin-top: 44px; }

/* ---------- Demo real (vídeo) ---------- */
.video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); background: var(--ink); margin-top: 8px; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-caption { margin-top: 28px; font-size: 16px; color: var(--ink-2); line-height: 1.65; max-width: 70ch; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  section { padding: 80px 0; }
  .wrap, .wrap-narrow { padding: 0 24px; }
  nav.top .inner, footer.bottom .inner { padding: 0 24px; }
  .nav-links { gap: 18px; }
  .nav-links a.navlink { display: none; }
  .hero { padding: 150px 0 70px; }
  .hero-main { grid-template-columns: 1fr; gap: 36px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 440px; min-height: 0; aspect-ratio: 4/5; height: auto; order: -1; }
  .hero-copy h1 { max-width: 100%; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stats .hs { flex: 1 1 45%; border-right: 0; border-bottom: 1px solid var(--line); padding: 24px 0; }
  .manifesto .inner { grid-template-columns: 1fr; gap: 36px; }
  .values { grid-template-columns: 1fr; }
  .value { border-right: 0; border-bottom: 1px solid var(--line); padding: 40px 0; }
  .cards, .services, .clients, .yesno, .excl-reasons { grid-template-columns: 1fr !important; }
  .services .card { grid-column: 1 !important; }
  .step { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
  .step .sn { font-size: 56px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photos { max-width: 380px; }
  .founder { grid-template-columns: 1fr; gap: 32px; }
  .founder-visual { position: static; max-width: 380px; }
  .team-split { padding: 36px 28px; }
  .ia-trigger { padding: 32px 26px; gap: 18px; }
  .ia-inner { padding: 8px 26px 36px; }
  .ia-checks { grid-template-columns: 1fr; }
  .pull { padding: 40px 30px; }
  .faq-item.open .faq-a { padding-right: 0; }
  .diag-options { grid-template-columns: 1fr; }
  .growth-grid { grid-template-columns: 1fr; gap: 40px; }
  .growth-result { flex-wrap: wrap; }
  .growth-result .gr { flex: 1 1 50%; padding: 22px 0 0; }
}
