:root {
    --colour-background: #f8f4ef;
    --colour-surface: #fffaf7;
    --colour-beige: #e6d5c5;
    --colour-blush: #ecd8d4;
    --colour-sage: #d7dfd3;
    --colour-text: #2b2725;
    --colour-muted: #7c746f;
    --colour-border: #e5dcd4;
    --colour-white: #ffffff;
    --colour-dark: #292522;
    --colour-whatsapp: #25d366;

    --font-heading: "Cormorant Garamond", serif;
    --font-body: "Inter", sans-serif;

    --radius-small: 14px;
    --radius-medium: 22px;
    --radius-large: 32px;

    --shadow-soft: 0 20px 50px rgba(58, 45, 36, 0.08);

    --page-padding: 20px;
    --container-width: 1240px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--colour-background);
    color: var(--colour-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

main {
    min-height: 70vh;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 244, 239, 0.94);
    border-bottom: 1px solid var(--colour-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    min-height: 74px;
    padding: 0 var(--page-padding);
}

.site-logo {
    justify-self: center;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.menu-toggle {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--colour-text);
}

.header-whatsapp {
    font-size: 0.78rem;
    font-weight: 600;
}

.mobile-navigation {
    display: none;
    padding: 18px var(--page-padding) 28px;
    background: var(--colour-background);
}

.mobile-navigation.is-open {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-navigation a {
    font-family: var(--font-heading);
    font-size: 1.7rem;
}

/* Footer */

.site-footer {
    margin-top: 80px;
    padding: 55px var(--page-padding) 100px;
    background: var(--colour-surface);
    border-top: 1px solid var(--colour-border);
}

.site-footer__inner {
    max-width: var(--container-width);
    margin: 0 auto;
}

.site-footer h2 {
    margin: 0 0 12px;
    font-family: var(--font-heading);
    font-size: 2rem;
}

.site-footer p {
    color: var(--colour-muted);
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 32px 0;
}

.site-footer__copyright {
    font-size: 0.85rem;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 900;
    display: flex;
    min-height: 54px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--colour-whatsapp);
    color: var(--colour-white);
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.28);
}

@media (min-width: 768px) {
    :root {
        --page-padding: 32px;
    }

    .site-header__inner {
        min-height: 86px;
    }

    .site-logo {
        font-size: 1.6rem;
    }
}

@media (min-width: 1024px) {
    .site-header__inner {
        max-width: var(--container-width);
        margin: 0 auto;
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        display: none;
    }

    .site-logo {
        justify-self: start;
    }

    .mobile-navigation {
        position: absolute;
        top: 0;
        left: 50%;
        display: flex;
        width: auto;
        height: 86px;
        padding: 0;
        align-items: center;
        gap: 28px;
        background: transparent;
        transform: translateX(-50%);
    }

    .mobile-navigation a {
        font-family: var(--font-body);
        font-size: 0.92rem;
    }
}
.section-container {
    width: min(
        calc(100% - 40px),
        var(--container-width)
    );
    margin-inline: auto;
}

.homepage-section {
    padding: 72px 0;
}

.homepage-section--soft {
    background: rgba(255, 250, 247, 0.75);
}

.eyebrow {
    margin: 0 0 14px;
    color: #7f7868;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.4;
    text-transform: uppercase;
}

.hero {
    display: grid;
    min-height: calc(100svh - 74px);
    background: var(--colour-surface);
}

.hero__media {
    min-height: 52svh;
    overflow: hidden;
}

.hero__media img {
    width: 100%;
    height: 100%;
    min-height: 52svh;
    object-fit: cover;
}

.hero__content {
    display: flex;
    padding: 44px var(--page-padding) 56px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(3.55rem, 17vw, 7.5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.82;
}

.hero__description {
    max-width: 580px;
    margin: 28px 0 0;
    color: var(--colour-muted);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.5;
}

.button-group {
    display: flex;
    width: 100%;
    margin-top: 34px;
    flex-direction: column;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 55px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.button:active {
    transform: scale(0.98);
}

.button--dark {
    background: var(--colour-dark);
    color: var(--colour-white);
}

.button--light {
    border-color: var(--colour-border);
    background: var(--colour-white);
}

.button--outline {
    border-color: var(--colour-text);
    background: transparent;
}

.button--full {
    width: 100%;
}

.button--whatsapp {
    background: var(--colour-whatsapp);
    color: var(--colour-white);
}

.benefits {
    display: grid;
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 12px;
}

.benefit-card {
    display: flex;
    min-height: 112px;
    padding: 23px;
    border: 1px solid rgba(229, 220, 212, 0.7);
    border-radius: var(--radius-medium);
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 250, 247, 0.82);
}

.benefit-card__number {
    color: var(--colour-muted);
    font-size: 0.72rem;
    font-weight: 600;
}

.benefit-card h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 600;
}

.benefit-card p {
    margin: 4px 0 0;
    color: var(--colour-muted);
    font-size: 0.9rem;
}

.section-heading {
    display: flex;
    margin-bottom: 32px;
    flex-direction: column;
    gap: 18px;
}

.section-heading h2,
.split-feature h2,
.story-feature h2,
.whatsapp-cta h2 {
    max-width: 850px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.75rem, 11vw, 5.4rem);
    font-weight: 500;
    letter-spacing: -0.035em;
    line-height: 0.92;
}

.section-heading p:not(.eyebrow) {
    max-width: 650px;
    margin: 18px auto 0;
    color: var(--colour-muted);
}

.section-heading--centred {
    text-align: center;
}

.text-link {
    display: inline-flex;
    width: fit-content;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-weight: 600;
}

.desktop-only {
    display: none;
}

.category-scroller {
    display: grid;
    grid-auto-columns: 76%;
    grid-auto-flow: column;
    padding-bottom: 12px;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
}

.category-scroller::-webkit-scrollbar {
    display: none;
}

.category-card {
    overflow: hidden;
    border-radius: var(--radius-large);
    background: var(--colour-surface);
    scroll-snap-align: start;
}

.category-card__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.category-card__content {
    padding: 22px;
}

.category-card h3 {
    margin: 0 0 4px;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 600;
}

.category-card span {
    color: var(--colour-muted);
    font-size: 0.82rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 22px;
    background: var(--colour-surface);
}

.product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #eee7e0;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card__content {
    padding: 15px;
}

.product-card__category {
    margin: 0 0 6px;
    color: var(--colour-muted);
    font-size: 0.67rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.05;
}

.product-card__meta {
    display: flex;
    margin: 15px 0;
    flex-direction: column;
    gap: 3px;
}

.product-card__meta strong {
    font-family: var(--font-heading);
    font-size: 1.15rem;
}

.product-card__meta span {
    color: var(--colour-muted);
    font-size: 0.7rem;
}

.product-card .button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.72rem;
}

.section-action {
    display: flex;
    margin-top: 38px;
    justify-content: center;
}

.empty-showcase {
    padding: 50px 24px;
    border: 1px dashed var(--colour-border);
    border-radius: var(--radius-large);
    color: var(--colour-muted);
    text-align: center;
}

.split-feature,
.story-feature {
    overflow: hidden;
    border-radius: var(--radius-large);
    background: var(--colour-surface);
    box-shadow: var(--shadow-soft);
}

.split-feature__content,
.story-feature__content {
    padding: 38px 26px;
}

.split-feature__content > p:not(.eyebrow),
.story-feature__content > p:not(.eyebrow) {
    margin: 24px 0 30px;
    color: var(--colour-muted);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.6;
}

.split-feature__image,
.story-feature__image {
    min-height: 380px;
}

.split-feature__image img,
.story-feature__image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
}

.whatsapp-cta {
    display: flex;
    padding: 40px 26px;
    border-radius: var(--radius-large);
    flex-direction: column;
    gap: 30px;
    background: var(--colour-blush);
}

.whatsapp-cta h2 {
    font-size: clamp(2.5rem, 10vw, 4.6rem);
}

.whatsapp-cta p:not(.eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: #625b56;
}

@media (hover: hover) {
    .button:hover {
        transform: translateY(-2px);
    }

    .category-card:hover img,
    .product-card:hover
    .product-card__image img {
        transform: scale(1.035);
    }
}

@media (min-width: 700px) {
    .button-group {
        width: auto;
        flex-direction: row;
    }

    .benefits {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-scroller {
        grid-auto-columns: 38%;
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .product-card__content {
        padding: 20px;
    }

    .product-card h3 {
        font-size: 1.45rem;
    }

    .product-card .button {
        min-height: 50px;
        font-size: 0.82rem;
    }
}

@media (min-width: 1024px) {
    .homepage-section {
        padding: 110px 0;
    }

    .hero {
        grid-template-columns: 47% 53%;
        min-height: calc(100vh - 86px);
    }

    .hero__media {
        min-height: calc(100vh - 86px);
        order: 2;
    }

    .hero__media img {
        min-height: calc(100vh - 86px);
    }

    .hero__content {
        padding: 70px max(
            50px,
            calc(
                (
                    100vw -
                    var(--container-width)
                ) / 2
            )
        );
        padding-right: 55px;
        order: 1;
    }

    .hero h1 {
        font-size: clamp(5rem, 7vw, 8.2rem);
    }

    .benefits {
        padding-top: 48px;
        padding-bottom: 48px;
        gap: 18px;
    }

    .section-heading {
        margin-bottom: 50px;
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }

    .section-heading--centred {
        justify-content: center;
    }

    .desktop-only {
        display: inline-flex;
    }

    .category-scroller {
        grid-template-columns: repeat(5, 1fr);
        grid-auto-flow: initial;
        gap: 18px;
        overflow: visible;
    }

    .category-card:nth-child(n + 6) {
        display: none;
    }

    .product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 22px;
    }

    .split-feature {
        display: grid;
        grid-template-columns: 1fr 1fr;
        min-height: 590px;
    }

    .split-feature__content {
        display: flex;
        padding: 75px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .split-feature__image {
        min-height: 590px;
    }

    .split-feature__image img {
        min-height: 590px;
    }

    .story-feature {
        display: grid;
        grid-template-columns: 1.05fr 0.95fr;
        min-height: 640px;
    }

    .story-feature__image {
        min-height: 640px;
    }

    .story-feature__image img {
        min-height: 640px;
    }

    .story-feature__content {
        display: flex;
        padding: 80px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .whatsapp-cta {
        padding: 70px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .whatsapp-cta .button {
        flex: 0 0 auto;
    }
}

body.menu-open {
    overflow: hidden;
}

.menu-toggle span {
    transition:
        transform 200ms ease,
        opacity 200ms ease;
}

.menu-toggle.is-active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

@media (max-width: 1023px) {
    .mobile-navigation.is-open {
        position: fixed;
        top: 74px;
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        padding: 50px 26px;
        overflow-y: auto;
        flex-direction: column;
        gap: 22px;
        background: var(--colour-beige);
    }

    .mobile-navigation.is-open a {
        font-family: var(--font-heading);
        font-size: clamp(2.2rem, 10vw, 3.5rem);
        line-height: 1;
    }
}

/* =========================================================
   KEE HOME DECORS — PREMIUM GLAMOUR THEME
   ========================================================= */

:root {
    --colour-background: #f7f1ec;
    --colour-surface: #fffaf7;
    --colour-surface-soft: #f1e5de;

    --colour-champagne: #d8c0ad;
    --colour-rose: #d9b7af;
    --colour-taupe: #b9a397;
    --colour-sage: #aeb5a5;

    --colour-text: #241f1c;
    --colour-muted: #746a64;
    --colour-border: rgba(83, 66, 57, 0.13);
    --colour-white: #ffffff;
    --colour-dark: #29211d;

    --colour-whatsapp: #4f6256;

    --radius-small: 14px;
    --radius-medium: 24px;
    --radius-large: 38px;

    --shadow-soft:
        0 24px 70px rgba(62, 43, 34, 0.10);

    --shadow-card:
        0 16px 40px rgba(50, 35, 27, 0.08);
}

/* Global refinements */

body {
    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(217, 183, 175, 0.15),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 30%,
            rgba(216, 192, 173, 0.14),
            transparent 30%
        ),
        var(--colour-background);
}

.homepage-section {
    padding: 82px 0;
}

.homepage-section--soft {
    background:
        linear-gradient(
            180deg,
            rgba(255, 250, 247, 0.88),
            rgba(241, 229, 222, 0.45)
        );
}

.section-container {
    width: min(
        calc(100% - 36px),
        1280px
    );
}

.eyebrow {
    color: #8c776a;
    font-size: 0.68rem;
    letter-spacing: 0.24em;
}

.section-heading h2,
.split-feature h2,
.story-feature h2,
.whatsapp-cta h2 {
    color: var(--colour-text);
    letter-spacing: -0.045em;
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    background: rgba(247, 241, 236, 0.88);
    border-bottom: 1px solid rgba(83, 66, 57, 0.10);
    box-shadow: 0 8px 28px rgba(52, 38, 31, 0.025);
}

.site-logo {
    font-size: 1.55rem;
    letter-spacing: 0.08em;
}

.mobile-navigation a {
    position: relative;
}

@media (hover: hover) {
    .mobile-navigation a::after {
        position: absolute;
        right: 0;
        bottom: -7px;
        left: 0;
        height: 1px;
        background: var(--colour-text);
        content: "";
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 220ms ease;
    }

    .mobile-navigation a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.header-whatsapp {
    display: inline-flex;
    min-height: 38px;
    padding: 0 17px;
    border: 1px solid var(--colour-border);
    border-radius: 999px;
    align-items: center;
    background: rgba(255, 255, 255, 0.58);
    font-size: 0.76rem;
    letter-spacing: 0.03em;
}

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

.hero {
    position: relative;
    width: min(calc(100% - 32px), 1380px);
    min-height: auto;
    margin: 28px auto 0;
    padding: 18px;
    border: 1px solid rgba(83, 66, 57, 0.08);
    border-radius: 42px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #fffaf7 0%,
            #f1e4dc 100%
        );
    box-shadow: var(--shadow-soft);
}

.hero__media {
    min-height: auto;
    border-radius: 30px;
    overflow: hidden;
}

.hero__media img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 4.8;
    object-fit: cover;
    object-position: center;
}

.hero__content {
    padding: 44px 24px 34px;
}

.hero h1 {
    max-width: 700px;
    font-size: clamp(3.6rem, 16vw, 7rem);
    line-height: 0.84;
}

.hero__description {
    max-width: 530px;
    margin-top: 25px;
    color: #766a63;
    font-size: 1.18rem;
}

.button-group {
    margin-top: 30px;
}

.button {
    min-height: 54px;
    padding: 0 26px;
    letter-spacing: 0.015em;
    box-shadow: none;
}

.button--dark {
    background:
        linear-gradient(
            135deg,
            #302621,
            #201a17
        );
    box-shadow:
        0 12px 24px rgba(39, 30, 25, 0.14);
}

.button--light {
    border-color: rgba(54, 41, 35, 0.15);
    background: rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(12px);
}

/* =========================================================
   BENEFITS
   ========================================================= */

.benefits {
    padding-top: 34px;
    padding-bottom: 22px;
}

.benefit-card {
    border: 1px solid rgba(83, 66, 57, 0.09);
    background:
        linear-gradient(
            145deg,
            rgba(255, 250, 247, 0.96),
            rgba(245, 235, 228, 0.92)
        );
    box-shadow: var(--shadow-card);
}

.benefit-card__number {
    display: flex;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(216, 192, 173, 0.34);
    color: #735f54;
}

.benefit-card h2 {
    font-size: 1.65rem;
}

/* =========================================================
   CATEGORY CARDS
   ========================================================= */

.category-card {
    border: 1px solid rgba(83, 66, 57, 0.08);
    background: rgba(255, 250, 247, 0.96);
    box-shadow: var(--shadow-card);
}

.category-card__image {
    aspect-ratio: 4 / 4.8;
}

.category-card__content {
    padding: 22px 22px 25px;
}

.category-card h3 {
    font-size: 1.55rem;
}

.category-card span {
    display: inline-flex;
    margin-top: 7px;
    color: #7e6e65;
    font-weight: 500;
}

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

.product-grid {
    align-items: start;
}

.product-card {
    border: 1px solid rgba(83, 66, 57, 0.08);
    background: rgba(255, 250, 247, 0.98);
    box-shadow: var(--shadow-card);
    transition:
        transform 240ms ease,
        box-shadow 240ms ease;
}

.product-card__image {
    aspect-ratio: 4 / 4.9;
}

.product-card__content {
    padding: 19px;
}

.product-card h3 {
    line-height: 1.12;
}

.product-card__meta {
    margin: 15px 0 18px;
}

.product-card .button--outline {
    border-color: rgba(61, 49, 42, 0.18);
    background: #f1e5de;
    color: var(--colour-dark);
}

.product-badge {
    background: rgba(255, 250, 247, 0.92);
    color: #6f5b51;
    backdrop-filter: blur(10px);
}

@media (hover: hover) {
    .product-card:hover {
        box-shadow:
            0 24px 52px rgba(50, 35, 27, 0.13);
        transform: translateY(-5px);
    }
}

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

.split-feature,
.story-feature {
    border: 1px solid rgba(83, 66, 57, 0.08);
    background:
        linear-gradient(
            145deg,
            rgba(255, 250, 247, 0.98),
            rgba(245, 234, 227, 0.92)
        );
    box-shadow: var(--shadow-soft);
}

.split-feature__image,
.story-feature__image {
    overflow: hidden;
}

.split-feature__image img,
.story-feature__image img {
    transition: transform 900ms ease;
}

@media (hover: hover) {
    .split-feature:hover img,
    .story-feature:hover img {
        transform: scale(1.025);
    }
}

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

.button--whatsapp,
.floating-whatsapp {
    background:
        linear-gradient(
            135deg,
            #596d61,
            #435348
        );
    color: #ffffff;
}

.button--whatsapp {
    box-shadow:
        0 14px 30px rgba(67, 83, 72, 0.20);
}

.floating-whatsapp {
    min-height: 50px;
    padding: 0 19px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    box-shadow:
        0 18px 35px rgba(47, 64, 53, 0.22);
    font-size: 0.82rem;
}

.whatsapp-cta {
    border: 1px solid rgba(103, 78, 68, 0.08);
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 255, 255, 0.46),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #e5c9c3,
            #d8b5ad
        );
    box-shadow: var(--shadow-soft);
}

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

.site-footer {
    margin-top: 70px;
    background:
        linear-gradient(
            180deg,
            #fffaf7,
            #efe3dc
        );
}

.site-footer__inner {
    padding-top: 10px;
}

.site-footer h2 {
    letter-spacing: 0.05em;
}

/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 1024px) {
    .homepage-section {
        padding: 88px 0;
    }

    .hero {
        display: grid;
        grid-template-columns: 46% 54%;
        min-height: 720px;
        margin-top: 34px;
        padding: 18px;
    }

    .hero__content {
        padding: 72px 70px;
        order: 1;
    }

    .hero__media {
        min-height: 684px;
        order: 2;
    }

    .hero__media img {
        width: 100%;
        height: 684px;
        min-height: 0;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center center;
        border-radius: 28px;
    }

    .hero h1 {
        font-size: clamp(5.2rem, 6.5vw, 7.8rem);
    }

    .benefits {
        padding-top: 42px;
        padding-bottom: 28px;
    }

    .split-feature,
    .story-feature {
        min-height: 560px;
    }

    .split-feature__image,
    .story-feature__image,
    .split-feature__image img,
    .story-feature__image img {
        min-height: 560px;
    }

    .whatsapp-cta {
        padding: 58px 66px;
    }
}

/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {
    .hero {
        min-height: 760px;
    }

    .hero__media {
        min-height: 724px;
    }

    .hero__media img {
        height: 724px;
    }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 699px) {
    .homepage-section {
        padding: 58px 0;
    }

    .hero {
        width: calc(100% - 20px);
        margin-top: 10px;
        padding: 10px;
        border-radius: 30px;
    }

    .hero__media {
        border-radius: 22px;
    }

    .hero__content {
        padding: 37px 18px 25px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 17vw, 5.2rem);
    }

    .hero__description {
        font-size: 1.08rem;
    }

    .benefit-card {
        min-height: 100px;
        padding: 19px;
    }

    .section-heading h2,
    .split-feature h2,
    .story-feature h2 {
        font-size: clamp(2.7rem, 13vw, 4.1rem);
    }

    .product-grid {
        gap: 10px;
    }

    .product-card {
        border-radius: 18px;
    }

    .product-card__content {
        padding: 14px;
    }

    .product-card h3 {
        font-size: 1.12rem;
    }

    .split-feature,
    .story-feature,
    .whatsapp-cta {
        border-radius: 28px;
    }

    .floating-whatsapp {
        right: 12px;
        bottom: 12px;
    }
}

@media (min-width: 1024px) {
    .hero {
        grid-template-columns: 50% 50%;
    }

    .hero__content {
        padding: 64px 54px;
    }

    .hero h1 {
        max-width: 560px;
        font-size: clamp(4.4rem, 5.1vw, 6.6rem);
        line-height: 0.9;
    }
}