/* ===== Global styles ===== */
:root{
    --paper: #D1F1E7;
    --paper-deep: #BEE3D2;
    --paper-line: #A8D2BE;
    --ink: #201E1B;
    --ink-soft: #4B4744;
    --indigo: #202A25;
    --indigo-deep: #182019;
    --seal: #4F7A72;
    --seal-deep: #3C5F58;
    --moss: #6C9696;
    --stone: #6B6F68;

    --display: 'Shippori Mincho', serif;
    --body: 'Zen Kaku Gothic New', sans-serif;

    --fs-hero: clamp(2.6rem, 6vw, 4.6rem);
    --fs-h2: clamp(1.9rem, 3.6vw, 2.8rem);
    --fs-h3: clamp(1.2rem, 2vw, 1.5rem);
    --fs-body: clamp(1rem, 1.1vw, 1.08rem);

    --maxw: 1140px;
  }

  *{ box-sizing: border-box; margin:0; padding:0; }
  html{ scroll-behavior: smooth; }
  section[id]{ scroll-margin-top: 190px; }
  body{
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  img{ max-width:100%; display:block; }
  a{ color: inherit; text-decoration: none; }
  h1,h2,h3{ font-family: var(--display); font-weight: 600; color: var(--indigo-deep); letter-spacing: 0.01em; }
  .wrap{ max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
  section{ position: relative; }

  .eyebrow{
    font-family: var(--body);
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--seal);
    font-weight: 500;
    display: flex; align-items: center; gap: 10px;
  }
  .eyebrow::before{
    content:"";
    width: 20px; height: 1px; background: var(--seal);
    display:inline-block;
  }
  .eyebrow.center::before{ display:none; }
  .eyebrow.center{ justify-content:center; }

  /* ---------- Hanko seal ---------- */
  .hanko{
    width: 46px; height: 46px;
    border-radius: 6px;
    border: 2px solid var(--seal);
    display: flex; align-items:center; justify-content:center;
    color: var(--seal);
    font-family: var(--display);
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(1.5) rotate(-8deg);
    transition: transform 0.5s cubic-bezier(.2,1.4,.4,1), opacity 0.35s ease;
    background: transparent;
  }
  .hanko.small{ width: 30px; height: 30px; font-size: 0.85rem; border-width: 1.5px; }
  .is-visible .hanko{ opacity: 0.92; transform: scale(1) rotate(-4deg); }

  /* ---------- Header ---------- */
  header{
    position: fixed; top:0; left:0; right:0; z-index: 100;
    padding: 22px 0;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
  }
  header.scrolled{
    background: rgba(209,241,231,0.92);
    backdrop-filter: blur(8px);
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--paper-line);
  }
  header .wrap{ display:flex; flex-direction: column; align-items:flex-start; gap: 24px; }
  .brand{ display:flex; align-items:center; gap: 15px; transition: opacity 0.25s ease; }
  .brand:hover{ opacity: 0.82; }
  .brand-mark{
    width: 59px; height: 59px; border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1.5px var(--seal);
  }
  .brand-mark img{ width:100%; height:100%; object-fit: cover; display:block; }
  .brand-mark.footer-mark{ box-shadow: 0 0 0 1.5px rgba(209,241,231,0.5); width: 46px; height: 46px; }
  .brand-name{ font-family: var(--display); font-size: 1.35rem; letter-spacing: 0.03em; color: var(--indigo-deep); }

  nav{ display:flex; align-items:center; justify-content:flex-start; gap: 34px; width: 100%; }
  nav a{
    font-size: 0.85rem; color: var(--ink-soft); position: relative; padding: 4px 0;
    letter-spacing: 0.01em; white-space: nowrap;
  }
  nav a::after{
    content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background: var(--seal);
    transition: width 0.3s ease;
  }
  nav a:hover::after{ width: 100%; }
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    background: var(--seal); color: #F4EFE2; font-size: 0.85rem; font-weight: 500;
    padding: 11px 22px; border-radius: 4px;
    border: 1px solid var(--seal);
    transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
    white-space: nowrap;
  }
  .btn:hover{ background: var(--seal-deep); transform: translateY(-1px); }
  .btn.ghost{ background: transparent; color: var(--indigo-deep); border: 1px solid var(--ink-soft); }
  .btn.ghost:hover{ background: var(--indigo-deep); color: var(--paper); border-color: var(--indigo-deep); }
  .nav-cta{ margin-left: auto; padding: 10px 22px; font-size: 0.82rem; letter-spacing: 0.02em; }

  .nav-phone{
    display:inline-flex; align-items:center; gap: 6px;
    padding-left: 20px; margin-left: 2px;
    border-left: 1px solid var(--paper-line);
    font-size: 0.8rem; color: var(--ink-soft); opacity: 0.88;
  }
  .nav-phone:hover{ opacity: 1; }
  .nav-phone svg{ width: 12px; height: 12px; flex-shrink: 0; fill: var(--seal); }

  .menu-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding: 6px; position: absolute; right: 28px; top: 26px; }
  .menu-toggle span{ width: 22px; height: 1.5px; background: var(--ink); }

  /* ---------- Hero ---------- */
  .hero{
    padding-top: 168px;
    padding-bottom: 100px;
    position: relative;
    background: linear-gradient(180deg, var(--paper) 0%, var(--paper) 70%, var(--paper-deep) 100%);
    overflow:hidden;
  }
  .hero-top{ position: relative; }
  .hero-kanji{
    position: absolute;
    right: -4vw; top: 50%; transform: translateY(-50%);
    font-family: var(--display);
    font-size: min(56vw, 640px);
    line-height: 1;
    color: var(--indigo);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    font-weight: 600;
  }
  .hero .wrap{ position: relative; z-index: 2; }
  .hero-content{ max-width: 760px; }
  .hero-content h1{
    font-size: clamp(2.05rem, 3.6vw, 3.05rem);
    line-height: 1.3;
    margin: 22px 0 0;
  }

  .hero-photo-wrap{ margin-top: 48px; }
  .hero-photo{
    position: relative; border-radius: 4px; overflow:hidden;
    aspect-ratio: 16/9;
    display:flex; align-items:flex-end;
  }
  .hero-photo img{
    position:absolute; inset:0; width:100%; height:100%;
    object-fit:cover; object-position: 30% center; display:block; filter: saturate(0.94);
  }
  .hero-photo-scrim{
    position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(24,32,25,0) 0%, rgba(24,32,25,0.04) 32%, rgba(24,32,25,0.8) 100%);
  }
  .hero-photo-content{
    position: relative; z-index:2;
    padding: 40px 44px 44px; max-width: 640px;
  }
  .hero-photo-content .hero-underline{ width: 220px; height: 14px; margin: 0 0 22px; }
  .hero-photo-content .hero-underline path{
    stroke: #F4EFE2;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: draw 1.4s ease forwards 0.5s;
  }
  @keyframes draw{ to{ stroke-dashoffset: 0; } }

  .hero-photo-content .lead{
    font-size: 1.08rem;
    color: #F4EFE2;
    max-width: 560px;
    margin-bottom: 32px;
    text-shadow: 0 1px 14px rgba(10,14,10,0.4);
  }

  .hero-actions{ display:flex; gap: 18px; flex-wrap: wrap; margin-top: 0; }
  .hero-photo-content .hero-actions .btn.ghost{
    color: #F4EFE2; border-color: rgba(244,239,226,0.6);
  }
  .hero-photo-content .hero-actions .btn.ghost:hover{
    background: rgba(244,239,226,0.16); color: #F4EFE2; border-color: #F4EFE2;
  }

  .hero-disclaimer{
    margin-top: 30px;
    font-size: 0.8rem;
    color: var(--stone);
    max-width: 480px;
    border-left: 2px solid var(--paper-line);
    padding-left: 14px;
  }
  .hero-photo-content .hero-disclaimer{
    color: rgba(244,239,226,0.9);
    border-left-color: rgba(244,239,226,0.45);
  }

  /* ---------- Section headers ---------- */
  .section-head{
    display:flex; gap: 22px; align-items:flex-start;
    margin-bottom: 68px;
    opacity: 0; transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .section-head.is-visible{ opacity:1; transform: translateY(0); }
  .section-head h2{ font-size: var(--fs-h2); line-height:1.22; margin: 10px 0 14px; }
  .section-head .kicker{ color: var(--ink-soft); font-size: 1rem; max-width: 620px; }
  .section-head.center{ flex-direction:column; align-items:center; text-align:center; }
  .section-head.center .head-text{ display:flex; flex-direction:column; align-items:center; }
  .section-head.center .kicker{ max-width: 560px; }

  .band{ padding: 120px 0; }
  .band.deep{ background: var(--paper-deep); border-top: 1px solid var(--paper-line); border-bottom: 1px solid var(--paper-line); }

  /* ---------- Manifesto / empathy block ---------- */
  .manifesto{
    max-width: 700px; margin: 0 auto; text-align:center;
  }
  .manifesto p{
    font-size: 1.14rem; color: var(--ink-soft); margin-bottom: 22px;
  }
  .manifesto p.emph{
    font-family: var(--display); font-size: 1.5rem; color: var(--indigo-deep);
    line-height: 1.5; margin: 34px auto; max-width: 600px;
  }

  /* ---------- Qué es / Método / intro-grid ---------- */
  .intro-grid{ display:grid; grid-template-columns: 0.95fr 1.15fr; gap: 64px; align-items:center; }
  .intro-grid .kanji-block{
    background: var(--indigo-deep); border-radius: 4px;
    aspect-ratio: 3/2;
    display:flex; align-items:center; justify-content:center;
    position:relative; overflow:hidden;
  }
  .kanji-block .glyph{ font-family: var(--display); font-size: 9rem; color: var(--paper); opacity:0.92; }
  .kanji-block .glyph-caption{
    position:absolute; bottom: 26px; left:0; right:0; text-align:center;
    color: var(--paper); font-size: 0.78rem; letter-spacing: 0.18em; text-transform:uppercase;
  }
  .photo-block{ background: var(--indigo-deep); }
  .photo-block img{ width:100%; height:100%; object-fit:cover; filter: saturate(0.92); }
  .photo-block::before{
    content:""; position:absolute; inset:0;
    background: linear-gradient(180deg, rgba(24,32,25,0) 55%, rgba(24,32,25,0.55) 100%);
  }
  .photo-block .glyph-caption{ opacity: 0.85; z-index:2; }
  .quees-photo::before{ background: linear-gradient(180deg, rgba(24,32,25,0) 78%, rgba(24,32,25,0.2) 100%); }
  .quees-photo .glyph-caption{ color: var(--seal-deep); }

  .intro-text p{ margin-bottom: 20px; color: var(--ink-soft); }
  .composition{ display:flex; gap: 34px; margin-top: 34px; }
  .composition .ch{ font-family: var(--display); font-size: 2.4rem; color: var(--seal); line-height:1; }
  .composition .label{ font-size: 0.82rem; color: var(--stone); margin-top: 8px; max-width: 160px; }

  /* ---------- Gallery strip ---------- */
  .gallery-strip{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .gallery-strip figure{ margin:0; aspect-ratio: 3/4; border-radius:4px; overflow:hidden;
    opacity:0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .gallery-strip figure.is-visible{ opacity:1; transform: translateY(0); }
  .gallery-strip img{ width:100%; height:100%; object-fit:cover; filter: saturate(0.92); }

  /* ---------- Services ---------- */
  .services-grid{ display:grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items:center; }
  .service-row{
    display:grid; grid-template-columns: 50px 1fr auto; gap: 22px; align-items:center;
    padding: 30px 0; border-bottom: 1px solid var(--paper-line);
    opacity:0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .service-row.is-visible{ opacity:1; transform: translateY(0); }
  .service-row:first-child{ border-top: 1px solid var(--paper-line); }
  .service-num{ font-family: var(--display); font-size: 1.3rem; color: var(--seal); }
  .service-info h3{ font-size: 1.1rem; margin-bottom: 6px; }
  .service-info p{ font-size: 0.92rem; color: var(--stone); }
  .service-meta{ text-align:right; }
  .service-meta .duration{ font-size: 0.82rem; color: var(--stone); margin-bottom: 4px; }
  .service-meta .price{ font-family: var(--display); font-size: 1.3rem; color: var(--indigo-deep); }
  .services-photo{ border-radius:4px; overflow:hidden; aspect-ratio: 3/4; }
  .services-photo img{ width:100%; height:100%; object-fit:cover; filter: saturate(0.92); }

  /* ---------- About ---------- */
  .about-grid{ display:grid; grid-template-columns: 0.78fr 1.22fr; gap: 64px; align-items:start; }
  .about-photo{ border-radius:4px; overflow:hidden; aspect-ratio: 3/4; position: sticky; top: 110px; }
  .about-photo img{ width:100%; height:100%; object-fit:cover; filter: saturate(0.92); }
  .about-text p{ margin-bottom: 20px; color: var(--ink-soft); line-height: 1.75; }
  .about-text .sign{ font-family: var(--display); font-size: 1.2rem; margin-top: 12px; color: var(--seal-deep); }

  /* ---------- Testimonials ---------- */
  .testi-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 34px; margin-bottom: 46px; }
  .testi{
    padding: 30px; background: var(--paper); border: 1px solid var(--paper-line); border-radius:4px;
    opacity:0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .band.deep .testi{ background: var(--paper-deep); }
  .testi.is-visible{ opacity:1; transform: translateY(0); }
  .testi p{ font-style: italic; color: var(--ink-soft); margin-bottom: 18px; }
  .testi .who{ display:flex; align-items:center; gap: 8px; font-size: 0.82rem; color: var(--stone); }
  .testi .dot{ width:6px; height:6px; border-radius:50%; background: var(--seal); display:inline-block; }
  .testi-photos{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testi-photos figure{ margin:0; border-radius: 4px; overflow: hidden; aspect-ratio: 2/3; }
  .testi-photos img{ width:100%; height:100%; object-fit: cover; display:block; filter: saturate(0.92); }

  /* ---------- FAQ ---------- */
  .faq-grid{ display:grid; grid-template-columns: 1.3fr 0.9fr; gap: 56px; align-items:start; }
  .faq-list{ max-width: 760px; }
  .faq-item{ border-bottom: 1px solid var(--paper-line); }
  .faq-item:first-child{ border-top: 1px solid var(--paper-line); }
  .faq-q{
    width:100%; display:flex; justify-content:space-between; align-items:center;
    background:none; border:none; cursor:pointer; padding: 18px 0;
    font-family: var(--display); font-size: 0.92rem; color: var(--indigo-deep); text-align:left;
  }
  .faq-q .plus{ font-size: 1.2rem; color: var(--seal); transition: transform 0.3s ease; flex-shrink:0; margin-left: 16px; }
  .faq-item.open .plus{ transform: rotate(45deg); }
  .faq-a{ max-height:0; overflow:hidden; transition: max-height 0.35s ease; }
  .faq-item.open .faq-a{ max-height: 320px; }
  .faq-a p{ padding-bottom: 18px; color: var(--ink-soft); font-size: 0.9rem; line-height: 1.6; max-width: 560px; }
  .faq-photo{
    border-radius: 4px; overflow:hidden; position: sticky; top: 110px;
  }
  .faq-photo img{ width:100%; height:auto; display:block; filter: saturate(0.92); }

  /* ---------- Contact ---------- */
  .contact-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .contact-block{ margin-bottom: 28px; }
  .lbl{ font-size: 0.78rem; letter-spacing: 0.12em; text-transform:uppercase; color: var(--seal); margin-bottom: 6px; }
  .val{ color: var(--ink-soft); }
  .link:hover{ color: var(--seal-deep); }
  .social-links{ display:flex; gap: 16px; }
  .maps-col{ display:flex; flex-direction:column; gap: 20px; }
  .map-embed{ display:block; border-radius:4px; overflow:hidden; aspect-ratio: 16/10; }
  .map-embed img{ width:100%; height:100%; object-fit:cover; filter: saturate(0.85); }
  .storefront-photo{ border-radius:4px; overflow:hidden; aspect-ratio: 16/10; }
  .storefront-photo img{ width:100%; height:100%; object-fit:cover; filter: saturate(0.92); }

  /* ---------- Footer ---------- */
  footer{ background: var(--indigo-deep); color: var(--paper); padding: 70px 0 30px; }
  .footer-top{
    display:flex; flex-direction: column; align-items:flex-start; gap: 46px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(209,241,231,0.15); margin-bottom: 24px;
  }
  .footer-brand{ display:flex; flex-direction: column; align-items:flex-start; gap: 18px; }
  .footer-brand-text{ display:flex; flex-direction: column; }
  .footer-brand-text .brand-name{ margin-bottom: 9px; }
  .footer-tagline{ font-size: 0.72rem; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(209,241,231,0.5); font-weight: 300; }
  .footer-nav{ display:flex; gap: 26px; flex-wrap:wrap; }
  .footer-nav a{ font-size: 0.85rem; opacity: 0.75; }
  .footer-nav a:hover{ opacity:1; }
  .footer-bottom{ padding-top: 24px; display:flex; justify-content:space-between; gap: 20px; flex-wrap:wrap; font-size: 0.75rem; opacity: 0.55; }
  .footer-legal{
    margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(244,239,226,0.12);
    display:flex; flex-wrap:wrap; justify-content:center; gap: 10px;
    font-size: 0.72rem; opacity: 0.5; text-align:center;
  }
  .footer-legal a{ color: var(--paper); text-decoration: none; }
  .footer-legal a:hover{ opacity: 1; text-decoration: underline; }
  .footer-disclaimer{ font-size: 0.75rem; opacity: 0.55; max-width: 640px; margin-top: 20px; line-height:1.7; }

  /* ---------- Responsive ---------- */
  /* Home/hero en escritorio: más aire respecto al header fijo */
  @media (min-width: 901px){
    .hero{
      padding-top: 252px; /* punto intermedio entre los 168px originales y los 336px de una revisión anterior; deja ~80px de aire limpio bajo el header fijo (~171px sin hacer scroll) */
    }
    #inicio{
      scroll-margin-top: 172px; /* evita que el header fijo tape el inicio de la sección al navegar por anclas (menú, logo) */
    }
  }
  @media (min-width: 901px) and (max-width: 1119px){
    nav{ gap: 16px; }
    .nav-link{ font-size: 0.8rem; }
    .nav-cta{ padding: 9px 16px; font-size: 0.78rem; }
    .nav-phone{ padding-left: 14px; font-size: 0.74rem; }
  }
  @media (max-width: 900px){
    header .wrap{ flex-direction: row; align-items:center; justify-content: space-between; }
    .hero{ padding-top: 96px; padding-bottom: 64px; }
    .hero-photo-wrap{ margin-top: 34px; }
    .hero-photo{ aspect-ratio: auto; min-height: 300px; overflow: hidden; }

    /* Home móvil: foto más clara + texto oscuro (en vez de foto oscura + texto claro) */
    .hero-photo img{
      filter: brightness(1.18) saturate(0.92);
    }
    .hero-photo-scrim{
      background: linear-gradient(180deg, rgba(244,239,226,0) 0%, rgba(244,239,226,0.4) 30%, rgba(244,239,226,0.86) 100%);
    }
    .hero-photo-content .hero-underline path{
      stroke: var(--indigo-deep);
    }
    .hero-photo-content .lead{
      color: var(--indigo-deep);
      text-shadow: none;
    }
    .hero-photo-content .hero-actions .btn.ghost{
      color: var(--indigo-deep);
      border-color: rgba(24,32,25,0.35);
    }
    .hero-photo-content .hero-actions .btn.ghost:hover{
      background: rgba(24,32,25,0.06);
      color: var(--indigo-deep);
      border-color: var(--indigo-deep);
    }
    .hero-photo-content .hero-disclaimer{
      color: rgba(24,32,25,0.78);
      border-left-color: rgba(24,32,25,0.35);
    }

    .hero-photo-content{ padding: 24px 20px 26px; }
    .hero-photo-content .hero-underline{ margin-bottom: 14px; }
    .hero-photo-content .lead{ font-size: 0.96rem; margin-bottom: 18px; }
    .hero-disclaimer{ margin-top: 18px; }
    nav{ position: fixed; top: 0; right: -100%; height: 100svh; width: 78%; max-width: 340px;
      background: var(--paper); flex-direction: column; align-items: flex-start; justify-content:center;
      padding: 40px; gap: 26px; transition: right 0.4s ease; box-shadow: -4px 0 20px rgba(0,0,0,0.1); }
    nav.open{ right: 0; }
    nav a{ font-size: 1.1rem; }
    .nav-cta{ font-size: 0.95rem; padding: 12px 26px; margin-left: 0; margin-top: 10px; }
    .nav-phone{ font-size: 0.95rem; padding-left: 0; margin-left: 0; border-left: none; }
    .nav-phone svg{ width: 14px; height: 14px; }
    .menu-toggle{ display:flex; }
    .intro-grid, .about-grid, .contact-grid, .services-grid, .services-grid > *, .faq-grid{ grid-template-columns: 1fr; }
    .services-photo{ order:-1; max-width: 360px; }
    .about-photo{ max-width: 320px; position: static; }
    .faq-photo{ order:-1; max-width: 340px; margin: 0 auto 8px; position: static; }
    #metodo .method-sub .metodo2-grid{ grid-template-columns: 1fr; }
    #metodo .method-sub .metodo2-grid .kanji-block{ max-width: 360px; margin: 24px auto 0; }
    .testi-grid{ grid-template-columns: 1fr; }
    .testi-photos{ grid-template-columns: 1fr; }
    .service-row{ grid-template-columns: 1fr; gap: 10px; }
    .service-meta{ text-align:left; }
    .band{ padding: 80px 0; }
    .hero-kanji{ font-size: 80vw; opacity: 0.05; }
    .gallery-strip{ grid-template-columns: 1fr 1fr; }
  }

  /* Home/hero móvil: recuadro semitransparente detrás únicamente del párrafo principal (.lead) */
  @media (max-width: 768px){
    .hero-photo-content .lead{
      background-color: rgba(255, 255, 255, 0.5);
      padding: 1rem 1.2rem;
      border-radius: 11px;
      color: var(--indigo-deep);
    }
  }

  @media (max-width: 560px){
    .wrap{ padding: 0 20px; }
    .gallery-strip{ grid-template-columns: 1fr; }
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation: none !important; transition: none !important; }
  }

/* ===== Section: Para quien es (situ-grid) ===== */
#te-escucho .situ-grid{
      display:grid; grid-template-columns: 1.9fr 1fr; gap: 56px; align-items:start;
      margin-top: 56px;
    }
    #te-escucho .situ-list{
      max-width: 700px; margin: 0;
      display:grid; grid-template-columns: 1fr 1fr; gap: 0 40px;
    }
    #te-escucho .situ-list p{
      position:relative; margin:0; padding: 22px 0 22px 34px;
      border-top: 1px solid var(--paper-line);
      color: var(--ink-soft); font-family: var(--display); font-style: italic;
      font-weight: 500; font-size: 1.02rem; line-height: 1.6;
    }
    #te-escucho .situ-list p::before{
      content:""; position:absolute; left:0; top: 32px; width:20px; height:1px;
      background: var(--seal);
    }
    #te-escucho .situ-list p:nth-last-child(-n+2){ border-bottom: 1px solid var(--paper-line); }
    #te-escucho .situ-photo{
      border-radius: 4px; overflow:hidden; position: sticky; top: 110px;
    }
    #te-escucho .situ-photo img{ width:100%; height:auto; display:block; filter: saturate(0.95); }
    #te-escucho .manifesto{ margin-top: 76px; }
    @media (max-width: 860px){
      #te-escucho .situ-grid{ grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
      #te-escucho .situ-list{ grid-template-columns: 1fr; max-width: 560px; }
      #te-escucho .situ-list p:nth-last-child(-n+2){ border-bottom: none; }
      #te-escucho .situ-list p:last-child{ border-bottom: 1px solid var(--paper-line); }
      #te-escucho .situ-photo{ max-width: 380px; margin: 36px auto 0; position: static; }
    }

/* ===== Section: El metodo ===== */
#metodo .method-sub{ margin-top: 56px; }
      #metodo .method-sub:first-of-type{ margin-top: 40px; }
      #metodo .method-sub-head{
        display:flex; align-items:baseline; gap: 16px;
        margin-bottom: 28px; padding-top: 40px;
        border-top: 1px solid var(--paper-line);
      }
      #metodo .method-sub:first-of-type .method-sub-head{
        padding-top: 0; border-top: none;
      }
      #metodo .method-num{
        font-family: var(--display); font-size: 0.85rem; color: var(--seal);
        letter-spacing: 0.05em;
      }
      #metodo .method-sub-head h3{
        font-family: var(--display); font-size: 1.35rem; color: var(--indigo-deep);
        margin:0; font-weight: 600;
      }
      #metodo .why-text{ max-width: 760px; }
      #metodo .why-text p{ color: var(--ink-soft); margin-bottom: 18px; line-height: 1.7; }
      #metodo .why-disclaimer{
        font-style: italic; color: var(--stone); font-size: 0.88rem;
        margin-top: 8px; margin-bottom: 0;
      }
      #metodo .metodo2-grid{ grid-template-columns: 1.15fr 0.95fr; }
      #metodo .metodo2-grid .why-text{ max-width: none; }

/* ===== Section: Paso a paso (timeline) ===== */
#sesion .timeline{
      position:relative; max-width: 760px; margin: 56px auto 0;
    }
    #sesion .timeline::before{
      content:""; position:absolute; left:50%; top:22px; bottom:22px;
      width:2px; background: var(--paper-line); transform: translateX(-50%);
    }
    #sesion .tl-step{ position:relative; padding: 22px 0; }
    #sesion .tl-dot{
      position:relative; z-index:2; margin: 0 auto 14px; width: 78px; height: 78px;
      border-radius: 50%; background: var(--seal);
      display:flex; align-items:center; justify-content:center;
      box-shadow: 0 0 0 6px var(--paper);
    }
    #sesion .tl-dot span{
      font-family: var(--display); color: var(--paper); font-size: 0.68rem;
      letter-spacing: 0.04em; text-align:center; line-height:1.2;
    }
    #sesion .tl-content{
      max-width: 480px; margin: 0 auto; text-align:center;
    }
    #sesion .tl-content h3{ font-size: 1.05rem; margin-bottom: 8px; }
    #sesion .tl-content p{
      color: var(--ink-soft); font-size: 0.9rem; line-height: 1.55; margin-bottom: 8px;
    }
    #sesion .tl-content p:last-of-type{ margin-bottom: 12px; }
    #sesion .tl-photo{
      width: 100%; max-width: 300px; aspect-ratio: 5/4; margin: 0 auto 12px;
      border-radius: 14px; overflow:hidden; border: 1px solid var(--paper-line);
    }
    #sesion .tl-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
    #sesion .closing{
      max-width: 680px; margin: 60px auto 0; text-align:center;
    }
    #sesion .closing p{
      font-family: var(--display); font-style: italic; font-size: 1.1rem;
      color: var(--indigo-deep); line-height: 1.6;
    }
    @media (min-width: 720px){
      #sesion .tl-content{
        max-width: 700px; margin: 0 auto; display:grid;
        grid-template-columns: 1fr 1fr; column-gap: 64px; align-items:center;
      }
      #sesion .tl-content > *:first-child{ justify-self:end; text-align:right; }
      #sesion .tl-content > *:last-child{ justify-self:start; text-align:left; }
      #sesion .tl-photo{ margin: 0; }
    }

    /* ---------- Paso a paso: fix móvil (línea y círculos se superponían a fotos/texto) ---------- */
    @media (max-width: 768px){
      /* 1. Oculta la línea vertical central: en columna no hay nada que "conectar" y así deja de atravesar fotos y texto */
      #sesion .timeline::before{
        display: none;
      }

      /* 2. Cada paso pasa a ser una tarjeta vertical independiente */
      #sesion .tl-step{
        padding: 0;
        margin-bottom: 28px;
        background: #fff;
        border: 1px solid var(--paper-line);
        border-radius: 18px;
        box-shadow: 0 4px 18px rgba(24,32,25,0.07);
      }
      #sesion .tl-step:last-child{ margin-bottom: 0; }

      #sesion .tl-dot{
        margin: 24px auto 14px;
        box-shadow: 0 0 0 6px #fff; /* aro del círculo a juego con el fondo blanco de la tarjeta */
      }

      /* 3. Orden vertical fijo dentro de la tarjeta: círculo (ya está antes) -> imagen -> título -> texto */
      #sesion .tl-content{
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin: 0;
        padding: 0 22px 26px;
        text-align: center;
      }
      #sesion .tl-content > *:first-child,
      #sesion .tl-content > *:last-child{
        justify-self: unset;
        text-align: center;
      }

      #sesion .tl-photo{
        order: 1;
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px;
        border-radius: 14px;
      }

      #sesion .tl-text{
        order: 2;
        text-align: center;
      }
      #sesion .tl-text p{ text-align: center; }
    }

/* ===== Section: Opiniones (testimonials) ===== */
#voces .exp-disclaimer{
      max-width: 640px; margin: 44px auto 0; text-align:center;
      font-size: 0.85rem; color: var(--stone); line-height:1.6;
    }
    #voces .exp-grid{
      display:grid; grid-template-columns: repeat(2, 1fr);
      gap: 28px; margin-top: 48px;
    }
    #voces .exp-card{
      padding: 32px 28px; background: var(--paper);
      border: 1px solid var(--paper-line); border-radius: 4px;
      display:flex; flex-direction:column; gap: 18px;
    }
    #voces .exp-quote{
      font-family: var(--display); font-style: italic; font-size: 1rem;
      color: var(--indigo-deep); line-height: 1.65; margin:0; flex-grow:1;
    }
    #voces .exp-who{ display:flex; flex-direction:column; gap: 3px; }
    #voces .exp-name{ font-size: 0.88rem; color: var(--ink-soft); }
    @media (max-width: 600px){
      #voces .exp-grid{ grid-template-columns: 1fr; }
    }

/* ===== Booking modal overlay ===== */
.booking-overlay{
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(24,32,25,0.55);
    display: none; align-items: center; justify-content: center;
    padding: 20px; opacity: 0; transition: opacity 0.25s ease;
  }
  .booking-overlay.open{ display:flex; }
  .booking-overlay.show{ opacity: 1; }
  .booking-modal{
    background: var(--paper); border-radius: 6px;
    max-width: 440px; width:100%;
    padding: 42px 34px 34px; position: relative; text-align: center;
    transform: translateY(14px); transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(24,32,25,0.25);
    border: 1px solid var(--paper-line);
  }
  .booking-overlay.show .booking-modal{ transform: translateY(0); }
  .booking-close{
    position:absolute; top:12px; right:12px;
    width:34px; height:34px; border-radius:50%;
    border:1px solid var(--paper-line); background:transparent;
    color: var(--ink-soft); font-size:1.15rem; line-height:1;
    cursor:pointer; display:flex; align-items:center; justify-content:center;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .booking-close:hover{ background: var(--paper-deep); color: var(--ink); }
  .booking-badge{
    width:44px; height:44px; margin:0 auto 16px; border-radius:50%;
    border:1.5px solid var(--seal); color: var(--seal);
    font-family: var(--display); font-size:1.1rem; font-weight:700;
    display:flex; align-items:center; justify-content:center;
  }
  .booking-modal h3{
    font-family: var(--display); font-size:1.35rem; color: var(--indigo-deep);
    margin-bottom: 8px; line-height:1.3;
  }
  .booking-modal .booking-sub{ color: var(--stone); font-size:0.92rem; margin-bottom: 28px; }
  .booking-options{ display:flex; flex-direction:column; gap:14px; }
  .booking-option{
    display:block; width:100%; text-align:left;
    background: transparent; border:1px solid var(--paper-line);
    border-radius:4px; padding:18px 20px; cursor:pointer;
    font-family: var(--body); color: var(--ink);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
  }
  .booking-option:hover, .booking-option:focus-visible{
    border-color: var(--seal); background: var(--paper-deep); transform: translateY(-1px);
  }
  .booking-option .booking-option-title{
    font-family: var(--display); font-size:1.05rem; color: var(--indigo-deep); margin-bottom:3px;
  }
  .booking-option .booking-option-sub{ font-size:0.82rem; color: var(--stone); }
  @media (max-width:480px){
    .booking-modal{ padding: 34px 20px 26px; }
    .booking-option{ padding:16px 16px; }
  }

/* ===== Legal pages overlay ===== */
.legal-overlay{
    position: fixed; inset: 0; z-index: 1200;
    background: var(--paper);
    display: none; overflow-y: auto;
    opacity: 0; transition: opacity 0.25s ease;
  }
  .legal-overlay.open{ display:block; }
  .legal-overlay.show{ opacity: 1; }
  .legal-page{
    max-width: 760px; margin: 0 auto; padding: 90px 24px 100px;
    position: relative;
  }
  .legal-close{
    position: fixed; top: 22px; right: 22px; z-index: 5;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid var(--paper-line); background: var(--paper);
    color: var(--ink-soft); font-size: 1.25rem; line-height:1;
    cursor:pointer; display:flex; align-items:center; justify-content:center;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .legal-close:hover{ background: var(--paper-deep); color: var(--ink); }
  .legal-header{ margin-bottom: 40px; }
  .legal-header .hanko{ opacity: 0.92; transform: scale(1) rotate(-4deg); margin-bottom: 16px; }
  .legal-header .eyebrow{ margin-bottom: 10px; }
  .legal-header h2{ font-family: var(--display); font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--indigo-deep); margin:0; }
  .legal-updated{ font-size: 0.8rem; color: var(--stone); margin-top: 10px; }
  .legal-body h3{
    font-family: var(--display); font-size: 1.1rem; color: var(--indigo-deep);
    margin: 40px 0 12px;
  }
  .legal-body h3:first-child{ margin-top: 0; }
  .legal-body p{ color: var(--ink-soft); line-height: 1.75; margin-bottom: 14px; }
  .legal-body ul{ margin: 0 0 14px; padding-left: 20px; color: var(--ink-soft); line-height: 1.75; }
  .legal-body li{ margin-bottom: 6px; }
  .legal-body strong{ color: var(--indigo-deep); }
  .legal-pending{
    display:inline-block; background: var(--paper-deep); border: 1px solid var(--paper-line);
    border-radius: 3px; padding: 1px 8px; font-size: 0.85em; color: var(--seal-deep);
    font-style: normal;
  }
  .legal-back{
    display:inline-block; margin-top: 48px; font-size: 0.85rem;
    color: var(--seal); text-decoration:none; border-bottom: 1px solid transparent;
  }
  .legal-back:hover{ border-bottom-color: var(--seal); }
  @media (max-width: 600px){
    .legal-page{ padding: 80px 20px 80px; }
    .legal-close{ top: 14px; right: 14px; }
  }

/* ===== Cookie consent banner ===== */
.cookie-banner{
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1300;
    display: none; justify-content:center; padding: 18px;
  }
  .cookie-banner.open{ display:flex; }
  .cookie-card{
    max-width: 640px; width:100%; background: var(--indigo-deep); color: var(--paper);
    border-radius: 6px; padding: 22px 24px; box-shadow: 0 12px 40px rgba(24,32,25,0.35);
  }
  .cookie-card p{ font-size: 0.86rem; line-height:1.6; margin: 0 0 16px; color: var(--paper); opacity:0.9; }
  .cookie-card p a{ color: var(--paper); text-decoration: underline; }
  .cookie-actions{ display:flex; flex-wrap:wrap; gap: 10px; }
  .cookie-actions button{
    font-family: var(--body); font-size: 0.82rem; padding: 10px 18px; border-radius: 4px;
    cursor:pointer; border: 1px solid var(--paper);
  }
  #cookieAcceptAll{ background: var(--seal); color:#F4EFE2; border-color: var(--seal); }
  #cookieRejectAll, #cookieConfigure{ background: transparent; color: var(--paper); }
  .cookie-panel{
    display:none; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(244,239,226,0.2);
  }
  .cookie-panel.open{ display:block; }
  .cookie-row{
    display:flex; align-items:flex-start; justify-content:space-between; gap: 16px;
    margin-bottom: 14px; font-size: 0.82rem;
  }
  .cookie-row-text strong{ display:block; margin-bottom: 2px; }
  .cookie-row-text span{ opacity:0.75; }
  #cookieSavePrefs{
    margin-top: 4px; background: var(--seal); color:#F4EFE2; border-color: var(--seal);
    font-family: var(--body); font-size: 0.82rem; padding: 9px 16px; border-radius: 4px; cursor:pointer;
  }
  @media (max-width: 480px){
    .cookie-card{ padding: 18px; }
    .cookie-actions{ flex-direction:column; }
    .cookie-actions button{ width:100%; }
  }

