/* =========================================================
   OSHUS STORE
   GLOBAL STYLES
========================================================= */

:root {
    --black: #111111;
    --deep-black: #080808;
    --white: #ffffff;
    --cream: #f5f2eb;
    --cream-dark: #ebe6dc;
    --gray-50: #fafafa;
    --gray-100: #f1f1ef;
    --gray-200: #deded9;
    --gray-300: #c4c4bd;
    --gray-500: #777772;
    --gray-700: #3d3d39;

    --accent: #c7a36a;
    --accent-dark: #9b793f;

    --border: rgba(17, 17, 17, 0.12);
    --white-border: rgba(255,255,255,0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    --radius-xl: 42px;

    --shadow-soft:
        0 20px 60px rgba(0,0,0,0.08);

    --shadow-card:
        0 12px 40px rgba(0,0,0,0.07);

    --container: 1380px;

    --font-display: "Manrope", sans-serif;
    --font-body: "DM Sans", sans-serif;

    --transition:
        0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--black);
    color: var(--white);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(calc(100% - 80px), var(--container));
    margin-inline: auto;
}


/* =========================================================
   LOADER
========================================================= */

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 28px;
    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.site-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: grid;
    place-items: center;
    animation: loaderPulse 1.6s infinite;
}

.loader-mark span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
}

.loader-line {
    width: 130px;
    height: 1px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
}

.loader-line span {
    display: block;
    width: 50%;
    height: 100%;
    background: var(--white);
    animation: loaderLine 1.2s ease-in-out infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

@keyframes loaderLine {
    0% {
        transform: translateX(-120%);
    }

    100% {
        transform: translateX(260%);
    }
}


/* =========================================================
   ANNOUNCEMENT
========================================================= */

.announcement-bar {
    background: var(--black);
    color: var(--white);
    min-height: 38px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.announcement-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.announcement-inner a {
    margin-left: auto;
    transition: var(--transition);
}

.announcement-inner a:hover {
    opacity: 0.65;
}

.announcement-inner a span {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.announcement-inner a:hover span {
    transform: translateX(4px);
}

.announcement-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent);
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245,242,235,0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(17,17,17,0.07);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.nav-container {
    min-height: 86px;
    display: flex;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-symbol {
    width: 38px;
    height: 38px;
    border: 2px solid var(--black);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.brand-symbol span:first-child {
    position: absolute;
    width: 17px;
    height: 32px;
    border: 2px solid var(--black);
    border-radius: 50%;
    left: 8px;
    top: 1px;
    transform: rotate(35deg);
}

.brand-symbol span:last-child {
    position: absolute;
    width: 10px;
    height: 25px;
    border: 2px solid var(--black);
    border-radius: 50%;
    left: 13px;
    top: 5px;
    transform: rotate(-35deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.brand-text small {
    font-size: 8px;
    letter-spacing: 0.38em;
    margin-top: 5px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 31px;
    margin-left: auto;
    margin-right: 38px;
}

.desktop-nav a {
    font-size: 13px;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
}

.icon-button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

.cart-button {
    height: 42px;
    padding: 0 8px 0 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--white);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    transition: var(--transition);
}

.cart-button:hover {
    transform: translateY(-2px);
}

.cart-button b {
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--black);
    display: grid;
    place-items: center;
    font-size: 11px;
}

.mobile-menu-button {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.mobile-menu-button span {
    width: 22px;
    height: 1.5px;
    background: var(--black);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
}


/* =========================================================
   BUTTONS
========================================================= */

.button {
    min-height: 56px;
    padding: 0 25px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.button span {
    transition: transform 0.3s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button:hover span {
    transform: translate(3px, -3px);
}

.button-dark {
    background: var(--black);
    color: var(--white);
}

.button-light {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.25);
}

.button-light:hover {
    background: var(--white);
}

.button-white {
    background: var(--white);
    color: var(--black);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: calc(100vh - 124px);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(17,17,17,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17,17,17,0.035) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.hero-grid::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    right: -200px;
    top: -200px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(199,163,106,0.18),
        transparent 70%
    );
}

.hero-container {
    min-height: 680px;
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero-content {
    padding-top: 20px;
    max-width: 700px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gray-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.hero h1 {
    margin-top: 25px;
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 90px);
    font-weight: 700;
    line-height: 0.99;
    letter-spacing: -0.065em;
    max-width: 760px;
}

.hero h1 span {
    display: block;
    font-weight: 400;
    color: var(--gray-500);
}

.hero-description {
    max-width: 560px;
    margin-top: 31px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-700);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.hero-trust {
    margin-top: 52px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-avatars {
    display: flex;
}

.trust-avatars span {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 2px solid var(--cream);
    margin-left: -7px;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
}

.trust-avatars span:first-child {
    margin-left: 0;
    background: var(--accent);
    color: var(--black);
}

.trust-avatars span:nth-child(2) {
    background: #d9d4ca;
    color: var(--black);
}

.hero-trust strong,
.hero-trust small {
    display: block;
}

.hero-trust strong {
    font-size: 12px;
}

.hero-trust small {
    color: var(--gray-500);
    font-size: 11px;
    margin-top: 3px;
}

.hero-visual {
    min-height: 620px;
    position: relative;
    display: grid;
    place-items: center;
}

.package-display {
    position: relative;
    width: 460px;
    height: 520px;
    transform: rotate(-3deg);
    animation: productFloat 6s ease-in-out infinite;
}

.package-shadow {
    position: absolute;
    width: 360px;
    height: 90px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.15);
    filter: blur(30px);
    border-radius: 50%;
}

.bottle {
    position: absolute;
    bottom: 65px;
}

.bottle-back {
    width: 145px;
    height: 335px;
    left: 50px;
    transform: rotate(-10deg);
    opacity: 0.85;
}

.bottle-main {
    width: 190px;
    height: 420px;
    right: 60px;
    transform: rotate(7deg);
    z-index: 3;
}

.bottle-cap {
    width: 48%;
    height: 54px;
    margin: 0 auto;
    border-radius: 10px 10px 3px 3px;
    background:
        linear-gradient(
            90deg,
            #9a9a92,
            #eeeeea 40%,
            #9a9a92
        );
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bottle-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 45px;
    border-radius: 25px 25px 40px 40px;
    background:
        linear-gradient(
            100deg,
            rgba(255,255,255,0.4),
            rgba(255,255,255,0.05) 35%,
            rgba(255,255,255,0.35)
        ),
        linear-gradient(
            110deg,
            #dad8d1,
            #f8f7f2 45%,
            #bdbbb3
        );
    border: 1px solid rgba(0,0,0,0.12);
    box-shadow:
        inset 12px 0 30px rgba(255,255,255,0.35),
        inset -12px 0 30px rgba(0,0,0,0.08),
        30px 30px 50px rgba(0,0,0,0.12);
}

.bottle-back .bottle-body {
    border-radius: 18px 18px 30px 30px;
}

.bottle-label {
    position: absolute;
    left: 16%;
    right: 16%;
    top: 36%;
    height: 110px;
    background: var(--black);
    color: var(--white);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 18px;
}

.bottle-sub {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(36% + 68px);
    text-align: center;
    color: var(--accent);
    font-size: 7px;
    letter-spacing: 0.35em;
    font-weight: 700;
}

.small-box {
    position: absolute;
    width: 120px;
    height: 120px;
    left: 100px;
    bottom: 35px;
    background:
        linear-gradient(
            135deg,
            #e8e2d5,
            #b9ae99
        );
    transform: rotate(14deg);
    z-index: 5;
    box-shadow: 25px 30px 40px rgba(0,0,0,0.13);
    display: grid;
    place-items: center;
}

.small-box span {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(17,17,17,0.1);
    border-radius: 50%;
    pointer-events: none;
}

.orbit-one {
    width: 580px;
    height: 580px;
    animation: orbitSpin 20s linear infinite;
}

.orbit-two {
    width: 410px;
    height: 410px;
    animation: orbitSpinReverse 16s linear infinite;
}

.orbit-one::before,
.orbit-two::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    top: 15%;
    left: 9%;
}

.orbit-two::before {
    top: auto;
    bottom: 12%;
    left: auto;
    right: 5%;
}

.floating-card {
    position: absolute;
    z-index: 8;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(17,17,17,0.09);
    box-shadow: var(--shadow-card);
    border-radius: 14px;
}

.floating-card-top {
    top: 80px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    animation: floatingCard 5s ease-in-out infinite;
}

.floating-card-bottom {
    right: 10px;
    bottom: 70px;
    padding: 16px 20px;
    min-width: 200px;
    animation: floatingCard 6s ease-in-out infinite reverse;
}

.floating-card strong,
.floating-card small {
    display: block;
}

.floating-card strong {
    font-size: 11px;
}

.floating-card small {
    color: var(--gray-500);
    font-size: 9px;
    margin-top: 2px;
}

.mini-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--black);
    color: var(--white);
    display: grid;
    place-items: center;
}

.mini-icon svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.rating-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
    color: var(--accent-dark);
    font-size: 11px;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    color: var(--gray-500);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.17em;
}

.scroll-line {
    width: 1px;
    height: 45px;
    background: linear-gradient(
        to bottom,
        var(--black),
        transparent
    );
    animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes productFloat {
    0%, 100% {
        transform: rotate(-3deg) translateY(0);
    }

    50% {
        transform: rotate(-1deg) translateY(-14px);
    }
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitSpinReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes scrollLine {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.7);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}


/* =========================================================
   MARQUEE
========================================================= */

.marquee-section {
    overflow: hidden;
    background: var(--black);
    color: var(--white);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    padding: 20px 0;
    animation: marquee 35s linear infinite;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-right: 35px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.marquee-item span {
    color: var(--accent);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   SECTION
========================================================= */

.section {
    padding: 140px 0;
}

.section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.section-number {
    font-size: 10px;
    color: var(--gray-500);
    letter-spacing: 0.14em;
}


/* =========================================================
   INTRO
========================================================= */

.intro-layout {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 100px;
    padding-top: 80px;
}

.intro-title h2 {
    font-family: var(--font-display);
    font-size: clamp(42px, 5vw, 74px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.055em;
}

.intro-title h2 em {
    display: block;
    color: var(--gray-500);
    font-style: normal;
}

.intro-copy {
    padding-top: 10px;
}

.large-copy {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 26px;
}

.intro-copy > p:not(.large-copy) {
    color: var(--gray-500);
    font-size: 15px;
    line-height: 1.85;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-top: 28px;
    font-size: 12px;
    font-weight: 700;
    border-bottom: 1px solid var(--black);
    padding-bottom: 7px;
}

.text-link span {
    transition: transform 0.3s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    background: var(--black);
    color: var(--white);
    padding: 75px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 0 35px;
    border-left: 1px solid var(--white-border);
}

.stat-item:first-child {
    border-left: 0;
    padding-left: 0;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.stat-symbol {
    color: var(--accent);
    font-size: 21px;
    font-weight: 700;
}

.stat-item p {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    max-width: 160px;
    line-height: 1.6;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: var(--cream);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 80px;
    align-items: end;
}

.section-heading h2 {
    margin-top: 22px;
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.06em;
}

.section-heading h2 span {
    color: var(--gray-500);
}

.section-heading > p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.8;
    max-width: 400px;
    justify-self: end;
}

.category-tabs {
    margin-top: 55px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 5px;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    flex-shrink: 0;
    border: 1px solid var(--border);
    padding: 12px 18px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
}

.category-tab:hover,
.category-tab.active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.product-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.product-card {
    min-width: 0;
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.product-card.hidden {
    display: none;
}

.product-image {
    height: 390px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--gray-100);
    display: grid;
    place-items: center;
}

.product-image::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(17,17,17,0.06);
}

.product-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 5;
    padding: 7px 11px;
    background: var(--black);
    color: var(--white);
    border-radius: 100px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.product-badge.neutral {
    background: rgba(255,255,255,0.85);
    color: var(--black);
}

.product-image-bottle {
    background:
        radial-gradient(circle at 50% 50%, #ffffff 0%, #ebe9e2 55%, #d8d4ca 100%);
}

.product-image-container {
    background:
        radial-gradient(circle at 50% 50%, #fff 0%, #e6e4de 50%, #d1cec5 100%);
}

.product-image-spray {
    background:
        radial-gradient(circle at 50% 50%, #fefefe 0%, #e5e2d9 65%, #d1cbc0 100%);
}

.product-image-set {
    background:
        radial-gradient(circle at 50% 50%, #fff 0%, #ddd7cb 70%);
}

.quick-add {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    height: 48px;
    background: rgba(17,17,17,0.95);
    color: var(--white);
    border-radius: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.product-image:hover .quick-add {
    opacity: 1;
    transform: translateY(0);
}

.product-art {
    position: relative;
    z-index: 2;
}

.bottle-art {
    width: 150px;
    height: 270px;
}

.art-cap {
    width: 58px;
    height: 40px;
    margin: 0 auto;
    border-radius: 6px 6px 2px 2px;
    background: #bcbab4;
}

.art-bottle {
    position: absolute;
    left: 0;
    right: 0;
    top: 32px;
    bottom: 0;
    border-radius: 20px 20px 28px 28px;
    background: linear-gradient(
        105deg,
        #bcbab3,
        #ffffff 45%,
        #aaa79f
    );
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow:
        15px 25px 30px rgba(0,0,0,0.13),
        inset 12px 0 20px rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-bottle span {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    background: var(--black);
    color: var(--white);
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.15em;
    font-weight: 800;
}

.container-art {
    position: relative;
    width: 180px;
    height: 200px;
}

.jar-lid {
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    height: 42px;
    border-radius: 12px 12px 5px 5px;
    background: linear-gradient(100deg, #a7a49d, #f2f1eb, #aaa79f);
}

.jar-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    border-radius: 18px 18px 30px 30px;
    background: linear-gradient(
        100deg,
        rgba(255,255,255,0.45),
        #d7d4cc,
        rgba(255,255,255,0.55)
    );
    border: 1px solid rgba(0,0,0,0.1);
    display: grid;
    place-items: center;
    box-shadow: 15px 25px 35px rgba(0,0,0,0.12);
}

.jar-body span {
    width: 60px;
    height: 60px;
    background: var(--black);
    color: var(--white);
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 800;
}

.spray-art {
    width: 160px;
    height: 260px;
    position: relative;
}

.spray-head {
    position: absolute;
    top: 50px;
    left: 30px;
    width: 100px;
    height: 55px;
    background: linear-gradient(100deg, #9d9b94, #f3f2ec, #aaa79f);
    border-radius: 14px 18px 5px 5px;
    transform: skewY(-3deg);
    box-shadow: 12px 15px 25px rgba(0,0,0,0.12);
}

.spray-neck {
    position: absolute;
    top: 95px;
    left: 66px;
    width: 40px;
    height: 55px;
    background: #c4c1b9;
}

.spray-tube {
    position: absolute;
    bottom: 10px;
    left: 70px;
    width: 18px;
    height: 115px;
    background: #b3b0a9;
    border-radius: 3px;
}

.set-art {
    position: relative;
    width: 260px;
    height: 240px;
}

.set-bottle {
    position: absolute;
    width: 90px;
    height: 170px;
    left: 25px;
    bottom: 20px;
    border-radius: 14px 14px 20px 20px;
    background: linear-gradient(100deg, #aaa79f, #f2f1eb, #9c9992);
    transform: rotate(-8deg);
    box-shadow: 15px 20px 30px rgba(0,0,0,0.12);
}

.set-box {
    position: absolute;
    width: 125px;
    height: 125px;
    right: 20px;
    bottom: 20px;
    background: #c8bda9;
    transform: rotate(9deg);
    box-shadow: 20px 25px 30px rgba(0,0,0,0.13);
}

.set-container {
    position: absolute;
    width: 105px;
    height: 75px;
    right: 40px;
    top: 20px;
    border-radius: 15px;
    background: #e8e5dd;
    box-shadow: 10px 15px 20px rgba(0,0,0,0.1);
}

.product-info {
    padding: 18px 4px 0;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    color: var(--gray-500);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.product-info h3 {
    margin-top: 11px;
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.2;
}

.product-info p {
    margin-top: 9px;
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.6;
    min-height: 58px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.product-bottom strong {
    font-family: var(--font-display);
    font-size: 16px;
}

.add-cart {
    font-size: 10px;
    font-weight: 700;
    border-bottom: 1px solid var(--black);
    padding-bottom: 3px;
}

.catalog-note {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-500);
    font-size: 11px;
}

.catalog-note > span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
}


/* =========================================================
   DARK SECTIONS
========================================================= */

.dark-section {
    background: var(--black);
    color: var(--white);
}

.dark-section .section-top {
    border-color: var(--white-border);
}

.light-eyebrow {
    color: rgba(255,255,255,0.45);
}


/* =========================================================
   SOLUTIONS
========================================================= */

.solutions-header {
    margin-top: 65px;
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 100px;
    align-items: end;
}

.solutions-header h2 {
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 75px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.solutions-header h2 em {
    color: var(--accent);
    font-style: normal;
}

.solutions-header p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.8;
}

.solution-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--white-border);
}

.solution-card {
    min-height: 430px;
    background: var(--black);
    border: 1px solid transparent;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.solution-card:hover {
    background: #171717;
}

.solution-card.featured {
    background: #171717;
}

.solution-index {
    position: absolute;
    right: 35px;
    top: 38px;
    font-size: 10px;
    color: rgba(255,255,255,0.3);
}

.solution-icon {
    width: 65px;
    height: 65px;
    border: 1px solid var(--white-border);
    border-radius: 16px;
    display: grid;
    place-items: center;
}

.solution-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.3;
}

.solution-card h3 {
    margin-top: 55px;
    font-family: var(--font-display);
    font-size: 25px;
}

.solution-card p {
    margin-top: 16px;
    color: rgba(255,255,255,0.52);
    font-size: 13px;
    line-height: 1.8;
    max-width: 350px;
}

.solution-card > a {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    gap: 13px;
}

.solution-card > a span {
    transition: transform 0.3s ease;
}

.solution-card > a:hover span {
    transform: translate(4px, -4px);
}

.featured-label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 7px 11px;
    background: var(--accent);
    color: var(--black);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
}


/* =========================================================
   FEATURES
========================================================= */

.features-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 120px;
}

.features-intro h2 {
    margin-top: 22px;
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 67px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.features-intro h2 span {
    display: block;
    color: var(--gray-500);
}

.features-intro p {
    margin-top: 28px;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.85;
    max-width: 420px;
}

.features-intro .button {
    margin-top: 32px;
}

.features-list {
    border-top: 1px solid var(--border);
}

.feature-row {
    min-height: 130px;
    display: grid;
    grid-template-columns: 45px 58px 1fr 30px;
    align-items: center;
    gap: 22px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.feature-row:hover {
    padding-left: 12px;
}

.feature-number {
    font-size: 10px;
    color: var(--gray-500);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gray-100);
    display: grid;
    place-items: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--black);
    stroke-width: 1.3;
}

.feature-row h3 {
    font-family: var(--font-display);
    font-size: 17px;
}

.feature-row p {
    margin-top: 4px;
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.6;
}

.feature-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.feature-row:hover .feature-arrow {
    transform: translate(3px, -3px);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: #ece8df;
}

.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-heading.centered h2 {
    max-width: 800px;
}

.section-heading.centered > p {
    justify-self: auto;
    max-width: 550px;
    margin-top: 20px;
}

.process-line {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
    align-items: start;
}

.process-item {
    text-align: center;
}

.process-circle {
    width: 76px;
    height: 76px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: grid;
    place-items: center;
    position: relative;
}

.process-circle::after {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 50%;
}

.process-circle span {
    font-family: var(--font-display);
    font-size: 13px;
    position: relative;
    z-index: 2;
}

.process-item h3 {
    margin-top: 25px;
    font-family: var(--font-display);
    font-size: 16px;
}

.process-item p {
    margin: 10px auto 0;
    max-width: 190px;
    color: var(--gray-500);
    font-size: 11px;
    line-height: 1.7;
}

.process-connector {
    height: 1px;
    background: var(--gray-300);
    margin-top: 38px;
    position: relative;
}

.process-connector::after {
    content: "→";
    position: absolute;
    right: -6px;
    top: -11px;
    color: var(--gray-500);
    font-size: 15px;
}


/* =========================================================
   STORY
========================================================= */

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 120px;
    align-items: center;
}

.story-visual {
    position: relative;
    min-height: 600px;
}

.story-frame {
    position: absolute;
    inset: 0 40px 0 0;
    border: 1px solid var(--white-border);
    overflow: hidden;
    display: grid;
    place-items: center;
}

.story-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            45deg,
            rgba(255,255,255,0.03) 25%,
            transparent 25%
        ),
        linear-gradient(
            -45deg,
            rgba(255,255,255,0.03) 25%,
            transparent 25%
        );
    background-size: 100px 100px;
}

.story-frame::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
}

.story-frame::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
}

.story-large-letter {
    font-family: var(--font-display);
    font-size: 330px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    position: relative;
    z-index: 2;
    transform: translateY(15px);
}

.story-floating-label {
    position: absolute;
    top: 35px;
    left: 35px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 9px;
    letter-spacing: 0.17em;
    color: rgba(255,255,255,0.45);
    z-index: 3;
}

.story-floating-label span {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.story-small-card {
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 180px;
    padding: 20px;
    background: var(--accent);
    color: var(--black);
    z-index: 5;
    box-shadow: 15px 20px 35px rgba(0,0,0,0.25);
}

.story-small-card span,
.story-small-card strong,
.story-small-card small {
    display: block;
}

.story-small-card span {
    font-size: 8px;
    letter-spacing: 0.15em;
}

.story-small-card strong {
    font-family: var(--font-display);
    font-size: 25px;
    letter-spacing: 0.12em;
}

.story-small-card small {
    margin-top: 8px;
    font-size: 9px;
    line-height: 1.5;
}

.story-content h2 {
    margin-top: 25px;
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.story-content h2 em {
    display: block;
    color: var(--accent);
    font-style: normal;
}

.story-lead {
    margin-top: 35px;
    color: var(--white);
    font-size: 19px;
    line-height: 1.6;
}

.story-content > p:not(.story-lead) {
    margin-top: 18px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.8;
}

.story-signature {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-signature > span {
    width: 45px;
    height: 45px;
    border: 1px solid var(--white-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
}

.story-signature strong,
.story-signature small {
    display: block;
}

.story-signature strong {
    font-size: 12px;
}

.story-signature small {
    color: rgba(255,255,255,0.4);
    font-size: 9px;
    margin-top: 2px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonial-section {
    background: var(--cream);
}

.testimonial-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.testimonial-heading h2 {
    margin-top: 22px;
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.testimonial-heading h2 span {
    color: var(--gray-500);
}

.testimonial-slider {
    margin-top: 75px;
    min-height: 340px;
    position: relative;
    overflow: hidden;
}

.testimonial {
    position: absolute;
    inset: 0;
    padding: 65px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    opacity: 0;
    transform: translateX(30px);
    pointer-events: none;
    transition:
        opacity 0.5s ease,
        transform 0.5s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 90px;
    line-height: 0.5;
    color: var(--accent);
}

.testimonial > p {
    max-width: 900px;
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 39px);
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.testimonial-author {
    margin-top: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--black);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 700;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author strong {
    font-size: 11px;
}

.testimonial-author small {
    color: var(--gray-500);
    font-size: 9px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.testimonial-controls button {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background: var(--black);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    gap: 6px;
}

.testimonial-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gray-300);
}

.testimonial-dots span.active {
    background: var(--black);
}


/* =========================================================
   FAQ
========================================================= */

.faq-layout {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    gap: 120px;
}

.faq-intro h2 {
    margin-top: 22px;
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.faq-intro h2 span {
    display: block;
    color: var(--gray-500);
}

.faq-intro > p {
    margin-top: 28px;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.8;
    max-width: 400px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    padding: 0 5px;
}

.faq-plus {
    width: 30px;
    height: 30px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gray-500);
    font-size: 17px;
    transition: var(--transition);
}

.faq-item.active .faq-plus {
    transform: rotate(45deg);
    background: var(--black);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.faq-answer p {
    padding: 0 50px 25px 5px;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.8;
}


/* =========================================================
   LOCATION
========================================================= */

.location-section {
    padding-top: 40px;
}

.location-card {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    min-height: 570px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.location-info {
    padding: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-info h2 {
    margin-top: 25px;
    font-family: var(--font-display);
    font-size: clamp(38px, 4vw, 57px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.location-info h2 span {
    display: block;
    color: var(--gray-500);
}

.location-info > p {
    margin-top: 24px;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.8;
}

.address-block {
    margin-top: 32px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.address-icon {
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--cream);
    display: grid;
    place-items: center;
}

.address-icon svg {
    width: 20px;
    fill: none;
    stroke: var(--black);
    stroke-width: 1.5;
}

.address-block strong,
.address-block span {
    display: block;
}

.address-block strong {
    font-size: 13px;
}

.address-block span {
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.6;
}

.location-info .button {
    align-self: flex-start;
    margin-top: 32px;
}

.map-wrapper {
    position: relative;
    min-height: 570px;
    background: #d9d5cc;
}

.map-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(0.9);
}

.map-overlay {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    padding: 15px 18px;
    border-radius: 10px;
    box-shadow: var(--shadow-card);
}

.map-overlay strong,
.map-overlay small {
    display: block;
}

.map-overlay strong {
    font-size: 11px;
}

.map-overlay small {
    margin-top: 2px;
    color: var(--gray-500);
    font-size: 9px;
}

.map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    top: -6px;
    left: 12px;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-header h2 {
    margin-top: 25px;
    max-width: 900px;
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.contact-header h2 em {
    color: var(--accent);
    font-style: normal;
}

.contact-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 120px;
}

.contact-lead {
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    line-height: 1.85;
    max-width: 400px;
}

.contact-method {
    min-height: 90px;
    border-bottom: 1px solid var(--white-border);
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-method:first-of-type {
    margin-top: 35px;
}

.method-icon {
    width: 42px;
    height: 42px;
    border: 1px solid var(--white-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.method-icon svg {
    width: 18px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.3;
}

.contact-method small,
.contact-method strong {
    display: block;
}

.contact-method small {
    color: rgba(255,255,255,0.35);
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.contact-method strong {
    margin-top: 3px;
    font-size: 12px;
    font-weight: 500;
}

.method-arrow {
    margin-left: auto;
    color: var(--accent);
}

.contact-form-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--white-border);
    border-radius: var(--radius-lg);
    padding: 45px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 9px;
    color: rgba(255,255,255,0.45);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid var(--white-border);
    background: rgba(255,255,255,0.04);
    color: var(--white);
    border-radius: 8px;
    padding: 15px;
    outline: none;
    transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--accent);
    background: rgba(255,255,255,0.07);
}

.form-field select option {
    color: var(--black);
}

.form-field textarea {
    resize: vertical;
    min-height: 145px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 10px;
    line-height: 1.6;
}

.checkbox-label input {
    margin-top: 3px;
    accent-color: var(--accent);
}

.form-message {
    font-size: 11px;
    color: var(--accent);
}


/* =========================================================
   NEWSLETTER
========================================================= */

.newsletter-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.newsletter-container {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 100px;
    align-items: center;
}

.newsletter-copy h2 {
    margin-top: 18px;
    font-family: var(--font-display);
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.05em;
}

.newsletter-copy h2 span {
    color: var(--gray-500);
}

.newsletter-input {
    min-height: 64px;
    border: 1px solid var(--border);
    border-radius: 100px;
    display: flex;
    padding: 5px;
    background: var(--white);
}

.newsletter-input input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 22px;
    background: transparent;
}

.newsletter-input button {
    padding: 0 24px;
    border-radius: 100px;
    background: var(--black);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-input button span {
    transition: transform 0.3s ease;
}

.newsletter-input button:hover span {
    transform: translateX(4px);
}

.newsletter-form > p {
    margin: 12px 20px 0;
    color: var(--gray-500);
    font-size: 9px;
}


/* =========================================================
   LEGAL
========================================================= */

.legal-section {
    background: #efebe3;
}

.legal-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.legal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 42px;
}

.legal-number {
    color: var(--accent-dark);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 800;
}

.legal-card h2 {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: -0.04em;
}

.legal-date {
    margin-top: 7px;
    color: var(--gray-500);
    font-size: 9px;
}

.legal-card > p:not(.legal-date) {
    margin-top: 22px;
    color: var(--gray-500);
    font-size: 12px;
    line-height: 1.8;
}

.legal-card h3 {
    margin-top: 25px;
    font-size: 12px;
}

.legal-card a {
    text-decoration: underline;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 85px 0 25px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.8fr 1fr;
    gap: 60px;
    padding-bottom: 70px;
    border-bottom: 1px solid var(--white-border);
}

.footer-brand-link .brand-symbol {
    border-color: var(--white);
}

.footer-brand-link .brand-symbol span {
    border-color: var(--white);
}

.footer-brand-link .brand-text strong {
    color: var(--white);
}

.footer-brand-link .brand-text small {
    color: var(--white);
}

.footer-brand p {
    margin-top: 25px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    line-height: 1.8;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 25px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid var(--white-border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 8px;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--white);
    color: var(--black);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    color: rgba(255,255,255,0.3);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.footer-column a,
.footer-column > span {
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    margin-bottom: 11px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact > span {
    line-height: 1.7;
}

.footer-bottom {
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,0.25);
    font-size: 9px;
    letter-spacing: 0.03em;
}


/* =========================================================
   SEARCH
========================================================= */

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.97);
    z-index: 2000;
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.4s ease,
        visibility 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 35px;
    right: 45px;
    color: var(--white);
    font-size: 38px;
    font-weight: 200;
}

.search-inner {
    width: min(800px, calc(100% - 50px));
}

.search-inner > span {
    color: rgba(255,255,255,0.4);
    font-size: 9px;
    letter-spacing: 0.18em;
}

.search-inner input {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--white-border);
    outline: 0;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(35px, 5vw, 65px);
    padding: 15px 0 20px;
}

.search-inner input::placeholder {
    color: rgba(255,255,255,0.15);
}

.search-results {
    margin-top: 25px;
    display: grid;
    gap: 8px;
}

.search-result {
    padding: 14px;
    border: 1px solid var(--white-border);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}


/* =========================================================
   CART
========================================================= */

.cart-overlay {
    position: fixed;
    inset: 0;
    z-index: 2100;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    z-index: 2200;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(470px, 100%);
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    min-height: 105px;
    padding: 25px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header > div > span {
    color: var(--gray-500);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.cart-header h2 {
    font-family: var(--font-display);
    font-size: 25px;
    line-height: 1;
}

.cart-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 22px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.empty-cart {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.empty-cart-icon {
    width: 70px;
    height: 70px;
    background: var(--cream);
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.empty-cart-icon svg {
    width: 32px;
    fill: none;
    stroke: var(--black);
    stroke-width: 1.3;
}

.empty-cart h3 {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 20px;
}

.empty-cart p {
    margin-top: 7px;
    color: var(--gray-500);
    font-size: 11px;
}

.empty-cart .button {
    margin-top: 22px;
}

.cart-item {
    display: grid;
    grid-template-columns: 75px 1fr auto;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-image {
    width: 75px;
    height: 75px;
    background: var(--gray-100);
    border-radius: 8px;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-weight: 800;
}

.cart-item-info strong {
    font-family: var(--font-display);
    font-size: 13px;
    line-height: 1.3;
}

.cart-item-info small {
    display: block;
    color: var(--gray-500);
    font-size: 10px;
    margin-top: 5px;
}

.cart-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.cart-quantity button {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 12px;
}

.cart-item-price {
    font-size: 12px;
    font-weight: 700;
}

.remove-item {
    color: var(--gray-500);
    font-size: 9px;
    margin-top: 7px;
    text-decoration: underline;
}

.cart-footer {
    border-top: 1px solid var(--border);
    padding: 25px;
}

.cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-total span {
    color: var(--gray-500);
    font-size: 11px;
}

.cart-total strong {
    font-family: var(--font-display);
    font-size: 21px;
}

.checkout-button {
    width: 100%;
    min-height: 56px;
    margin-top: 18px;
    border-radius: 8px;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    font-size: 11px;
    font-weight: 700;
}

.cart-footer > small {
    display: block;
    margin-top: 12px;
    color: var(--gray-500);
    font-size: 8px;
    line-height: 1.6;
}


/* =========================================================
   COOKIE
========================================================= */

.cookie-banner {
    position: fixed;
    z-index: 3000;
    left: 25px;
    bottom: 25px;
    width: min(490px, calc(100% - 50px));
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--white-border);
    padding: 22px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-banner strong {
    font-family: var(--font-display);
    font-size: 12px;
}

.cookie-banner p {
    margin-top: 5px;
    color: rgba(255,255,255,0.45);
    font-size: 9px;
    line-height: 1.6;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cookie-actions button {
    padding: 8px 13px;
    border-radius: 5px;
    background: var(--white);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
}

.cookie-actions button:last-child {
    background: transparent;
    color: rgba(255,255,255,0.55);
}


/* =========================================================
   REVEAL ANIMATIONS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22,1,0.36,1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.22s;
}

.reveal-delay-3 {
    transition-delay: 0.32s;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .desktop-nav {
        gap: 20px;
        margin-right: 20px;
    }

    .hero-container {
        gap: 20px;
    }

    .hero h1 {
        font-size: 68px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid,
    .features-layout,
    .faq-layout {
        gap: 70px;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 2 / 4;
    }
}


@media (max-width: 980px) {

    .container {
        width: min(calc(100% - 40px), var(--container));
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-button {
        display: flex;
    }

    .mobile-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--cream);
        border-bottom: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .mobile-menu.active {
        max-height: 500px;
    }

    .mobile-menu a {
        padding: 18px 25px;
        border-bottom: 1px solid var(--border);
        font-size: 13px;
        font-weight: 600;
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        padding: 80px 0 110px;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-visual {
        min-height: 560px;
    }

    .hero-scroll {
        display: none;
    }

    .intro-layout,
    .section-heading,
    .solutions-header,
    .features-layout,
    .story-grid,
    .faq-layout,
    .contact-grid,
    .newsletter-container {
        grid-template-columns: 1fr;
    }

    .intro-layout {
        gap: 40px;
    }

    .section-heading > p {
        justify-self: start;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: 380px;
    }

    .features-layout {
        gap: 60px;
    }

    .story-visual {
        min-height: 520px;
    }

    .story-grid {
        gap: 60px;
    }

    .faq-layout {
        gap: 60px;
    }

    .contact-grid {
        gap: 60px;
    }

    .newsletter-container {
        gap: 35px;
    }

    .location-card {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        min-height: 450px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }

    .stat-item:nth-child(3) {
        border-left: 0;
        padding-left: 0;
    }

    .process-line {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-connector {
        width: 1px;
        height: 35px;
        margin: 0 auto;
    }

    .process-connector::after {
        content: "↓";
        top: 27px;
        right: -5px;
    }

    .process-item p {
        max-width: 380px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-contact {
        grid-column: auto;
    }

}


@media (max-width: 650px) {

    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .announcement-inner {
        font-size: 8px;
    }

    .announcement-inner > span:nth-child(2),
    .announcement-inner > span:nth-child(3) {
        display: none;
    }

    .announcement-inner a {
        margin-left: auto;
    }

    .nav-container {
        min-height: 72px;
    }

    .brand-symbol {
        width: 32px;
        height: 32px;
    }

    .brand-text strong {
        font-size: 17px;
    }

    .cart-button > span {
        display: none;
    }

    .cart-button {
        padding-left: 8px;
    }

    .hero-container {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 65px);
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-visual {
        min-height: 480px;
    }

    .package-display {
        width: 330px;
        height: 400px;
        transform: scale(0.8) rotate(-3deg);
    }

    .orbit-one {
        width: 390px;
        height: 390px;
    }

    .orbit-two {
        width: 290px;
        height: 290px;
    }

    .floating-card-top {
        left: -5px;
        top: 50px;
    }

    .floating-card-bottom {
        right: -5px;
        bottom: 30px;
    }

    .section {
        padding: 90px 0;
    }

    .section-top {
        padding-bottom: 22px;
    }

    .intro-layout {
        padding-top: 50px;
    }

    .intro-title h2,
    .section-heading h2,
    .features-intro h2,
    .faq-intro h2,
    .story-content h2 {
        font-size: 43px;
    }

    .large-copy {
        font-size: 18px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        padding: 0 12px;
    }

    .stat-number {
        font-size: 42px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 340px;
    }

    .solution-card {
        padding: 30px;
        min-height: 360px;
    }

    .solution-card > a {
        left: 30px;
        bottom: 30px;
    }

    .feature-row {
        grid-template-columns: 30px 48px 1fr;
        gap: 12px;
        padding: 18px 0;
    }

    .feature-arrow {
        display: none;
    }

    .story-visual {
        min-height: 400px;
    }

    .story-frame {
        inset: 0 25px 0 0;
    }

    .story-large-letter {
        font-size: 220px;
    }

    .story-small-card {
        width: 150px;
        right: 0;
    }

    .testimonial {
        padding: 35px 25px;
    }

    .testimonial-slider {
        min-height: 410px;
    }

    .testimonial > p {
        font-size: 23px;
    }

    .location-info {
        padding: 35px 25px;
    }

    .map-wrapper {
        min-height: 360px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 45px;
    }

    .newsletter-section {
        padding: 65px 0;
    }

    .newsletter-copy h2 {
        font-size: 37px;
    }

    .newsletter-input {
        min-height: auto;
        flex-direction: column;
        border-radius: 14px;
        padding: 6px;
    }

    .newsletter-input input {
        height: 55px;
    }

    .newsletter-input button {
        min-height: 48px;
        justify-content: center;
    }

    .legal-grid {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .legal-card {
        padding: 28px;
    }

    .footer {
        padding-top: 65px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    .cookie-banner {
        left: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-actions {
        flex-direction: row;
    }

    .cookie-actions button {
        flex: 1;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

}