:root {
    --bg-color: #F9F7F2; /* Warm off-white/cream */
    --text-color: #1A1A1A; /* Deep charcoal */
    --accent-color: #C19A5B; /* Subtle gold/copper */
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.02em;
}

p {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #4A4A4A;
}

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

/* Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
    color: white; /* Contrast against dark/light sections */
}

.logo {
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.hamburger {
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--text-color);
    color: var(--bg-color);
    z-index: 200;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-nav.active {
    right: 0;
}

.nav-close {
    position: absolute;
    top: 2rem;
    right: 5%;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-links {
    list-style: none;
    text-align: center;
}

.nav-links li {
    margin-bottom: 2rem;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-color);
}

/* Sections */
section {
    padding: 15vh 0;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    padding-bottom: 1rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    background-color: var(--text-color); /* Temporary dark bg for hero */
    color: var(--bg-color);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 8rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    color: rgba(249, 247, 242, 0.7);
    text-transform: uppercase;
}

/* Marquee Banner */
.marquee-container {
    width: 100vw;
    overflow: hidden;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 3rem 0;
    border-top: 1px solid rgba(249, 247, 242, 0.1);
    position: relative;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: marquee 50s linear infinite;
    gap: 3rem;
    padding-right: 3rem;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.marquee-item:hover {
    transform: scale(1.03);
}

.marquee-item:hover .marquee-text {
    color: var(--accent-color);
}

.marquee-img {
    width: 220px;
    aspect-ratio: 4/5;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background-color: #333;
}

.marquee-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.marquee-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    color: var(--bg-color); /* Kept background color for high contrast against dark banner if applicable */
}

.marquee-tagline {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: rgba(249, 247, 242, 0.8); /* Off-white for dark background */
    text-align: center;
    max-width: 240px;
    margin-top: 0.8rem;
    line-height: 1.4;
    white-space: normal;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Our Story */
.story-content {
    max-width: 800px;
}

.story-text {
    font-size: 1.8rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 2rem;
}

/* Editorial Layout (Replacing Grid) */
.editorial-list {
    display: flex;
    flex-direction: column;
    gap: 15vh; /* Large spacing between concepts */
    padding-bottom: 10vh;
}

.editorial-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.editorial-block.reverse {
    direction: rtl; /* Reverses the visual order */
}

.editorial-block.reverse > * {
    direction: ltr; /* Keeps text reading left-to-right */
}

.editorial-image-main {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: #EBE8DE;
}

.editorial-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.editorial-block:hover .editorial-image-main img {
    transform: scale(1.05);
}

.editorial-content {
    padding: 2rem 0;
    position: relative;
    z-index: 20;
}

.editorial-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.editorial-vibe {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.editorial-text {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.editorial-image-sub {
    position: absolute;
    width: 35%;
    aspect-ratio: 1/1;
    overflow: hidden;
    bottom: -15%;
    right: 40%;
    border: 15px solid var(--bg-color); /* Creates the overlapping frame effect */
    z-index: 10;
}

.editorial-block.reverse .editorial-image-sub {
    right: auto;
    left: 40%;
}

.editorial-image-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Loyalty & Experiences */
.loyalty-experiences {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.loyalty-experiences .section-title {
    border-bottom: 1px solid rgba(249, 247, 242, 0.1);
}

.loyalty-experiences .story-text {
    color: rgba(249, 247, 242, 0.8);
}

.loyalty-experiences .btn {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.loyalty-experiences .btn:hover {
    background-color: var(--bg-color);
    color: var(--text-color);
    border-color: var(--bg-color);
}

.loyalty-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--text-color);
    color: var(--bg-color);
    border: 1px solid var(--text-color);
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    border-color: var(--accent-color);
}

.experience-list {
    list-style: none;
}

.experience-list li {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(249, 247, 242, 0.1);
    padding-bottom: 1.5rem;
}

.experience-list h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.experience-list p {
    color: rgba(249, 247, 242, 0.8);
    font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
    .editorial-list {
        gap: 5rem; /* Tighter gap between concepts */
    }

    .editorial-block, .editorial-block.reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem; /* Tighter gap between image and text */
        direction: ltr;
    }
    
    /* Recreate the beautiful overlapping double-image setup for mobile */
    .editorial-image-main {
        width: 85%;
    }
    
    .editorial-block.reverse .editorial-image-main {
        margin-left: auto;
    }

    .editorial-image-sub {
        display: block; 
        position: absolute;
        width: 45%;
        top: 10%; /* Attaches near the top to overlap the main image */
        right: 0;
        bottom: auto; /* Override desktop positioning */
        border-width: 8px; /* Thinner border for small screens */
    }
    
    .editorial-block.reverse .editorial-image-sub {
        right: auto;
        left: 0;
    }
    
    /* Make writing less blocky and more mobile-friendly */
    .editorial-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .editorial-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .editorial-vibe {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .story-text {
        font-size: 1.2rem;
    }
    
    .loyalty-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem; /* Tighter layout */
    }
}

/* Footer */
.footer {
    padding: 4rem 0;
    background-color: var(--text-color);
    color: var(--bg-color);
    text-align: center;
}

.footer p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: rgba(249, 247, 242, 0.5);
}
