:root {
    /* Refined Color Palette */
    --clr-pink: #cf5c78;
    --clr-dark: #2a2020; /* Darkened slightly for better contrast */
    --clr-burgundy: #973443;
    --clr-soft-pink: #edd0dd;
    --clr-cream: #f4f1ee; /* Softened cream */
    
    --text-main: var(--clr-dark);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--clr-cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Very subtle noise texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 100;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* Typography Utilities */
.serif {
    font-family: 'Cormorant Garamond', serif;
}

.sans {
    font-family: 'Outfit', sans-serif;
}

/* Nav */
.editorial-nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: var(--clr-burgundy);
    position: relative;
    z-index: 10;
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4rem 8rem;
    position: relative;
    z-index: 5;
}

/* Header */
.editorial-header {
    margin-top: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.pink-aura {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(237, 208, 221, 0.6) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -2;
    pointer-events: none;
}

.header-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--clr-pink);
    margin-bottom: 1rem;
}

.header-intro em {
    font-style: italic;
    color: var(--clr-burgundy);
}

.editorial-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--clr-dark);
    margin-bottom: 2rem;
    max-width: 800px;
}

.editorial-header h1 em {
    font-style: italic;
    color: var(--clr-burgundy);
}

.header-details {
    max-width: 500px;
    margin-left: auto; /* Push to right for asymmetrical editorial feel */
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--clr-dark);
    border-left: 1px solid var(--clr-burgundy);
    padding-left: 2rem;
}

.abstract-accent {
    position: absolute;
    top: -50px;
    right: 10%;
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--clr-soft-pink), transparent);
    border-radius: 200px 200px 0 0;
    z-index: -1;
    opacity: 0.6;
    filter: blur(40px);
}

/* Editorial List (Links) */
.editorial-list {
    display: flex;
    flex-direction: column;
}

.list-item {
    display: flex;
    align-items: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(42, 32, 32, 0.1);
    text-decoration: none;
    color: var(--clr-dark);
    position: relative;
    overflow: hidden;
    transition: padding-left 0.4s ease, border-color 0.4s ease;
}

.list-item:last-child {
    border-bottom: 1px solid rgba(42, 32, 32, 0.1);
}

.list-item:hover {
    padding-left: 2rem;
    border-color: var(--clr-burgundy);
    z-index: 2;
}

.item-number {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    width: 60px; /* Reduced width */
    color: var(--clr-pink);
    position: relative;
    z-index: 2;
}

.brand-logo {
    position: relative;
    z-index: 2;
    height: 120px; /* Increased size to make them much larger */
    width: auto;
    max-width: 400px;
    object-fit: contain;
    object-position: left;
    transition: transform 0.4s ease;
}

.list-item:hover .brand-logo {
    transform: translateX(10px);
    /* Removed the weird filters so they stay in full color */
}

.item-category {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    color: var(--clr-dark);
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    margin-left: auto; /* Pushes the descriptor to the far right */
    text-align: right;
}

.list-item:hover .item-category,
.list-item:hover .item-number {
    color: var(--clr-cream);
}

/* Magical Hover Reveal */
.hover-reveal {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: translate(-150px, -150px) scale(0.5);
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important; /* overrides JS inline transform for scaling */
    z-index: 1;
    mix-blend-mode: multiply;
}

.list-item:hover .hover-reveal {
    opacity: 1;
    transform: translate(-150px, -150px) scale(3) !important;
}

/* Footer Marquee */
.editorial-footer {
    margin-top: 10rem;
    border-top: 1px solid var(--clr-burgundy);
    padding: 2rem 0;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee-link {
    text-decoration: none;
    display: block;
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 15s linear infinite;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    color: var(--clr-burgundy);
    white-space: nowrap;
    transition: opacity 0.3s ease;
}

.marquee-link:hover .marquee {
    opacity: 0.7;
}

.marquee span {
    padding-right: 2rem;
}

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

@media (max-width: 768px) {
    .editorial-nav, .editorial-container { padding: 2rem; }
    .header-details { margin-left: 0; margin-top: 2rem; padding-left: 1rem; }
    .item-title { font-size: 2.5rem; }
    .item-category { display: none; }
    .list-item:hover { padding-left: 1rem; }
}
