  @import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@400;500;600;700&display=swap');

  :root {
    /* NEUTRALS */
    --cream: #f0ede6;
    --white: #faf8f3;

    /* ACCENT — client's sage, as the single accent hue, in three weights */
    --sage: #727a6f;
    --sage-light: #97a08f;
    --sage-wash: rgba(114,122,111,0.07);
    --sage-line: rgba(114,122,111,0.28);

    /* INK — a dark, low-saturation olive drawn from sage's own hue (~102°),
       replacing the old teal-forest green, which sat in an unrelated hue family */
    --ink: #242b21;
    --ink-deep: #141810;

    /* TEXT */
    --text: #2a2f28;
    --text-muted: #5b6358;
    --line: #dfd8c6;

    /* SYSTEM */
    --ease: cubic-bezier(.16,1,.3,1);
    --ease-soft: cubic-bezier(.4,0,.2,1);
    --shadow-sm: 0 2px 8px rgba(36,43,33,0.08);
    --shadow-md: 0 18px 40px rgba(36,43,33,0.14);
    --shadow-lg: 0 30px 70px rgba(36,43,33,0.20);
    --radius: 3px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  ::selection { background: var(--sage); color: var(--white); }

  body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
  }

  /* Subtle print-grade grain — premium tactility, no external asset */
  body::before {
    content: '';
    position: fixed; inset: 0; z-index: 2000; pointer-events: none;
    opacity: 0.035; mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  h1, h2, h3, .serif { font-family: 'Lora', serif; }
  h1, h2, h3 { text-wrap: balance; }
  p { text-wrap: pretty; }

  .eyebrow { display: none; } /* retired kicker pattern */

  .section { padding: clamp(64px, 9vw, 108px) 8vw; max-width: 1200px; margin: 0 auto; }
  .center { text-align: center; }

  img { max-width: 100%; }

  /* ============ MOTION SYSTEM ============ */
  .reveal { opacity: 0; transform: translateY(28px); }
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      transition: opacity .9s var(--ease), transform .9s var(--ease);
      transition-delay: var(--delay, 0ms);
    }
  }
  .reveal.is-in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; }
    html { scroll-behavior: auto; }
  }

  /* ============ STICKY NAV ============ */
  .navbar {
    position: sticky; top: 0; z-index: 100;
    background: #3a4535;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 6vw;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: padding .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  }
  .navbar.scrolled {
    padding: 10px 6vw;
    background: rgba(36,43,33,0.94);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
  }
  .navbar img { height: 52px; transition: height .35s var(--ease); }
  .navbar.scrolled img { height: 40px; }
  .nav-cta {
    background: var(--sage); color: var(--ink); font-weight: 700; font-size: 12.5px;
    letter-spacing: 1px; text-transform: uppercase; padding: 11px 22px; text-decoration: none;
    border-radius: 2px; transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
    position: relative;
  }
  .nav-cta:hover { background: var(--sage-light); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(114,122,111,0.35); }
  .nav-cta:active { transform: translateY(0); }
  .nav-timer { color: var(--cream); font-size: 12px; letter-spacing: 0.5px; display:flex; align-items:center; gap:10px;}
  .nav-timer span.box { background: rgba(240,237,230,0.12); padding: 5px 9px; border-radius: 3px; font-family:'Lora',serif; font-weight:600; min-width: 26px; display:inline-block; text-align:center; }

  @media (max-width: 700px) {
    .nav-timer { display: none; }
  }

  /* ============ BUTTONS ============ */
  .cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--sage);
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 2px;
    transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
    border: none; cursor: pointer;
    box-shadow: 0 1px 2px rgba(20,40,37,0.1);
  }
  .cta-btn::after {
    content: '';
    width: 14px; height: 10px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='12' x2='20' y2='12'/%3E%3Cpolyline points='13 5 20 12 13 19'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='3' y1='12' x2='20' y2='12'/%3E%3Cpolyline points='13 5 20 12 13 19'/%3E%3C/svg%3E") center/contain no-repeat;
    transition: transform .35s var(--ease);
  }
  .cta-btn:hover { background: var(--sage-light); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(114,122,111,0.4); }
  .cta-btn:hover::after { transform: translateX(4px); }
  .cta-btn:active { transform: translateY(-1px) scale(.98); }
  .hero .cta-btn {
    padding: 20px 44px;
    font-size: 13.5px;
  }

  /* ============ HERO ============ */
  .hero {
    background:
      radial-gradient(ellipse 60% 50% at 82% 8%, var(--sage-wash), transparent 60%),
      radial-gradient(ellipse 50% 40% at 8% 92%, rgba(114,122,111,0.06), transparent 60%),
      var(--cream);
    color: var(--ink);
    padding: clamp(56px, 8vw, 84px) 6vw clamp(72px, 9vw, 104px);
    position: relative;
    overflow: clip;
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 72px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  .hero-video-wrap { width: 100%; position: relative; }
  .hero-video-wrap::before {
    content: '';
    position: absolute; inset: -18px;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-light) 100%);
    opacity: 0.22;
    filter: blur(28px);
    border-radius: 12px;
    z-index: 0;
  }
  .hero-photo {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(240,237,230,0.08);
    transition: transform .5s var(--ease-soft);
  }
  .hero-video-wrap:hover .hero-photo { transform: translateY(-4px); }
  .hero-center { text-align: left; }
  .hero-logo { height: 88px; display: block; margin: 0 0 32px; }
  .hero-headline {
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: clamp(2.1rem, 1.35rem + 2.9vw, 3.6rem);
    letter-spacing: -0.01em;
    line-height: 1.16;
    color: var(--ink);
    max-width: 16ch;
    margin: 0 0 26px;
  }
  .hero-support {
    font-size: clamp(16px, 1vw + 12px, 18px);
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 46ch;
    margin: 0 0 24px;
  }
  .hero-microtag {
    font-size: 13.5px;
    letter-spacing: 0.4px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.9;
    margin-bottom: 38px;
    padding-left: 18px;
    border-left: 1px solid var(--sage-line);
  }
  .hero .cta-btn { margin-top: 4px; }
  .hero-tagrow {
    margin: 22px 0 0;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-muted);
  }

  @media (max-width: 900px) {
    .hero { padding: 44px 6vw 60px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-center { text-align: center; }
    .hero-logo { margin: 0 auto 24px; }
    .hero-support { margin-left: auto; margin-right: auto; }
    .hero-microtag { display: inline-block; text-align: left; }
  }

  /* ============ SECTION TITLE (shared across many sections) ============ */
  h2.title {
    font-size: clamp(1.85rem, 1.5rem + 1.4vw, 2.5rem);
    font-weight: 500;
    line-height: 1.22;
    letter-spacing: -0.005em;
    color: var(--ink);
    margin-bottom: 16px;
  }
  h2.title em { color: var(--sage); font-style: italic; }
  .subhead { color: var(--text-muted); font-size: 16px; margin-bottom: 48px; max-width: 56ch; }

  /* ============ IDENTIFICACION ============ */
  .identificacion { background: var(--white); }
  .ident-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 84px;
    align-items: center;
  }
  .ident-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
  }
  .ident-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.7rem, 1.35rem + 1.4vw, 2.2rem);
    line-height: 1.3;
    color: var(--ink);
    margin: 0 0 32px;
  }
  .ident-col p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    max-width: 54ch;
    margin: 0 0 18px;
  }
  .ident-col p.ident-quote {
    position: relative;
    padding: 6px 0 0 40px;
    margin: 34px 0 0;
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 20px;
    line-height: 1.55;
    color: var(--ink);
    max-width: 50ch;
  }
  .ident-col p.ident-quote::before {
    content: '“';
    position: absolute; left: -6px; top: -22px;
    font-family: 'Lora', serif;
    font-size: 72px;
    font-style: normal;
    color: var(--sage);
    opacity: 0.35;
    line-height: 1;
  }
  .ident-quote strong { font-weight: 600; }

  @media (max-width: 900px) {
    .ident-grid { grid-template-columns: 1fr; gap: 36px; }
    .ident-photo { aspect-ratio: 16 / 11; }
    .ident-col p, .ident-col p.ident-quote { max-width: 100%; }
  }

  /* ============ PUENTE ============ */
  .puente { background: var(--white); }
  .puente-grid { display: grid; grid-template-columns: 1fr 420px; gap: 76px; align-items: center; }
  .puente-photo-wrap img {
    width: 100%; height: auto; display: block;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
  }
  .puente-col { max-width: 640px; }
  .puente-reveal {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.3rem, 1.1rem + .8vw, 1.6rem);
    color: var(--sage);
    margin: 8px 0 22px;
  }
  .puente-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 1.4rem + 1.8vw, 2.6rem);
    line-height: 1.32;
    color: var(--ink);
    margin: 22px 0 34px;
  }
  .puente-lead {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 58ch;
    margin: 0 0 20px;
  }
  .puente-bold {
    font-weight: 600;
    font-size: 17.5px;
    line-height: 1.65;
    color: var(--text);
    max-width: 58ch;
    margin: 0 0 20px;
  }

  @media (max-width: 900px) {
    .puente-grid { grid-template-columns: 1fr; gap: 36px; }
    .puente-photo-wrap { order: -1; }
  }

  /* ============ QUE ES ============ */
  .que-es { background: var(--cream); }
  .que-grid { display: grid; grid-template-columns: 420px 1fr; gap: 76px; align-items: center; }
  .que-photo-wrap img {
    width: 100%; height: auto; display: block;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
  }
  .que-col { max-width: 640px; }
  .que-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.85rem, 1.5rem + 1.6vw, 2.6rem);
    line-height: 1.28;
    color: var(--ink);
    margin: 20px 0 28px;
  }
  .que-col p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text);
    max-width: 68ch;
    margin: 0 0 20px;
  }
  .que-list {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 13px;
    margin: 26px 0 36px;
  }
  .que-list p {
    position: relative;
    padding-left: 24px;
    margin: 0;
    font-size: 16px;
    color: var(--text);
    max-width: none;
  }
  .que-list p::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 7px; height: 1px;
    background: var(--sage);
  }
  .que-divider {
    border: none;
    border-top: 1px solid var(--line);
    margin: 0 0 36px;
  }
  .que-col p.que-close {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 22px;
  }
  .que-close strong { color: var(--ink); font-weight: 600; }
  .que-col p.que-final {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem);
    color: var(--ink);
    margin: 0;
  }

  @media (max-width: 900px) {
    .que-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  /* ============ RECORRIDO / FASES ============ */
  .recorrido { background: var(--white); }
  .recorrido-col { max-width: 780px; }
  .recorrido-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.85rem, 1.5rem + 1.6vw, 2.6rem);
    line-height: 1.26;
    color: var(--ink);
    margin: 20px 0 22px;
  }
  .recorrido-stat {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--sage);
    margin: 0 0 28px;
  }
  .recorrido-col > p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 68ch;
    margin: 0 0 18px;
  }
  .fases { margin-top: 28px; }
  .fase {
    display: grid;
    grid-template-columns: 96px 1fr;
    column-gap: 44px;
    row-gap: 4px;
    padding: 52px 0;
    border-top: 1px solid var(--line);
    align-items: start;
    transition: padding .3s var(--ease-soft);
  }
  .fase:last-child { padding-bottom: 6px; }
  .fase-body { display: contents; }
  .fase-body > * { grid-column: 2; }
  .fase-num {
    grid-column: 1; grid-row: 1;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 1;
    color: var(--sage);
    transition: color .3s var(--ease-soft), transform .3s var(--ease-soft);
  }
  .fase:hover .fase-num { color: var(--sage); transform: translateX(4px); }
  .fase-tag {
    grid-column: 1; grid-row: 2;
    margin-top: 12px;
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
  }
  .fase-title {
    grid-row: 1;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 1.05rem + .6vw, 1.5rem);
    color: var(--ink);
    margin: 0 0 18px;
  }
  .fase-body p {
    font-size: 16px;
    line-height: 1.78;
    color: var(--text);
    max-width: 62ch;
    margin: 0 0 18px;
  }
  .fase-body p.fase-close {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
  }

  @media (max-width: 700px) {
    .fase { grid-template-columns: 1fr; gap: 10px; padding: 38px 0; }
    .fase-body > * { grid-column: 1; }
    .fase-num { grid-row: auto; font-size: 34px; }
    .fase-tag { grid-row: auto; margin-top: 0; margin-bottom: 6px; }
    .fase-title { grid-row: auto; }
  }

  /* ============ CALENDARIO ============ */
  .calendario { background: var(--cream); }
  .calendario-grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 76px;
    align-items: center;
  }
  .calendario-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
  }
  .calendario-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.7rem, 1.35rem + 1.4vw, 2.3rem);
    line-height: 1.28;
    color: var(--ink);
    margin: 20px 0 22px;
  }
  .calendario-col > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 56ch;
    margin: 0 0 12px;
  }
  .horario-list { margin: 34px 0 30px; }
  .horario-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 26px;
    transition: transform .3s var(--ease-soft);
  }
  .horario-item:hover { transform: translateX(4px); }
  .horario-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--sage-line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    transition: border-color .3s var(--ease-soft), color .3s var(--ease-soft), background .3s var(--ease-soft);
  }
  .horario-item:hover .horario-icon { border-color: var(--sage); color: var(--sage); background: rgba(114,122,111,0.07); }
  .horario-icon svg { width: 18px; height: 18px; }
  .horario-body h4 {
    font-size: 12.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 6px;
  }
  .horario-body p {
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 46ch;
  }
  .calendario-col > p.calendario-close {
    font-weight: 600;
    font-size: 17px;
    color: var(--ink);
    margin: 12px 0 0;
  }

  @media (max-width: 900px) {
    .calendario-grid { grid-template-columns: 1fr; gap: 40px; }
    .calendario-photo { order: -1; }
  }

  /* ============ INCLUYE — editorial list, not a card grid ============ */
  .incluye2 { background: var(--white); }
  .incluye2-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.7rem, 1.35rem + 1.4vw, 2.3rem);
    line-height: 1.3;
    color: var(--ink);
    margin: 20px 0 20px;
  }
  .incluye2-col > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0 0 30px;
    max-width: 640px;
  }
  .incluye2-hero-photo { margin: 28px 0 48px; }
  .incluye2-hero-photo img {
    display: block; width: 100%; max-width: 720px; height: auto;
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: var(--shadow-lg);
  }
  .incluye2-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 64px;
    margin: 20px 0 44px;
  }
  .incluye2-cell {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 22px;
    align-items: start;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    transition: padding-left .3s var(--ease-soft);
  }
  .incluye2-cell:hover { padding-left: 6px; }
  .incluye2-cell .num {
    grid-column: 1; grid-row: 1 / span 2;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--sage);
    width: 56px; height: 56px;
    border: 1px solid var(--sage-line);
    border-radius: 50%;
    transition: border-color .3s var(--ease-soft), background .3s var(--ease-soft);
  }
  .incluye2-cell:hover .num { border-color: var(--sage); background: rgba(114,122,111,0.06); }
  .incluye2-cell .num svg { width: 22px; height: 22px; }
  .incluye2-cell h4 {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--ink);
    margin: 4px 0 10px;
  }
  .incluye2-cell p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-muted);
    margin: 0;
    max-width: 40ch;
  }
  .incluye2-col > p.incluye2-close {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ink);
    margin: 0;
    max-width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  @media (max-width: 900px) {
    .incluye2-cards { grid-template-columns: 1fr; column-gap: 0; }
  }

  /* ============ FUNDAMENTO ============ */
  .fundamento { background: var(--cream); }
  .fundamento-lead { max-width: 68ch; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); margin: 16px 0 32px; }
  .fundamento-pillars {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.05rem, .95rem + .5vw, 1.25rem);
    color: var(--ink);
    padding-top: 28px;
    border-top: 1px solid var(--line);
    max-width: 68ch;
  }

  /* ============ PARA QUIEN ES / NO ES ============ */
  .perfil { background: var(--cream); }
  .perfil-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 70px; margin-top: 36px; }
  .perfil-col h3 {
    font-family: 'Lora', serif; font-weight: 600; font-size: 19px; margin-bottom: 24px; color: var(--ink);
    padding-bottom: 16px; border-bottom: 1px solid var(--line);
  }
  .perfil-col.no h3 { color: var(--text-muted); }
  .perfil-list p { position: relative; padding-left: 28px; margin: 0 0 17px; font-size: 14.5px; line-height: 1.65; color: var(--text); max-width: none; }
  .perfil-list p::before { content: '✓'; position: absolute; left: 0; top: -1px; color: var(--sage); font-weight: 700; font-size: 13px; }
  .perfil-col.no .perfil-list p::before { content: '✕'; color: #b3ab98; }
  .perfil-req { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
  .perfil-req p { font-family: 'Lora', serif; font-style: italic; font-size: 15px; color: var(--ink); margin: 0 0 6px; max-width: none; }

  @media (max-width: 700px) {
    .perfil-grid { grid-template-columns: 1fr; gap: 40px; }
  }

  /* ============ HISTORIA ============ */
  .historia { background: var(--white); }
  .historia-grid { display: grid; grid-template-columns: 1fr 440px; gap: 76px; align-items: start; margin-top: 24px; }
  .historia-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.7rem, 1.35rem + 1.4vw, 2.3rem);
    line-height: 1.28;
    color: var(--ink);
    margin: 0 0 28px;
  }
  .historia-col p.historia-reveal {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.15rem, 1.05rem + .5vw, 1.35rem);
    color: var(--sage);
    margin: 6px 0 0;
  }
  .historia-col p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text);
    max-width: 58ch;
    margin: 0 0 18px;
  }
  .historia-photo-wrap {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: var(--shadow-md);
  }
  .historia-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 12%;
    display: block;
    transition: transform .6s var(--ease-soft);
  }
  .historia-photo-wrap:hover .historia-photo { transform: scale(1.035); }
  .historia-caption { margin-top: 22px; }
  .historia-caption p { margin: 0 0 4px; font-size: 13px; line-height: 1.5; color: var(--text-muted); max-width: none; }
  .historia-caption .name { font-family: 'Lora', serif; font-weight: 600; font-size: 17px; color: var(--ink); margin-bottom: 8px; }

  @media (max-width: 900px) {
    .historia-grid { grid-template-columns: 1fr; gap: 36px; }
    .historia-photo-col { order: -1; }
  }

  /* ============ RESULTADOS ============ */
  .resultados { background: var(--cream); }
  .resultados-lead { max-width: 62ch; font-size: 15.5px; line-height: 1.7; color: var(--text-muted); margin-bottom: 40px; }
  .resultados-lead strong { color: var(--ink); }
  .resultados-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    row-gap: 20px;
    margin-bottom: 48px;
  }
  .resultados-list p {
    position: relative;
    padding-left: 28px;
    margin: 0;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--text);
    max-width: none;
  }
  .resultados-list p::before {
    content: '✓';
    position: absolute;
    left: 0; top: -1px;
    color: var(--sage);
    font-weight: 700;
    font-size: 14px;
  }
  .resultados-close {
    position: relative;
    padding-left: 28px;
    max-width: 660px;
  }
  .resultados-close::before {
    content: '';
    position: absolute; left: 0; top: 4px; bottom: 4px; width: 2px;
    background: linear-gradient(180deg, var(--sage), var(--ink));
  }
  .resultados-close .obj {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 12px;
  }
  .resultados-close .final {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 1.05rem + .8vw, 1.55rem);
    line-height: 1.42;
    color: var(--ink);
    max-width: 56ch;
  }

  @media (max-width: 700px) {
    .resultados-list { grid-template-columns: 1fr; row-gap: 16px; }
  }

  /* ============ TESTIMONIOS ============ */
  .testimonios { background: var(--white); }
  .test-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 44px; }
  .test-card {
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease-soft);
  }
  .test-card:nth-child(even) { margin-top: 18px; }
  .test-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sage-line); }
  .test-card img { width: 100%; display: block; }
  .test-card .cap {
    padding: 15px 16px; font-size: 12.5px; line-height: 1.5; color: var(--text-muted); border-top: 2px solid var(--sage);
  }
  .highlight { background: linear-gradient(transparent 62%, rgba(114,122,111,0.35) 62%); font-weight: 600; color: var(--ink); }

  @media (max-width: 900px) {
    .test-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
    .test-card:nth-child(even) { margin-top: 0; }
  }

  /* ============ LIGHTBOX ============ */
  .lightbox {
    display: none; position: fixed; inset: 0; background: rgba(15,22,20,0.92);
    z-index: 999; align-items: center; justify-content: center; padding: 40px;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  }
  .lightbox.active { display: flex; }
  @media (prefers-reduced-motion: no-preference) {
    .lightbox img { animation: lightbox-in .35s var(--ease); }
  }
  @keyframes lightbox-in { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: scale(1); } }
  .lightbox img { max-height: 90vh; max-width: 90vw; border: 4px solid var(--cream); border-radius: 2px; }
  .lightbox .close {
    position: absolute; top: 30px; right: 40px; color: var(--cream); font-size: 28px; cursor: pointer;
    font-family: 'Lora', serif; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(240,237,230,0.3); border-radius: 50%; transition: background .3s var(--ease-soft), transform .3s var(--ease-soft);
  }
  .lightbox .close:hover { background: rgba(240,237,230,0.12); transform: rotate(90deg); }

  /* ============ FAQ ACCORDION ============ */
  .faq-section { background: var(--white); }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q {
    padding: 24px 4px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
    cursor: pointer; font-family: 'Lora', serif; font-size: 17px; font-weight: 500; color: var(--ink);
    transition: color .25s var(--ease-soft);
  }
  .faq-q:hover { color: var(--sage); }
  .faq-q .plus {
    flex: 0 0 auto; width: 22px; height: 22px; position: relative;
    font-size: 0; /* the literal "+" text node is replaced by the ::before/::after glyph below */
    transition: transform .35s var(--ease);
  }
  .faq-q .plus::before, .faq-q .plus::after {
    content: ''; position: absolute; top: 50%; left: 50%; background: var(--sage);
    transition: transform .35s var(--ease);
  }
  .faq-q .plus::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
  .faq-q .plus::after { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
  .faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  .faq-item.open .faq-q .plus { transform: rotate(180deg); }
  .faq-a {
    display: grid; grid-template-rows: 0fr;
    font-size: 15px; color: var(--text-muted); padding: 0 4px;
  }
  @media (prefers-reduced-motion: no-preference) {
    .faq-a { transition: grid-template-rows .4s var(--ease-soft); }
  }
  .faq-a-inner { overflow: hidden; min-height: 0; }
  .faq-a-inner p { line-height: 1.7; padding-bottom: 24px; max-width: 66ch; }
  .faq-item.open .faq-a { grid-template-rows: 1fr; }

  /* ============ PRECIO ============ */
  .precio { background: var(--cream); text-align: center; position: relative; }
  .incluye-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 720px; margin: 0 auto 48px; }
  .incluye-tags span {
    border: 1px solid var(--sage-line); padding: 8px 16px; font-size: 12.5px; color: var(--text-muted); border-radius: 2px;
    transition: border-color .25s var(--ease-soft), color .25s var(--ease-soft);
  }
  .incluye-tags span:hover { border-color: var(--sage); color: var(--ink); }
  .garantia {
    display: inline-flex; align-items: center; gap: 14px;
    background: var(--white); border: 1px solid var(--line); border-radius: 40px; padding: 16px 30px 16px 22px; max-width: 700px; margin: 0 auto 56px;
    text-align: left;
  }
  .garantia::before {
    content: '';
    flex: 0 0 auto; width: 34px; height: 34px;
    background-color: var(--sage);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23727a6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center/22px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23727a6f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='m9 12 2 2 4-4'/%3E%3C/svg%3E") center/22px no-repeat;
  }
  .garantia h3 { font-family: 'Lora', serif; font-weight: 600; font-size: 16.5px; margin-bottom: 3px; color: var(--ink); }
  .garantia p { font-size: 13px; line-height: 1.55; color: var(--text-muted); max-width: 50ch; }

  .price-box {
    position: relative;
    background: var(--white);
    padding: 68px 48px;
    max-width: 620px;
    margin: 0 auto;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
  }
  .price-box::before {
    content: '';
    position: absolute; inset: 10px;
    border: 1px solid var(--sage-line);
    border-radius: 2px;
    pointer-events: none;
  }
  .price-box h3 { font-family: 'Lora', serif; font-style: italic; font-weight: 500; font-size: 25px; color: var(--ink); margin-bottom: 18px; }
  .price-box p { max-width: 46ch; margin-left: auto; margin-right: auto; color: var(--text-muted); }
  .price-box .amount {
    font-family: 'Lora', serif; font-size: clamp(48px, 6vw, 66px); color: var(--sage); font-weight: 500;
    margin: 22px 0 6px; letter-spacing: -0.01em;
  }
  .price-box .amount .usd { font-size: 20px; vertical-align: super; color: var(--ink); font-weight: 600; }
  .price-box .note { font-size: 11.5px; letter-spacing: 1.2px; color: var(--text-muted); text-transform: uppercase; margin-bottom: 6px; }
  .price-box .inversion-note { margin-bottom: 34px; }
  .price-box .cta-btn { width: 100%; justify-content: center; }
  .price-tiers { display: flex; justify-content: center; gap: 0; margin-top: 34px; font-size: 12.5px; color: var(--text-muted); }
  .price-tiers > div { padding: 0 26px; border-left: 1px solid var(--line); }
  .price-tiers > div:first-child { border-left: none; padding-left: 0; }
  .price-tiers strong { display: block; font-family: 'Lora', serif; font-size: 19px; color: var(--ink); margin-bottom: 2px; }
  .price-tiers .active strong { color: var(--sage); }

  @media (max-width: 700px) {
    .price-box { padding: 48px 26px; }
    .garantia { flex-direction: column; text-align: center; border-radius: 12px; }
  }

  /* ============ CIERRE ============ */
  .cierre { background: linear-gradient(165deg, var(--ink) 0%, var(--ink-deep) 100%); color: var(--cream); text-align: center; position: relative; overflow: clip; }
  .cierre::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(114,122,111,0.18), transparent 60%);
    pointer-events: none;
  }
  .cierre-inner { max-width: 640px; margin: 0 auto; position: relative; }
  .cierre p { font-size: 16px; line-height: 1.85; color: #cfd6c9; margin: 0 0 14px; max-width: none; }
  .cierre p strong { color: var(--cream); font-weight: 600; }
  .cierre .beat { font-family: 'Lora', serif; font-style: italic; font-size: 18px; color: var(--sage-light); margin: 34px 0; }
  .cierre .brand { font-size: 13px; letter-spacing: 3px; color: #a9b29d; margin: 48px 0 16px; } /* lightened sage — meets contrast against the dark cierre background */
  .cierre h2 {
    font-family: 'Lora', serif; font-weight: 500; font-size: clamp(1.6rem, 1.3rem + 1.4vw, 2.2rem); line-height: 1.4;
    color: var(--cream); margin-bottom: 40px;
  }

  footer { background: var(--ink-deep); color: #9aa39a; text-align: center; padding: 48px; font-size: 11.5px; letter-spacing: 1px; }
  footer .footer-logo-card { background: var(--white); display: inline-block; padding: 14px 20px; border-radius: 4px; margin-bottom: 22px; }
  footer img { height: 38px; display: block; }

  /* ============ ACCESIBILIDAD ============ */
  .faq-q:focus-visible,
  .test-card:focus-visible,
  .lightbox .close:focus-visible,
  .cta-btn:focus-visible,
  .nav-cta:focus-visible {
    outline: 2px solid var(--sage);
    outline-offset: 3px;
  }

  @media (max-width: 480px) {
    .section { padding: 48px 6vw; }
    .hero-headline { letter-spacing: -0.005em; }
    .price-box { padding: 40px 20px; }
    .price-tiers { flex-wrap: wrap; row-gap: 14px; }
  }
