/* =========================
   CURUJEY · STYLE (Boutique)
   ========================= */

   * { box-sizing: border-box; }
   html{ scroll-behavior: smooth; }
   body{ margin: 0; }
   
   /* FIX: evitar scroll horizontal */
   html, body{
     width: 100%;
     overflow-x: hidden;
   }
   
   :root{
     --olive: #7A8450;
     --olive-2:#98A267;
     --paper: #FAF7F1;
     --stone: #5F5F5F;
     --muted: rgba(95,95,95,0.86);
   
     --border: rgba(122, 132, 80, 0.18);
     --shadow: 0 14px 40px rgba(0,0,0,0.08);
     --shadow-soft: 0 10px 26px rgba(0,0,0,0.06);
   
     --radius: 18px;
     --radius-sm: 14px;
   
     --max: 1120px;
   
     --s6: 48px;
     --s7: 72px;
   }
   
   body{
     font-family: 'Inter', sans-serif;
     color: var(--stone);
     line-height: 1.7;
   
     background-image: url("images/paper-bg.png");
     background-repeat: repeat;
     background-size: 900px auto;
     background-color: var(--paper);
   }
   
   a{ color: inherit; }
   img{ max-width: 100%; height: auto; display: block; }
   
   .container{
     width: min(var(--max), calc(100% - 40px));
     margin: 0 auto;
     max-width: 100%;
   }
   
   .narrow{
     width: min(920px, calc(100% - 40px));
     max-width: 100%;
   }
   
   .section{ padding: var(--s7) 0; }
   
   /* sticky nav no tape títulos */
   section{ scroll-margin-top: 72px; }
   
   .card{
     background: rgba(250,247,241,0.78);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     box-shadow: var(--shadow-soft);
     backdrop-filter: blur(8px);
   }
   
   .divider{
     height: 1px;
     background: linear-gradient(90deg, transparent, rgba(122,132,80,0.22), transparent);
     margin: var(--s6) 0;
   }
   
   /* Skip link (oculto salvo teclado) */
   .skip-link{
     position: fixed;
     left: 12px;
     top: -120px;
     transform: translateY(-120%);
     padding: 10px 12px;
     border-radius: 10px;
     background: white;
     border: 1px solid rgba(0,0,0,0.12);
     color: #1E1E1E;
     z-index: 9999;
     transition: top .14s ease, transform .14s ease;
   }
   .skip-link:focus{
     top: 12px;
     transform: translateY(0);
   }
   
   /* Focus */
   :focus-visible{
     outline: 3px solid rgba(122,132,80,0.30);
     outline-offset: 3px;
     border-radius: 10px;
   }
   
   /* =========================
      TOP NAV
      ========================= */
   .topnav{
     position: sticky;
     top: 0;
     z-index: 50;
     background: rgba(250,247,241,0.62);
     border-bottom: 1px solid rgba(122,132,80,0.12);
     backdrop-filter: blur(10px);
   }
   
   .topnav-inner{
     display:flex;
     align-items:center;
     justify-content: space-between;
     padding: 4px 0;
     gap: 12px;
   }
   
   .topnav-brand img{
     width: 112px;
     height: auto;
     opacity: 0.95;
   }
   
   .topnav-links{
     display:flex;
     align-items:center;
     gap: 10px;
     flex-wrap: wrap;
   }
   
   .topnav-links a{
     text-decoration:none;
     font-size: 14px;
     padding: 7px 10px;
     border-radius: 999px;
     transition: background-color .14s ease, transform .14s ease;
   }
   
   .topnav-links a:hover{
     background: rgba(122,132,80,0.07);
     transform: translateY(-1px);
   }
   
   .topnav-links .pill{
     border: 1px solid rgba(122,132,80,0.22);
     background: rgba(122,132,80,0.05);
   }
   
   /* =========================
      HERO
      ========================= */
   .hero{
     padding: 26px 0 var(--s7);
   }
   
   .hero-card{
     text-align: center;
     max-width: 860px;
     margin: 0 auto;
     padding: 34px 26px;
   
     background: rgba(250,247,241,0.76);
     border: 1px solid rgba(122,132,80,0.18);
     border-radius: var(--radius);
     box-shadow: var(--shadow);
     backdrop-filter: blur(8px);
   }
   
   .brand-logo-wrap{
     display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
   }
   
   .brand-logo{
     width: 520px;
     max-width: 92%;
     height: auto;
     display: block;
     margin: 0 auto 10px auto;
   }
   
   .subtitle{
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.85rem;
     margin: 6px 0 0 0;
     color: var(--olive);
     letter-spacing: -0.01em;
   }
   
   .tagline{
     margin: 10px 0 20px 0;
     font-size: 1.02rem;
     color: var(--muted);
   }
   
   .hero-actions{
     display: inline-flex;
     gap: 10px;
     flex-wrap: wrap;
     justify-content: center;
     margin-top: 4px;
   }
   
   .hero-badges{
     display:flex;
     gap: 10px;
     flex-wrap: wrap;
     justify-content:center;
     margin-top: 16px;
   }
   
   .badge{
     font-size: 12px;
     padding: 7px 10px;
     border-radius: 999px;
     border: 1px solid rgba(95,95,95,0.12);
     background: rgba(255,255,255,0.45);
     color: rgba(40,40,40,0.70);
   }
   
   /* =========================
      Buttons
      ========================= */
   .btn{
     border: 1px solid rgba(122,132,80,0.50);
     padding: 12px 20px;
     text-decoration: none;
     color: var(--olive);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 999px;
     background: rgba(255,255,255,0.35);
     transition: transform .14s ease, background-color .14s ease, box-shadow .14s ease, border-color .14s ease;
     box-shadow: 0 10px 22px rgba(0,0,0,0.04);
   }
   
   .btn:hover{
     transform: translateY(-1px);
     background: rgba(122,132,80,0.07);
     border-color: rgba(122,132,80,0.68);
   }
   
   .btn:active{ transform: translateY(0px); }
   
   .btn-primary{
     color: white;
     border-color: rgba(122,132,80,0.70);
     background: linear-gradient(135deg, rgba(122,132,80,0.95), rgba(152,162,103,0.92));
     box-shadow: 0 16px 34px rgba(122,132,80,0.18);
   }
   
   .btn-primary:hover{
     background: linear-gradient(135deg, rgba(122,132,80,1), rgba(152,162,103,0.98));
   }
   
   .btn-ghost{
     border-color: rgba(95,95,95,0.18);
     color: var(--stone);
     background: rgba(255,255,255,0.25);
   }
   
   .btn-ghost:hover{
     background: rgba(95,95,95,0.06);
     border-color: rgba(95,95,95,0.28);
   }
   
   /* =========================
      TITLES
      ========================= */
   .section-title{
     font-family: 'Cormorant Garamond', serif;
     font-size: 2.5rem;
     line-height: 1.1;
     margin: 0 0 12px 0;
     color: var(--olive);
     text-align: center;
     letter-spacing: -0.01em;
   }
   
   .section-subtitle{
     max-width: 840px;
     margin: 0 auto 34px auto;
     text-align: center;
     font-size: 1.06rem;
     color: var(--muted);
   }
   
   /* =========================
      MANIFESTO
      ========================= */
   .manifesto .lead{
     max-width: 820px;
     margin: 0 auto 16px auto;
     font-size: 1.10rem;
     color: var(--muted);
   }
   
   .highlight{
     font-style: italic;
     opacity: 0.95;
     margin: 18px auto 0 auto;
     border-left: 2px solid rgba(122,132,80,0.32);
     padding-left: 14px;
     max-width: 820px;
   }
   
   .two-col{
     display:grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 14px;
   }
   
   .mini-card{
     border: 1px solid rgba(122,132,80,0.16);
     border-radius: var(--radius-sm);
     background: rgba(255,255,255,0.35);
     padding: 18px 16px;
     box-shadow: 0 10px 22px rgba(0,0,0,0.03);
   }
   
   .mini-card h3{
     margin: 0 0 8px 0;
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.5rem;
     color: var(--olive);
   }
   
   .mini-card p{
     margin: 0;
     color: var(--muted);
   }
   
   /* =========================
      UNITS GRID
      ========================= */
   .cards{
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
   }
   
   .unit-card{
     text-align: center;
     background: rgba(250,247,241,0.78);
     border: 1px solid rgba(122,132,80,0.20);
     border-radius: var(--radius);
     padding: 22px 18px 18px 18px;
     box-shadow: 0 10px 24px rgba(0,0,0,0.04);
     transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
   }
   
   .unit-card:hover{
     transform: translateY(-2px);
     border-color: rgba(122,132,80,0.34);
     box-shadow: 0 18px 36px rgba(0,0,0,0.06);
   }
   
   .unit-head{
     border-radius: var(--radius-sm);
     border: 1px solid rgba(122,132,80,0.12);
     background: rgba(255,255,255,0.35);
     padding: 16px 12px;
     margin-bottom: 14px;
   }
   
   .unit-logo{
     width: 220px;
     max-width: 86%;
     margin: 0 auto;
   }
   
   .unit-text{
     font-size: 1rem;
     line-height: 1.65;
     color: var(--muted);
     margin: 0;
   }
   
   .chips{
     display:flex;
     justify-content: center;
     gap: 8px;
     flex-wrap: wrap;
     margin-top: 14px;
   }
   
   .chip{
     font-size: 12px;
     padding: 6px 10px;
     border-radius: 999px;
     border: 1px solid rgba(95,95,95,0.12);
     background: rgba(255,255,255,0.45);
     color: rgba(40,40,40,0.68);
   }
   
   /* =========================
      EXPERIENCES (Talleres / Terapias)
      ========================= */
   .experiences{
     padding-top: 0;
   }
   
   .exp-grid{
     display:grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
   }
   
   .exp-grid-2{
     grid-template-columns: repeat(2, 1fr);
   }
   
   .exp-card{
     border: 1px solid rgba(122,132,80,0.16);
     background: rgba(250,247,241,0.78);
     border-radius: var(--radius);
     padding: 18px 18px 16px 18px;
     box-shadow: 0 10px 24px rgba(0,0,0,0.04);
     transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
   }
   
   .exp-card:hover{
     transform: translateY(-2px);
     border-color: rgba(122,132,80,0.30);
     box-shadow: 0 18px 36px rgba(0,0,0,0.06);
   }
   
   .exp-top{
     display:flex;
     align-items:center;
     justify-content: space-between;
     gap: 10px;
     margin-bottom: 10px;
   }
   
   .exp-kicker{
     font-size: 12px;
     padding: 6px 10px;
     border-radius: 999px;
     border: 1px solid rgba(122,132,80,0.18);
     background: rgba(122,132,80,0.06);
     color: rgba(50,60,40,0.80);
     white-space: nowrap;
   }
   
   .exp-meta{
     font-size: 12px;
     color: rgba(95,95,95,0.75);
     text-align: right;
   }
   
   .exp-card h3{
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.65rem;
     line-height: 1.15;
     margin: 0 0 8px 0;
     color: var(--olive);
     letter-spacing: -0.01em;
   }
   
   .exp-card p{
     margin: 0;
     color: var(--muted);
   }
   
   /* CTA inline */
   .cta-inline{
     margin-top: 18px;
     padding: 18px 16px;
     display:flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
   }
   
   .cta-inline h3{
     margin: 0 0 6px 0;
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.55rem;
     color: var(--olive);
   }
   
   .cta-inline p{
     margin: 0;
     color: var(--muted);
   }
   
   .cta-inline-actions{
     display:flex;
     gap: 10px;
     flex-wrap: wrap;
     justify-content: flex-end;
   }
   
   /* Note */
   .note{
     margin-top: 14px;
     padding: 16px;
   }
   .note p{
     margin: 0;
     color: rgba(95,95,95,0.86);
   }
   
   /* =========================
      RESERVE
      ========================= */
   .cta{
     padding: 20px 18px;
     display:flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
   }
   
   .cta-left h3{
     margin: 0 0 6px 0;
     font-family: 'Cormorant Garamond', serif;
     font-size: 1.6rem;
     color: var(--olive);
   }
   
   .cta-left p{
     margin: 0;
     color: var(--muted);
   }
   
   .cta-right{
     display:flex;
     gap: 10px;
     flex-wrap: wrap;
     justify-content: flex-end;
   }
   
   /* =========================
      FOOTER
      ========================= */
   .footer{
     padding: 40px 0;
     border-top: 1px solid rgba(122,132,80,0.12);
   }
   
   .footer-inner{
     display:flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     flex-wrap: wrap;
     font-size: 0.95rem;
     opacity: 0.92;
   }
   
   .footer-links{
     display:flex;
     gap: 10px;
     flex-wrap: wrap;
   }
   
   .footer-links a{
     text-decoration:none;
     padding: 6px 10px;
     border-radius: 999px;
   }
   
   .footer-links a:hover{
     background: rgba(122,132,80,0.06);
   }
   
   /* =========================
      Responsive
      ========================= */
   @media (max-width: 980px){
     .cards{ grid-template-columns: repeat(2, 1fr); }
     .two-col{ grid-template-columns: 1fr; }
   
     .exp-grid{ grid-template-columns: repeat(2, 1fr); }
     .exp-grid-2{ grid-template-columns: 1fr; }
   
     .cta{ flex-direction: column; align-items: stretch; }
     .cta-right{ justify-content: flex-start; }
   
     .cta-inline{ flex-direction: column; align-items: stretch; }
     .cta-inline-actions{ justify-content: flex-start; }
   }
   
   @media (max-width: 640px){
     .container{ width: calc(100% - 32px); }
     .narrow{ width: calc(100% - 32px); }
   
     /* Nav móvil */
     .topnav-inner{
       flex-wrap: wrap;
       justify-content: center;
       gap: 6px;
     }
     .topnav-brand{
       width: 100%;
       display: flex;
       justify-content: center;
     }
     .topnav-links{
       width: 100%;
       justify-content: center;
       gap: 6px;
     }
     .topnav-links a{
       padding: 7px 9px;
       font-size: 13px;
     }
   
     .hero{ padding: 18px 0 var(--s7); }
     .hero-card{ padding: 28px 18px; }
     .brand-logo{
       width: 420px;
       max-width: 94vw;
       margin-left: auto;
       margin-right: auto;
       transform: translateX(-2px);
     }
   
     .subtitle{ font-size: 1.55rem; }
     .tagline{ font-size: 1rem; }
   
     .section{ padding: 64px 0; }
     .section-title{ font-size: 2.1rem; }
   
     .cards{ grid-template-columns: 1fr; }
     .exp-grid{ grid-template-columns: 1fr; }
   }
   
   /* Reduce motion */
   @media (prefers-reduced-motion: reduce){
     html{ scroll-behavior: auto; }
     .btn, .unit-card, .topnav-links a, .exp-card{ transition: none !important; }
   }
   