/* ==========================================
   Elite Fashion - Global Styles
   ========================================== */

/* CSS Variables */
:root {
    --primary-color: #111111;
    --secondary-color: #2f3437;
    --accent-color: #8b1e3f;
    --accent-muted: #557c73;
    --text-color: #181818;
    --text-light: #626262;
    --bg-white: #ffffff;
    --bg-light: #f7f7f4;
    --bg-panel: #fbfaf7;
    --border-color: #dedbd4;
    --hover-color: #f0efea;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition: all 0.3s ease;
    --transition-smooth: all 0.32s cubic-bezier(0.2, 0.7, 0.2, 1);
    --shadow-sm: 0 10px 28px rgba(20, 20, 20, 0.06);
    --shadow-md: 0 18px 48px rgba(20, 20, 20, 0.1);
    --shadow-lg: 0 26px 70px rgba(20, 20, 20, 0.16);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

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

::selection {
    background: #111111;
    color: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   Navigation
   ========================================== */
/* ----- Navigation: mobile-first base ----- */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 0.85rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo h1 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.nav-brand .logo img,
.logo img {
    display: block;
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-brand,
.mobile-menu-toggle {
    position: relative;
    z-index: 1001;
}

/* Hamburger: visible and touch-friendly on small screens */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}
.mobile-menu-toggle:hover {
    background-color: var(--hover-color);
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-color);
    transition: transform 0.25s ease, opacity 0.2s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
}

/* Mobile nav: full-screen overlay list */
.nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    max-width: 100%;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 0 2rem;
    gap: 0;
    overflow-y: auto;
    transition: left 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
    border-right: 1px solid var(--border-color);
}
.nav-menu.active {
    left: 0;
    box-shadow: var(--shadow-lg);
}

.nav-menu li {
    flex-shrink: 0;
    border-bottom: 1px solid var(--border-color);
}
.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--text-color);
    letter-spacing: 0;
    position: relative;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
}
.nav-menu a::after {
    display: none;
}
.nav-menu a:hover,
.nav-menu a:focus {
    background-color: var(--hover-color);
}
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.04);
}

.nav-menu a.lang-switch {
    font-size: 1rem;
    border: 1px solid var(--primary-color);
    margin: 0.5rem 1.5rem;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    justify-content: center;
    min-height: 48px;
}
.nav-menu a.lang-switch::after {
    display: none;
}

/* Desktop: horizontal nav (min-width 969px) */
@media (min-width: 969px) {
    .navbar {
        padding: 1.05rem 0;
    }
    .nav-brand .logo img,
    .logo img {
        height: 48px;
    }
    .mobile-menu-toggle {
        display: none;
    }
    .nav-menu {
        position: static;
        width: auto;
        max-width: none;
        height: auto;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        gap: clamp(0.58rem, 0.95vw, 1.2rem);
        overflow: visible;
        background: none;
        border: none;
        box-shadow: none;
    }
    .nav-menu li {
        border-bottom: none;
    }
    .nav-menu a {
        display: inline-flex;
        min-height: auto;
        padding: 0.5rem 0;
        font-size: 0.82rem;
        letter-spacing: 0;
    }
    .nav-menu a::after {
        display: block;
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--accent-color);
        transition: width 0.3s ease;
    }
    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }
    .nav-menu a:hover,
    .nav-menu a:focus {
        background-color: transparent;
    }
    .nav-menu a.active {
        background: none;
    }
    .nav-menu a.lang-switch {
        font-size: 0.85rem;
        padding: 0.35em 0.7em;
        margin: 0;
        min-height: auto;
        border-color: var(--border-color);
    }
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: stretch;
    text-align: left;
    background: #111111;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 42%, rgba(0, 0, 0, 0.12) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0) 45%);
    z-index: 1;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 58% center;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.45fr);
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: end;
    width: 100%;
    padding-top: clamp(5rem, 10vh, 8rem);
    padding-bottom: clamp(3rem, 8vh, 5.5rem);
}

.hero-content {
    max-width: 900px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 1.35rem;
    line-height: 0.9;
    text-wrap: balance;
}

.hero-description {
    max-width: 680px;
    font-size: 1.22rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.9rem 1.35rem;
    background-color: #ffffff;
    color: #111111;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid #ffffff;
    border-radius: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: #ffffff;
}

.cta-button-secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.42);
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #ffffff;
}

.hero-edit {
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    color: #ffffff;
    padding-top: 1.3rem;
}

.hero-edit-label {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.hero-edit strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 1rem;
}

.hero-edit p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.98rem;
    line-height: 1.7;
}

.hero-stat-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.hero-stat-strip span {
    display: grid;
    gap: 0.1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.hero-stat-strip strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 1.15rem;
    line-height: 1;
    margin: 0;
}

/* ==========================================
   Topics Section
   ========================================== */
.topics-section {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background:
        linear-gradient(180deg, #ffffff 0%, var(--bg-panel) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-kicker {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.85rem;
    letter-spacing: 0;
    line-height: 1;
    text-wrap: balance;
}

.section-subtitle {
    max-width: 640px;
    margin: 0 auto;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.topic-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.topic-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(17, 17, 17, 0.22);
}

.topic-link {
    display: block;
}

.topic-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    height: auto;
}

.topic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.topic-card:hover .topic-image img {
    transform: scale(1.1);
}

.topic-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.topic-number {
    display: inline-block;
    width: 44px;
    height: 44px;
    background-color: var(--bg-white);
    color: var(--primary-color);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.topic-content {
    padding: clamp(1.35rem, 2vw, 1.8rem);
}

.topic-title {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.2;
    text-wrap: balance;
}

.topic-description {
    font-size: 0.96rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.read-more {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 0;
}

/* ==========================================
   About Section
   ========================================== */
.about-section {
    padding: clamp(5rem, 9vw, 8rem) 0;
    background-color: #111111;
    color: #ffffff;
}

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

.about-title {
    font-family: var(--font-serif);
    font-size: 3.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.74);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.68);
    letter-spacing: 1px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background-color: #111111;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4rem 0 2rem;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-brand .footer-logo,
.footer-brand img.footer-logo,
.footer-column .footer-logo {
    display: block;
    height: 42px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
    max-width: 14em;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.9rem;
}

/* ==========================================
   Page-Specific Styles
   ========================================== */
.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 5rem);
    text-align: left;
    background:
        linear-gradient(120deg, rgba(17, 17, 17, 0.92) 0%, rgba(47, 52, 55, 0.82) 48%, rgba(139, 30, 63, 0.64) 100%),
        url("https://images.unsplash.com/photo-1496747611176-843222e1e57c?w=1600&h=900&fit=crop") center / cover;
    color: #ffffff;
}

.page-hero::after {
    content: '';
    position: absolute;
    right: clamp(1.5rem, 8vw, 7rem);
    bottom: 0;
    width: min(34vw, 420px);
    height: 1px;
    background: rgba(255, 255, 255, 0.55);
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-family: var(--font-serif);
    max-width: 980px;
    font-size: 4.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0;
    line-height: 0.98;
    text-wrap: balance;
}

.page-hero-description {
    max-width: 790px;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.content-section {
    padding: clamp(4.5rem, 8vw, 6.5rem) 0;
    background: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: clamp(1.25rem, 2.5vw, 2rem);
}

.article-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(17, 17, 17, 0.2);
}

.article-image {
    aspect-ratio: 16 / 11;
    height: auto;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-card .article-content {
    padding: clamp(1.25rem, 2vw, 1.8rem);
}

.article-card .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.9rem;
    font-size: 0.74rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.article-card .article-title {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.85rem;
    line-height: 1.24;
    text-wrap: balance;
}

.article-excerpt {
    font-size: 0.96rem;
    line-height: 1.72;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.read-more-link {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 0;
}

/* ==========================================
   Editorial Article System
   ========================================== */
.editorial-hero {
    padding: clamp(4rem, 7vw, 7rem) 0 clamp(2.5rem, 5vw, 5rem);
    background:
        linear-gradient(135deg, #ffffff 0%, var(--bg-panel) 100%);
    border-bottom: 1px solid var(--border-color);
}

.editorial-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.editorial-kicker {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    color: var(--accent-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
}

.editorial-title {
    max-width: 820px;
    color: var(--primary-color);
    font-family: var(--font-serif);
    font-size: 3.8rem;
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1.08;
    margin-bottom: 1.35rem;
    text-wrap: balance;
}

.editorial-dek {
    max-width: 720px;
    color: var(--text-light);
    font-size: 1.12rem;
    line-height: 1.8;
}

.editorial-hero-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.editorial-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.article-layout {
    max-width: 820px;
    margin: 0 auto;
}

.article-body {
    font-size: 1.08rem;
    line-height: 1.85;
}

.article-body p {
    margin-bottom: 1.35rem;
}

.article-body a {
    border-bottom: 1px solid currentColor;
}

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

.article-section h2 {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    text-wrap: balance;
}

.article-section h3 {
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    margin: 1.5rem 0 0.75rem;
    text-transform: uppercase;
}

.article-section ul,
.article-section ol {
    list-style-position: outside;
    margin: 1rem 0 1.8rem 1.4rem;
}

.article-section ul {
    list-style-type: disc;
}

.article-section ol {
    list-style-type: decimal;
}

.article-callout {
    background: var(--bg-panel);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    margin: 2rem 0;
    padding: 1.4rem 1.6rem;
}

.image-credit {
    color: var(--text-light);
    font-size: 0.78rem;
    line-height: 1.5;
    margin-top: 0.65rem;
}

.article-disclosure {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 2.5rem;
    padding: 1.1rem 1.25rem;
}

.article-figure {
    margin: 2.4rem 0;
}

.article-figure img {
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.article-figure figcaption {
    color: var(--text-light);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 0.65rem;
}

.article-table-wrap {
    margin: 1.5rem 0 2rem;
    overflow-x: auto;
}

.article-table {
    border-collapse: collapse;
    min-width: 680px;
    width: 100%;
}

.article-table th,
.article-table td {
    border-bottom: 1px solid var(--border-color);
    padding: 0.85rem 0.75rem;
    text-align: left;
    vertical-align: top;
}

.article-table th {
    color: var(--primary-color);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.category-note {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 3rem;
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.category-note p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   Legacy Article Template
   ========================================== */
.article-hero {
    background:
        linear-gradient(120deg, rgba(17, 17, 17, 0.96) 0%, rgba(47, 52, 55, 0.9) 58%, rgba(85, 124, 115, 0.72) 100%);
    color: #ffffff;
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.75rem, 5vw, 4.5rem);
}

.article-breadcrumb {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.article-breadcrumb a {
    color: rgba(255, 255, 255, 0.76);
}

.article-breadcrumb a:hover {
    color: #ffffff;
}

.article-hero .article-title {
    max-width: 980px;
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 780;
    letter-spacing: 0;
    line-height: 1.02;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.article-hero .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.article-hero .article-meta span {
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 0.45rem 0.75rem;
}

main.article-content {
    padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.article-featured-image,
.article-body .article-image {
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    max-width: 1040px;
}

.article-featured-image img,
.article-body .article-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

.article-featured-image img {
    aspect-ratio: 16 / 9;
}

.article-body .article-image img {
    aspect-ratio: 16 / 10;
}

.image-caption {
    color: var(--text-light);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 0.7rem;
}

.article-body .lead,
.article-body p.lead {
    color: var(--primary-color);
    font-family: var(--font-serif);
    font-size: 1.65rem;
    line-height: 1.45;
    margin-bottom: 2rem;
}

.article-body blockquote {
    border-left: 4px solid var(--accent-color);
    color: var(--primary-color);
    font-family: var(--font-serif);
    font-size: 1.45rem;
    line-height: 1.55;
    margin: 2.5rem 0;
    padding: 0.8rem 0 0.8rem 1.4rem;
}

.article-body cite {
    display: block;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-style: normal;
    margin-top: 1rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 3rem;
}

.tag {
    border: 1px solid var(--border-color);
    border-radius: 999px;
    color: var(--text-light);
    font-size: 0.84rem;
    font-weight: 700;
    padding: 0.45rem 0.75rem;
}

.related-articles {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.related-articles h3 {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    line-height: 1;
    margin-bottom: 2rem;
}

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

.related-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.related-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.related-card h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    line-height: 1.25;
    padding: 1.1rem;
}

/* ==========================================
   Analytics Dashboard
   ========================================== */
.analytics-dashboard-page {
    min-height: 100vh;
    background: #f5f7f9;
    color: #172026;
}

.dashboard-shell {
    width: min(1440px, calc(100% - 40px));
    margin: 0 auto;
    padding: 40px 0;
}

.dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 24px;
}

.dashboard-kicker {
    margin-bottom: 8px;
    color: #166f64;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.dashboard-hero h1 {
    margin-bottom: 8px;
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 0.98;
}

.dashboard-hero p {
    max-width: 660px;
    color: #52606b;
    font-size: 1rem;
}

.dashboard-status {
    min-width: 260px;
    padding: 12px 14px;
    border: 1px solid #d5dde3;
    border-radius: 8px;
    background: #ffffff;
    color: #3b4852;
    font-size: 0.9rem;
    font-weight: 600;
}

.dashboard-status[data-tone="success"] {
    border-color: #8fcabf;
    background: #eaf7f4;
    color: #0f5f53;
}

.dashboard-status[data-tone="warning"] {
    border-color: #e7c46b;
    background: #fff8df;
    color: #775414;
}

.dashboard-status[data-tone="error"] {
    border-color: #e7a3a3;
    background: #fff0f0;
    color: #903535;
}

.dashboard-controls {
    display: grid;
    grid-template-columns: minmax(280px, 1.4fr) minmax(180px, 0.7fr) minmax(160px, 0.55fr) auto auto;
    gap: 12px;
    align-items: end;
    padding: 16px;
    margin-bottom: 18px;
    border: 1px solid #dfe6eb;
    border-radius: 8px;
    background: #ffffff;
}

.dashboard-controls label {
    display: grid;
    gap: 6px;
}

.dashboard-controls span {
    color: #52606b;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-controls input,
.dashboard-controls select {
    width: 100%;
    min-height: 44px;
    padding: 0 12px;
    border: 1px solid #cfd8df;
    border-radius: 6px;
    background: #ffffff;
    color: #172026;
    font: inherit;
}

.dashboard-controls input:focus,
.dashboard-controls select:focus {
    outline: 2px solid rgba(22, 111, 100, 0.2);
    border-color: #166f64;
}

.dashboard-button {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid #101820;
    border-radius: 6px;
    background: #101820;
    color: #ffffff;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.dashboard-button.secondary {
    background: #ffffff;
    color: #101820;
}

.dashboard-button:disabled {
    opacity: 0.55;
    cursor: progress;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
}

.dashboard-metrics article {
    min-height: 132px;
    padding: 20px;
    border: 1px solid #dfe6eb;
    border-radius: 8px;
    background: #ffffff;
}

.dashboard-metrics span {
    display: block;
    margin-bottom: 18px;
    color: #667784;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.dashboard-metrics strong {
    display: block;
    color: #101820;
    font-size: 2.65rem;
    line-height: 1;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.dashboard-panel {
    min-height: 360px;
    padding: 20px;
    border: 1px solid #dfe6eb;
    border-radius: 8px;
    background: #ffffff;
}

.dashboard-panel.panel-wide {
    grid-column: span 2;
}

.dashboard-panel header {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: baseline;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf1f4;
}

.dashboard-panel h2 {
    font-size: 1rem;
    font-weight: 800;
}

.dashboard-panel small {
    color: #7c8a95;
    font-size: 0.78rem;
}

.dashboard-list {
    display: grid;
    gap: 8px;
    list-style: none;
}

.dashboard-list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 16px;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid #f0f3f5;
}

.dashboard-list li span {
    overflow: hidden;
    color: #24313a;
    font-weight: 650;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dashboard-list li strong {
    color: #166f64;
    font-size: 1rem;
}

.dashboard-list li small {
    grid-column: 1 / -1;
    color: #7c8a95;
}

.dashboard-list .dashboard-empty {
    display: block;
    color: #7c8a95;
}

.dashboard-notes p {
    color: #52606b;
    line-height: 1.75;
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1200px) {
    .topics-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
        align-items: end;
    }

    .hero-edit {
        max-width: 680px;
    }
}

@media (max-width: 968px) {
    html {
        font-size: 15px;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: 720px;
    }

    .hero-title {
        font-size: 4.2rem;
    }

    .section-title,
    .about-title,
    .editorial-title,
    .dashboard-hero h1 {
        font-size: 2.7rem;
    }

    .page-hero-title,
    .article-hero .article-title {
        font-size: 3.2rem;
    }

    .topics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .dashboard-hero,
    .dashboard-controls,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-status {
        min-width: 0;
    }

    .dashboard-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-panel.panel-wide {
        grid-column: auto;
    }

    .editorial-hero-grid {
        grid-template-columns: 1fr;
    }

    .editorial-hero-image img {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.15rem;
    }
    
    .hero {
        min-height: auto;
    }

    .hero-grid {
        min-height: 660px;
        padding-top: 4rem;
        padding-bottom: 2.5rem;
    }

    .hero-title {
        font-size: 3.25rem;
    }

    .hero-description,
    .page-hero-description,
    .editorial-dek {
        font-size: 1rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        max-width: 320px;
    }

    .hero-edit {
        padding-top: 1rem;
    }

    .hero-stat-strip {
        grid-template-columns: 1fr;
        gap: 0.45rem;
    }
    
    .section-title,
    .about-title,
    .related-articles h3 {
        font-size: 2.2rem;
    }

    .page-hero-title,
    .article-hero .article-title,
    .editorial-title {
        font-size: 2.55rem;
    }
    
    .topics-section,
    .about-section,
    .content-section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-hero .article-meta span {
        width: 100%;
    }

    .dashboard-shell {
        width: min(100% - 28px, 1440px);
        padding: 24px 0;
    }

    .dashboard-metrics {
        grid-template-columns: 1fr;
    }

    .dashboard-panel,
    .dashboard-metrics article {
        min-height: auto;
        padding: 16px;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.py-1 { padding: 1rem 0; }
.py-2 { padding: 2rem 0; }
.py-3 { padding: 3rem 0; }


/* ==========================================
   About Page Specific Styles
   ========================================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--bg-white);
    transition: var(--transition-smooth);
}

.team-member img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.member-info {
    padding: 0;
}

.member-name {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.member-role {
    font-size: 0.9rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.member-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.stat-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.about-story {
    background-color: #f9f9f9;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 8px;
}

.footer-brand-philosophy {
    margin-top: 10px;
    font-family: var(--font-serif);
    color: #999;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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