@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --burgundy: #5c1a1a;
    --burgundy-light: #8b2e2e;
    --burgundy-deep: #3d1010;
    --cream: #f5f0e8;
    --cream-dark: #ece5d8;
    --cream-border: #ddd4c0;
    --gold: #c8a96e;
    --gold-dark: #a68851;
    --text: #2a2a2a;
    --text-muted: #6b6460;
    --white-warm: #fdf9f2;
    --shadow: 0 2px 16px rgba(92,26,26,0.10);
    --shadow-hover: 0 6px 28px rgba(92,26,26,0.18);
    --radius: 4px;
    --transition: 0.28s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background-color: var(--cream);
    color: var(--text);
    line-height: 1.75;
    min-height: 100vh;
}

a { color: var(--burgundy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
    color: var(--burgundy-deep);
}

p { margin-bottom: 1.25rem; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== PAGE LOADER ========== */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--burgundy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.loader-book {
    width: 40px;
    height: 48px;
    border: 3px solid var(--gold);
    border-radius: 2px 4px 4px 2px;
    position: relative;
    animation: bookPulse 1.4s ease-in-out infinite;
}
.loader-book::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: var(--gold);
    transform: translateX(-50%);
}
.loader-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--cream);
    text-transform: uppercase;
}
@keyframes bookPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.7; }
}

/* ========== HEADER ========== */
#site-header {
    position: sticky;
    top: 0;
    z-index: 800;
    background: var(--burgundy-deep);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 16px;
}
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.site-logo svg { width: 32px; height: 32px; flex-shrink: 0; }
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cream);
    letter-spacing: 0.01em;
}
.logo-tagline {
    font-family: 'Raleway', sans-serif;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
    background: rgba(200,169,110,0.2);
    color: var(--gold);
}
.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    background: var(--burgundy);
    border-top: 1px solid rgba(200,169,110,0.3);
    padding: 12px 0 20px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background var(--transition), color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { background: rgba(200,169,110,0.15); color: var(--gold); }

/* ========== HERO ========== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 580px;
    background: var(--cream-dark);
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 56px 72px 0;
}
.hero-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold-dark);
}
.hero-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: var(--burgundy-deep);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-title em { font-style: italic; color: var(--burgundy-light); }
.hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
}
.btn-primary {
    background: var(--burgundy);
    color: var(--cream);
    border-color: var(--burgundy);
}
.btn-primary:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); color: var(--gold); }
.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border-color: var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: var(--cream); }
.hero-image {
    position: relative;
    overflow: hidden;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--cream-dark) 0%, transparent 20%);
}

/* ========== SECTION TITLES ========== */
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--cream-border);
    gap: 16px;
}
.section-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--burgundy-deep);
}
.section-link {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy-light);
    white-space: nowrap;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--burgundy-light);
}
.section-link:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

/* ========== ARTICLE CARDS ========== */
section.articles-grid { padding: 72px 0; }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.card {
    background: var(--white-warm);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--cream-dark);
}
.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card:hover .card-image img { transform: scale(1.04); }
.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-cat {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--burgundy-deep);
    margin-bottom: 10px;
    line-height: 1.3;
}
.card-title a { color: inherit; }
.card-title a:hover { color: var(--burgundy-light); }
.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}
.card-meta {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-meta time { color: var(--text-muted); }

/* ========== FEATURED SPLIT ========== */
.featured-split { padding: 0 0 72px; }
.split-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
    align-items: start;
}
.featured-card {
    background: var(--white-warm);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.featured-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.featured-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.featured-card:hover .featured-card-image img { transform: scale(1.03); }
.featured-card-body { padding: 32px; }
.featured-card .card-cat { font-size: 0.72rem; }
.featured-card .card-title {
    font-size: 1.6rem;
    margin-bottom: 14px;
}
.featured-card .card-excerpt { font-size: 0.95rem; margin-bottom: 20px; }
.read-more {
    font-family: 'Raleway', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--burgundy-light);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--burgundy-light);
    padding-bottom: 1px;
    transition: all var(--transition);
}
.read-more:hover { color: var(--gold-dark); border-color: var(--gold-dark); }
.read-more svg { width: 14px; height: 14px; }

.sidebar-list { display: flex; flex-direction: column; gap: 0; }
.sidebar-article {
    padding: 20px 0;
    border-bottom: 1px solid var(--cream-border);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    align-items: start;
}
.sidebar-article:first-child { padding-top: 0; }
.sidebar-article:last-child { border-bottom: none; }
.sidebar-thumb {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 3px;
}
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-cat {
    font-family: 'Raleway', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 5px;
}
.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--burgundy-deep);
    line-height: 1.35;
    margin-bottom: 5px;
}
.sidebar-title a { color: inherit; }
.sidebar-title a:hover { color: var(--burgundy-light); }
.sidebar-date {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    color: var(--text-muted);
}

/* ========== ABOUT STRIP ========== */
.about-strip {
    background: var(--burgundy-deep);
    padding: 72px 0;
}
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-eyebrow {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.25;
}
.about-text {
    font-size: 0.95rem;
    color: rgba(245,240,232,0.75);
    line-height: 1.85;
    margin-bottom: 12px;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 8px;
}
.stat-item { border-left: 3px solid var(--gold); padding-left: 16px; }
.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(245,240,232,0.6);
    text-transform: uppercase;
    margin-top: 4px;
}
.about-image-block {
    position: relative;
}
.about-image-block img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 4px;
}
.about-image-caption {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--gold);
    padding: 16px 20px;
    border-radius: 3px;
}
.caption-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-style: italic;
    color: var(--burgundy-deep);
    line-height: 1.4;
}

/* ========== CONTACT TEASER ========== */
.contact-teaser { padding: 72px 0; background: var(--cream-dark); }
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info-title {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--burgundy-deep);
    margin-bottom: 16px;
}
.contact-info-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}
.contact-details { display: flex; flex-direction: column; gap: 12px; }
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text);
}
.contact-detail-item svg { flex-shrink: 0; color: var(--burgundy-light); margin-top: 2px; }
.contact-detail-item strong { display: block; font-family: 'Raleway', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-form-wrap { background: var(--white-warm); padding: 36px; border-radius: 6px; box-shadow: var(--shadow); }
.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--burgundy-deep);
    margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: var(--cream);
    border: 1.5px solid var(--cream-border);
    border-radius: var(--radius);
    font-family: 'Source Serif 4', serif;
    font-size: 0.92rem;
    color: var(--text);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--burgundy-light); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit { width: 100%; padding: 13px; }

/* ========== ARTICLE PAGE ========== */
.article-breadcrumb {
    background: var(--cream-dark);
    padding: 14px 0;
    border-bottom: 1px solid var(--cream-border);
}
.breadcrumb-inner {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb-inner a { color: var(--text-muted); }
.breadcrumb-inner a:hover { color: var(--burgundy-light); }
.breadcrumb-sep { color: var(--cream-border); }
.breadcrumb-current { color: var(--text); }

.article-hero {
    background: var(--burgundy-deep);
    padding: 64px 0 0;
    overflow: hidden;
}
.article-hero-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    padding-bottom: 48px;
}
.article-cat {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 20px;
    line-height: 1.2;
}
.article-subtitle {
    font-size: 1.05rem;
    color: rgba(245,240,232,0.72);
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 28px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}
.article-meta-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    color: rgba(245,240,232,0.55);
    letter-spacing: 0.05em;
}
.article-meta-bar span { display: flex; align-items: center; gap: 5px; }
.article-hero-image {
    display: block;
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center top;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 56px 0 72px;
    align-items: start;
}
.article-content h2 {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--burgundy-deep);
    margin: 2rem 0 0.75rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cream-border);
}
.article-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--burgundy-light);
    margin: 1.5rem 0 0.5rem;
}
.article-content p { font-size: 1rem; line-height: 1.85; margin-bottom: 1.4rem; }
.article-content ul, .article-content ol {
    margin: 0 0 1.4rem 1.5rem;
}
.article-content li { margin-bottom: 0.5rem; line-height: 1.7; font-size: 1rem; }
.article-content blockquote {
    border-left: 4px solid var(--gold);
    background: var(--white-warm);
    padding: 20px 24px;
    margin: 2rem 0;
    border-radius: 0 4px 4px 0;
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--burgundy);
    line-height: 1.7;
}
.article-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.article-sidebar { position: sticky; top: 88px; }
.sidebar-box {
    background: var(--white-warm);
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}
.sidebar-box-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy-deep);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cream-border);
}
.author-box { text-align: center; }
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 3px solid var(--cream-border); }
.author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--burgundy-deep);
    margin-bottom: 4px;
}
.author-role {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.author-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

.related-list { display: flex; flex-direction: column; gap: 14px; }
.related-item { display: flex; gap: 12px; align-items: start; }
.related-thumb { width: 56px; height: 56px; border-radius: 3px; overflow: hidden; flex-shrink: 0; }
.related-thumb img { width: 100%; height: 100%; object-fit: cover; }
.related-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--burgundy-deep);
    line-height: 1.35;
}
.related-item-title a { color: inherit; }
.related-item-title a:hover { color: var(--burgundy-light); }

/* ========== STATIC PAGES ========== */
.static-hero {
    background: var(--burgundy-deep);
    padding: 56px 0;
    text-align: center;
}
.static-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
}
.static-hero-sub {
    font-size: 1rem;
    color: rgba(245,240,232,0.65);
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto;
}
.static-content {
    padding: 56px 0 80px;
}
.static-content h2 { font-size: 1.45rem; margin: 2.5rem 0 0.75rem; }
.static-content h3 { font-size: 1.1rem; color: var(--burgundy-light); margin: 1.75rem 0 0.5rem; }
.static-content p { font-size: 0.97rem; line-height: 1.85; }
.static-content ul { margin: 0 0 1.4rem 1.5rem; }
.static-content li { margin-bottom: 0.4rem; font-size: 0.97rem; }

/* ========== CONTACT PAGE ========== */
.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 64px 0 80px;
    align-items: start;
}

/* ========== FOOTER ========== */
#site-footer {
    background: var(--burgundy-deep);
    border-top: 3px solid var(--gold);
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(200,169,110,0.2);
}
.footer-col-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}
.footer-about-text {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.58);
    line-height: 1.8;
    margin-bottom: 0;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(245,240,232,0.65);
    transition: color var(--transition);
    font-family: 'Raleway', sans-serif;
    font-size: 0.84rem;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
.footer-contact-item strong {
    font-family: 'Raleway', sans-serif;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 3px;
}
.footer-contact-item span {
    font-size: 0.86rem;
    color: rgba(245,240,232,0.65);
    line-height: 1.55;
}
.footer-contact-item a { color: rgba(245,240,232,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    color: rgba(245,240,232,0.38);
    letter-spacing: 0.04em;
}
.footer-legal {
    display: flex;
    gap: 20px;
}
.footer-legal a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    color: rgba(245,240,232,0.38);
    letter-spacing: 0.04em;
    transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ========== COOKIE BANNER ========== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background: var(--burgundy-deep);
    border-top: 2px solid var(--gold);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    transition: transform 0.4s ease;
}
#cookie-banner.hidden { transform: translateY(110%); pointer-events: none; }
.cookie-text {
    font-size: 0.88rem;
    color: rgba(245,240,232,0.78);
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
}
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
    font-family: 'Raleway', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
}
.cookie-btn-accept { background: var(--gold); color: var(--burgundy-deep); border-color: var(--gold); }
.cookie-btn-accept:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.cookie-btn-reject { background: transparent; color: rgba(245,240,232,0.65); border-color: rgba(245,240,232,0.3); }
.cookie-btn-reject:hover { border-color: rgba(245,240,232,0.6); color: var(--cream); }

/* ========== UTILITY ========== */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.updated-date {
    font-family: 'Raleway', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.divider {
    border: none;
    border-top: 1px solid var(--cream-border);
    margin: 40px 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-content { padding: 56px 24px; }
    .hero-image { display: none; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .split-grid { grid-template-columns: 1fr; }
    .about-split { grid-template-columns: 1fr; gap: 40px; }
    .about-image-block { display: none; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .contact-inner { grid-template-columns: 1fr; }
    .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .site-nav { display: none; }
    .burger-btn { display: flex; }
    .cards-grid { grid-template-columns: 1fr; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 48px 20px; }
    .article-hero { padding: 48px 0 0; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.75rem; }
    .section-title { font-size: 1.4rem; }
    .featured-card-body { padding: 20px; }
    .featured-card .card-title { font-size: 1.3rem; }
    .cookie-btns { width: 100%; }
    .cookie-btn { flex: 1; text-align: center; }
}
