:root {

    /* PALETA */

    --cream: #f6efe2;
    --cream-soft: #fbf8f0;
    --cream-alt: #efe5d1;

    --black: #131210;
    --black-soft: #1b1916;

    --charcoal: #221f1a;
    --ink: #322d25;
    --ink-soft: #5c5548;

    --green: #1f3a2e;
    --green-deep: #14261e;

    --gold: #c9a24b;
    --gold-light: #e3c583;
    --gold-deep: #a9813a;
    --gold-dim: rgba(201, 162, 75, 0.4);

    --on-dark: #f6efe2;
    --on-dark-muted: rgba(246, 239, 226, 0.68);

    --line: rgba(34, 31, 26, 0.14);
    --line-dark: rgba(246, 239, 226, 0.16);

    --serif: "Fraunces", "Cormorant Garamond", serif;
    --sans: "Outfit", "Jost", sans-serif;

    --container: 1180px;
}


/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

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

button {
    font: inherit;
}


/* CONTAINER */

.container {
    width: min(100% - 80px, var(--container));
    margin-inline: auto;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 92px;

    z-index: 1000;

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

    padding: 0 50px;

    background: none;

    color: var(--on-dark);

    transition:
        height 0.4s ease,
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease;

    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    height: 74px;

    background: rgba(246, 239, 226, 0.96);

    color: var(--charcoal);

    border-bottom-color: var(--line);

    box-shadow: 0 10px 30px -18px rgba(20, 19, 16, 0.35);

    backdrop-filter: blur(12px);
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
}

.logo-stack {
    position: relative;

    height: 70px;

    aspect-ratio: 1307 / 638;

    transition: height 0.4s ease;
}

.site-header.scrolled .logo-stack {
    height: 56px;
}

.logo-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: left center;

    transition: opacity 0.4s ease;
}

.logo-img--color {
    opacity: 0;
}

.site-header.scrolled .logo-img--reversed {
    opacity: 0;
}

.site-header.scrolled .logo-img--color {
    opacity: 1;
}


/* HEADER RIGHT (NAV + CART + MENU) */

.header-right {
    display: flex;
    align-items: center;

    gap: 34px;
}


/* NAV */

.main-nav {
    display: flex;
    align-items: center;

    gap: 34px;
}

.main-nav a {
    position: relative;

    font-size: 16px;
    font-weight: 500;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    opacity: 0.9;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}


/* CART TOGGLE */

.cart-toggle {
    position: relative;

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

    width: 38px;
    height: 38px;

    border: 0;

    background: transparent;

    color: currentColor;

    cursor: pointer;
}

.cart-icon {
    width: 22px;
    height: 22px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    position: absolute;

    top: -2px;
    right: -4px;

    min-width: 17px;
    height: 17px;
    padding: 0 3px;

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

    border-radius: 50%;

    background: var(--gold);

    color: var(--black);

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

    line-height: 1;
}


/* MENU */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;

    flex-direction: column;

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

    gap: 5px;
}

.menu-toggle span {
    width: 22px;
    height: 1px;

    background: currentColor;

    transition: 0.3s ease;
}


/* HERO */

.hero {
    position: relative;

    min-height: 100svh;

    display: flex;
    align-items: center;

    color: var(--on-dark);

    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;

    overflow: hidden;
}

.hero-background picture {
    display: block;

    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

@media (min-width: 768px) {

    .hero-img {
        object-position: 41% 30%;
    }

}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            100deg,
            rgba(10, 9, 8, 0.92),
            rgba(10, 9, 8, 0.62) 45%,
            rgba(10, 9, 8, 0.34)
        );
}

.hero-top-fade {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 190px;

    background:
        linear-gradient(
            to bottom,
            rgba(10, 9, 8, 0.55) 0%,
            rgba(10, 9, 8, 0.34) 35%,
            rgba(10, 9, 8, 0.14) 65%,
            transparent 100%
        );

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 2;

    width: min(760px, calc(100% - 80px));

    margin-left:
        max(
            40px,
            calc((100% - var(--container)) / 2)
        );

    padding-top: 70px;
}

.eyebrow {
    font-size: 12px;
    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.24em;

    color: var(--gold-light);

    margin-bottom: 16px;
}

.hero h1 {
    font-family: var(--serif);

    font-size: clamp(46px, 6.4vw, 84px);

    font-weight: 600;

    line-height: 1;

    max-width: 720px;
}

.hero-tagline {
    font-family: var(--serif);

    font-style: italic;
    font-weight: 500;

    font-size: clamp(18px, 2vw, 24px);

    letter-spacing: 0.01em;

    color: var(--gold-light);

    margin-top: 16px;
}

.hero-text {
    max-width: 480px;

    margin-top: 22px;

    font-size: 18px;

    letter-spacing: 0.01em;

    color: var(--on-dark-muted);
}

.hero-actions {
    display: flex;

    gap: 14px;

    margin-top: 38px;
}


/* BUTTONS */

.btn {
    display: inline-flex;

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

    min-height: 48px;

    padding: 0 26px;

    font-size: 12px;
    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.16em;

    border-radius: 2px;

    cursor: pointer;

    border: 0;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);

    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold-light);
}

.btn-primary:disabled {
    opacity: 0.4;

    cursor: not-allowed;

    transform: none;
}

.btn-outline {
    border: 1px solid var(--gold-dim);

    color: var(--on-dark);
}

.btn-outline:hover {
    background: var(--gold);

    color: var(--black);

    border-color: var(--gold);
}


/* SCROLL */

.scroll-cue {
    position: absolute;

    z-index: 2;

    right: 120px;
    bottom: 35px;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: var(--on-dark);
}

.scroll-cue span {
    width: 1px;
    height: 45px;

    background: rgba(246, 239, 226, 0.7);
}

.scroll-cue small {
    writing-mode: vertical-rl;

    font-size: 8px;

    letter-spacing: 0.2em;
}


/* SECTIONS */

.section {
    padding: 110px 0;
}

/* HEADINGS */

.section-heading h2 {
    font-family: var(--serif);

    font-weight: 600;

    font-size: clamp(38px, 4.6vw, 60px);

    line-height: 1.05;

    color: var(--charcoal);
}


/* SECTION HEADING */

.section-heading {
    display: grid;

    grid-template-columns: 220px 1fr;

    gap: 70px;

    margin-bottom: 60px;
}

.section-heading--simple {
    display: block;
}

/* PRODUCTS */

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

.products-grid {
    display: grid;

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

    gap: 20px;
}

.product-card {
    background: var(--cream-soft);

    border: 1px solid var(--line);
    border-radius: 4px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

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

    border-color: var(--gold-dim);

    box-shadow: 0 20px 40px -24px rgba(20, 38, 30, 0.35);
}

.product-image {
    position: relative;

    aspect-ratio: 1 / 1.05;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            rgba(201, 162, 75, 0.16),
            rgba(31, 58, 46, 0.12)
        );
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

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

.product-info {
    padding: 22px;
}

.product-category {
    display: block;

    margin-bottom: 10px;

    font-size: 10px;
    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.2em;

    color: var(--gold-deep);
}

.product-info h3 {
    font-family: var(--serif);

    font-size: 24px;

    font-weight: 600;

    line-height: 1.1;

    color: var(--charcoal);
}

.product-info p {
    margin-top: 10px;

    min-height: 20px;

    font-size: 15px;

    line-height: 1.6;

    color: var(--ink-soft);
}

.product-price {
    display: block;

    margin-top: 14px;

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

    color: var(--gold-deep);
}


/* QUANTITY STEPPER */

.qty-stepper {
    display: inline-flex;
    align-items: center;

    border: 1px solid var(--line);
    border-radius: 2px;

    overflow: hidden;
}

.qty-btn {
    width: 26px;
    height: 26px;

    border: 0;

    background: var(--cream-soft);

    color: var(--charcoal);

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

    cursor: pointer;

    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: var(--cream-alt);
}

.qty-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 26px;
    height: 26px;

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

    background: var(--cream-soft);
}


/* PRODUCT CART ROW */

.product-cart-row {
    display: flex;

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

    gap: 10px;

    margin-top: 16px;
    padding-top: 16px;

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

.product-button {
    padding: 0 14px;

    height: 32px;

    border: 1px solid var(--black);
    border-radius: 2px;

    background: var(--black);

    font-size: 11px;
    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    color: var(--cream);

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.product-button:hover {
    background: var(--gold);

    color: var(--black);

    border-color: var(--gold);
}

.product-button.is-added {
    background: var(--gold);

    color: var(--black);

    border-color: var(--gold);
}


/* FEATURED PRODUCT */

.featured {
    background: var(--green-deep);

    color: var(--on-dark);
}

/* BENEFICIOS EN PESTAÑAS (DESTACADO) */

.featured .section-heading h2 {
    color: var(--on-dark);
}

.benefits-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 50px;
}

.benefits-header .section-heading {
    margin-bottom: 0;
}

.benefits-nav-arrows {
    display: flex;

    flex: 0 0 auto;

    gap: 12px;
}

.benefits-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border: 1px solid var(--line-dark);
    border-radius: 50%;

    background: transparent;

    color: var(--on-dark);

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.benefits-arrow svg {
    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefits-arrow:hover {
    background: var(--gold);

    border-color: var(--gold);

    color: var(--black);

    transform: translateY(-2px);
}

.benefits-showcase {
    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 60px;

    align-items: center;
}

.benefits-extra {
    margin-top: 50px;
    padding-top: 40px;

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

.benefits-extra-item .benefits-panel-list {
    display: grid;

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

    gap: 16px 30px;
}

.benefits-extra-item .benefits-panel-list li {
    padding-left: 20px;
}

.benefits-showcase-image {
    position: relative;

    aspect-ratio: 1 / 1;

    min-height: 420px;

    border-radius: 4px;

    overflow: hidden;

    border: 1px solid var(--line-dark);
}

.benefits-showcase-image img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: opacity 0.35s ease;
}

.benefits-showcase-image img.is-fading {
    opacity: 0;
}

.benefits-dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 46px;
}

.benefits-dot {
    width: 9px;
    height: 9px;
    padding: 0;

    border: 1px solid var(--gold-dim);
    border-radius: 999px;

    background: transparent;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        width 0.3s ease;
}

.benefits-dot:hover {
    border-color: var(--gold);
}

.benefits-dot.is-active {
    width: 26px;

    background: var(--gold);

    border-color: var(--gold);
}

.benefits-panel {
    animation: benefitsFade 0.45s ease;
}

@keyframes benefitsFade {

    from {
        opacity: 0;

        transform: translateY(10px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}

.benefits-panel h3 {
    font-family: var(--serif);

    font-weight: 600;

    font-size: clamp(22px, 2.6vw, 30px);

    line-height: 1.2;

    color: var(--on-dark);

    margin-bottom: 18px;
}

.benefits-panel > p {
    font-size: 18px;

    line-height: 1.8;

    color: var(--on-dark-muted);

    margin-bottom: 22px;
}

.benefits-subhead {
    font-size: 13px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    color: var(--gold-light);

    margin-bottom: 16px;
}

.benefits-panel-list {
    list-style: none;

    display: flex;
    flex-direction: column;

    gap: 14px;

    margin-bottom: 30px;
}

.benefits-panel-list li {
    position: relative;

    padding-left: 22px;

    font-size: 17px;

    line-height: 1.75;

    color: var(--on-dark-muted);
}

.benefits-panel-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 8px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--gold);
}

.benefits-panel-list li strong {
    color: var(--on-dark);

    font-weight: 600;
}

.benefits-panel-list--plain {
    margin-bottom: 4px;
}


/* SOBRE NOSOTROS */

.about-brief {
    padding: 80px 0;

    background: var(--cream);

    text-align: center;
}

.about-brief-inner {
    max-width: 640px;

    margin-inline: auto;
}

.about-brief .eyebrow {
    margin-bottom: 0;
}

.about-text {
    font-family: var(--serif);

    font-style: italic;
    font-weight: 500;

    font-size: clamp(18px, 2.2vw, 22px);

    line-height: 1.6;

    color: var(--ink-soft);

    margin-top: 18px;
}


/* FOOTER */

.site-footer {
    padding: 46px 0;

    background: var(--black);

    color: var(--on-dark-muted);
}

.footer-inner {
    display: flex;

    flex-wrap: wrap;

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

    gap: 20px 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 34px;
    width: auto;

    display: block;
}

.footer-nav {
    display: flex;

    flex-wrap: wrap;

    gap: 22px;
}

.footer-nav a {
    font-size: 13px;
    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    color: var(--on-dark-muted);

    transition: color 0.3s ease;
}

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

.footer-inner small {
    width: 100%;

    font-size: 12px;

    letter-spacing: 0.02em;

    color: var(--on-dark-muted);
}

.footer-credit {
    display: inline-block;

    opacity: 0.75;
}


/* CART DRAWER */

.cart-overlay {
    position: fixed;
    inset: 0;

    z-index: 1400;

    background: rgba(8, 7, 6, 0.55);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.35s ease;
}

.cart-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;

    z-index: 1500;

    width: min(420px, 92vw);
    height: 100svh;

    display: flex;
    flex-direction: column;

    background: var(--black);

    color: var(--on-dark);

    transform: translateX(100%);

    transition: transform 0.4s ease;

    box-shadow: -20px 0 50px -20px rgba(0, 0, 0, 0.5);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 26px 26px 20px;

    border-bottom: 1px solid var(--line-dark);
}

.cart-drawer-header h2 {
    font-family: var(--serif);

    font-size: 22px;
    font-weight: 600;
}

.cart-close {
    width: 34px;
    height: 34px;

    border: 0;

    background: transparent;

    color: var(--on-dark);

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 10px 26px;
}

.cart-empty {
    padding: 40px 0;

    font-size: 15px;

    color: var(--on-dark-muted);

    text-align: center;
}

.cart-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 16px 0;

    border-bottom: 1px solid var(--line-dark);
}

.cart-item img {
    width: 56px;
    height: 56px;

    object-fit: cover;

    border-radius: 3px;

    flex: 0 0 auto;
}

.cart-item-info {
    flex: 1;

    min-width: 0;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 500;

    letter-spacing: 0.01em;

    margin-bottom: 8px;
}

.cart-item .qty-stepper {
    border-color: var(--line-dark);
}

.cart-item .qty-btn,
.cart-item .qty-value {
    background: transparent;

    color: var(--on-dark);
}

.cart-item-remove {
    width: 26px;
    height: 26px;

    flex: 0 0 auto;

    border: 0;

    background: transparent;

    color: var(--on-dark-muted);

    font-size: 16px;

    cursor: pointer;

    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: var(--gold-light);
}

.cart-drawer-footer {
    padding: 20px 26px 26px;

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

.cart-note {
    font-size: 13px;

    line-height: 1.5;

    color: var(--on-dark-muted);

    margin-bottom: 16px;
}

.cart-checkout {
    width: 100%;
}

.cart-clear {
    display: block;

    width: 100%;

    margin-top: 12px;

    padding: 10px 0;

    border: 0;

    background: transparent;

    color: var(--on-dark-muted);

    font-size: 11px;
    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.12em;

    cursor: pointer;

    transition: color 0.2s ease;
}

.cart-clear:hover {
    color: var(--gold-light);
}


/* WHATSAPP FLOTANTE */

.whatsapp-float {
    position: fixed;

    right: 26px;
    bottom: 26px;

    z-index: 900;

    width: 56px;
    height: 56px;

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

    border-radius: 50%;

    background: var(--black);

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

    animation: whatsappPulse 2.8s ease-in-out infinite;

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

.whatsapp-float:hover {
    transform: translateY(-3px);

    background: var(--green-deep);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;

    fill: var(--gold);
}

@keyframes whatsappPulse {

    0%, 100% {
        box-shadow:
            0 12px 30px -10px rgba(0, 0, 0, 0.55),
            0 0 0 0 rgba(201, 162, 75, 0.35);
    }

    50% {
        box-shadow:
            0 12px 30px -10px rgba(0, 0, 0, 0.55),
            0 0 0 10px rgba(201, 162, 75, 0);
    }

}


/* TOASTS */

.toast-stack {
    position: fixed;

    left: 26px;
    bottom: 26px;

    z-index: 1600;

    display: flex;
    flex-direction: column;

    gap: 10px;

    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    background: var(--black);

    color: var(--on-dark);

    border: 1px solid var(--line-dark);
    border-radius: 3px;

    box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.5);

    font-size: 14px;

    max-width: 300px;

    opacity: 0;

    transform: translateY(12px);

    transition: opacity 0.3s ease, transform 0.3s ease;

    pointer-events: auto;
}

.toast.is-visible {
    opacity: 1;

    transform: translateY(0);
}

.toast strong {
    color: var(--gold-light);
}

.toast-check {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

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

    border-radius: 50%;

    background: var(--gold);

    color: var(--black);

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

.toast-view {
    margin-left: auto;

    flex: 0 0 auto;

    background: transparent;

    border: 0;

    color: var(--gold-light);

    font-size: 12px;
    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: 0.06em;

    cursor: pointer;

    white-space: nowrap;
}


/* ANIMATIONS */

.reveal {
    opacity: 0;

    transform: translateY(25px);

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

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* RESPONSIVE */

@media (max-width: 1050px) {

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

}


@media (max-width: 800px) {

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


    /* HEADER */

    .site-header {
        height: 75px;

        padding: 0 20px;
    }

    .header-right {
        gap: 14px;
    }

    .menu-toggle {
        display: flex;

        position: relative;

        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        inset: 0;

        height: 100svh;

        padding: 120px 30px 50px;

        background: var(--black);

        color: var(--on-dark);

        flex-direction: column;

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

        gap: 25px;

        transform: translateY(-100%);

        transition: transform 0.45s ease;

        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateY(0);
    }

    .main-nav a {
        font-family: var(--serif);

        font-size: 30px;
        font-weight: 500;

        letter-spacing: 0.02em;

        text-transform: none;
    }


    /* HERO */

    .hero-content {
        width: calc(100% - 40px);

        margin-left: 20px;
    }

    .hero h1 {
        font-size: clamp(42px, 13vw, 66px);
    }

    .hero-actions {
        flex-direction: column;

        width: 230px;
    }

    .scroll-cue {
        display: none;
    }



    /* SECTIONS */

    .section {
        padding: 80px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-bottom: 40px;
    }


    /* PRODUCTS */

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


    /* FEATURED */

    .benefits-header {
        align-items: flex-start;

        margin-bottom: 34px;
    }

    .benefits-arrow {
        width: 44px;
        height: 44px;
    }

    .benefits-showcase {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .benefits-showcase-image {
        min-height: 280px;
    }

    .benefits-extra {
        margin-top: 34px;
        padding-top: 28px;
    }

    .benefits-extra-item .benefits-panel-list {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-inner {
        justify-content: center;

        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

}


@media (max-width: 520px) {

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

    .product-cart-row {
        align-items: center;
    }

    .cart-drawer {
        width: 100vw;
    }

}
