:root{
    --paper:#F7F4EC;
    --paper-warm:#F1ECDF;
    --ink:#241D30;
    --berry:#4B3B6E;
    --berry-deep:#2E2444;
    --berry-soft:#9C93D1;
    --leaf:#6B7A4F;
    --leaf-soft:#DCE3CC;
    --card:#FFFFFF;
    --line: rgba(36,29,48,0.12);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Work Sans', sans-serif;
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,.serif{
    font-family:'Fraunces', serif;
    font-weight:600;
    letter-spacing:-0.01em;
    line-height:1.08;
    color:var(--berry-deep);
  }
  a{color:inherit; text-decoration:none;}
  img{max-width:100%; display:block;}
  .wrap{max-width:1180px; margin:0 auto; padding:0 32px;}
  section{padding:110px 0;}
  #productos{padding-top:6px;}
  #membresia{padding-bottom:50px;}
  .final-cta-section{padding-top:36px;}
  @media(max-width:720px){ section{padding:70px 0;} .wrap{padding:0 22px;} }

  /* ---------- Photos ---------- */
  .photo{
    position:relative;
    border-radius:6px;
    overflow:hidden;
    background:var(--berry-deep);
    min-height:260px;
  }
  .photo img{
    width:100%; height:100%;
    object-fit:cover; object-position:center;
    display:block;
  }

  /* ---------- Mini photo gallery strip ---------- */
  .gallery-strip{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:14px;
    margin-top:64px;
  }
  .gallery-strip .photo{ aspect-ratio:3/4; min-height:auto; }
  @media(max-width:900px){ .gallery-strip{grid-template-columns:repeat(3,1fr);} }
  @media(max-width:560px){ .gallery-strip{grid-template-columns:repeat(3,1fr); gap:8px;} }

  /* ---------- Nav ---------- */
  header{
    position:sticky; top:0; z-index:50;
    background:rgba(247,244,236,0.9);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:12px 32px; max-width:1180px; margin:0 auto;
  }
  @media(max-width:480px){ nav{padding:10px 18px;} }
  .logo{display:flex; align-items:center;}
  .logo img{height:72px; width:auto; display:block;}
  .nav-links{display:flex; gap:36px; align-items:center;}
  .nav-links a{font-size:14.5px; font-weight:500; color:var(--ink); opacity:0.85;}
  .nav-links a:hover{opacity:1;}
  .nav-links a.btn{opacity:1;}
  .nav-links a.btn-primary{color:#FFFFFF;}
  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:12px 24px; border-radius:3px;
    font-size:14.5px; font-weight:600;
    border:1px solid transparent;
    cursor:pointer;
  }
  .btn-primary{background:var(--berry-deep); color:var(--paper);}
  .btn-primary:hover{background:var(--berry);}
  .btn-outline{border-color:var(--berry-deep); color:var(--berry-deep);}
  .btn-outline:hover{background:var(--berry-deep); color:var(--paper);}
  .menu-toggle{
    display:none; background:none; border:none; cursor:pointer;
    font-size:24px; line-height:1; padding:6px; color:var(--berry-deep);
  }
  @media(max-width:860px){
    .logo img{height:52px;}
    .nav-links{
      display:none;
      position:absolute; top:100%; left:0; right:0;
      flex-direction:column; align-items:stretch; gap:0;
      background:var(--paper);
      border-bottom:1px solid var(--line);
      box-shadow:0 12px 24px rgba(36,29,48,0.08);
    }
    .nav-links.open{display:flex;}
    .nav-links a{ padding:16px 32px; border-top:1px solid var(--line); opacity:1; }
    .nav-links a.btn{ margin:16px 32px; justify-content:center; }
    nav{position:relative;}
    .menu-toggle{display:block;}
  }

  /* ---------- Hero ---------- */
  .hero{padding-top:64px; padding-bottom:0;}
  .hero-grid{
    display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center;
    padding-bottom:80px;
  }
  .eyebrow{
    font-size:13px; color:var(--leaf); font-weight:600;
    margin-bottom:22px; display:flex; align-items:center; gap:8px;
  }
  .eyebrow::before{content:""; width:16px; height:1px; background:var(--leaf);}
  .hero h1{font-size:clamp(38px,5vw,58px); max-width:11.5ch;}
  .hero h1 em{font-style:italic; color:var(--berry);}
  .hero p.lead{
    margin-top:24px; font-size:18px; max-width:44ch; color:var(--ink); opacity:0.82;
  }
  .hero-cta{display:flex; gap:14px; margin-top:36px; flex-wrap:wrap;}
  .hero-photo{aspect-ratio:4/5; min-height:auto;}
  .seal-row{
    display:flex; gap:20px; margin-top:60px; padding-top:40px; border-top:1px solid var(--line);
    flex-wrap:wrap;
  }
  .seal{
    flex:1; min-width:150px;
    display:flex; flex-direction:column; align-items:center; text-align:center;
    gap:10px;
  }
  .seal img{
    width:118px; height:auto; flex:none;
  }
  @media(max-width:900px){
    .hero-grid{grid-template-columns:1fr;}
    .hero-photo{order:-1; aspect-ratio:16/10;}
  }
  @media(max-width:600px){ .seal-row{gap:20px;} .seal{min-width:30%;} .seal img{width:88px;} }

  /* ---------- Membership (hero of the page's purpose) ---------- */
  .membership{
    background:var(--berry-deep); color:var(--paper);
    border-radius:8px;
    padding:0; overflow:hidden;
  }
  .membership-inner{
    display:grid; grid-template-columns:1fr 1fr;
  }
  .membership-photo{border-radius:0; min-height:100%;}
  .membership-copy{padding:64px 56px;}
  .membership .eyebrow{color:var(--berry-soft);}
  .membership .eyebrow::before{background:var(--berry-soft);}
  .membership h2{color:var(--paper); font-size:clamp(30px,3.4vw,42px); max-width:12ch;}
  .price-old{
    font-family:'Fraunces',serif; font-size:18px; opacity:0.55;
    text-decoration:line-through; text-decoration-color:var(--berry-soft);
    margin-top:20px;
  }
  .price-row{
    display:flex; align-items:baseline; gap:10px; margin:6px 0 6px; flex-wrap:wrap;
  }
  .price{font-family:'Fraunces',serif; font-size:44px; font-weight:600;}
  .price-period{font-size:14px; opacity:0.7;}
  .save-tag{
    display:inline-block; font-size:13px; font-weight:600;
    color:var(--berry-deep); background:var(--leaf-soft);
    padding:5px 12px; border-radius:20px; margin-bottom:28px;
  }
  .membership-desc{opacity:0.88; max-width:42ch; font-size:15.5px; margin-bottom:32px;}
  .perk-list{display:grid; grid-template-columns:1fr 1fr; gap:20px 24px; margin-bottom:40px;}
  .perk{display:flex; gap:12px; align-items:flex-start;}
  .perk-ico{
    width:34px; height:34px; flex:none; border-radius:50%;
    background:rgba(255,255,255,0.1);
    display:flex; align-items:center; justify-content:center; font-size:15px;
  }
  .perk-title{font-size:14.5px; font-weight:600;}
  .perk-sub{font-size:13px; opacity:0.72; margin-top:2px;}
  .membership .btn-primary{background:var(--paper); color:var(--berry-deep);}
  .membership .btn-primary:hover{background:#fff;}
  @media(max-width:900px){
    .membership-inner{grid-template-columns:1fr;}
    .membership-photo{aspect-ratio:16/9;}
    .membership-copy{padding:44px 28px;}
    .perk-list{grid-template-columns:1fr;}
  }

  /* ---------- Section heading ---------- */
  .section-head{
    display:flex; flex-direction:column; align-items:flex-start;
    gap:18px; margin-bottom:52px;
  }
  .section-head h2{font-size:clamp(28px,3.2vw,38px); max-width:18ch;}
  .section-head h2 em{font-style:italic; color:var(--berry);}
  .section-head p{max-width:46ch; opacity:0.75; font-size:15px;}

  /* ---------- Products (individual) ---------- */
  .products-grid{display:grid; grid-template-columns:1fr 1fr; gap:32px;}
  .product-card{
    background:var(--card); border:1px solid var(--line); border-radius:8px;
    overflow:hidden; display:flex; flex-direction:column;
  }
  .product-photo{aspect-ratio:5/4; border-radius:0;}
  .product-body{padding:32px;}
  .product-kicker{font-size:12.5px; font-weight:600; color:var(--leaf); text-transform:none; margin-bottom:8px;}
  .product-card h3{font-size:24px; margin-bottom:10px;}
  .product-card .desc{font-size:14.5px; opacity:0.75; margin-bottom:24px; max-width:36ch;}
  .size-rows{border-top:1px solid var(--line);}
  .size-row{
    display:flex; justify-content:space-between; align-items:center;
    padding:16px 0; border-bottom:1px solid var(--line);
  }
  .size-row .size{font-size:14.5px; font-weight:500;}
  .size-row .size small{display:block; font-size:12.5px; opacity:0.6; font-weight:400; margin-top:1px;}
  .size-row .amount{font-family:'Fraunces',serif; font-size:19px; color:var(--berry-deep);}
  .product-body .btn{width:100%; justify-content:center; margin-top:26px;}
  .domicilio-note{
    font-size:15px; font-weight:700; opacity:0.92; color:var(--berry-deep);
    margin-top:14px; text-align:center;
  }
  @media(max-width:800px){ .products-grid{grid-template-columns:1fr;} }

  /* ---------- Why CORA ---------- */
  .why{background:var(--paper-warm);}
  .why-grid{display:grid; grid-template-columns:1.1fr 1fr; gap:64px; align-items:center;}
  .why-photo{aspect-ratio:1/1;}
  .why-list{display:flex; flex-direction:column;}
  .why-item{
    padding:26px 0; border-bottom:1px solid var(--line);
    display:grid; grid-template-columns:44px 1fr; gap:18px;
  }
  .why-item:first-child{padding-top:0;}
  .why-num{
    font-family:'Fraunces',serif; font-size:15px; color:var(--leaf); font-style:italic;
  }
  .why-item h3{font-size:18px; margin-bottom:6px; font-family:'Work Sans'; font-weight:600; color:var(--ink);}
  .why-item p{font-size:14.5px; opacity:0.75; max-width:44ch;}
  @media(max-width:900px){ .why-grid{grid-template-columns:1fr;} .why-photo{order:-1;} }

  /* ---------- Quote banner ---------- */
  .quote-banner{padding:0;}
  .quote-banner .photo{
    min-height:auto; aspect-ratio:2/1; border-radius:0;
  }
  @media(max-width:700px){ .quote-banner .photo{aspect-ratio:4/5;} }

  /* ---------- Testimonials ---------- */
  .testi-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:28px;}
  .testi-card{
    background:var(--card); border:1px solid var(--line); border-radius:8px; padding:32px;
  }
  .stars{color:var(--berry); font-size:14px; margin-bottom:18px; letter-spacing:2px;}
  .testi-card p{font-size:15px; opacity:0.85; margin-bottom:22px;}
  .testi-name{font-size:13.5px; font-weight:600; color:var(--berry-deep);}
  @media(max-width:860px){ .testi-grid{grid-template-columns:1fr;} }

  /* ---------- Final CTA ---------- */
  .final-cta{
    background:var(--ink); color:var(--paper); border-radius:8px;
    padding:80px 48px; text-align:center;
  }
  @media(max-width:600px){ .final-cta{padding:56px 24px;} }
  .final-cta h2{color:var(--paper); font-size:clamp(30px,4vw,44px); max-width:16ch; margin:0 auto 18px;}
  .final-cta p{opacity:0.78; max-width:44ch; margin:0 auto 36px; font-size:16px;}
  .final-cta .hero-cta{justify-content:center;}
  .final-cta .btn-outline{border-color:rgba(247,244,236,0.4); color:var(--paper);}
  .final-cta .btn-outline:hover{background:rgba(247,244,236,0.12);}

  /* ---------- Footer ---------- */
  footer{padding:64px 0 40px; border-top:1px solid var(--line); margin-top:0;}
  .foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; margin-bottom:48px;}
  .foot-logo{font-family:'Fraunces',serif; font-size:20px; font-weight:600; color:var(--berry-deep); margin-bottom:14px;}
  .foot-grid p{font-size:14px; opacity:0.7; max-width:32ch;}
  .foot-col h4{font-size:13px; font-weight:600; margin-bottom:16px; color:var(--berry-deep);}
  .foot-col a{display:block; font-size:14px; opacity:0.75; margin-bottom:10px;}
  .foot-col a:hover{opacity:1;}
  .foot-bottom{
    display:flex; justify-content:space-between; padding-top:28px; border-top:1px solid var(--line);
    font-size:13px; opacity:0.6; flex-wrap:wrap; gap:10px;
  }
  @media(max-width:700px){ .foot-grid{grid-template-columns:1fr;} }

/* ---------- 404 ---------- */
.notfound{
  min-height:70vh;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  padding:80px 24px;
}
.notfound-num{
  font-family:'Fraunces',serif; font-weight:600; font-style:italic;
  font-size:clamp(70px,14vw,140px); color:var(--berry); line-height:1;
  margin-bottom:8px;
}
.notfound h1{font-size:clamp(24px,3.4vw,34px); margin-bottom:14px;}
.notfound p{font-size:16px; opacity:0.75; max-width:42ch; margin:0 auto 34px;}
.notfound .hero-cta{justify-content:center;}
