:root {
    --bg-primary: #fdfdfc;
    --bg-secondary: #000000;
    --text-primary: #111111;
    --text-secondary: #555555;
    --border-color: #d8d8d8;
    
    /* Magazine Accents */
    --accent-gold: #c5a059;
    --accent-red: #8b0000;
    
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
body { background-color: var(--bg-primary); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Magazine Navbar */
.nav { padding: 30px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--text-primary); position: sticky; top: 0; background: rgba(253, 253, 252, 0.95); z-index: 1000; }
.nav-brand { font-size: 32px; font-weight: 900; font-family: "Didot", "Times New Roman", serif; text-transform: uppercase; letter-spacing: 4px; }
.nav-links { display: flex; gap: 40px; }
.nav-links a { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--text-primary); position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 1px; background: var(--text-primary); transform: scaleX(0); transition: 0.3s; transform-origin: right; }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-btn { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; border: 1px solid var(--text-primary); padding: 10px 24px; transition: 0.3s; }
.nav-btn:hover { background: var(--text-primary); color: var(--bg-primary); }

/* Editorial Hero */
.hero { display: flex; align-items: center; min-height: 90vh; padding: 0 5%; gap: 60px; max-width: 1400px; margin: 0 auto; }
.hero-content { flex: 1; padding-right: 40px; }
.hero-tag { font-family: "Didot", "Times New Roman", serif; font-size: 14px; font-style: italic; color: var(--text-secondary); margin-bottom: 20px; display: block; }
.hero h1 { font-family: "Didot", "Times New Roman", serif; font-size: 72px; font-weight: 400; line-height: 1; margin-bottom: 30px; letter-spacing: -1px; text-transform: uppercase; }
.hero p { font-size: 16px; color: var(--text-secondary); margin-bottom: 50px; max-width: 500px; font-weight: 300; line-height: 1.8; }
.btn-group { display: flex; gap: 20px; }
.btn { padding: 18px 40px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: 0.3s; border: 1px solid var(--text-primary); }
.btn-primary { background: var(--text-primary); color: var(--bg-primary); }
.btn-primary:hover { background: transparent; color: var(--text-primary); }
.btn-secondary { background: transparent; color: var(--text-primary); }
.btn-secondary:hover { background: var(--text-primary); color: var(--bg-primary); }

.hero-img-wrap { flex: 1; position: relative; }
.hero-img-wrap::after { content: ''; position: absolute; top: 20px; left: 20px; width: 100%; height: 100%; border: 1px solid var(--accent-gold); z-index: -1; }
.hero-img { width: 100%; display: block; filter: grayscale(20%) contrast(1.1); }

/* Editorial Stats */
.stats { display: flex; justify-content: space-between; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 60px 5%; margin-bottom: 100px; max-width: 1400px; margin-inline: auto; }
.stat-box { text-align: center; flex: 1; border-right: 1px solid var(--border-color); }
.stat-box:last-child { border-right: none; }
.stat-box h3 { font-family: "Didot", "Times New Roman", serif; font-size: 48px; font-weight: 400; margin-bottom: 10px; color: var(--text-primary); }
.stat-box p { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-secondary); }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { font-family: "Didot", "Times New Roman", serif; font-size: 42px; font-weight: 400; text-align: center; margin-bottom: 60px; text-transform: uppercase; letter-spacing: 2px; }

/* About - Article Style */
.about-panel { margin-bottom: 120px; display: flex; gap: 60px; border-top: 4px solid var(--text-primary); padding-top: 60px; }
.about-panel p { font-size: 16px; line-height: 2; color: var(--text-secondary); font-weight: 300; text-align: justify; flex: 1; }
.about-panel p:first-child::first-letter { font-family: "Didot", serif; font-size: 60px; float: left; margin-right: 15px; line-height: 0.8; color: var(--text-primary); }

/* Features - Magazine Grid */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 120px; }
.feat-card { border-top: 2px solid var(--text-primary); padding-top: 30px; }
.feat-icon { font-size: 24px; margin-bottom: 20px; color: var(--accent-gold); font-family: "Didot", serif; font-style: italic; }
.feat-card h3 { font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
.feat-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; font-weight: 300; }

/* Visual Break */
.showcase { margin-bottom: 120px; position: relative; }
.showcase::before { content: 'THE EDITORIAL'; position: absolute; top: -15px; left: 30px; background: var(--bg-primary); padding: 0 20px; font-family: "Didot", serif; font-size: 18px; font-style: italic; color: var(--accent-gold); z-index: 1; }
.showcase img { width: 100%; display: block; border: 1px solid var(--border-color); padding: 10px; filter: grayscale(10%); }

/* Guide - Numbered List */
.guide-list { max-width: 800px; margin: 0 auto 120px; border-left: 1px solid var(--border-color); padding-left: 40px; }
.guide-item { position: relative; margin-bottom: 50px; }
.guide-item:last-child { margin-bottom: 0; }
.guide-num { position: absolute; left: -100px; top: 0; font-family: "Didot", serif; font-size: 48px; color: var(--border-color); line-height: 0.8; }
.guide-info h3 { font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.guide-info p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; font-weight: 300; }

/* FAQ */
.faq-wrap { max-width: 800px; margin: 0 auto 120px; }
.faq-item { border-bottom: 1px solid var(--border-color); padding: 30px 0; }
.faq-item:first-child { border-top: 1px solid var(--text-primary); }
.faq-q { font-size: 18px; font-weight: 600; margin-bottom: 15px; font-family: "Didot", serif; letter-spacing: 1px; }
.faq-a { font-size: 14px; color: var(--text-secondary); line-height: 1.8; font-weight: 300; }

/* Footer */
.footer { background: var(--bg-secondary); color: #fff; padding: 80px 5%; text-align: center; }
.footer-brand { font-family: "Didot", serif; font-size: 32px; text-transform: uppercase; letter-spacing: 6px; margin-bottom: 40px; }
.footer-links { display: flex; justify-content: center; gap: 40px; margin-bottom: 40px; }
.footer-links a { color: #aaa; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: #666; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 992px) {
    .hero { flex-direction: column; text-align: center; padding-top: 60px; }
    .hero-content { padding-right: 0; }
    .hero h1 { font-size: 52px; }
    .btn-group { justify-content: center; }
    .hero-img-wrap::after { display: none; }
    .stats { flex-wrap: wrap; gap: 40px; }
    .stat-box { flex: 1 1 40%; border: none; }
    .about-panel { flex-direction: column; gap: 30px; }
    .feat-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}