:root{
    --cream:#F7F3EC;
    --charcoal:#1C1C1A;
    --amber:#E8A93B;
    --clay:#C1623B;
    --sage:#8FA68E;
    --line:#E2DCCF;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    font-family:'Inter',sans-serif;
    background:var(--cream);
    color:var(--charcoal);
    overflow-x:hidden;
  }
  h1,h2,h3{font-family:'Fraunces',serif;font-weight:600;letter-spacing:-0.02em;}

  /* NAV */
  header{
    position:fixed;top:0;left:0;right:0;
    display:flex;align-items:center;justify-content:space-between;
    padding:18px 6vw;
    background:rgba(247,243,236,0.85);
    backdrop-filter:blur(10px);
    z-index:100;
    border-bottom:1px solid var(--line);
  }
  .logo-wrap{display:flex;align-items:center;gap:12px;}
  .logo-wrap img{width:46px;height:46px;border-radius:50%;}
  .logo-text{font-family:'Fraunces',serif;font-weight:700;font-size:1.15rem;}
  .logo-text span{color:var(--amber);}
  nav ul{display:flex;gap:32px;list-style:none;font-size:0.95rem;font-weight:500;}
  nav a{color:var(--charcoal);text-decoration:none;position:relative;}
  nav a::after{
    content:'';position:absolute;left:0;bottom:-6px;width:0;height:2px;background:var(--amber);
    transition:width .3s ease;
  }
  nav a:hover::after{width:100%;}
  .nav-cta{
    background:var(--charcoal);color:var(--cream);
    padding:10px 22px;border-radius:30px;font-size:0.9rem;font-weight:600;
    text-decoration:none;transition:background .3s;
  }
  .nav-cta:hover{background:var(--clay);}
  @media(max-width:860px){ nav ul{display:none;} }

  /* HERO */
  .hero{
    min-height:80vh;
    background-image: url("images/hero_desktop.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display:flex;flex-direction:column;justify-content:center;
    padding:120px 5vw 80px;
    position:relative;
  }
  .hero-grid{
    display:grid;grid-template-columns:1.1fr 0.9fr;gap:60px;align-items:center;
  }
  .eyebrow::before{content:'';width:28px;height:2px;background:var(--clay);}
  .hero h1{
    font-size:clamp(2.6rem,5.5vw,4.4rem);
    line-height:1.05;
    margin-bottom:24px;
  }
  .hero h1 em{
    font-style:italic;color:var(--amber);
  }
  .hero p{
    font-size:1.1rem;line-height:1.7;color:#4A4A45;max-width:480px;margin-bottom:34px;
  }
  .hero-actions{display:flex;gap:16px;flex-wrap:wrap;}
  /* hhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhdi */
  .btn-primary,.btn-secondary{
    padding:10px 25px;border-radius:30px;font-weight:600;font-size:0.64rem;
    text-decoration:none;display:inline-block;transition:all .25s ease;
  }
  .btn-primary{background:var(--charcoal);color:var(--cream);}
  .btn-primary:hover{background:var(--clay);transform:translateY(-2px);}
  .btn-secondary{border:1.5px solid var(--charcoal);color:var(--charcoal);}
  .btn-secondary:hover{background:var(--charcoal);color:var(--cream);}

  /*SOCIAL OUSSAMA*/
  
  /* SVG wave signature */
  .wave-art{position:relative;height:420px;}
  .wave-art svg{width:100%;height:100%;}
  .wave-line{
    fill:none;stroke:var(--charcoal);stroke-width:3;stroke-linecap:round;
    stroke-dasharray:1500;stroke-dashoffset:1500;
    animation:draw 2.6s ease forwards;
  }
  .wave-line-accent{
    fill:none;stroke:var(--amber);stroke-width:4;stroke-linecap:round;
    stroke-dasharray:1500;stroke-dashoffset:1500;
    animation:draw 2.6s ease forwards .3s;
  }
  @keyframes draw{to{stroke-dashoffset:0;}}
  .floating-tag{
    position:absolute;background:#fff;border:1px solid var(--line);
    border-radius:14px;padding:14px 18px;
    box-shadow:0 12px 30px rgba(28,28,26,0.08);
    font-size:0.85rem;font-weight:600;
    animation:float 5s ease-in-out infinite;
  }
  .floating-tag.t1{top:10%;right:5%;animation-delay:0s;}
  .floating-tag.t2{bottom:14%;left:0%;animation-delay:1.2s;}
  .floating-tag small{display:block;font-weight:400;color:#888;font-size:0.72rem;margin-top:2px;}
  @keyframes float{0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);}}

  /* MARQUEE strip */
  .strip{
    background:var(--charcoal);color:var(--cream);
    padding:16px 0;overflow:hidden;white-space:nowrap;
  }
  .strip-inner{display:inline-flex;gap:60px;animation:scroll 28s linear infinite;}
  .strip span{font-family:'Fraunces',serif;font-size:1rem;letter-spacing:0.05em;opacity:.9;}
  .strip span::after{content:'•';margin-left:60px;color:var(--amber);}
  @keyframes scroll{from{transform:translateX(0);}to{transform:translateX(-50%);}}

  /* SECTIONS general */
  section{padding:10px 6vw;}
  .section-head{max-width:640px;margin-bottom:60px;}
  .section-head .eyebrow{color:var(--sage);}
  .section-head .eyebrow::before{background:var(--sage);}
  .section-head h2{font-size:clamp(2rem,4vw,2.8rem);margin-bottom:16px;}
  .section-head p{color:#4A4A45;font-size:1.05rem;line-height:1.7;}

  /* WHY / FEATURES */
  .features{
    display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
  }
  @media(max-width:860px){.features{grid-template-columns:1fr;}}
  .feature-card{
    background:#fff;border:1px solid var(--line);border-radius:18px;
    padding:32px;transition:transform .3s ease, box-shadow .3s ease;
  }
  .feature-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(28,28,26,0.07);}
  .feature-num{
    font-family:'Fraunces',serif;font-size:0.85rem;color:var(--amber);font-weight:700;
    letter-spacing:0.1em;margin-bottom:18px;
  }
  .feature-card h3{font-size:1.3rem;margin-bottom:10px;}
  .feature-card p{color:#5a5a55;font-size:0.95rem;line-height:1.65;}

  /* PRODUCTS */
  .products-section{background:#fff;border-top:1px solid var(--line);border-bottom:1px solid var(--line);}
  .products{
    display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
  }
  @media(max-width:900px){.products{grid-template-columns:1fr;}}
  .product-card{
    position:relative;
    min-height:420px;
    border-radius:20px;
    overflow:hidden;
    background:var(--cream);
    border:1px solid var(--line);
  }
  .product-media{
    position:absolute;
    inset:0;
    overflow:hidden;
  }
  .product-media img,
  .product-media svg{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
  }
  .product-card:hover .product-media img,
  .product-card:hover .product-media svg{
    transform:scale(1.05);
  }
  .product-card:nth-child(1) .product-media{background:linear-gradient(135deg,#EFE7D8,#F7F3EC);}
  .product-card:nth-child(2) .product-media{background:linear-gradient(135deg,#E9EFE6,#F7F3EC);}
  .product-card:nth-child(3) .product-media{background:linear-gradient(135deg,#F4E2D4,#F7F3EC);}
  .product-body{
    position:absolute;
    left:0;
    right:0;
    top:65%;
    bottom:0;
    /* overlay covers lower ~35% of the card */
    padding:32px 24px 28px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    gap:16px;
    background:rgba(243,239,232,0.82);
    backdrop-filter:blur(8px);
    border-top:1px solid rgba(255,255,255,0.6);
    color:var(--charcoal);
    transition:background .35s ease;
    z-index:2;
  }
  .product-card:hover .product-body{
    background:rgba(243,239,232,0.92);
  }
  .product-body::before{
    content:'';
    position:absolute;
    left:0;
    right:0;
    top:0;
    height:100%;
    background:linear-gradient(180deg,rgba(28,28,26,0.22) 0%, rgba(28,28,26,0) 55%);
    pointer-events:none;
    border-top-left-radius:inherit;
    border-top-right-radius:inherit;
  }
  .product-body > *{
    position:relative;
    z-index:3;
  }

  .product-price{
    margin-top:14px; /* extra top spacing above the price */
  }
  .product-tag{
    font-size:0.75rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;
    color:var(--clay);margin-bottom:10px;display:block;
  }
  .product-body h3{font-size:1.35rem;margin-bottom:8px;}
  .product-body p{color:#5a5a55;font-size:0.92rem;line-height:1.6;margin-bottom:18px;}
  .product-price{
    display:flex;align-items:baseline;gap:8px;margin-bottom:18px;
  }
  .product-price .now{font-family:'Fraunces',serif;font-size:1.6rem;font-weight:700;}
  .product-price .was{font-size:0.9rem;color:#aaa;text-decoration:line-through;}
  .product-link{
    color:var(--charcoal);font-weight:600;font-size:0.92rem;text-decoration:none;
    display:inline-flex;align-items:center;gap:6px;
  }
  .product-link::after{content:'→';transition:transform .25s;}
  .product-link:hover::after{transform:translateX(4px);}

  /* MEDICAL BENEFITS / SLEEP SCIENCE */
  .science{
    display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;
  }
  @media(max-width:900px){.science{grid-template-columns:1fr;}}
  .spine-art{height:340px;}
  .spine-art svg{width:100%;height:100%;}
  .benefit-list{display:flex;flex-direction:column;gap:26px;}
  .benefit-item{display:flex;gap:18px;align-items:flex-start;}
  .benefit-icon{
    flex-shrink:0;width:46px;height:46px;border-radius:12px;
    background:var(--sage);display:flex;align-items:center;justify-content:center;
    color:#fff;font-family:'Fraunces',serif;font-weight:700;font-size:1.1rem;
  }
  .benefit-item h4{font-size:1.1rem;margin-bottom:4px;}
  .benefit-item p{color:#5a5a55;font-size:0.92rem;line-height:1.6;}

  /* CITIES */
  .cities-section{
    background:var(--charcoal);color:var(--cream);
  }
  .cities-section .section-head .eyebrow{color:var(--amber);}
  .cities-section .section-head .eyebrow::before{background:var(--amber);}
  .cities-section .section-head p{color:#cfcdc7;}
  .cities-grid{
    display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:16px;
  }
  .city-chip{
    border:1px solid rgba(247,243,236,0.18);
    border-radius:14px;padding:20px;text-align:center;
    font-weight:600;font-size:1rem;
    transition:border-color .3s, background .3s;
  }
  .city-chip:hover{border-color:var(--amber);background:rgba(232,169,59,0.06);}
  .city-chip small{display:block;color:#9a9893;font-size:0.78rem;margin-top:6px;font-weight:400;}
 /* D */
  .cities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:16px;
}

.city-chip{
    border:1px solid rgba(255,255,255,.15);
    border-radius:14px;
    padding:20px;
    text-align:center;
    transition:.3s;
}

.city-chip:hover{
    border-color:#d4a437;
}

.city-chip a{
    text-decoration:none;
    color:#fff;
    font-weight:600;
    display:block;
}

.city-chip small{
    display:block;
    margin-top:8px;
    opacity:.8;
}

.city-btn{
    width:100%;
    background:none;
    border:none;
    color:#fff;
    font-size:1rem;
    font-weight:600;
    cursor:pointer;
}

.arrow{
    color:#d4a437;
}

.city-locations{
    display:none;
    margin-top:12px;
}

.city-locations a{
    display:block;
    padding:8px 0;
    color:#fff;
    font-size:.95rem;
}

.city-locations a:hover{
    color:#d4a437;
}

.city-chip.active .city-locations{
    display:block;
}
/* WE */

.city-chip a:hover{
    color: var(--amber);
}
  /* TESTIMONIALS */
  .testimonials{
    display:grid;grid-template-columns:repeat(3,1fr);gap:28px;
  }
  @media(max-width:900px){.testimonials{grid-template-columns:1fr;}}
  .testimonial-card{
    background:#fff;border:1px solid var(--line);border-radius:18px;padding:30px;
  }
  .stars{color:var(--amber);font-size:1rem;margin-bottom:14px;letter-spacing:2px;}
  .testimonial-card p{font-size:0.96rem;line-height:1.7;color:#3a3a36;margin-bottom:18px;}
  .testimonial-name{font-weight:700;font-size:0.92rem;}
  .testimonial-loc{font-size:0.8rem;color:#999;}

  /* CTA */
  .cta-section{
    text-align:center;padding:120px 6vw;
    background:linear-gradient(180deg,var(--cream),#EFE6D6);
    position:relative;
  }
  .cta-section h2{font-size:clamp(2.2rem,5vw,3.4rem);margin-bottom:20px;}
  .cta-section p{color:#5a5a55;max-width:520px;margin:0 auto 36px;font-size:1.05rem;line-height:1.7;}

  /* FOOTER */
  footer{
    background:var(--charcoal);color:#cfcdc7;
    padding:60px 6vw 30px;
  }
  .footer-grid{
    display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;
    border-bottom:1px solid rgba(247,243,236,0.12);
    padding-bottom:40px;margin-bottom:24px;
  }
  @media(max-width:860px){.footer-grid{grid-template-columns:1fr 1fr;}}
  .footer-grid h4{
    font-family:'Fraunces',serif;color:#fff;margin-bottom:16px;font-size:1rem;
  }
  .footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:14px;}
  .footer-brand img{width:42px;height:42px;border-radius:50%;}
  .footer-brand span{font-family:'Fraunces',serif;color:#fff;font-weight:700;}
  .footer-grid p{font-size:0.9rem;line-height:1.7;max-width:280px;}
  .footer-grid ul{list-style:none;display:flex;flex-direction:column;gap:10px;font-size:0.9rem;}
  .footer-grid a{color:#cfcdc7;text-decoration:none;}
  .footer-grid a:hover{color:var(--amber);}
  .footer-bottom{
    display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;
    font-size:0.82rem;color:#8a8883;
  }

  /* reduced motion */
  @media (prefers-reduced-motion: reduce){
    .wave-line,.wave-line-accent,.floating-tag,.strip-inner{animation:none !important;stroke-dashoffset:0;}
  }
  .social-floating {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Floating Social */

.social-floating{
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 99999;
}

.social-floating a{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-floating i{
    font-size: 32px !important;
    color: white !important;
}

.whatsapp{
    background: #25D366;
}

.facebook{
    background: #1877F2;
}

.instagram{
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}
/* MOBILE HERO */
@media (max-width: 768px){
  .hero{
        height:auto;
        
        min-height:80vh;
        background-image:url('images/hero_mobile.png');
        background-size:cover;
        background-position:center top;
    }



    .hero{
        min-height: 550px;
        background-position: center top;
        padding: 90px 20px 40px;
    }

    .hero-grid{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .wave-art{
        height: 220px;
    }

    .floating-tag{
        padding:8px 12px;
        max-width:100px;
        border-radius:15px;
    }

    .floating-tag h5{
        font-size:16px;
        margin-bottom:2px;
    }

    .floating-tag span,
    .floating-tag p{
        font-size:12px;
    }

    .floating-tag.t1{
        top:42%;
        right:10px;
    }

    .floating-tag.t2{
        top:58%;
        left:10px;
    }
    
    .hero .btn-primary{
        position: absolute !important;
        top: 130px !important;
        left: 80% !important;
        transform: translateX(-50%) !important;
        z-index: 999 !important;
    }
    
}
html, body{
    overflow-x: hidden;
    width: 100%;
}
