/* --- LUXURY EDITORIAL VARIABLES --- */
:root {
    --bg-main: #0b0c10;
    --bg-matte: #12131a;
    --card-bg: #1f2833;
    --gold: #d4af37;
    --gold-dim: #c5a059;
    --gold-glow: rgba(212, 175, 55, 0.15);
    --text-white: #f5f5f7;
    --text-gray: #c4c7ce;
    --border-light: rgba(255, 255, 255, 0.08);
    --border-gold: rgba(212, 175, 55, 0.3);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

/* --- RESETS --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }
.text-center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }
.max-width-700 { max-width: 700px; }
.max-width-800 { max-width: 800px; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }

/* --- TYPOGRAPHY --- */
h1 { font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; line-height: 1.15; color: #fff; margin-bottom: 24px; }
h2 { font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; color: #fff; margin-bottom: 20px; position: relative; }
h3 { font-family: var(--font-body); font-size: 1.3rem; font-weight: 600; color: #fff; margin-bottom: 12px; }
p { color: var(--text-gray); font-weight: 300; margin-bottom: 16px; }
.lead-text { font-size: 1.15rem; line-height: 1.8; color: #fff; font-weight: 400; }
.figcaption-text { font-size: 0.85rem; color: var(--text-gray); text-align: center; margin-top: 12px; font-style: italic; }
.gold-subtitle { color: var(--gold) !important; margin-top: 24px; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 1px; }

/* --- LAYOUT GRIDS & SECTIONS --- */
.section-padding { padding: 100px 0; }
.section-padding-top { padding-top: 80px; }
.bg-matte { background-color: var(--bg-matte); }
.grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.align-center { align-items: center; }

.section-title-wrap { margin-bottom: 48px; }
.section-intro { font-size: 1.1rem; color: var(--text-gray); line-height: 1.6; }

/* --- LUXURY HEADER --- */
.luxury-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 24px 0; border-bottom: 1px solid var(--border-light);
    background: rgba(11, 12, 16, 0.85);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}
.luxury-header.scrolled { padding: 14px 0; background: rgba(11, 12, 16, 0.96); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.brand-logo img { height: 32px; }

.editorial-nav .nav-link {
    color: var(--text-gray); font-size: 0.9rem; font-weight: 400; margin-left: 24px;
    transition: var(--transition); position: relative; padding-bottom: 4px;
}
.editorial-nav .nav-link:hover, .editorial-nav .nav-link.active { color: var(--gold); }
.editorial-nav .nav-link.active::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 1px; background: var(--gold);
}

.cta-minimal {
    border: 1px solid var(--gold); color: var(--gold); padding: 8px 20px;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    transition: var(--transition); font-weight: 500;
}
.cta-minimal:hover { background: var(--gold); color: #000; box-shadow: 0 0 15px var(--gold-glow); }

/* --- EDITORIAL HERO --- */
.editorial-hero { padding: 180px 0 100px; border-bottom: 1px solid var(--border-light); }
.editorial-badge { display: inline-block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 16px; font-weight: 500; }
.frame-gold { border: 1px solid var(--border-gold); padding: 12px; background: var(--bg-matte); border-radius: 4px; }
.frame-gold img { border-radius: 2px; width: 100%; }

/* --- CARDS & LISTS --- */
.luxury-card { background: var(--card-bg); padding: 40px; border-radius: 4px; border: 1px solid var(--border-light); }
.luxury-card.card-gold-border { border-color: var(--border-gold); background: var(--bg-matte); }
.luxury-card.bordered-gold { border-left: 3px solid var(--gold); background: var(--bg-main); }
.luxury-card.no-bg { background: transparent; }
.luxury-card.border-gold { border: 1px solid var(--border-gold); }
.luxury-card.border-gray { border: 1px solid var(--border-light); }
.editorial-grid-four { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 32px; }
.font-spec h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 16px; border-bottom: 1px solid var(--border-light); padding-bottom: 8px; }

/* Lists layout */
.luxury-ordered-list { list-style: none; counter-reset: luxury-counter; margin-top: 20px; }
.luxury-ordered-list li { position: relative; padding-left: 36px; margin-bottom: 14px; color: var(--text-gray); font-weight: 300; }
.luxury-ordered-list li::before {
    content: counter(luxury-counter, decimal-leading-zero); counter-increment: luxury-counter;
    position: absolute; left: 0; top: 2px; color: var(--gold); font-family: var(--font-body); font-weight: 600; font-size: 0.85rem;
}

.luxury-bullet-list { list-style: none; margin-top: 16px; }
.luxury-bullet-list li { position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--text-gray); font-weight: 300; }
.luxury-bullet-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

.check-marks li::before { content: '✓'; color: var(--gold); font-weight: bold; }
.cross-marks li::before { content: '✕'; color: rgba(255,255,255,0.4); font-weight: bold; }

.editorial-note { background: rgba(214,175,55,0.04); border-left: 2px solid var(--gold); padding: 20px; margin-top: 24px; }
.editorial-note p { margin-bottom: 0; font-size: 0.95rem; color: var(--text-white); font-style: italic; }
.editorial-sub-note { font-size: 0.9rem; color: var(--text-gray); margin-top: 32px; }

/* --- TABLES --- */
.table-holder { overflow-x: auto; margin-top: 32px; border: 1px solid var(--border-light); border-radius: 4px; }
.editorial-table { width: 100%; border-collapse: collapse; text-align: left; background: var(--bg-matte); }
.editorial-table th, .editorial-table td { padding: 18px 24px; border-bottom: 1px solid var(--border-light); font-size: 0.95rem; }
.editorial-table th { background: #161822; font-family: var(--font-body); font-weight: 500; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; color: var(--gold); }
.editorial-table td { color: var(--text-gray); font-weight: 300; }
.editorial-table tr:last-child td { border-bottom: none; }
.table-striped tr:nth-child(even) { background: rgba(255,255,255,0.01); }

.gold-highlight { color: var(--gold); font-weight: 400; }
.score-badge { display: inline-block; padding: 2px 10px; background: var(--border-gold); color: var(--gold); border-radius: 2px; font-weight: 600; }

/* --- PROS & CONS BLOCKS --- */
.block-pros { border-top: 3px solid var(--gold); }
.block-cons { border-top: 3px solid rgba(255, 255, 255, 0.2); }

/* --- RESPONSIBILITY & BANNER --- */
.responsibility-banner { background: var(--bg-matte); border: 1px dashed var(--border-gold); }
.final-verdict-box { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--border-light); }

/* --- FAQ ACCORDION --- */
.luxury-accordion { max-width: 850px; margin: 40px auto 0; }
.accordion-item { border-bottom: 1px solid var(--border-light); }
.accordion-trigger {
    width: 100%; background: none; border: none; padding: 24px 0;
    text-align: left; color: #fff; font-family: var(--font-body);
    font-size: 1.1rem; font-weight: 400; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
}
.accordion-trigger::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: var(--transition); }
.accordion-item.active .accordion-trigger::after { content: '−'; transform: rotate(180deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-panel p { padding-bottom: 24px; margin-bottom: 0; font-size: 0.95rem; }

/* --- FOOTER --- */
.luxury-footer { background: #07080a; padding: 60px 0 30px; border-top: 1px solid var(--border-light); margin-top: 60px; }
.footer-grid { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.footer-logo { height: 28px; margin-bottom: 12px; }
.small-editorial-text { font-size: 0.8rem; color: var(--text-gray); }
.footer-bottom-text p { font-size: 0.8rem; color: rgba(255,255,255,0.3); margin-bottom: 0; }

/* --- RESPONSIVE ADAPTABILITY --- */
@media (max-width: 992px) {
    .grid-two { grid-template-columns: 1fr; gap: 40px; }
    .editorial-hero { padding-top: 140px; }
    .hero-text-block { order: 2; }
    .hero-image-block { order: 1; max-width: 600px; margin: 0 auto; }
    .editorial-nav { display: none; } /* Скрытие навигации для мобильного минимализма */
}
@media (max-width: 600px) {
    .section-padding { padding: 60px 0; }
    .luxury-card { padding: 24px; }
    .editorial-table th, .editorial-table td { padding: 14px 16px; }
}