/* =========================================
   VARIABLES
========================================= */

:root {

    --cream: #fff8ef;
    --cream-dark: #f8ead8;

    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fed7aa;

    --brown: #713f12;
    --brown-dark: #451a03;

    --text: #292524;
    --text-light: #78716c;

    --white: #ffffff;

    --border: rgba(113, 63, 18, 0.12);

    --shadow-sm:
        0 8px 25px rgba(69, 26, 3, 0.06);

    --shadow-md:
        0 20px 50px rgba(69, 26, 3, 0.10);

    --shadow-lg:
        0 30px 80px rgba(69, 26, 3, 0.15);

    --radius-sm: 14px;
    --radius-md: 24px;
    --radius-lg: 36px;

    --container: 1180px;

}


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;
}

.section {
    padding: 120px 0;
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4 {
    font-family: "Fredoka", sans-serif;
    line-height: 1.15;
    color: var(--brown-dark);
}

h1 {
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    letter-spacing: -2px;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -1px;
}

h3 {
    font-size: 1.45rem;
}

p {
    color: var(--text-light);
}

.section-label {
    display: inline-block;

    color: var(--orange);

    font-size: 0.85rem;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 2px;

    margin-bottom: 16px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;

    margin-bottom: 60px;
}

.section-heading > p {
    max-width: 430px;
}

.section-heading.centered {
    display: block;
    max-width: 680px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 70px;
}

.section-heading h2 span,
.story-content h2 span {
    color: var(--orange);
}


/* =========================================
   NAVBAR
========================================= */

.navbar {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 0;

    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 248, 239, 0.92);

    backdrop-filter: blur(15px);

    box-shadow:
        0 5px 25px rgba(69, 26, 3, 0.08);

    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: "Fredoka", sans-serif;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--orange);
    color: var(--white);

    font-size: 18px;
}

.logo-text {
    display: flex;
    flex-direction: column;

    font-size: 15px;
    line-height: 1;
}

.logo-text strong {
    color: var(--orange);
    font-size: 18px;
    margin-top: 3px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    position: relative;

    font-size: 14px;
    font-weight: 600;

    color: var(--text);

    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.nav-order {
    background: var(--orange);
    color: var(--white);

    padding: 12px 20px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.nav-order:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;

    border: 0;
    background: transparent;

    cursor: pointer;

    width: 42px;
    height: 42px;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-toggle span {
    width: 23px;
    height: 2px;

    background: var(--brown);

    transition: 0.3s;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;

    position: relative;

    padding:
        150px
        0
        100px;

    overflow: hidden;
}

.hero-container {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 14px;

    background: var(--orange-light);

    color: var(--brown);

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 24px;
}

.hero h1 span {
    display: block;
    color: var(--orange);
}

.hero-content > p {
    max-width: 520px;

    font-size: 18px;

    margin:
        28px
        0
        35px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;

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

    gap: 10px;

    padding:
        15px
        24px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);

    box-shadow:
        0 10px 25px
        rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
    background: var(--orange-dark);

    transform: translateY(-3px);

    box-shadow:
        0 15px 35px
        rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: var(--white);

    color: var(--brown);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.hero-note {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 35px;

    font-size: 13px;
    color: var(--text-light);
}

.avatars {
    display: flex;
}

.avatars span {
    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    background: var(--white);

    border: 2px solid var(--cream);

    border-radius: 50%;

    margin-left: -7px;

    box-shadow: var(--shadow-sm);
}

.avatars span:first-child {
    margin-left: 0;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;

    width: min(100%, 570px);

    aspect-ratio: 1;

    margin-left: auto;
}

.hero-circle {
    position: absolute;

    width: 90%;
    height: 90%;

    top: 5%;
    left: 5%;

    background:
        radial-gradient(
            circle,
            var(--orange-light),
            transparent 70%
        );

    border-radius: 50%;
}

.hero-image {
    position: relative;
    z-index: 1;

    width: 80%;
    height: 80%;

    margin: 10%;

    object-fit: cover;

    border-radius: 50%;

    border:
        12px
        solid
        var(--white);

    box-shadow: var(--shadow-lg);

    transform: rotate(3deg);
}

.floating-card {
    position: absolute;
    z-index: 3;

    background: var(--white);

    padding: 14px 18px;

    border-radius: 16px;

    box-shadow: var(--shadow-md);
}

.floating-card-top {
    top: 10%;
    left: 2%;

    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-card-top strong,
.floating-card-top small {
    display: block;
}

.floating-card-top strong {
    color: var(--brown);
}

.floating-card-top small {
    color: var(--text-light);
    font-size: 11px;
}

.floating-icon {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: var(--cream);

    border-radius: 10px;
}

.floating-card-bottom {
    right: 0;
    bottom: 10%;
}

.rating {
    color: #f59e0b;
    font-size: 11px;

    margin-bottom: 4px;
}

.floating-card-bottom strong {
    font-size: 13px;
}


/* DECORATION */

.hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.hero-decoration-1 {
    width: 250px;
    height: 250px;

    top: -100px;
    left: -100px;

    background: var(--orange-light);

    opacity: 0.5;
}

.hero-decoration-2 {
    width: 180px;
    height: 180px;

    bottom: -80px;
    right: 10%;

    border: 30px solid var(--orange-light);

    opacity: 0.5;
}


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

.about {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    gap: 90px;
}

.about-image {
    position: relative;
}

.about-image img {
    height: 580px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.image-badge {
    position: absolute;

    right: -30px;
    bottom: 40px;

    width: 150px;
    height: 150px;

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

    text-align: center;

    background: var(--orange);

    color: var(--white);

    border-radius: 50%;

    box-shadow: var(--shadow-md);
}

.image-badge strong {
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
}

.image-badge span {
    font-size: 11px;
    line-height: 1.4;
}

.about-content h3 {
    font-size: 2.2rem;

    margin-bottom: 25px;
}

.about-content p {
    margin-bottom: 18px;
}

.about-signature {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid var(--border);
}

.about-signature span {
    display: block;

    font-family: "Fredoka", sans-serif;

    font-size: 24px;

    color: var(--orange);
}

.about-signature small {
    color: var(--text-light);
}


/* =========================================
   PRODUCTS
========================================= */

.products {
    background: var(--cream);
}

.product-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.product-card {
    background: var(--white);

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow-md);
}

.product-image {
    position: relative;

    height: 270px;

    overflow: hidden;
}

.product-image img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-tag {
    position: absolute;

    top: 15px;
    left: 15px;

    background: var(--orange);

    color: var(--white);

    padding: 6px 11px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 700;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10px;

    padding: 22px;
}

.product-info h3 {
    font-size: 1.25rem;

    margin-bottom: 5px;
}

.product-info p {
    font-size: 12px;
    line-height: 1.5;
}

.product-arrow {
    flex-shrink: 0;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: var(--cream);

    color: var(--orange);

    border-radius: 50%;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.product-card:hover .product-arrow {
    background: var(--orange);
    color: var(--white);
}

.products-cta {
    display: flex;
    justify-content: center;

    margin-top: 50px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--orange);

    font-weight: 700;
}

.text-link:hover {
    gap: 15px;
}


/* =========================================
   FEATURES
========================================= */

.features {
    background: var(--white);
}

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 35px 28px;

    background: var(--cream);

    border-radius: var(--radius-md);

    text-align: center;

    transition:
        transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
}

.feature-icon {
    width: 65px;
    height: 65px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    background: var(--white);

    border-radius: 20px;

    font-size: 28px;

    box-shadow: var(--shadow-sm);
}

.feature-card h3 {
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
}


/* =========================================
   STORY
========================================= */

.story {
    background: var(--cream);
}

.story-container {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 90px;

    align-items: center;
}

.story-image {
    position: relative;
}

.story-image img {
    height: 600px;

    object-fit: cover;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);
}

.story-sticker {
    position: absolute;

    left: -30px;
    bottom: 40px;

    width: 120px;
    height: 120px;

    display: grid;
    place-items: center;

    text-align: center;

    background: var(--brown);

    color: var(--white);

    border-radius: 50%;

    font-family: "Fredoka", sans-serif;

    font-size: 18px;

    transform: rotate(-10deg);

    box-shadow: var(--shadow-md);
}

.story-content h2 {
    margin-bottom: 30px;
}

.story-content p {
    margin-bottom: 18px;
}

.story-content blockquote {
    margin-top: 30px;

    padding:
        20px
        25px;

    border-left:
        4px
        solid
        var(--orange);

    background: var(--white);

    border-radius:
        0
        14px
        14px
        0;

    color: var(--brown);

    font-family: "Fredoka", sans-serif;

    font-size: 18px;
}


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

.cta {
    position: relative;

    padding: 120px 0;

    background: var(--orange);

    color: var(--white);

    overflow: hidden;
}

.cta-container {
    position: relative;
    z-index: 2;

    text-align: center;
}

.cta-icon {
    display: block;

    font-size: 55px;

    margin-bottom: 15px;
}

.cta h2 {
    color: var(--white);

    font-size:
        clamp(2.8rem, 6vw, 5rem);
}

.cta p {
    color: rgba(255,255,255,0.8);

    font-size: 18px;

    margin:
        20px
        auto
        35px;
}

.btn-white {
    background: var(--white);

    color: var(--orange);

    box-shadow:
        0 15px 35px
        rgba(69, 26, 3, 0.15);
}

.btn-white:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 40px
        rgba(69, 26, 3, 0.2);
}

.cta-decoration {
    position: absolute;

    border-radius: 50%;

    border:
        50px
        solid
        rgba(255,255,255,0.08);
}

.cta-decoration-1 {
    width: 400px;
    height: 400px;

    left: -180px;
    top: -180px;
}

.cta-decoration-2 {
    width: 300px;
    height: 300px;

    right: -100px;
    bottom: -150px;
}


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

.footer {
    padding: 80px 0 30px;

    background: var(--brown-dark);

    color: var(--white);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        2fr
        1fr
        1fr
        1fr;

    gap: 60px;

    padding-bottom: 60px;
}

.footer .logo-text {
    color: var(--white);
}

.footer .logo-text strong {
    color: var(--orange);
}

.footer-brand > p {
    margin:
        20px
        0;

    color: rgba(255,255,255,0.65);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border:
        1px solid
        rgba(255,255,255,0.12);

    border-radius: 50%;

    color: var(--white);

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.social-links a:hover {
    background: var(--orange);

    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-column h4 {
    color: var(--white);

    font-size: 16px;

    margin-bottom: 10px;
}

.footer-column a,
.footer-column p,
.footer-column strong {
    font-size: 13px;
}

.footer-column a,
.footer-column p {
    color: rgba(255,255,255,0.6);
}

.footer-column a:hover {
    color: var(--orange);
}

.footer-column strong {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,0.1);

    color:
        rgba(255,255,255,0.45);

    font-size: 11px;
}


/* =========================================
   FLOATING WHATSAPP
========================================= */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 58px;
    height: 58px;

    display: grid;
    place-items: center;

    background: #25D366;

    color: var(--white);

    border-radius: 50%;

    font-size: 26px;

    box-shadow:
        0 12px 30px
        rgba(0,0,0,0.18);

    transition:
        transform 0.2s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1050px) {

    .product-grid,
    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .hero-container {
        gap: 30px;
    }

    .about-grid,
    .story-container {
        gap: 50px;
    }

}


@media (max-width: 850px) {

    .nav-menu {
        position: fixed;

        top: 76px;
        left: 20px;
        right: 20px;

        padding: 25px;

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 18px;

        background: var(--white);

        border-radius: 20px;

        box-shadow: var(--shadow-lg);

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-10px);

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .nav-menu.open {
        opacity: 1;
        visibility: visible;

        transform:
            translateY(0);
    }

    .nav-link {
        padding: 8px 0;
    }

    .nav-order {
        text-align: center;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-container,
    .about-grid,
    .story-container {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 130px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-note {
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-inline: auto;
    }

    .about-content {
        order: 1;
    }

    .about-image {
        order: 0;
    }

    .story-content {
        order: 0;
    }

    .story-image {
        order: 1;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .container {
        width:
            min(
                calc(100% - 28px),
                var(--container)
            );
    }

    .section {
        padding: 80px 0;
    }

    h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    h2 {
        font-size: 2.5rem;
    }

    .section-heading {
        display: block;
        margin-bottom: 40px;
    }

    .section-heading > p {
        margin-top: 15px;
    }

    .hero {
        padding:
            120px
            0
            70px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-note {
        font-size: 11px;
    }

    .hero-image-wrapper {
        width: 100%;
    }

    .floating-card-top {
        left: -5px;
    }

    .floating-card-bottom {
        right: -5px;
    }

    .about-image img,
    .story-image img {
        height: 430px;
    }

    .image-badge {
        width: 120px;
        height: 120px;

        right: -5px;
        bottom: 20px;
    }

    .story-sticker {
        width: 95px;
        height: 95px;

        left: -5px;
        bottom: 20px;

        font-size: 14px;
    }

    .product-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 280px;
    }

    .feature-grid {
        gap: 14px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .cta {
        padding: 90px 0;
    }

    .cta h2 {
        font-size: 2.7rem;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;

        width: 52px;
        height: 52px;

        font-size: 23px;
    }

}


@media (max-width: 400px) {

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

    .footer-brand {
        grid-column: auto;
    }

}