:root {
    --bg: #0d0d0e;
    --bg-card: #141416;
    --bg-surface: #1b1b1e;
    --bg-elevated: #222226;
    --accent: #c4924a;
    --accent-light: #d9aa6a;
    --accent-dim: rgba(196, 146, 74, 0.12);
    --text: #e8e0d4;
    --text-secondary: #a09280;
    --text-muted: #62584e;
    --border: #252528;
    --border-light: #2e2e33;
    --white: #f4ede4;
    --shadow: rgba(0, 0, 0, 0.6);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    width: 42px;
    height: 42px;
    border: 2px solid var(--border-light);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(13, 13, 14, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--white);
    transition: opacity 0.2s;
}

.site-logo:hover {
    opacity: 0.85;
}

.logo-icon {
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}

.logo-text em {
    font-style: normal;
    color: var(--accent);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.15rem;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    display: block;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
    color: var(--white);
    background: var(--accent-dim);
}

.main-nav > ul > li > a.active {
    color: var(--accent-light);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    min-width: 220px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    box-shadow: 0 16px 40px var(--shadow);
}

.dropdown li a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 0.55rem 0.9rem;
    border-radius: 5px;
    display: block;
    transition: color 0.2s, background 0.2s;
}

.dropdown li a:hover {
    color: var(--white);
    background: var(--accent-dim);
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.burger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--bg-elevated);
    z-index: 99;
    padding: 80px 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid var(--border-light);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    display: block;
    transition: all 0.2s;
}

.mobile-menu a:hover {
    color: var(--white);
    background: var(--accent-dim);
}

.mobile-menu .submenu {
    margin-left: 1rem;
    margin-top: 0.25rem;
}

.mobile-menu .submenu a {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero.loaded .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem 5rem;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.hero-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    max-width: 780px;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-scroll {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero-scroll::after {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.section {
    padding: 5rem 0;
}

.section-sm {
    padding: 3rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    max-width: 600px;
    line-height: 1.7;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.article-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--border-light);
}

.card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.04);
}

.card-body {
    padding: 1.6rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}

.article-card:hover .card-title {
    color: var(--accent-light);
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

.read-more {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more::after {
    content: '→';
    transition: transform 0.2s;
}

.article-card:hover .read-more::after {
    transform: translateX(4px);
}

.featured-strip {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 0;
}

.featured-strip-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content .section-label {
    display: block;
    margin-bottom: 1rem;
}

.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.featured-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 0.7rem 1.4rem;
    border-radius: 6px;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg);
}

.fact-band {
    background: linear-gradient(135deg, #1a1200 0%, #0d0d0e 60%);
    border-top: 1px solid rgba(196, 146, 74, 0.2);
    border-bottom: 1px solid rgba(196, 146, 74, 0.2);
    padding: 4rem 0;
}

.fact-band blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--accent-light);
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.5;
}

.fact-band cite {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1.25rem;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.style-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem 1.5rem;
    transition: border-color 0.3s, transform 0.3s;
}

.style-tile:hover {
    border-color: rgba(196, 146, 74, 0.35);
    transform: translateY(-3px);
}

.style-tile-era {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.style-tile h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.style-tile p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.contact-band {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 4rem 0;
}

.contact-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-band p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 7px;
    padding: 0.75rem 1rem;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--accent);
    color: var(--bg);
    padding: 0.85rem 2rem;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.site-footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .site-logo {
    margin-bottom: 1rem;
    display: inline-flex;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-contact-item {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.footer-contact-item strong {
    color: var(--text-muted);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.2rem;
}

.footer-contact-item a {
    color: var(--accent-light);
    transition: color 0.2s;
}

.footer-contact-item a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-left {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-right {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-right a {
    font-size: 0.82rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-bottom-right a:hover {
    color: var(--text-secondary);
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 760px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex: 1;
}

.cookie-banner p a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie-btns {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-cookie-accept {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    background: var(--accent);
    color: var(--bg);
    border: none;
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-cookie-accept:hover {
    background: var(--accent-light);
}

.btn-cookie-reject {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border-light);
    padding: 0.55rem 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-cookie-reject:hover {
    border-color: var(--text-muted);
    color: var(--text-secondary);
}

.page-hero {
    padding-top: 120px;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    max-width: 860px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--accent-light);
}

.breadcrumb span {
    color: var(--border-light);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.page-hero .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 700px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.article-meta-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-meta-item::before {
    content: '·';
    color: var(--accent);
    font-size: 1.1rem;
    line-height: 1;
}

.article-meta-item:first-child::before {
    display: none;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: start;
}

.article-featured-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 2.5rem;
    aspect-ratio: 16/9;
}

.article-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 2rem 0 0.75rem;
    line-height: 1.35;
}

.article-content p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.article-content p:first-child {
    font-size: 1.1rem;
    color: var(--text);
}

.article-content strong {
    color: var(--text);
    font-weight: 600;
}

.article-content a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.article-content a:hover {
    color: var(--accent);
}

.article-content ul,
.article-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.article-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style: disc;
}

.article-content ol li {
    list-style: decimal;
}

.article-pullquote {
    border-left: 3px solid var(--accent);
    margin: 2.5rem 0;
    padding: 1.25rem 1.75rem;
    background: var(--bg-surface);
    border-radius: 0 8px 8px 0;
}

.article-pullquote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--accent-light) !important;
    line-height: 1.55;
    margin-bottom: 0 !important;
}

.article-inline-img {
    border-radius: 8px;
    overflow: hidden;
    margin: 2rem 0;
}

.article-inline-img img {
    width: 100%;
    height: auto;
}

.article-inline-img figcaption {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.6rem 0;
    font-style: italic;
}

.article-sidebar {
    position: sticky;
    top: 90px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.sidebar-widget-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.1rem;
}

.sidebar-article {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border);
}

.sidebar-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-article-thumb {
    width: 64px;
    height: 48px;
    border-radius: 5px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-article-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.35;
    transition: color 0.2s;
}

.sidebar-article:hover .sidebar-article-title {
    color: var(--accent-light);
}

.sidebar-article-date {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    transition: all 0.2s;
    cursor: default;
}

.tag:hover {
    color: var(--accent-light);
    border-color: rgba(196, 146, 74, 0.35);
}

.page-content {
    padding: 4rem 0 6rem;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin: 2.5rem 0 1rem;
}

.page-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 1.75rem 0 0.75rem;
}

.page-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.page-content ul, .page-content ol {
    margin: 0.75rem 0 1.5rem 1.5rem;
}

.page-content li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 0.4rem;
    list-style: disc;
}

.page-content ol li {
    list-style: decimal;
}

.page-content a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-intro-img {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.75rem;
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-block {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
}

.contact-info-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.contact-detail {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
    border-bottom: none;
}

.contact-detail-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.3rem;
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-detail-value a {
    color: var(--text);
    transition: color 0.2s;
}

.contact-detail-value a:hover {
    color: var(--accent-light);
}

.form-success {
    background: rgba(196, 146, 74, 0.1);
    border: 1px solid rgba(196, 146, 74, 0.3);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
    display: none;
}

.form-success.visible {
    display: block;
}

.disclaimer {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
}

.disclaimer p {
    font-size: 0.85rem !important;
    color: var(--text-muted) !important;
    line-height: 1.65 !important;
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        position: static;
    }
    .about-intro {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-content {
        padding: 0 1.25rem 3.5rem;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .featured-strip-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .styles-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-band-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .container {
        padding: 0 1.25rem;
    }
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .article-meta {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .styles-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: 520px;
    }
}
