:root {
    --green: #234638;
    --sand: #F7F2EA;
    --gold: #B88943;
    --text: #232323;
}

html{
    scroll-behavior:smooth;
}

#home,
#products,
#about,
#vision,
#contact{
    scroll-margin-top:100px;
}   

/* ===========================
   Reset
=========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    line-height: 1.7;
}

/* ===========================
   Layout
=========================== */

.container {
    width: min(1180px, 92%);
    margin: auto;
}

/* ===========================
   Header
=========================== */

.navbar {
    padding: 22px 0;
    background: #fff;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #eee;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===========================
   Logo
=========================== */

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 1px;
}

.tagline {
    margin-top: 6px;
    font-size: 0.78rem;
    font-weight: 500;
    font-style: italic;
    color: var(--gold);
}

/* ===========================
   Navigation
=========================== */

nav a {
    text-decoration: none;
    color: var(--text);
    margin-left: 28px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--green);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
    list-style:none;
    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:var(--green);
    font-weight:500;
    transition:.3s ease;
}

.nav-links a:hover{
    color:var(--gold);
}

/* ===========================
   Hero Section
=========================== */

.hero {
    padding: 100px 0;
    background: linear-gradient(#fff, var(--sand));
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

h1,
h2 {
    font-family: "Cormorant Garamond", serif;
    color: var(--green);
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.6rem;
    margin-bottom: 25px;
}

.buttons {
    margin-top: 35px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.primary {
    background: var(--green);
    color: #fff;
}

.secondary {
    border: 1px solid var(--green);
    color: var(--green);
}

.placeholder {
    height: 480px;
    border-radius: 24px;
    background: #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

/* ===========================
   Sections
=========================== */

.section {
    padding: 90px 0;
}

.alt {
    background: #faf9f6;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    padding: 40px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
}

/*==========================================
        WELLNESS COLLECTION
==========================================*/

.products-section{
    padding:120px 0;
    background:#FAF8F4;
}

.product-showcase{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
    margin-bottom:120px;
}

.product-showcase:last-child{
    margin-bottom:0;
}

.product-showcase.reverse .product-image{
    order:2;
}

.product-showcase.reverse .product-content{
    order:1;
}

/* Image */

.product-image{
    overflow:hidden;
    border-radius:28px;
}

.product-image img{
    width:100%;
    height:580px;
    object-fit:cover;
    display:block;
    border-radius:28px;
    transition:transform .8s ease;
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.product-showcase:hover img{
    transform:scale(1.05);
}

/* Content */

.product-content{
    position:relative;
}

.product-number{

    display:inline-block;

    font-size:5rem;

    font-family:"Cormorant Garamond",serif;

    color:rgba(184,137,67,.18);

    font-weight:700;

    margin-bottom:15px;
}

.product-content h3{

    font-family:"Cormorant Garamond",serif;

    font-size:3rem;

    color:var(--green);

    margin-bottom:20px;
}

.product-content p{

    color:#666;

    line-height:2;

    font-size:1.05rem;

    margin-bottom:35px;
}

/* Features */

.product-content ul{

    list-style:none;

    margin-bottom:40px;
}

.product-content li{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

    font-weight:500;

    color:#333;

    font-size:1rem;
}

.product-content li i{

    width:34px;

    height:34px;

    border-radius:50%;

    background:rgba(184,137,67,.12);

    color:var(--gold);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:.85rem;
}

/* Button */

.explore-link{

    display:inline-flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:var(--green);

    font-weight:600;

    font-size:1.05rem;

    transition:.35s ease;
}

.explore-link i{

    transition:.35s ease;
}

.explore-link:hover{

    color:var(--gold);
}

.explore-link:hover i{

    transform:translateX(8px);
}

/* Hover */

.product-showcase{

    transition:.35s ease;
}

.product-showcase:hover{

    transform:translateY(-8px);
}

/* Divider */

.product-showcase{

    position:relative;
}

.product-showcase:not(:last-child)::after{

    content:"";

    position:absolute;

    bottom:-60px;

    left:50%;

    transform:translateX(-50%);

    width:120px;

    height:1px;

    background:rgba(184,137,67,.35);
}


/*==================================
        ABOUT SECTION
==================================*/

.about-section{

    padding:60px 0;
    background:#FAF8F4;
}

.about-grid{
    display:grid;
    grid-template-columns:58% 42%;
    gap:70px;
    align-items:start;
}

.about-image{
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
    padding-top:35px;
}

.about-image img{
    width:100%;
    max-width:420px;
    aspect-ratio:4/5;
    object-fit:cover;
    border-radius:24px;
    display:block;
}

.section-tag{
    display: inline-block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-content h2{
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    line-height: 1.08;
    color: var(--green);
    margin-bottom: 30px;
}

.about-content h2 span{
    display: block;
    color: var(--gold);
    font-size: 3.3rem;
    margin-top: 8px;
}

.about-content p{

    font-size:1.02rem;
    color:#555;
    margin-bottom:22px;
    line-height:1.9;
}

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:40px 0;
}

.feature-card{

    background:#F7F2EA;
    border-radius:18px;
    padding:18px 20px;
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
    border:1px solid rgba(35,70,56,.08);
    transition:.35s;
}

.feature-card:hover{

    transform:none;
    box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.feature-card span{

    color:#333;
    font-size:.95rem;
}


/*==========================================
        VISION & MISSION
==========================================*/

.vision-section{

    padding:80px 0;
    background:#ffffff;
}

.section-heading{

    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
}

.section-heading h2{

    font-size:4rem;
    margin-bottom:20px;
    color:var(--green);
}

.section-heading h2 span{

    color:var(--gold);
}

.section-heading p{

    font-size:1.1rem;
    color:#666;
    line-height:1.9;
}

.vision-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.vision-card{

    background:#FAF8F4;
    border-radius:28px;
    padding:55px 45px;
    transition:.35s ease;
    border:1px solid rgba(35,70,56,.08);
}

.vision-card:hover{

    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(0,0,0,.08);
}

.vision-icon{

    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(184,137,67,.12);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;
}

.vision-icon i{

    font-size:2rem;
    color:var(--gold);
}

.vision-card h3{

    font-size:2rem;
    margin-bottom:20px;
    color:var(--green);
}

.vision-card p{

    font-size:1.02rem;
    color:#555;
    line-height:2;
}

/*==========================================
        STAY CONNECTED
==========================================*/

.connect-section{
    padding:120px 0;
    background:#FAF8F4;
}

.connect-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.connect-card{
    background:#fff;
    padding:50px 40px;
    border-radius:28px;
    border:1px solid rgba(35,70,56,.08);
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s ease;
    display:flex;
    flex-direction:column;
}

.connect-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.connect-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:rgba(184,137,67,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.connect-icon i{
    font-size:1.8rem;
    color:var(--gold);
}

.connect-card h3{
    font-size:2rem;
    color:var(--green);
    margin-bottom:18px;
    font-family:"Cormorant Garamond",serif;
}

.connect-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.newsletter-form{
    display:flex;
    gap:12px;
    margin-bottom:30px;
}

.newsletter-form input{
    flex:1;
    padding:15px 18px;
    border:1px solid #ddd;
    border-radius:50px;
    outline:none;
    font-size:.95rem;
    transition:.3s;
}

.newsletter-form input:focus{
    border-color:var(--gold);
}

.newsletter-form button{
    background:var(--green);
    color:#fff;
    border:none;
    padding:15px 28px;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
}

.newsletter-form button:hover{
    background:#1c392d;
}

.newsletter-benefits{
    list-style:none;
    margin-bottom:20px;
}

.newsletter-benefits li{
    margin-bottom:12px;
    color:#555;
}

.newsletter-benefits i{
    color:var(--gold);
    margin-right:10px;
}

.connect-card small{
    color:#888;
    margin-top:auto;
}

.contact-items{
    margin-bottom:35px;
}

.contact-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
    margin-bottom:25px;
}

.contact-item i{
    color:var(--gold);
    font-size:1.2rem;
    margin-top:5px;
}

.contact-item strong{
    display:block;
    color:var(--green);
    margin-bottom:5px;
}

.contact-item span{
    color:#666;
}

/*==========================================
            CONTACT CTA
==========================================*/

.contact-cta{
    padding:120px 0;
    background:#FAF8F4;
}

.contact-cta-grid{
    margin-top:70px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.contact-cta-card{
    background:#fff;
    padding:55px 45px;
    border-radius:28px;
    text-align:center;
    border:1px solid rgba(0,0,0,.05);
    box-shadow:0 18px 45px rgba(0,0,0,.06);
    transition:all .35s ease;
}

.contact-cta-card:hover{
    transform:translateY(-10px);
    box-shadow:0 28px 60px rgba(0,0,0,.10);
}

.contact-icon{
    width:90px;
    height:90px;
    margin:0 auto 28px;
    border-radius:50%;
    background:rgba(184,137,67,.12);
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    font-size:2rem;
    color:var(--gold);
}

.contact-cta-card h3{
    font-size:2rem;
    color:var(--green);
    margin-bottom:18px;
    font-family:"Cormorant Garamond", serif;
}

.contact-cta-card p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.contact-link{
    display:inline-block;
    font-weight:600;
    font-size:1.05rem;
    color:var(--green);
    text-decoration:none;
    transition:.3s;
}

.contact-link:hover{
    color:var(--gold);
}

.contact-note{
    margin-top:55px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    color:#666;
    font-size:.95rem;
}

.contact-note i{
    color:var(--gold);
    font-size:1.1rem;
}

.contact-note strong{
    color:var(--green);
}


.hero-slider{
    position:relative;
    width:100%;
    height:550px;
    overflow:hidden;
    border-radius:28px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .8s ease;
}

.slide.active{
    opacity:1;
    z-index:1;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    color:var(--green);
    cursor:pointer;
    transition:.3s;
    z-index:5;
}

.slider-btn:hover{
    background:var(--green);
    color:#fff;
}

.prev{
    left:18px;
}

.next{
    right:18px;
}

.slider-dots{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:5;
}

.dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:rgba(255,255,255,.6);
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    width:28px;
    border-radius:30px;
    background:#fff;
}


/*==================================================
        PRODUCT MODAL
==================================================*/

.product-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s ease;
}

.product-modal.active{
    opacity:1;
    visibility:visible;
}

.product-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(8px);
}

.product-modal-content{
    position:relative;
    width:min(900px,92%);
    max-height:90vh;
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    overflow-y:auto;
    box-shadow:0 25px 80px rgba(0,0,0,.25);
    transform:translateY(40px) scale(.96);
    transition:.35s ease;
}

.product-modal.active .product-modal-content{
    transform:translateY(0) scale(1);
}

/* Scrollbar */

.product-modal-content::-webkit-scrollbar{
    width:8px;
}

.product-modal-content::-webkit-scrollbar-thumb{
    background:#d7c39f;
    border-radius:20px;
}

/* Hero Image */

.modal-image{
    width:100%;
    height:360px;
    overflow:hidden;
}

.modal-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Close */

.close-modal{
    position:absolute;
    top:20px;
    right:20px;
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#fff;
    cursor:pointer;
    font-size:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    z-index:5;
    transition:.3s;
}

.close-modal:hover{
    background:#173b2d;
    color:#fff;
}

/* Body */

.modal-body{
    padding:55px;
}

.modal-number{
    color:#d5c5a5;
    font-size:4rem;
    font-weight:700;
    display:block;
    margin-bottom:10px;
}

.modal-body h2{
    font-size:2.5rem;
    color:#173b2d;
    margin-bottom:18px;
}

.modal-intro{
    font-size:1.05rem;
    line-height:1.9;
    color:#666;
    margin-bottom:40px;
}

/* Cards */

.modal-card{
    background:#faf8f3;
    border-radius:18px;
    padding:30px;
    margin-bottom:25px;
    border:1px solid #ece6d7;
    transition:.3s;
}

.modal-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.modal-card h3{
    color:#173b2d;
    margin-bottom:15px;
    font-size:1.25rem;
}

.modal-card p{
    color:#666;
    line-height:1.9;
}




/* ==========================================
   FOOTER
========================================== */

.footer {
    background: var(--green);
    color: #fff;
    padding: 50px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.footer-brand h2 {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 6px;
}

.footer-tagline {
    color: var(--gold);
    font-style: italic;
    margin-bottom: 18px;
}

.footer-description {
    max-width: 330px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
}

.footer-links h3,
.footer-social h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 18px;
    font-family: "Cormorant Garamond", serif;
}

.footer-links ul,
.footer-social ul {
    list-style: none;
}

.footer-links li,
.footer-social li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-social a {
    text-decoration: none;
    color: rgba(255,255,255,.75);
    transition: .3s ease;
}

.footer-social i {
    width: 20px;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 40px;
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,.65);
    font-size: .9rem;
}

.footer-social {
    display: none;
}

.footer-content {
    grid-template-columns: 2fr 1fr;
}


