/* ==========================================================================
   ógin Distillery — Main Stylesheet
   Nordic Minimalism · Premium Prestige
   Inspired by Canlis — Editorial elegance, generous whitespace
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables
   -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --color-white: #FFFFFF;
    --color-off-white: #FAFAF9;
    --color-cream: #F7F6F3;
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #4A4A4A;
    --color-copper: #B8956B;
    --color-copper-dark: #9A7B55;
    --color-nordic-blue: #1E3A5F;
    --color-gray: #717171;
    --color-gray-light: #E8E8E8;
    --color-border: #E0E0E0;

    /* Typography */
    --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-body: 'Source Serif 4', Georgia, serif;
    /* Legacy aliases */
    --font-serif: var(--font-body);
    --font-sans: var(--font-heading);

    /* Spacing — More generous */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 5rem;
    --space-2xl: 8rem;
    --space-3xl: 12rem;

    /* Layout */
    --container-max: 1800px;
    --container-narrow: 1000px;
    --container-text: 800px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.5s;
    --duration-slow: 1s;

    /* Header */
    --header-height: 90px;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-charcoal);
    background-color: var(--color-white);
    letter-spacing: 0.01em;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-out);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Typography — Larger, more elegant
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-charcoal);
}

h1 {
    font-size: clamp(3rem, 8vw, 6rem);
}

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

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    max-width: none;
}

.text-large {
    font-size: 1.375rem;
    line-height: 1.7;
}

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

/* --------------------------------------------------------------------------
   Layout — Centered, single-column focus
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.container-text {
    max-width: var(--container-text);
}

.section {
    padding: var(--space-3xl) 0;
}

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

.section-center p {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-xl) 0;
    }

    .container {
        padding: 0 var(--space-sm);
    }
}

/* --------------------------------------------------------------------------
   Age Verification Gate
   -------------------------------------------------------------------------- */
.age-gate {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-charcoal);
    opacity: 1;
    visibility: visible;
    transition: opacity var(--duration-slow) var(--ease-out),
                visibility var(--duration-slow) var(--ease-out);
}

.age-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.age-gate-content {
    text-align: center;
    color: var(--color-white);
    padding: var(--space-lg);
    max-width: 500px;
}

.age-gate-logo {
    display: block;
    height: 70px;
    width: auto;
    margin: 0 auto var(--space-2xl);
    filter: brightness(0) invert(1);
}

.age-gate-content h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--color-white);
}

.age-gate-content p {
    color: var(--color-gray);
    margin-bottom: var(--space-xl);
    font-size: 1.0625rem;
}

.age-gate-buttons {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Buttons — More refined
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--duration-normal) var(--ease-out);
}

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

.btn-primary:hover {
    background: var(--color-copper);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    border-color: var(--color-white);
}

.btn-outline {
    background: transparent;
    color: var(--color-charcoal);
    border: 1px solid rgba(26,26,26,0.3);
    padding: 0.875rem 2rem;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
}

.btn-outline:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    border-color: var(--color-charcoal);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    position: relative;
    padding-bottom: 0;
    transition: color 0.4s var(--ease-out);
}

.link-arrow::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.link-arrow:hover::after {
    transform: scaleX(0);
    transform-origin: right;
}

.link-arrow svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--ease-out);
}

.link-arrow:hover svg {
    transform: translateX(4px);
}

.link-arrow:hover {
    color: var(--color-copper);
}

/* --------------------------------------------------------------------------
   Header & Navigation — Cleaner, horizontal
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: transparent;
    display: none;
    transition: background var(--duration-normal) var(--ease-out),
                box-shadow var(--duration-normal) var(--ease-out);
}

@media (max-width: 768px) {
    .header {
        display: none;
    }
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 1px 0 var(--color-border);
}

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

/* Nav Strip — Centered black rectangle, expands on hover */
.nav-strip {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-inline: auto;
    width: 200px;
    height: 100vh;
    background: #000000;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 28px 60px;
    overflow: hidden;
    clip-path: inset(0 62px calc(100% - 110px) 62px);
    transition: clip-path 0.25s var(--ease-out-expo),
                transform 0.2s var(--ease-out-expo);
    cursor: pointer;
}

.nav-strip.nav-hidden {
    transform: translateY(-100%);
}

.nav-strip.nav-bottom {
    top: auto;
    bottom: 0;
    clip-path: inset(calc(100% - 110px) 62px 0 62px);
    transform: none;
    padding: 60px 28px 20px;
    flex-direction: column-reverse;
}

.nav-strip.nav-bottom .nav-strip-logo {
    margin-top: var(--space-xl);
    margin-bottom: 0;
}

.nav-strip.nav-bottom:hover {
    clip-path: inset(0 0 0 0);
}

.nav-strip.nav-bottom .nav-strip-stamp {
    bottom: auto;
    top: 60px;
}

.nav-strip.nav-bottom.nav-hidden {
    transform: translateY(100%);
}

.nav-strip:hover {
    clip-path: inset(0 0 0 0);
}

.nav-strip-logo {
    display: block;
    width: 30px;
    flex-shrink: 0;
    margin-bottom: var(--space-2xl);
}

.nav-strip-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 1 !important;
    border-radius: 0;
}

.nav-strip-menu-label {
    display: none;
}

@media (max-width: 768px) {
    .nav-strip-menu-label {
        display: block;
        font-family: var(--font-heading);
        font-size: 0.5rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.6);
        text-align: center;
        margin-top: 8px;
    }
}

.nav-strip-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s var(--ease-out) 0.1s,
                transform 0.4s var(--ease-out) 0.1s;
    pointer-events: none;
}

.nav-strip:hover .nav-strip-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-strip-links li {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: var(--space-sm) 0;
    width: 100%;
    text-align: center;
}

.nav-strip-links li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-strip-links a {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    white-space: nowrap;
    transition: color 0.3s var(--ease-out);
}

.nav-strip-links a:hover,
.nav-strip-links a.active {
    color: var(--color-white);
}

.nav-strip-instagram {
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-md);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out) 0.1s, color 0.3s var(--ease-out);
    pointer-events: none;
}

.nav-strip:hover .nav-strip-instagram,
.nav-strip.expanded .nav-strip-instagram {
    opacity: 1;
    pointer-events: auto;
}

.nav-strip-instagram:hover {
    color: var(--color-white);
}

.nav-strip-stamp {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: auto;
    opacity: 0.5;
    pointer-events: none;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    position: relative;
    padding: 0.5rem 0;
}

.header:not(.scrolled):not(.header-dark) .nav-links a {
    color: var(--color-white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width var(--duration-normal) var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle span {
    width: 100%;
    height: 1px;
    background: var(--color-charcoal);
    transition: all var(--duration-normal) var(--ease-out);
}

.header:not(.scrolled):not(.header-dark) .nav-toggle span {
    background: var(--color-white);
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration-normal) var(--ease-out),
                visibility var(--duration-normal) var(--ease-out);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    text-align: center;
}

.mobile-nav-links li {
    margin-bottom: var(--space-md);
}

.mobile-nav-links a {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-white);
}

.nav-toggle.active span {
    background: var(--color-white);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-strip {
        width: 140px;
        clip-path: inset(0 35px calc(100% - 100px) 35px);
        padding: 18px 16px 50px;
    }

    .nav-strip:hover {
        clip-path: inset(0 35px calc(100% - 100px) 35px);
    }

    .nav-strip-logo {
        width: 28px;
    }

    .nav-strip-links li {
        padding: 0.875rem 0;
    }

    .nav-strip.expanded,
    .nav-strip.expanded:hover {
        clip-path: inset(0 0 0 0);
    }

    .nav-strip.expanded .nav-strip-links {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-strip.nav-bottom {
        clip-path: inset(calc(100% - 100px) 35px 0 35px);
    }

    .nav-strip.nav-bottom:hover {
        clip-path: inset(calc(100% - 100px) 35px 0 35px);
    }

    .nav-strip.nav-bottom.expanded,
    .nav-strip.nav-bottom.expanded:hover {
        clip-path: inset(0 0 0 0);
    }
}

/* --------------------------------------------------------------------------
   Hero Section — Full-screen, editorial
   -------------------------------------------------------------------------- */
.hero {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.hero-media {
    width: 100%;
    height: 100%;
    background: url('../images/jo-header.jpg') center center / cover no-repeat;
    background-color: #1A1A1A;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    background-color: #1A1A1A;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 var(--space-md);
    padding-bottom: 15vh;
}

.hero-title {
    font-family: var(--font-body);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--color-white);
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.hero-title em,
.hero-title i {
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    font-style: italic;
    opacity: 0.75;
    margin-bottom: var(--space-lg);
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero .btn {
    padding: 0.875rem 2rem;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    color: var(--color-white);
    transition: all 0.4s var(--ease-out);
}

.hero .btn:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
    border-color: var(--color-white);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-white);
    opacity: 0.8;
    z-index: 2;
}

.hero-scroll span {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-white), transparent);
    animation: scroll-hint 2.5s ease-in-out infinite;
}

@keyframes scroll-hint {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(0.5);
        transform-origin: top;
    }
    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* --------------------------------------------------------------------------
   Section Headers — Editorial style, Cartier-inspired
   -------------------------------------------------------------------------- */
.section-header {
    margin-bottom: var(--space-xl);
}

.section-header-center {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.products-stamp {
    display: none;
}

.section-stamp {
    display: block;
    width: 240px;
    height: auto;
    margin: 0 auto var(--space-lg);
    opacity: 1 !important;
}

.section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-copper);
    margin-bottom: var(--space-md);
}

.section-title {
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 1.0625rem;
    color: var(--color-charcoal-light);
    line-height: 1.85;
    max-width: 640px;
}

.section-header-center .section-description {
    margin-left: auto;
    margin-right: auto;
}

.section-cta {
    margin-top: var(--space-2xl);
    text-align: center;
}

/* --------------------------------------------------------------------------
   Introduction Section — Large centered text, Cartier-inspired
   -------------------------------------------------------------------------- */
.intro-scroll-wrapper {
    height: 400vh;
    position: relative;
}

@media (max-width: 768px) {
    .intro-scroll-wrapper {
        height: 300vh;
    }
}

/* Brand Moment — Dark word-reveal section for inner pages */
.brand-moment-wrapper {
    height: 300vh;
    position: relative;
}

@media (max-width: 768px) {
    .brand-moment-wrapper {
        height: 250vh;
    }
}

.brand-moment {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

.brand-moment .scroll-reveal-content {
    text-align: center;
}

.brand-moment-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-charcoal);
    opacity: 0.4;
}

.brand-moment-scroll span {
    font-family: var(--font-heading);
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.brand-moment-scroll .scroll-line {
    background: linear-gradient(to bottom, var(--color-charcoal), transparent);
}

.brand-moment .intro-label {
    color: rgba(0,0,0,0.5);
}

.brand-moment .intro-text {
    color: var(--color-charcoal);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.reveal-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s var(--ease-out);
    z-index: 1;
}

.reveal-icon img {
    width: 150px;
    height: auto;
}

@media (max-width: 768px) {
    .reveal-icon img {
        width: 100px;
    }
}

.hero-intro-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-intro-content .container {
    max-width: 1200px;
    text-align: center;
}

.section-intro .container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-label {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.section-intro-dark {
    background: var(--color-charcoal);
}

.section-intro-dark .intro-text {
    color: var(--color-white);
}

.intro-text {
    font-family: var(--font-body);
    font-size: clamp(1.125rem, 3vw, 2.25rem);
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-white);
    text-align: center;
    text-align: left;
    max-width: 1400px;
    margin: 0 0 var(--space-xl);
    letter-spacing: 0.01em;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-text em,
.intro-text i {
    font-style: italic;
}

@media (max-width: 900px) {
    .intro-text {
        text-align: center;
    }
}

/* Word-by-word scroll reveal */
.word-reveal .word {
    opacity: 0.15;
    transition: opacity 0.3s ease;
    display: inline;
}

.word-reveal .word.revealed {
    opacity: 1;
}

/* Hover reveal text */
.hover-reveal {
    cursor: pointer;
    text-decoration: none;
}

.hover-reveal .word {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 0.5px;
    text-decoration-color: rgba(255, 255, 255, 0.15);
    transition: opacity 0.3s ease, text-decoration-color 0.3s ease;
}

.hover-reveal .word.revealed {
    text-decoration-color: rgba(255, 255, 255, 1);
}

/* Cursor-attached image */
.cursor-image {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
    transform: translate(-50%, -50%);
}

.cursor-image.visible {
    opacity: 1;
}

.cursor-image img {
    width: 320px;
    height: auto;
    object-fit: cover;
    opacity: 1 !important;
}

/* --------------------------------------------------------------------------
   Products Section — Editorial grid with varying heights
   -------------------------------------------------------------------------- */
.section-products {
    background: var(--color-off-white);
    padding: calc(var(--space-3xl) * 1.15) 0;
    position: relative;
}


.section-products .section-header {
    margin-bottom: var(--space-2xl);
}

.section-products .section-title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: 0.005em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg) var(--space-md);
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.product-card {
    display: block;
    text-align: left;
}

/* Break the grid — stagger cards */
.product-card:nth-child(1) { margin-top: 14vh; }
.product-card:nth-child(2) { margin-top: 0; }
.product-card:nth-child(3) { margin-top: 22vh; }
.product-card:nth-child(4) { margin-top: -6vh; }
.product-card:nth-child(5) { margin-top: -14vh; }
.product-card:nth-child(6) { margin-top: 4vh; }

.product-card:hover .product-name {
    color: var(--color-primary);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: var(--color-cream);
    border-radius: 4px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

/* Bottle mask overlay */
.product-mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 3;
    opacity: 0 !important;
    transition: transform 0.7s var(--ease-out-expo),
                opacity 0.3s var(--ease-out) 0.4s;
    pointer-events: none;
    transform-origin: center 40%;
}

.product-card-masked:hover .product-mask {
    transform: scale(12);
    opacity: 0 !important;
}

.product-card-masked .product-hover-card {
    transition: none;
}

/* Magazine-style hover card */
.product-hover-card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: calc(100% - 60px);
    max-width: 320px;
    height: calc(100% - 60px);
    max-height: 420px;
    background: var(--color-white);
    padding: var(--space-lg) var(--space-lg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    opacity: 0;
    transition: all 0.5s var(--ease-out-expo);
    z-index: 2;
    pointer-events: none;
}

.product-card:hover .product-hover-card {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

.product-hover-icon {
    max-width: 80px !important;
    width: auto !important;
    max-height: 80px !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto;
    opacity: 1 !important;
    border-radius: 0 !important;
    flex-shrink: 0;
}

.product-hover-content {
    margin-top: auto;
}

.product-hover-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-copper);
    margin-bottom: var(--space-sm);
}

.product-hover-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.product-hover-desc {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--color-charcoal-light);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.product-hover-cta {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-charcoal);
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-charcoal);
    transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.product-card:hover .product-hover-cta {
    color: var(--color-copper);
    border-color: var(--color-copper);
}

/* Spirit-specific accent colors in hover cards */
.product-card:nth-child(1) .product-hover-label { color: #888; } /* Nature - neutral gray */
.product-card:nth-child(1) .product-hover-cta { color: #888; border-color: #888; }

.product-card:nth-child(2) .product-hover-label { color: #3D1515; } /* Arctic - deep red */
.product-card:nth-child(2) .product-hover-cta { color: #3D1515; border-color: #3D1515; }

.product-card:nth-child(3) .product-hover-label { color: #D4842A; } /* Cloud - orange */
.product-card:nth-child(3) .product-hover-cta { color: #D4842A; border-color: #D4842A; }

.product-card:nth-child(4) .product-hover-label { color: #B8956B; } /* Barrel - warm gold */
.product-card:nth-child(4) .product-hover-cta { color: #B8956B; border-color: #B8956B; }

.product-card:nth-child(5) .product-hover-label { color: #C4707F; } /* Pink - pink */
.product-card:nth-child(5) .product-hover-cta { color: #C4707F; border-color: #C4707F; }

/* When vodka is hovered, entire section goes dark — all card text must be white */
.products-dark .product-name { color: #fff; }
.products-dark .product-tagline { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.15); }
.products-dark .product-details { color: rgba(255,255,255,0.7); }
.products-dark .section-label { color: rgba(255,255,255,0.7); }
.products-dark .section-title { color: #fff; }
.products-dark .products-stamp { filter: brightness(0) invert(1); }
.product-card:nth-child(6) .product-hover-card { background: #0A0A0A; } /* Vodka - black card */
.product-card:nth-child(6) .product-hover-icon { filter: brightness(0) invert(1); }
.product-card:nth-child(6) .product-hover-label { color: #fff; }
.product-card:nth-child(6) .product-hover-name { color: #fff; }
.product-card:nth-child(6) .product-hover-desc { color: rgba(255,255,255,0.7); }
.product-card:nth-child(6) .product-hover-cta { color: #fff; border-color: #fff; }

@media (max-width: 768px) {
    .products-stamp {
        display: none;
    }

    /* On mobile, trigger hover card via .in-view class instead of :hover */
    .product-card-masked .product-hover-card {
        transition: all 0.6s var(--ease-out-expo);
    }

    .product-card.in-view .product-hover-card {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .product-card.in-view .product-mask {
        transform: scale(12);
    }

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--color-gray);
    background: linear-gradient(180deg, var(--color-cream) 0%, #E8E6E3 100%);
}

.product-info {
    padding: var(--space-sm) 0 0;
}

.product-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.375rem;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
    transition: color 0.4s var(--ease-out);
}

.product-tagline {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.5;
    letter-spacing: 0.02em;
    display: block;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 0.375rem;
    padding-top: 0.375rem;
    transition: color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.product-details {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 400;
    color: var(--color-gray);
    letter-spacing: 0.05em;
    transition: color 0.4s var(--ease-out);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    .product-card:nth-child(n) {
        margin-top: 0;
    }
}

@media (max-width: 560px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-sm);
    }
    .product-card:nth-child(n) {
        margin-top: 0;
    }
}

/* --------------------------------------------------------------------------
   Story Section — Split layout, editorial Cartier-inspired
   -------------------------------------------------------------------------- */
.section-story {
    background: var(--color-white);
    padding: 0;
}

.section-vodka {
    background: #000000;
    padding: 0;
    color: var(--color-white);
}

.section-vodka .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.section-vodka .section-title {
    color: var(--color-white);
}

.section-vodka p {
    color: rgba(255, 255, 255, 0.7);
}

.section-vodka .link-arrow {
    color: var(--color-white);
}

.story-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 85vh;
}

.story-split-reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.story-split-reverse .story-image {
    order: 2;
}

.story-split-reverse .story-content {
    order: 1;
}

@media (max-width: 900px) {
    .story-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .story-split-reverse .story-image { order: unset; }
    .story-split-reverse .story-content { order: unset; }
}

.story-image {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.story-video {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

.story-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.story-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out-expo);
}

.story-split:hover .story-image img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .story-image {
        min-height: 350px;
    }

    .story-video {
        min-height: auto;
        aspect-ratio: 3/4;
    }

    .story-video video {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 100%;
        min-width: 0;
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .story-image {
        min-height: 60vh;
    }
}

.story-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-nordic-blue) 0%, #2C4A6E 100%);
}

.story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-3xl) var(--space-3xl);
    max-width: none;
}

@media (max-width: 900px) {
    .story-content {
        padding: var(--space-xl) var(--space-md);
    }
}

.story-content .section-label {
    margin-bottom: var(--space-md);
}

.story-content .section-title {
    font-family: var(--font-body);
    font-weight: 400;
    margin-bottom: var(--space-lg);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1.25;
    letter-spacing: 0.005em;
}

.story-content .section-title em,
.story-content .section-title i {
    font-style: italic;
}

.story-content p {
    color: var(--color-charcoal-light);
    margin-bottom: var(--space-md);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 480px;
}

.story-content .btn {
    align-self: flex-start;
}

.story-content .link-arrow {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    margin-top: var(--space-md);
}

/* --------------------------------------------------------------------------
   Process Section — Clean features, Cartier-inspired
   -------------------------------------------------------------------------- */
.section-process {
    background: var(--color-white);
    padding: calc(var(--space-3xl) * 1.25) 0;
}

.section-process .section-header {
    margin-bottom: var(--space-xl);
}

.section-process .section-title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    letter-spacing: 0.005em;
}

.section-process .section-description {
    font-size: 1rem;
    line-height: 1.85;
    max-width: 620px;
    color: var(--color-charcoal-light);
}

.process-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .process-features {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        max-width: 380px;
    }
}

.process-feature {
    text-align: center;
}

.process-number {
    display: block;
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--color-copper);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.process-feature h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    font-size: 1.125rem;
    letter-spacing: 0.01em;
}

.process-feature p {
    color: var(--color-charcoal-light);
    font-size: 0.9375rem;
    max-width: 260px;
    margin: 0 auto;
    line-height: 1.75;
}

/* --------------------------------------------------------------------------
   Awards Section
   -------------------------------------------------------------------------- */
.section-awards {
    background: var(--color-off-white);
    padding: var(--space-2xl) 0;
}

.awards-list {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.award-item {
    padding-left: var(--space-md);
    border-left: 2px solid var(--color-copper);
}

.award-name {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-charcoal);
}

/* --------------------------------------------------------------------------
   Cocktails Section — Horizontal swipeable cards
   -------------------------------------------------------------------------- */
.section-cocktails {
    background: var(--color-off-white);
    padding: var(--space-3xl) 0;
    overflow: hidden;
}

.cocktails-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    margin-bottom: var(--space-xl);
}

.cocktails-nav {
    display: flex;
    gap: var(--space-sm);
}

.cocktails-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-charcoal);
}

.cocktails-arrow:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    border-color: var(--color-charcoal);
}

.cocktails-track {
    display: flex;
    gap: var(--space-lg);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 var(--space-lg);
    padding-left: max(var(--space-xl), calc((100vw - 1400px) / 2 + var(--space-xl)));
    scrollbar-width: none;
    cursor: grab;
}

.cocktails-track::-webkit-scrollbar {
    display: none;
}

.cocktails-track:active {
    cursor: grabbing;
}

.cocktail-card {
    flex: 0 0 340px;
    scroll-snap-align: center;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 4px;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.cocktail-card-image {
    flex: 0 0 500px;
    padding: 0;
    overflow: hidden;
}

.cocktail-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.cocktail-card:first-child {
    margin-left: 0;
}

.cocktail-card:last-child {
    margin-right: calc(50vw - 170px);
}

.cocktail-number {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
    color: var(--color-copper);
    margin-bottom: var(--space-md);
}

.cocktail-name {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    margin-bottom: var(--space-xs);
    color: var(--color-charcoal);
}

.cocktail-spirit {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: var(--space-lg);
}

.cocktail-ingredients {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: var(--space-md);
}

.cocktail-ingredients li {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-charcoal);
    padding: 0.35em 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    letter-spacing: 0.01em;
}

.cocktail-method {
    margin-top: auto;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cocktail-card {
        flex: 0 0 calc(100vw - 48px);
    }
    .cocktail-card-image {
        display: none;
    }
    .cocktail-card:first-child {
        margin-left: var(--space-md);
    }
    .cocktail-card:last-child {
        margin-right: var(--space-md);
    }
    .cocktails-track {
        padding-left: var(--space-md);
    }
}

/* --------------------------------------------------------------------------
   Newsletter Section — Elegant box, Cartier-inspired
   -------------------------------------------------------------------------- */
.section-newsletter {
    background: var(--color-off-white);
    padding: var(--space-2xl) 0 calc(var(--space-3xl) * 1.15);
}

.newsletter-box {
    background: var(--color-charcoal);
    color: var(--color-white);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.newsletter-box h2 {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-white);
    font-size: 1.625rem;
    margin-bottom: var(--space-sm);
    letter-spacing: 0.01em;
}

.newsletter-box > p {
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-lg);
    max-width: none;
    font-size: 0.9375rem;
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
    max-width: 420px;
    margin: 0 auto var(--space-md);
}

@media (max-width: 560px) {
    .newsletter-form {
        flex-direction: column;
    }
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.125rem;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--color-white);
    transition: border-color 0.4s var(--ease-out);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-copper);
}

.newsletter-form .btn-primary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    white-space: nowrap;
    padding: 0.875rem 1.5rem;
    font-size: 0.6875rem;
}

.newsletter-form .btn-primary:hover {
    background: var(--color-white);
    color: var(--color-charcoal);
    border-color: var(--color-white);
}

.newsletter-note {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   Full-bleed Image
   -------------------------------------------------------------------------- */

.full-bleed-image {
    width: 100%;
    line-height: 0;
}

.full-bleed-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --------------------------------------------------------------------------
   Footer — Editorial, centered
   -------------------------------------------------------------------------- */
.footer {
    background: var(--color-white);
    color: var(--color-charcoal);
    padding: var(--space-3xl) 0 calc(var(--space-3xl) + 180px);
    text-align: center;
}

.footer-logo {
    display: block;
    margin-bottom: var(--space-lg);
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-inline: auto;
    display: block;
}

.footer-tagline {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--color-gray);
    margin-bottom: var(--space-xs);
}

.footer-nav {
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-xl);
}

.footer-nav a {
    font-family: var(--font-heading);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    transition: color var(--duration-normal) var(--ease-out);
}

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

.footer-nav .footer-dot {
    color: rgba(0, 0, 0, 0.2);
    font-size: 0.5rem;
    line-height: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(0, 0, 0, 0.4);
    transition: color var(--duration-normal) var(--ease-out);
}

.social-links a:hover {
    color: var(--color-copper);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-gray);
    line-height: 1.8;
}

.footer-bottom .footer-legal {
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .footer {
        padding-bottom: var(--space-3xl);
    }
}

/* --------------------------------------------------------------------------
   Animations & Effects — Subtle, elegant
   -------------------------------------------------------------------------- */
.fade-up {
    opacity: 1;
    transform: translateY(0);
}

.js-loaded .fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.js-loaded .fade-up.visible,
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 1;
    transform: translateX(0);
}

.js-loaded .fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.js-loaded .fade-left.visible,
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 1;
    transform: translateX(0);
}

.js-loaded .fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity var(--duration-slow) var(--ease-out-expo),
                transform var(--duration-slow) var(--ease-out-expo);
}

.js-loaded .fade-right.visible,
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .js-loaded .fade-left,
    .js-loaded .fade-right {
        transform: translateY(40px);
    }
    .js-loaded .fade-left.visible,
    .js-loaded .fade-right.visible,
    .fade-left.visible,
    .fade-right.visible {
        transform: translateY(0);
    }
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Smooth image loading */
img {
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out);
}

img.loaded {
    opacity: 1;
}

/* Selection */
::selection {
    background: var(--color-copper);
    color: var(--color-white);
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--color-copper);
    outline-offset: 2px;
}

/* Divider */
.divider {
    width: 60px;
    height: 1px;
    background: var(--color-border);
    margin: var(--space-xl) auto;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
