:root {
    --gold: #c9a84c;
    --gold-light: #e8d5a3;
    --charcoal: #2c2c2c;
    --cream: #faf8f5;
    --taupe: #8b7d72;
    --sage: #8a9a7b;
    --navy: #1b2a41;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
.text-gold { color: var(--gold); }
.text-taupe { color: var(--taupe); }
.bg-cream { background-color: var(--cream); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-navy { background-color: var(--navy); }
.site-header {
    border-bottom: 1px solid rgba(0,0,0,0.06);
    background: #fff;
}
.navbar-brand .logo { height: 40px; width: auto; }
.navbar .nav-link {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--charcoal);
    padding: 0.5rem 0.8rem;
    transition: color 0.2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--gold); }
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-color: var(--charcoal);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; }
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}
.section-title {
    position: relative;
    margin-bottom: 3rem;
}
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin-top: 1rem;
}
.section-title.text-center::after { margin: 1rem auto 0; }
.article-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0;
    overflow: hidden;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1) !important;
}
.article-card .card-img-top {
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}
.article-card .card-body { padding: 1.5rem; }
.article-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.article-card .card-title { font-family: var(--font-serif); }
.article-card .card-title a { color: var(--charcoal); }
.article-card .card-title a:hover { color: var(--gold); }
.page-header {
    padding: 6rem 0 3rem;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    color: #fff;
}
.page-header h1 { font-family: var(--font-serif); }
.page-header .breadcrumb,
.page-header .breadcrumb a,
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.7); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.category-section { padding: 4rem 0; }
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.category-card {
    position: relative;
    height: 280px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 0;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-card .category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.3s;
}
.category-card:hover .category-overlay { background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%); }
.category-card h3 { font-family: var(--font-serif); color: #fff; font-size: 1.4rem; margin-bottom: 0.3rem; }
.category-card .category-count { color: var(--gold); font-size: 0.85rem; }
.featured-post {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}
.featured-post .featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    color: #fff;
}
.featured-post .featured-content h2 { font-family: var(--font-serif); }
.featured-post .featured-content a { color: #fff; }
.featured-post .featured-content a:hover { color: var(--gold); }
.ad-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f0ede8;
    border: 1px dashed #d4cfc7;
    text-align: center;
    color: var(--taupe);
}
.ad-horizontal { width: 100%; min-height: 90px; }
.ad-rectangle { width: 100%; min-height: 250px; }
.ad-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.25rem; }
.ad-content { font-size: 0.85rem; font-weight: 500; }
.about-content { font-size: 1.05rem; line-height: 1.9; color: #555; }
.contact-form .form-control {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}
.contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 0.2rem rgba(201, 168, 76, 0.15);
}
.btn-gold {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 0.7rem 2rem;
    font-weight: 500;
    transition: opacity 0.2s;
}
.btn-gold:hover { opacity: 0.9; color: #fff; }
.btn-outline-gold {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    border-radius: 0;
    padding: 0.7rem 2rem;
    transition: all 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: #fff; }
.site-footer { font-size: 0.9rem; }
.site-footer a:hover { color: var(--gold) !important; }
.footer-logo { filter: brightness(0) invert(1); }
.cookie-consent {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background: #fff;
    padding: 2.5rem;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    text-align: center;
    border-radius: 0;
}
.cookie-consent.show { display: block; }
.cookie-consent .cookie-title { font-family: var(--font-serif); margin-bottom: 0.75rem; }
.cookie-consent .cookie-text { color: #666; line-height: 1.6; }
.cookie-consent .cookie-actions { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }
.cookie-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
}
.cookie-overlay.show { display: block; }
.faq-item {
    border: 1px solid #eee;
    margin-bottom: 0.5rem;
}
.faq-item .faq-question {
    padding: 1.25rem;
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}
.faq-item .faq-question:hover { background: #faf8f5; }
.faq-item .faq-question .faq-toggle { transition: transform 0.3s; color: var(--gold); }
.faq-item .faq-question[aria-expanded="true"] .faq-toggle { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 1.25rem 1.25rem; color: #666; }
.legal-content { font-size: 0.95rem; color: #555; line-height: 1.9; }
.legal-content h2 { font-family: var(--font-serif); color: var(--charcoal); margin-top: 2.5rem; }
.legal-content h3 { font-family: var(--font-serif); color: var(--charcoal); margin-top: 1.5rem; }
.error-404 { padding: 8rem 0; text-align: center; }
.error-404 .error-code { font-size: 8rem; font-weight: 700; color: var(--gold); line-height: 1; font-family: var(--font-serif); }
.pagination .page-link {
    color: var(--charcoal);
    border: 1px solid #ddd;
    margin: 0 2px;
    border-radius: 0;
}
.pagination .page-link:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.pagination .page-item.active .page-link { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.btn-outline-dark:hover { background: var(--charcoal); color: #fff; }
.newsletter-form .form-control:focus { border-color: var(--gold); box-shadow: none; }
.contact-info-card {
    border: 1px solid #eee;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    background: #fff;
}
.contact-info-card i { color: var(--gold); margin-bottom: 1rem; }
.article-hero {
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.article-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 100%);
}
.article-hero .hero-content { position: relative; z-index: 2; padding-top: 12rem; }
.article-body { font-size: 1.05rem; line-height: 1.9; color: #444; }
.article-body p { margin-bottom: 1.5rem; }
.article-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.article-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.article-body ul, .article-body ol { margin-bottom: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
@media (max-width: 991px) {
    .navbar .nav-link { padding: 0.5rem 0; }
    .hero-section { min-height: 65vh; }
}
@media (max-width: 767px) {
    .hero-section { min-height: 55vh; }
    .page-header { padding: 4rem 0 2rem; }
    .cookie-consent { padding: 1.5rem; max-width: 100%; width: 92%; }
}
@media (max-width: 575px) {
    .category-grid { grid-template-columns: 1fr; }
}
