:root {
    /* Color Palette */
    --color-dark: #1A1410;
    --color-light: #F2EDE6;
    --color-olive: #5C5B35;
    --color-espresso: #2E1F18;
    --color-burgundy: #4A1528;

    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Cormorant Garamond', serif;

    /* Font Sizes (Clamps for fluid typography) */
    --text-hero-title: clamp(52px, 8vw, 96px);
    --text-section-heading: clamp(32px, 4vw, 52px);
    --text-sub-heading: clamp(16px, 1.8vw, 22px);
    --text-body: clamp(15px, 1.4vw, 18px);
    --text-label: 11px;
    --text-monogram: clamp(48px, 8vw, 96px);

    /* Letter Spacing */
    --ls-hero: 0.04em;
    --ls-section: 0.06em;
    --ls-subheading: 0.1em;
    --ls-body: 0.02em;
    --ls-label: 0.35em;
    --ls-monogram: 0.3em;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    --spacing-xxl: 12rem;

    /* Layout */
    --max-width-content: 1400px;
}

body {
    background-color: var(--color-dark);
    color: var(--color-light);
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: var(--text-body);
    line-height: 1.85;
    letter-spacing: var(--ls-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body {
        font-weight: 400;
        /* Ensure readability on mobile */
    }
}

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

/* Base Typographic Styles */
h1,
.section-hero-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    font-size: var(--text-hero-title);
    letter-spacing: var(--ls-hero);
    line-height: 1.05;
}

h2,
.section-title {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    font-size: var(--text-section-heading);
    letter-spacing: var(--ls-section);
    line-height: 1.15;
}

h3,
.sub-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    font-style: normal;
    font-size: var(--text-sub-heading);
    letter-spacing: var(--ls-subheading);
    line-height: 1.4;
}

.label,
.nav-links a {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: normal;
    font-size: var(--text-label);
    text-transform: uppercase;
    letter-spacing: var(--ls-label);
    line-height: 1;
}

.editorial-section {
    position: relative;
    width: 100vw;
    /* Mobile-first minimum height */
    min-height: 100vh;
    padding: var(--spacing-xl) var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .editorial-section {
        padding: var(--spacing-xxl) var(--spacing-lg);
    }
}

/* Lenis Recommended Root CSS */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}