@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --bg: #f5f0eb;
    --bg-dark: #2c2420;
    --bg-mid: #ede6de;
    --accent: #8b4513;
    --accent-light: #c4703a;
    --accent-pale: #f0ddd0;
    --text: #2c2420;
    --text-muted: #6b5c52;
    --text-light: #9e8c82;
    --white: #faf7f4;
    --border: #d9cec5;
    --header-h: 72px;
    --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Source Serif 4', Georgia, serif;
    font-weight: 400;
    line-height: 1.7;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

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

/* PAGE LOADER */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    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: 20px;
}

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 2px;
}

.loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 40%;
    background: var(--accent-light);
    border-radius: 2px;
    animation: loadSlide 1.2s ease-in-out infinite;
}

@keyframes loadSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: var(--bg-dark);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    color: var(--accent-light);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.header-nav a:hover { color: var(--accent-light); }

.burger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    margin-left: 16px;
}

.burger-btn span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}

.burger-btn:hover span { background: var(--accent-light); }

.burger-btn.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger-btn.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* BURGER MENU */
.burger-menu {
    position: fixed;
    top: var(--header-h);
    right: 0;
    width: 360px;
    max-width: 100vw;
    height: calc(100vh - var(--header-h));
    background: var(--bg-dark);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 40px 32px;
    border-left: 1px solid rgba(255,255,255,0.06);
}

.burger-menu.open { transform: translateX(0); }

.burger-menu-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 28px;
}

.burger-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.burger-menu-list li a {
    display: block;
    padding: 10px 0;
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, padding-left 0.2s;
}

.burger-menu-list li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.burger-menu-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 24px 0;
}

.burger-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.burger-nav-links li a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

.burger-nav-links li a:hover { color: var(--accent-light); }

/* MAIN LAYOUT */
main { padding-top: var(--header-h); }

/* HERO */
.hero {
    background: var(--bg-dark);
    color: var(--white);
    padding: 80px 40px 72px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(139,69,19,0.25) 0%, transparent 60%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-desc {
    font-family: 'Source Serif 4', serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    max-width: 480px;
}

.hero-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background: var(--accent);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.hero-cta:hover { background: var(--accent-light); }

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: brightness(0.85) sepia(0.15);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid rgba(196,112,58,0.3);
    border-radius: var(--radius);
    z-index: 0;
}

.hero-image img { position: relative; z-index: 1; }

/* SECTION LABEL */
.section-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 12px;
}

/* FEATURED ARTICLES */
.featured {
    padding: 72px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.featured-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text);
}

.view-all {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
    transition: color 0.2s;
}

.view-all:hover { color: var(--accent-light); border-color: var(--accent-light); }

.articles-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
}

.article-card {
    display: flex;
    flex-direction: column;
}

.article-card.large .card-image { height: 280px; }
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 20px;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: sepia(0.1) brightness(0.92);
}

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

.card-category {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.article-card.large .card-title { font-size: 1.5rem; }

.article-card:hover .card-title { color: var(--accent); }

.card-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.card-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light);
    display: flex;
    gap: 12px;
    align-items: center;
}

.card-meta::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--accent-light);
}

/* CATEGORIES STRIP */
.categories-strip {
    background: var(--bg-mid);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px;
}

.categories-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 40px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--text);
    transition: all 0.2s;
}

.cat-chip:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.cat-chip-count {
    font-size: 0.7rem;
    color: var(--text-light);
    background: var(--bg-mid);
    padding: 2px 7px;
    border-radius: 20px;
    transition: all 0.2s;
}

.cat-chip:hover .cat-chip-count {
    background: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

/* LATEST ARTICLES */
.latest {
    padding: 72px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.latest h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.latest-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.latest-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.2s;
}

.latest-item:first-child { padding-top: 0; }

.latest-item:hover .latest-title { color: var(--accent); }

.latest-thumb {
    width: 140px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: sepia(0.1);
}

.latest-category {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.latest-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
    margin-bottom: 8px;
    transition: color 0.2s;
}

.latest-excerpt {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
}

.latest-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* QUOTE BLOCK */
.quote-block {
    background: var(--bg-dark);
    color: var(--white);
    padding: 72px 40px;
    text-align: center;
}

.quote-inner {
    max-width: 720px;
    margin: 0 auto;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.45;
    color: var(--white);
    margin-bottom: 24px;
}

.quote-author {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
}

/* ABOUT STRIP */
.about-strip {
    padding: 72px 40px;
    background: var(--accent-pale);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-strip p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-strip-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: sepia(0.1);
}

/* FOOTER */
.site-footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 56px 40px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
}

.footer-brand .logo-main { color: var(--white); margin-bottom: 12px; display: block; }
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}

.footer-col h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    display: block;
    margin-bottom: 8px;
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 40px;
    z-index: 10000;
    display: none;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

#cookie-banner.visible { display: flex; }

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-accept {
    padding: 10px 24px;
    background: var(--accent);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s;
}

.cookie-accept:hover { background: var(--accent-light); }

.cookie-reject {
    padding: 10px 24px;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-reject:hover {
    border-color: rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.8);
}

/* ARTICLE PAGE */
.article-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 64px;
    align-items: start;
}

.article-header { margin-bottom: 40px; }

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.breadcrumb a { color: var(--accent); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { color: var(--border); }

.article-category {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 20px;
}

.article-meta {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--accent);
}

.article-hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 40px;
    filter: sepia(0.08);
}

.article-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text);
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.article-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 28px 0 12px;
}

.article-body p { margin-bottom: 20px; }

.article-body ul, .article-body ol {
    margin: 0 0 20px 24px;
    line-height: 1.9;
}

.article-body li { margin-bottom: 6px; }

.article-body blockquote {
    border-left: 3px solid var(--accent);
    padding: 16px 24px;
    margin: 28px 0;
    background: var(--accent-pale);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-muted);
}

.article-body a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover { color: var(--accent-light); }

.article-updated {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* SIDEBAR */
.article-sidebar { position: sticky; top: calc(var(--header-h) + 24px); }

.sidebar-widget {
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.sidebar-article {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: opacity 0.2s;
}

.sidebar-article:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-article:first-of-type { padding-top: 0; }
.sidebar-article:hover { opacity: 0.75; }

.sidebar-article img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
    filter: sepia(0.1);
}

.sidebar-article-title {
    font-family: 'Source Serif 4', serif;
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.45;
}

/* STATIC PAGES */
.static-layout {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.static-layout h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent);
}

.static-layout h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 36px 0 14px;
}

.static-layout p {
    margin-bottom: 18px;
    line-height: 1.85;
    color: var(--text-muted);
}

.static-layout ul {
    margin: 0 0 18px 24px;
    line-height: 1.9;
    color: var(--text-muted);
}

.static-layout a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-hero {
    background: var(--bg-dark);
    padding: 56px 40px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
}

.page-hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* CONTACT PAGE */
.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.contact-item-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
}

.contact-item-value {
    font-size: 0.95rem;
    color: var(--text);
}

.contact-item-value a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-right {
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
}

.contact-right h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.contact-right p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 12px;
}

/* ABOUT PAGE */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-intro img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius);
    filter: sepia(0.1);
}

.about-intro-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-intro-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    background: var(--bg-mid);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.value-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .articles-grid { grid-template-columns: 1fr 1fr; }
    .articles-grid .article-card.large { grid-column: span 2; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; }
}

@media (max-width: 768px) {
    .site-header { padding: 0 20px; }
    .header-nav { display: none; }
    .hero { padding: 48px 20px; }
    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-image { display: none; }
    .featured, .latest, .about-content, .contact-grid { padding: 48px 20px; }
    .articles-grid { grid-template-columns: 1fr; }
    .articles-grid .article-card.large { grid-column: span 1; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .about-intro, .about-strip-inner { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .categories-strip { padding: 28px 20px; }
    #cookie-banner { padding: 16px 20px; }
    .quote-text { font-size: 1.6rem; }
    .static-layout { padding: 40px 20px; }
}
