/* ROOT VARIABLES - QUIET LUXURY */
:root {
    --color-anthracite: #2C2C2C;
    --color-anthracite-light: #3a3a3a;
    --color-copper: #B87333;
    --color-copper-light: #d6955a;
    --color-cloud-white: #F5F5F5;
    --color-pure-white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-cloud-white);
    color: var(--color-anthracite);
    font-family: var(--font-body);
    line-height: 1.6;
    font-size: 18px;
    font-weight: 400;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-anthracite);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-copper);
}

p {
    margin-bottom: 1.25rem;
    color: var(--color-anthracite);
}

a {
    color: var(--color-copper);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-anthracite);
}

/* LAYOUT & BENTO GRID */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-section {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(44,44,44, 0.05);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.bento-item {
    background: var(--color-pure-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
}

.bento-item:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    transform: translateY(-5px);
}

/* HEADER */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 245, 245, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 115, 51, 0.15);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 36px;
    height: 36px;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--color-anthracite);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-anthracite-light);
}

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

/* HERO SECTION */
.hero {
    margin-top: 100px;
    padding: 3rem 0 5rem 0;
    position: relative;
    border-bottom: none;
}

.hero-image-wrapper {
    width: 100%;
    height: 65vh;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 3.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: brightness(0.92) contrast(1.1);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--color-anthracite-light);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* EDITORIAL & TL;DR (ANSWER-FIRST) */
.editorial-block {
    grid-column: span 7;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tldr-box {
    background: rgba(184, 115, 51, 0.04);
    border-left: 4px solid var(--color-copper);
    padding: 2.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.tldr-box h3 {
    color: var(--color-copper);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tldr-box ul {
    list-style-type: none;
}

.tldr-box ul li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.05rem;
}

.tldr-box ul li:last-child {
    margin-bottom: 0;
}

.tldr-box ul li::before {
    content: "•";
    color: var(--color-copper);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1.2;
    top: -2px;
}

.storytelling {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-anthracite);
}

.storytelling p {
    margin-bottom: 1.25rem; /* Shorter paragraphs for chunkability */
}

/* PRODUCT CARD & EXPERT BOX */
.product-card {
    grid-column: span 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-image-half {
    grid-column: span 12;
    padding: 0;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
}

.bento-image-right .product-image-wrapper {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bento-image-right img {
    width: 100%;
    height: auto;
    display: block;
}

.editor-choice {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-cloud-white);
    background: var(--color-anthracite);
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.expert-box {
    border: 1px solid rgba(184, 115, 51, 0.3);
    background: rgba(255,255,255,0.5);
    padding: 1.5rem 1.5rem 1.25rem 1.5rem;
    margin: 2rem 0;
    border-radius: 6px;
    position: relative;
}

.expert-label {
    position: absolute;
    top: -11px;
    left: 1.5rem;
    background: var(--color-pure-white);
    padding: 0 0.75rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--color-copper);
}

.expert-stats {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-anthracite);
    line-height: 1.7;
}

.expert-stats strong {
    font-weight: 600;
    color: var(--color-anthracite);
}

.sizing-guide-box {
    background: rgba(44,44,44, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 3px solid var(--color-anthracite);
}

.sizing-guide-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.product-desc {
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.affiliate-btn {
    display: inline-block;
    background: var(--color-copper);
    color: var(--color-pure-white);
    padding: 1.1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border: 1px solid var(--color-copper);
    text-align: center;
}

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

/* FOOTER */
.site-footer {
    background: var(--color-anthracite);
    color: var(--color-cloud-white);
    padding: 5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(184, 115, 51, 0.3);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.legal-links {
    margin: 2.5rem 0;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
}

.legal-links a {
    color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.disclaimer {
    font-size: 0.85rem;
    color: rgba(245, 245, 245, 0.4);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay staggered animations for hero */
.headline-primary { transition-delay: 0.1s; }
.subtitle { transition-delay: 0.3s; }

/* ARTICLE PAGE LAYOUT */
.article-body {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 120px;
}

.breadcrumbs {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
    color: var(--color-anthracite-light);
    opacity: 0.6;
}

.breadcrumbs a {
    color: var(--color-anthracite-light);
}

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

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.article-meta span {
    font-size: 0.85rem;
    color: var(--color-anthracite-light);
    opacity: 0.7;
}

.article-category {
    background: var(--color-copper);
    color: var(--color-pure-white);
    padding: 0.2rem 0.7rem;
    border-radius: 3px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.article-h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.article-section {
    margin-bottom: 4rem;
}

.article-section h2 {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.article-section p {
    max-width: 100%;
}

.article-image {
    width: 100%;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* FAQ ACCORDION */
.faq-section {
    margin-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 3rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 1.5rem 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-anthracite);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--color-copper);
    transition: var(--transition-fast);
}

.faq-item.open .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-top: 1rem;
    font-size: 1rem;
}

/* SIZING GUIDE INTERACTIVE */
.sizing-module {
    background: rgba(184, 115, 51, 0.04);
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 2.5rem 0;
}

.sizing-module h4 {
    margin-bottom: 1.5rem;
    color: var(--color-copper);
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.sizing-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sizing-option {
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(44,44,44,0.15);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-family: var(--font-body);
    background: var(--color-pure-white);
    transition: var(--transition-fast);
}

.sizing-option:hover,
.sizing-option.active {
    border-color: var(--color-copper);
    color: var(--color-copper);
    background: rgba(184, 115, 51, 0.05);
}

.sizing-result {
    font-size: 0.95rem;
    color: var(--color-anthracite);
    padding: 1rem;
    background: var(--color-pure-white);
    border-radius: 4px;
    display: none;
}

.sizing-result.visible {
    display: block;
}

/* RELATED ARTICLES */
.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-card {
    background: var(--color-pure-white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}

.related-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transform: translateY(-3px);
}

.related-card h4 {
    font-size: 1.1rem;
    color: var(--color-anthracite);
    margin-bottom: 0.5rem;
}

.related-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* MEDIA QUERIES */
@media (max-width: 1024px) {
    .editorial-block {
        grid-column: span 12;
    }
    .product-card {
        grid-column: span 12;
    }
}

@media (max-width: 768px) {
    /* --- HEADER: two-row, logo collapses on scroll --- */
    .site-header {
        padding: 0;
        flex-direction: column;
        gap: 0;
        position: sticky;
        position: -webkit-sticky;
        top: 0;
    }

    .logo-container {
        width: 100%;
        justify-content: center;
        padding: 0.45rem 1rem;
        max-height: 44px;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        opacity: 1;
    }

    .site-header.scrolled .logo-container {
        max-height: 0;
        opacity: 0;
        padding: 0 1rem;
    }

    .logo {
        width: 24px;
        height: 24px;
    }

    .logo-text {
        font-size: 0.85rem;
        letter-spacing: 1.5px;
    }

    .main-nav {
        display: flex;
        width: 100%;
        justify-content: space-evenly;
        padding: 0.4rem 0.5rem;
        gap: 0;
        border-top: 1px solid rgba(184, 115, 51, 0.1);
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav a {
        font-size: 0.6rem;
        letter-spacing: 0.5px;
        white-space: nowrap;
        padding: 0.2rem 0.35rem;
    }

    /* --- LAYOUT: tighter padding --- */
    main {
        padding: 0 0.75rem;
    }

    .content-section {
        padding: 3rem 0;
    }

    .bento-grid {
        gap: 1rem;
    }

    .bento-item {
        padding: 1.25rem;
    }

    .bento-image-half {
        height: 250px;
        border-radius: 8px;
    }

    /* --- HERO --- */
    .hero {
        margin-top: 60px;
        padding: 1.5rem 0 3rem 0;
    }

    .hero-image-wrapper {
        height: 40vh;
        border-radius: 8px;
        margin-bottom: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    /* --- TL;DR & EDITORIAL --- */
    .tldr-box {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }

    .tldr-box ul li {
        font-size: 0.95rem;
        padding-left: 1.25rem;
    }

    .editorial-block {
        grid-column: span 12;
    }

    .product-card {
        grid-column: span 12;
    }

    .storytelling {
        font-size: 1rem;
        line-height: 1.75;
    }

    /* --- PRODUCT & EXPERT --- */
    .expert-box {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }

    .product-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .affiliate-btn {
        display: block;
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
    }

    /* --- ARTICLE PAGES --- */
    .article-body {
        padding: 80px 0.75rem 2rem 0.75rem;
    }

    .article-h1 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .article-meta {
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .article-section {
        margin-bottom: 2.5rem;
    }

    .article-section h2 {
        font-size: 1.3rem;
    }

    .sizing-module {
        padding: 1.5rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .related-card {
        padding: 1.25rem;
    }

    /* --- FOOTER --- */
    .site-footer {
        padding: 3rem 1rem;
    }

    .legal-links {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
        justify-content: center;
    }

    .legal-links a {
        font-size: 0.8rem;
    }

    /* --- FAQ --- */
    .faq-question {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* COOKIE CONSENT BANNER */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--color-anthracite);
    color: var(--color-cloud-white);
    padding: 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    border-top: 1px solid rgba(184, 115, 51, 0.3);
}

#cookie-consent.cc-visible {
    transform: translateY(0);
    opacity: 1;
}

#cookie-consent.cc-hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cc-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(245, 245, 245, 0.85);
    margin-bottom: 0;
}

.cc-text a {
    color: var(--color-copper);
    text-decoration: underline;
}

.cc-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cc-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cc-btn-accept {
    background: var(--color-copper);
    color: var(--color-pure-white);
}

.cc-btn-accept:hover {
    background: var(--color-copper-light);
}

.cc-btn-reject {
    background: transparent;
    color: rgba(245, 245, 245, 0.7);
    border: 1px solid rgba(245, 245, 245, 0.2);
}

.cc-btn-reject:hover {
    border-color: rgba(245, 245, 245, 0.5);
    color: var(--color-cloud-white);
}

/* AFFILIATE DISCLOSURE */
.affiliate-disclosure {
    font-size: 0.8rem;
    color: var(--color-anthracite-light);
    opacity: 0.6;
    padding: 0.75rem 1rem;
    background: rgba(44, 44, 44, 0.03);
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 2px solid rgba(184, 115, 51, 0.3);
    line-height: 1.5;
}

.affiliate-disclosure a {
    color: var(--color-anthracite-light);
    text-decoration: underline;
}

/* When cookies rejected, dim affiliate links */
.cookies-rejected .affiliate-btn {
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 768px) {
    .cc-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1.5rem;
    }
    .cc-actions {
        width: 100%;
        justify-content: center;
    }
}
