﻿@import './tokens.css';
@import './shared-layout.css';
  html { scroll-behavior: smooth; }
  body { font-family: 'Jost', sans-serif; background: var(--cream); color: var(--text-dark); overflow-x: hidden; }
  /* Halos: anclados a esquinas para evitar doble brillo en el centro superior */
  body::before {
    content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
    background-image:
      radial-gradient(ellipse 90% 70% at 0% 0%, rgba(196, 168, 130, 0.13) 0%, rgba(196, 168, 130, 0.04) 45%, transparent 58%),
      radial-gradient(ellipse 90% 70% at 100% 0%, rgba(196, 168, 130, 0.13) 0%, rgba(196, 168, 130, 0.04) 45%, transparent 58%),
      radial-gradient(ellipse 70% 65% at 100% 100%, rgba(92, 61, 46, 0.065) 0%, transparent 52%);
  }

  /* NAV */
  nav { position: fixed; top: 0; width: 100%; z-index: 100; padding: 1.25rem 3rem; display: flex; align-items: center; justify-content: space-between; background: rgba(249,245,239,0.88); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(196,168,130,0.2); }
  .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; letter-spacing: 0.18em; color: var(--brown); text-decoration: none; text-transform: uppercase; }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
  .nav-links a:hover { color: var(--brown); }
  .nav-cta {
    font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown);
    border: 1px solid rgba(92, 61, 46, 0.28); border-radius: 999px; padding: 0.55rem 1.35rem; text-decoration: none;
    background: rgba(254, 252, 249, 0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
  }
  .nav-cta:hover {
    transform: scale(1.03); background: var(--brown); color: var(--cream); border-color: var(--brown);
    box-shadow: 0 8px 28px rgba(92, 61, 46, 0.12);
  }
  .nav-cta:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px rgba(92, 61, 46, 0.4); }

  /* HERO — mismo fondo que la versión estática (crema + degradados globales en body::before) */
  #hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 8rem 2rem 4rem; overflow: hidden; z-index: 1;
  }
  .hero-orb { position: absolute; border-radius: 50%; opacity: 0.35; animation: floatOrb 8s ease-in-out infinite; z-index: 0; pointer-events: none; }
  .orb-1 { width: 500px; height: 500px; background: radial-gradient(circle, var(--sand) 0%, transparent 70%); top: -100px; left: -100px; }
  .orb-2 { width: 350px; height: 350px; background: radial-gradient(circle, var(--brown-light) 0%, transparent 70%); bottom: -80px; right: -80px; animation-delay: -4s; }
  @keyframes floatOrb { 0%,100%{transform:translate(0,0) scale(1)} 50%{transform:translate(20px,-25px) scale(1.05)} }
  .hero-inner { max-width: 860px; width: 100%; position: relative; z-index: 2; animation: fadeUp 1.1s ease both; }
  .hero-inner--calm { display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .hero-sr-title {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
  }
  .hero-eyebrow {
    font-family: 'Jost', sans-serif; font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--brown-light); margin-bottom: 1.5rem; font-weight: 400;
  }
  @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
  .hero-phrase-wrap {
    display: flex; align-items: center; justify-content: center;
    min-height: clamp(14rem, 38vw, 22rem); width: 100%;
  }
  .hero-phrase {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2.35rem, 7vw, 5.75rem); font-weight: 300;
    line-height: 1.12; letter-spacing: 0.02em; color: var(--brown); margin: 0;
    max-width: 100%;
    transition: opacity 0.6s ease-in-out;
    text-wrap: balance;
    text-shadow: 0 1px 0 rgba(255, 252, 249, 0.65), 0 2px 24px rgba(249, 245, 239, 0.75), 0 0 48px rgba(249, 245, 239, 0.45);
  }
  .hero-phrase em {
    font-style: italic; font-weight: 400; color: var(--brown-mid);
    letter-spacing: 0.01em;
  }
  .hero-phrase.hero-phrase--hidden { opacity: 0; }
  .hero-subtitle {
    font-family: 'Jost', sans-serif; font-size: 1rem; line-height: 1.85; color: var(--text-mid);
    max-width: 560px; margin: 2rem auto 0; font-weight: 300;
  }
  .hero-cta-book {
    display: inline-block; margin-top: 2.25rem; padding: 0.88rem 1.95rem;
    font-family: 'Jost', sans-serif; font-size: 0.76rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--brown); text-decoration: none; cursor: pointer;
    border: 1px solid rgba(92, 61, 46, 0.28); border-radius: 999px;
    background: rgba(254, 252, 249, 0.55); backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    appearance: none; -webkit-appearance: none;
  }
  button.hero-cta-book { text-align: center; }
  .hero-cta-book:hover {
    transform: scale(1.04); background: var(--brown); color: var(--cream); border-color: var(--brown);
    box-shadow: 0 10px 36px rgba(92, 61, 46, 0.15);
  }
  .hero-cta-book:focus-visible {
    outline: none; box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px rgba(92, 61, 46, 0.45);
  }
  .hero-ctas { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    display: inline-block; background: var(--brown); color: var(--cream); padding: 0.88rem 1.95rem; font-size: 0.76rem; font-weight: 400;
    letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; border: 1px solid var(--brown); border-radius: 999px;
    cursor: pointer; font-family: 'Jost', sans-serif;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
  }
  .btn-primary:hover {
    transform: scale(1.04); background: var(--text-dark); border-color: var(--text-dark);
    box-shadow: 0 10px 36px rgba(92, 61, 46, 0.15);
  }
  .btn-primary:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px rgba(92, 61, 46, 0.45); }
  button.btn-primary { font-family: 'Jost', sans-serif; }
  .btn-ghost {
    display: inline-block; color: var(--brown); border: 1px solid rgba(92, 61, 46, 0.28); padding: 0.88rem 1.95rem; font-size: 0.76rem; font-weight: 400;
    letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; border-radius: 999px;
    background: rgba(254, 252, 249, 0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    cursor: pointer; font-family: 'Jost', sans-serif;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
  }
  .btn-ghost:hover {
    transform: scale(1.04); background: var(--brown); color: var(--cream); border-color: var(--brown);
    box-shadow: 0 10px 36px rgba(92, 61, 46, 0.15);
  }
  .btn-ghost:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px rgba(92, 61, 46, 0.45); }
  .hero-scroll {
    position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 0.45rem;
    color: var(--brown-mid); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
    animation: pulse 2.8s ease-in-out infinite;
    text-shadow: 0 0 12px rgba(249, 245, 239, 0.9);
  }
  .scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, rgba(139, 99, 71, 0.55), transparent); }
  @keyframes pulse { 0%,100%{opacity:0.45} 50%{opacity:0.95} }

  section { position: relative; z-index: 1; }
  .container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
  .section-label { font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 1rem; }
  .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 300; line-height: 1.2; color: var(--brown); margin-bottom: 1.25rem; }
  .section-title em { font-style: italic; }

  /* QUÉ ES */
  #que-es { padding: 7rem 0; background: var(--white); }
  .que-es-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
  .que-es-visual { display: flex; justify-content: center; }
  .logo-circle { width: 300px; height: 300px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; position: relative; }
  .logo-circle::before { content: ''; position: absolute; inset: -15px; border-radius: 50%; border: 1px solid var(--cream-dark); animation: rotateSlow 30s linear infinite; }
  .logo-circle::after { content: ''; position: absolute; inset: -30px; border-radius: 50%; border: 1px dashed rgba(196,168,130,0.3); animation: rotateSlow 50s linear infinite reverse; }
  @keyframes rotateSlow { to{transform:rotate(360deg)} }
  .que-es-text p { font-size: 1.05rem; line-height: 1.9; color: var(--text-mid); font-weight: 300; margin-bottom: 1.5rem; }
  .que-es-frase { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-style: italic; color: var(--brown); border-left: 2px solid var(--brown-light); padding-left: 1.25rem; margin-top: 2rem; line-height: 1.6; }

  /* INSIGHT */
  #insight { padding: 7rem 0; background: var(--brown); }
  #insight .container { max-width: 800px; text-align: center; }
  .insight-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.6rem,3vw,2.6rem); font-weight: 300; line-height: 1.5; color: var(--cream); margin-bottom: 2rem; }
  .insight-quote em { font-style: italic; color: var(--sand); }
  .insight-sub { font-size: 0.85rem; letter-spacing: 0.1em; color: var(--brown-light); font-weight: 300; }

  /* CAMINOS */
  #caminos { padding: 7rem 0; background: var(--cream); }
  .caminos-intro { max-width: 600px; margin-bottom: 4rem; }
  .caminos-intro p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; }
  .caminos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .camino-card { background: var(--white); border: 1px solid rgba(196,168,130,0.25); padding: 0; transition: all 0.3s; position: relative; overflow: hidden; }
  .camino-card::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--brown-light); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
  .camino-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(92,61,46,0.08); }
  .camino-card:hover::before, .camino-card.open::before { transform: scaleX(1); }
  .camino-toggle { width: 100%; padding: 2rem 1.75rem; background: transparent; border: 0; text-align: left; cursor: pointer; font-family: inherit; color: inherit; display: block; }
  .camino-card.open .camino-toggle { padding-bottom: 0.75rem; }
  .camino-toggle:focus-visible { outline: none; box-shadow: inset 0 0 0 1px rgba(196,168,130,0.75); }
  .camino-tag { display: inline-block; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown-light); background: var(--cream-dark); padding: 0.3rem 0.8rem; margin-bottom: 1rem; }
  .camino-title-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
  .camino-name { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 400; color: var(--brown); margin-bottom: 0.6rem; line-height: 1.2; }
  .camino-icon { width: 28px; height: 28px; border: 1px solid rgba(196,168,130,0.6); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; color: var(--brown-light); transition: all 0.25s ease; position: relative; }
  .camino-icon::before, .camino-icon::after { content: ''; position: absolute; width: 10px; height: 1px; background: currentColor; }
  .camino-icon::after { transform: rotate(90deg); transition: transform 0.25s ease; }
  .camino-card.open .camino-icon { background: var(--brown); border-color: var(--brown); color: var(--cream); }
  .camino-card.open .camino-icon::after { transform: rotate(0deg); }
  .camino-desc { font-size: 0.88rem; line-height: 1.75; color: var(--text-light); font-weight: 300; }
  .camino-detail { max-height: 0; overflow: hidden; opacity: 0; padding: 0 1.75rem; transition: max-height 0.35s ease, opacity 0.25s ease, padding-bottom 0.25s ease; }
  .camino-card.open .camino-detail { max-height: 260px; opacity: 1; padding-bottom: 2rem; }
  .camino-detail p { font-size: 0.84rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; margin-top: 0.75rem; }
  .camino-detail ul { margin: 1rem 0 0 1.1rem; color: var(--text-light); font-size: 0.82rem; line-height: 1.7; font-weight: 300; }
  .camino-detail li { margin-bottom: 0.35rem; }

  /* UMANA TOOLS PREVIEW */
  #tools-preview { padding: 7rem 0; background: var(--white); }
  .tools-preview-wrap { display: grid; grid-template-columns: 1.15fr 1fr; gap: 3rem; align-items: center; }
  .tools-preview-copy p { font-size: 1rem; line-height: 1.85; color: var(--text-mid); font-weight: 300; margin-bottom: 1.2rem; }
  .tools-preview-cards { display: grid; gap: 1rem; }
  .tools-preview-list { display: grid; gap: 1rem; }
  .tools-preview-controls { display: flex; justify-content: center; }
  .tools-preview-controls--top { margin-bottom: 0.85rem; }
  .tools-preview-controls--bottom { margin-top: 0.85rem; }
  .tools-preview-next {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(92, 61, 46, 0.28);
    background: rgba(254, 252, 249, 0.7);
    color: var(--brown);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }
  .tools-preview-next:hover {
    transform: translateY(2px);
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
  }
  .tools-preview-next[hidden] { display: none; }
  .tools-preview-prev:hover { transform: translateY(-2px); }
  .tools-preview-list.is-switching { opacity: 0; transform: translateY(8px); }
  .tools-preview-list {
    transition: opacity 0.35s ease, transform 0.35s ease;
    opacity: 1;
    transform: translateY(0);
  }
  .tools-mini-card {
    background: var(--cream); border: 1px solid rgba(196,168,130,0.3); padding: 1.1rem 1.25rem;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  }
  .tools-mini-name { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--brown); }
  .tools-mini-tag { font-size: 0.67rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brown-light); }
  .tools-mini-price { font-size: 0.8rem; letter-spacing: 0.08em; color: var(--text-mid); text-transform: uppercase; }
  .tools-preview-empty {
    background: var(--cream);
    border: 1px dashed rgba(196,168,130,0.5);
    padding: 1.4rem 1.25rem;
    text-align: center;
  }
  .tools-preview-empty p {
    font-family: 'Cormorant Garamond', serif;
    color: var(--brown);
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
  }
  .tools-preview-empty span { font-size: 0.83rem; color: var(--text-light); }

  /* VALORES */
  #valores { padding: 7rem 0; background: var(--cream-dark); }
  .valores-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 2.5rem; margin-top: 4rem; }
  .valor-item { text-align: center; }
  .valor-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: rgba(196,168,130,0.4); line-height: 1; margin-bottom: 0.75rem; }
  .valor-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--brown); margin-bottom: 0.5rem; }
  .valor-desc { font-size: 0.83rem; line-height: 1.75; color: var(--text-mid); font-weight: 300; }

  /* PROCESO */
  #proceso { padding: 7rem 0; background: var(--white); }
  .proceso-steps { margin-top: 4rem; }
  .proceso-step { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding: 2.5rem 0; border-bottom: 1px solid rgba(196,168,130,0.2); }
  .proceso-step:last-child { border-bottom: none; }
  .step-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--cream-dark); line-height: 1; text-align: center; transition: color 0.3s; }
  .proceso-step:hover .step-num { color: var(--brown-light); }
  .step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--brown); margin-bottom: 0.4rem; }
  .step-desc { font-size: 0.9rem; line-height: 1.8; color: var(--text-mid); font-weight: 300; }

  /* BLOG */
  #blog { padding: 7rem 0; background: var(--cream); }
  .blog-header { margin-bottom: 3.5rem; }
  .blog-cards-wrap { display: flex; flex-direction: column; gap: 0; align-items: center; }
  .blog-slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1.25rem);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }
  .blog-slider.blog-slider--single {
    gap: 0;
  }
  .blog-slider.blog-slider--single .blog-page-arrow {
    display: none;
  }
  .blog-slider-view {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
  }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2.5vw, 2rem);
    transition: opacity 0.35s ease, transform 0.35s ease;
    opacity: 1;
    transform: translateY(0);
  }
  .blog-grid.is-switching { opacity: 0; transform: translateY(8px); }
  .article-card { background: var(--white); border: 1px solid rgba(196,168,130,0.2); overflow: hidden; transition: all 0.3s; cursor: pointer; }
  .article-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(92,61,46,0.08); }
  .article-cover { width: 100%; height: 180px; object-fit: cover; display: block; }
  .article-cover-placeholder { width: 100%; height: 180px; background: linear-gradient(135deg, var(--cream-dark) 0%, var(--sand) 100%); display: flex; align-items: center; justify-content: center; }
  .article-body { padding: 1.5rem; }
  .article-cat { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 0.6rem; }
  .article-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--brown); line-height: 1.3; margin-bottom: 0.6rem; }
  .article-excerpt { font-size: 0.85rem; line-height: 1.7; color: var(--text-light); font-weight: 300; }
  .article-meta { font-size: 0.72rem; color: var(--text-light); margin-top: 1rem; }
  .blog-loading { grid-column: 1/-1; text-align: center; padding: 4rem; color: var(--text-light); font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; }
  .blog-empty { grid-column: 1/-1; text-align: center; padding: 4rem 2rem; }
  .blog-empty p { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--brown-mid); margin-bottom: 0.5rem; }
  .blog-empty span { font-size: 0.85rem; color: var(--text-light); }

  .blog-page-arrow {
    flex-shrink: 0;
    align-self: center;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(92, 61, 46, 0.28);
    background: rgba(254, 252, 249, 0.95);
    color: var(--brown);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 2px 12px rgba(92, 61, 46, 0.06);
  }
  .blog-page-arrow:hover:not(:disabled) {
    transform: translateY(-2px);
    background: var(--brown);
    color: var(--cream);
    border-color: var(--brown);
  }
  .blog-page-arrow:disabled {
    opacity: 0.32;
    cursor: not-allowed;
    box-shadow: none;
  }
  .blog-page-arrow:focus-visible {
    outline: 2px solid var(--brown-light);
    outline-offset: 3px;
  }
  .blog-page-indicator {
    margin: 1.25rem 0 0;
    width: 100%;
    max-width: 28rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: var(--text-light);
    font-weight: 300;
    text-align: center;
    min-height: 1.25em;
  }
  .blog-page-indicator:empty {
    margin-top: 0;
  }

  /* Modal */
  .modal-overlay { position: fixed; inset: 0; background: rgba(46,31,20,0.65); z-index: 999; display: flex; align-items: center; justify-content: center; padding: 2rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal { background: var(--white); width: 100%; max-width: 720px; max-height: 90vh; overflow-y: auto; position: relative; animation: fadeUp 0.3s ease; }
  .modal-cover { width: 100%; height: 300px; object-fit: cover; display: block; }
  .modal-inner { padding: 2.5rem; }
  .modal-close { position: absolute; top: 1rem; right: 1rem; background: rgba(46,31,20,0.6); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; font-size: 1.2rem; cursor: pointer; line-height: 1; z-index: 10; }
  .modal-close:hover { background: var(--brown); }
  .read-cat { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 0.75rem; }
  .read-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--brown); line-height: 1.2; margin-bottom: 0.5rem; font-weight: 400; }
  .read-meta { font-size: 0.78rem; color: var(--text-light); margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(196,168,130,0.25); }
  .read-body { font-size: 1rem; line-height: 1.9; color: var(--text-mid); font-weight: 300; }
  .read-body h1,.read-body h2,.read-body h3 { font-family: 'Cormorant Garamond', serif; color: var(--brown); margin: 1.5rem 0 0.5rem; font-weight: 400; }
  .read-body p { margin-bottom: 1rem; }
  .read-body strong { color: var(--brown); font-weight: 500; }
  .read-body em { font-style: italic; }
  .read-body ul,.read-body ol { margin: 0.75rem 0 0.75rem 1.5rem; }
  .read-body li { margin-bottom: 0.4rem; }
  .read-body blockquote { border-left: 2px solid var(--brown-light); padding-left: 1.25rem; font-style: italic; color: var(--brown-mid); margin: 1.5rem 0; }

  /* VISIÓN */
  #vision { padding: 8rem 0; background: var(--brown); text-align: center; overflow: hidden; position: relative; }
  #vision::before { content: 'UMANA'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 20vw; font-weight: 300; color: rgba(255,255,255,0.03); top: 50%; left: 50%; transform: translate(-50%,-50%); white-space: nowrap; pointer-events: none; letter-spacing: 0.15em; }
  #vision .section-label { color: var(--sand); }
  .vision-quote { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,4vw,3rem); font-weight: 300; line-height: 1.45; color: var(--cream); max-width: 750px; margin: 1.5rem auto 2rem; }
  .vision-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-style: italic; color: var(--sand); }

  /* CTA FINAL */
  #cta-final { padding: 7rem 0; background: var(--cream); text-align: center; }
  .cta-pretitle { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown-light); margin-bottom: 1rem; }
  .cta-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 300; color: var(--brown); margin-bottom: 1.5rem; line-height: 1.2; }
  .cta-sub { font-size: 0.95rem; color: var(--text-mid); max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8; font-weight: 300; }
  .btn-agendar-cal { transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease, box-shadow 0.45s ease; }
  .btn-agendar-cal.is-cal-priming { transform: scale(0.985); opacity: 0.88; box-shadow: 0 0 0 1px rgba(92, 61, 46, 0.1); }
  .btn-agendar-cal:focus-visible { outline: 2px solid var(--brown-light); outline-offset: 3px; }
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; } .nav-links { display: none; }
    #hero { padding: 6.5rem 1.25rem 4rem; }
    .hero-phrase-wrap { min-height: clamp(13rem, 56vw, 20rem); }
    .hero-phrase { font-size: clamp(2rem, 9vw, 4.25rem); line-height: 1.14; }
    .hero-subtitle { font-size: 0.95rem; padding: 0 0.25rem; }
    .que-es-grid { grid-template-columns: 1fr; gap: 3rem; }
    .tools-preview-wrap { grid-template-columns: 1fr; }
    .caminos-grid { grid-template-columns: 1fr; }
    #blog .blog-grid {
      grid-template-columns: 1fr;
      transition: transform 0.3s cubic-bezier(0.25, 0.82, 0.25, 1), opacity 0.28s ease;
      transform: translate3d(0, 0, 0);
    }
    #blog .blog-grid.is-switching {
      opacity: 0;
      transform: translate3d(0, 8px, 0);
    }
    #blog .blog-grid.blog-grid--out-next {
      transform: translate3d(-100%, 0, 0);
      opacity: 0.55;
    }
    #blog .blog-grid.blog-grid--out-prev {
      transform: translate3d(100%, 0, 0);
      opacity: 0.55;
    }
    #blog .blog-grid.blog-grid--in-next {
      transform: translate3d(100%, 0, 0);
      opacity: 0.92;
      transition: none;
    }
    #blog .blog-grid.blog-grid--in-prev {
      transform: translate3d(-100%, 0, 0);
      opacity: 0.92;
      transition: none;
    }
    #blog .blog-grid.blog-grid--in-next.blog-grid--in-settle,
    #blog .blog-grid.blog-grid--in-prev.blog-grid--in-settle {
      transform: translate3d(0, 0, 0);
      opacity: 1;
      transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
    }
    #blog .blog-slider {
      gap: 0;
      align-items: stretch;
    }
    #blog .blog-page-arrow {
      display: none !important;
    }
    #blog .blog-slider-view {
      touch-action: pan-y;
      flex: 1 1 100%;
      overflow: hidden;
    }
    .valores-grid { grid-template-columns: repeat(2,1fr); }
    .proceso-step { grid-template-columns: 60px 1fr; }
    footer { flex-direction: column; text-align: center; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }
