﻿:root {
    --bg: #fbf4e4;
    --header: #f6eed6;
    --dark: #2f3433;
    --text: #111827;
    --muted: rgba(17,24,39,.72);
    --muted2: rgba(17,24,39,.58);
    --card: #ffffff;
    --border: rgba(0,0,0,.08);
    --shadow: 0 14px 36px rgba(0,0,0,.10);
    --radius: 22px;
    --accent: #0ea5a8;
    --max: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    font-family: 'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.45
}

a {
    color: inherit;
    text-decoration: none
}

img {
    display: block;
    max-width: 100%
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 56px
}

/* HEADER (2 links only) */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--header);
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 56px;
    gap: 16px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 26px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .2px
}

    .nav-left a {
        opacity: .92
    }

        .nav-left a:hover {
            opacity: 1
        }

        .nav-left a.active {
            opacity: 1
        }

.brand {
    text-align: center;
    line-height: 1.05;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .brand .name {
        font-size: 22px;
        font-weight: 900;
        letter-spacing: .4px
    }

    .brand .sub {
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .9px;
        text-transform: uppercase;
        color: rgba(17,24,39,.60);
        margin-top: 4px
    }

.nav-right {
    width: 120px
}
/* keeps brand centered visually */

/* HERO */
.hero {
    background: #f0cf8a;
    padding: 54px 0 44px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: .2px;
    color: #161a1a;
}

.hero p {
    margin-top: 14px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(17,24,39,.85);
    max-width: 58ch;
}

.pill-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.pill {
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 900;
}

.cta-row {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .2px;
    border: 1px solid rgba(0,0,0,.12);
}

    .btn.primary {
        background: var(--dark);
        border-color: var(--dark);
        color: #fff
    }

    .btn.secondary {
        background: rgba(255,255,255,.65);
        color: var(--text)
    }

.hero-media {
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.10);
    box-shadow: var(--shadow);
    background: rgba(255,255,255,.35);
}

    .hero-media img {
        width: 100%;
        height: 380px;
        object-fit: cover
    }

/* SECTION HEADINGS */
.section {
    padding: 70px 0
}

.h2 {
    text-align: center;
    font-size: 44px;
    font-weight: 900;
    letter-spacing: .5px;
    color: #161a1a;
}

.sub {
    text-align: center;
    font-size: 15px;
    font-weight: 750;
    color: var(--muted2);
    margin-top: 10px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* WHERE TO BUY */
.where {
    padding: 40px 0 10px
}

.logo-row {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 18px;
    align-items: center;
}

.logo-box {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    padding: 14px;
}

    .logo-box img {
        max-height: 40px;
        max-width: 140px;
        object-fit: contain
    }

/* BENEFITS */
.benefits {
    background: #fdecc8;
    padding: 74px 0;
}

.benefit-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 18px;
}

.benefit {
    background: rgba(255,255,255,.60);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    padding: 18px 14px;
    text-align: center;
}

    .benefit .ico {
        width: 72px;
        height: 72px;
        border-radius: 999px;
        border: 2px solid rgba(47,52,51,.85);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 2px auto 12px;
        background: rgba(255,255,255,.55);
        font-size: 28px;
    }

    .benefit .t {
        font-size: 12px;
        font-weight: 900;
        letter-spacing: .35px;
        text-transform: uppercase;
    }

    .benefit .d {
        margin-top: 6px;
        font-size: 12px;
        font-weight: 750;
        color: rgba(17,24,39,.82);
        line-height: 1.5;
    }

/* PRODUCTS */
.products-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    overflow: hidden;
}

    .card .img {
        background: #f3f4f6;
        border-bottom: 1px solid rgba(0,0,0,.06);
        aspect-ratio: 1/1;
    }

        .card .img img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

    .card .body {
        padding: 16px
    }

    .card h3 {
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .2px;
        min-height: 38px;
    }

.meta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted2);
}

.price-row {
    margin-top: 10px;
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    font-weight: 900;
}

.price {
    font-size: 16px
}

.strike {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 800
}

.off {
    font-size: 12px;
    color: #ef4444;
    font-weight: 900
}

.add {
    margin-top: 12px;
    width: 100%;
    padding: 12px 14px;
    border-radius: 999px;
    font-weight: 900;
    background: var(--dark);
    color: #fff;
    border: 1px solid var(--dark);
    cursor: pointer;
}

/* TESTIMONIALS */
.testimonials {
    background: #f3c98a;
    padding: 74px 0;
}

.t-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
}

.t {
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 12px 28px rgba(0,0,0,.10);
    min-height: 210px;
}

.stars {
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 12px
}

.t p {
    font-weight: 750;
    color: rgba(17,24,39,.90);
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 14px
}

.t .name {
    font-weight: 900;
    font-size: 16px;
    text-transform: lowercase
}

/* GALLERY */
.gallery-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.g {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    background: #fff;
    aspect-ratio: 1/1;
}

    .g img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

/* NEWSLETTER + FOOTER */
.newsletter {
    background: var(--dark);
    color: #fff;
    padding: 84px 0 60px;
    text-align: center;
}

    .newsletter .logo {
        font-size: 34px;
        font-weight: 900
    }

    .newsletter h3 {
        margin-top: 10px;
        font-size: 30px;
        font-weight: 900;
        letter-spacing: .8px;
        text-transform: uppercase
    }

    .newsletter p {
        margin: 14px auto 24px;
        max-width: 760px;
        color: rgba(255,255,255,.85);
        font-weight: 650;
        line-height: 1.9;
    }

.nl {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(255,255,255,.10);
}

    .nl input {
        flex: 1;
        border: 0;
        outline: none;
        background: transparent;
        padding: 14px 16px;
        color: #fff;
        font-weight: 800;
        font-size: 14px;
    }

        .nl input::placeholder {
            color: rgba(255,255,255,.65)
        }

    .nl button {
        width: 64px;
        border: 0;
        cursor: pointer;
        background: var(--accent);
        font-weight: 900;
        font-size: 22px;
        color: #053b3d;
        display: flex;
        align-items: center;
        justify-content: center;
    }

footer {
    background: var(--dark);
    color: #fff;
    padding: 0 0 28px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr 1fr;
    gap: 30px;
    padding: 48px 0 18px;
    border-top: 1px solid rgba(255,255,255,.10);
}

footer h4 {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .7px;
    text-transform: uppercase;
    margin-bottom: 12px
}

footer p, footer a {
    font-size: 13px;
    font-weight: 650;
    color: rgba(255,255,255,.82);
    line-height: 2.0
}

    footer a:hover {
        color: #fff
    }

.copy {
    text-align: center;
    margin-top: 18px;
    font-size: 12px;
    font-weight: 750;
    color: rgba(255,255,255,.65);
}

/* FLOATING WHATSAPP */
.wa {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 60;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

/* RESPONSIVE */
@media (max-width:1100px) {
    .container {
        padding: 0 18px
    }

    .nav {
        padding: 16px 18px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .hero h1 {
        font-size: 44px
    }

    .hero-media img {
        height: 300px
    }

    .logo-row {
        grid-template-columns: repeat(3,1fr)
    }

    .benefit-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .products-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .t-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .nav-right {
        width: 64px
    }
}

@media (max-width:520px) {
    .hero h1 {
        font-size: 38px
    }

    .logo-row {
        grid-template-columns: repeat(2,1fr)
    }

    .benefit-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .products-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}

/* =========================
   OUR STORY (SCOPED STYLES)
   ========================= */
.ourstory-page {
    --bg: #fbf4e4;
    --header: #f6eed6;
    --dark: #2f3433;
    --text: #111827;
    --muted: rgba(17,24,39,.72);
    --muted2: rgba(17,24,39,.58);
    --card: #ffffff;
    --border: rgba(0,0,0,.08);
    --shadow: 0 14px 36px rgba(0,0,0,.10);
    --radius: 22px;
    background: var(--bg);
    color: var(--text);
}

    .ourstory-page .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 56px;
    }

    /* Hero */
    .ourstory-page .hero {
        background: #f0cf8a;
        padding: 60px 0 40px;
    }

    .ourstory-page .hero-inner {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 34px;
        align-items: center;
    }

    .ourstory-page .hero-text .title {
        font-size: 44px;
        font-weight: 900;
        letter-spacing: .2px;
        color: #161a1a;
    }

    .ourstory-page .hero-text .para {
        margin-top: 14px;
        font-size: 14px;
        font-weight: 750;
        color: rgba(17,24,39,.82);
        line-height: 1.9;
        max-width: 62ch;
    }

    .ourstory-page .hero-image {
        border-radius: 26px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,.10);
        box-shadow: var(--shadow);
        background: rgba(255,255,255,.35);
    }

        .ourstory-page .hero-image img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            display: block;
        }

    /* Titles */
    .ourstory-page .title.big {
        font-size: 44px;
        font-weight: 900;
        letter-spacing: .6px;
        color: #161a1a;
    }

    .ourstory-page .title.center {
        text-align: center;
    }

    .ourstory-page .title.mid {
        font-size: 28px;
        font-weight: 900;
        letter-spacing: .4px;
        color: #161a1a;
    }

    .ourstory-page .para {
        font-size: 14px;
        font-weight: 750;
        color: rgba(17,24,39,.86);
        line-height: 1.95;
    }

    .ourstory-page .spacer {
        height: 14px;
    }

    /* Founders */
    .ourstory-page .founders {
        background: #fdecc8;
        padding: 74px 0;
    }

    .ourstory-page .founders-grid {
        margin-top: 34px;
        display: flex;
        flex-direction: column;
        gap: 42px;
    }

    .ourstory-page .founder-block {
        display: grid;
        grid-template-columns: 1fr 420px;
        gap: 34px;
        align-items: center;
    }

        .ourstory-page .founder-block.reverse {
            grid-template-columns: 420px 1fr;
        }

    .ourstory-page .bio {
        max-width: 62ch;
    }

    .ourstory-page .photo-card {
        border-radius: 26px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,.10);
        box-shadow: var(--shadow);
        background: rgba(255,255,255,.5);
    }

        .ourstory-page .photo-card img {
            width: 100%;
            height: 340px;
            object-fit: cover;
        }

    /* Split sections */
    .ourstory-page .section {
        padding: 70px 0;
    }

    .ourstory-page .split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 34px;
        align-items: center;
    }

    .ourstory-page .right-head {
        max-width: 62ch;
    }

    .ourstory-page .img-card {
        border-radius: 26px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,.10);
        box-shadow: var(--shadow);
        background: rgba(255,255,255,.35);
    }

        .ourstory-page .img-card img {
            width: 100%;
            height: 360px;
            object-fit: cover;
            display: block;
        }

/* Responsive */
@media (max-width:1100px) {
    .ourstory-page .container {
        padding: 0 18px;
    }

    .ourstory-page .hero-inner {
        grid-template-columns: 1fr;
    }

    .ourstory-page .hero-image img {
        height: 300px;
    }

    .ourstory-page .founder-block,
    .ourstory-page .founder-block.reverse {
        grid-template-columns: 1fr;
    }

    .ourstory-page .photo-card img {
        height: 300px;
    }

    .ourstory-page .split {
        grid-template-columns: 1fr;
    }

    .ourstory-page .img-card img {
        height: 300px;
    }
}

