:root {
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --accent: #d4a373;
    --accent-light: #e9c89b;
    --bg-main: #f8f5f0;
    --bg-card: #ffffff;
    --bg-dark: #1a1a2e;
    --text-main: #2c2c2c;
    --text-light: #6b6b6b;
    --text-white: #f8f5f0;
    --border: #e0ddd5;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.75;
    font-size: 17px;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-desktop a {
    color: rgba(255,255,255,0.85);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: #fff;
    border-bottom-color: var(--accent);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
}

.burger span {
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    padding: 80px 32px 32px;
    transition: right 0.4s ease;
    z-index: 1050;
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav a {
    display: block;
    color: rgba(255,255,255,0.9);
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
}

.mobile-overlay.open {
    display: block;
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1b4332 0%, #2d6a4f 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 24px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-date {
    color: var(--accent-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section {
    padding: 72px 0;
}

.section-alt {
    background: #eee9e0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 600px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    line-height: 1.35;
}

.card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.card-link {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    gap: 10px;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 420px;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 56px;
}

.split-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.split-content p {
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.75;
}

.split-content ul {
    list-style: none;
    padding: 0;
}

.split-content ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    color: var(--text-main);
    font-size: 0.95rem;
}

.split-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.info-box {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent);
}

.info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.info-box p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.article-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 80px 24px;
    text-align: center;
}

.article-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 16px;
    line-height: 1.25;
}

.article-hero .meta {
    color: var(--accent-light);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
}

.article-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 40px 0 16px;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--primary);
    margin: 32px 0 12px;
}

.article-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.article-content img {
    border-radius: var(--radius);
    margin: 28px 0;
    box-shadow: var(--shadow);
}

.article-content blockquote {
    border-left: 4px solid var(--accent);
    padding: 16px 24px;
    margin: 28px 0;
    background: rgba(212,163,115,0.08);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}

.article-content ul,
.article-content ol {
    padding-left: 24px;
    margin-bottom: 18px;
}

.article-content li {
    margin-bottom: 8px;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.article-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
}

.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 560px;
}

.contact-form label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Source Serif 4', serif;
    font-size: 0.95rem;
    margin-bottom: 20px;
    transition: var(--transition);
    background: var(--bg-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,106,79,0.12);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 56px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px;
}

.footer h4 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: block;
    padding: 4px 0;
    transition: var(--transition);
}

.footer a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 64px 24px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.page-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin: 36px 0 14px;
}

.page-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary);
    margin: 28px 0 10px;
}

.page-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.page-content li {
    margin-bottom: 6px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-dark);
    color: rgba(255,255,255,0.9);
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 0.9rem;
    flex: 1;
    min-width: 300px;
}

.cookie-inner a {
    color: var(--accent);
}

.cookie-btns {
    display: flex;
    gap: 12px;
}

.cookie-btns button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: #fff;
}

.cookie-accept:hover {
    background: var(--primary-light);
}

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.cookie-reject:hover {
    border-color: rgba(255,255,255,0.6) !important;
    color: #fff;
}

.breadcrumb {
    padding: 16px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.82rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--border);
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr;
    }
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    .burger {
        display: flex;
    }
    .mobile-nav {
        display: block;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero {
        min-height: 400px;
    }
    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
    .split-section {
        grid-template-columns: 1fr;
    }
    .split-img {
        min-height: 260px;
    }
    .split-content {
        padding: 32px 24px;
    }
    .info-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .article-hero h1 {
        font-size: 2rem;
    }
    .contact-form {
        padding: 28px 20px;
    }
    .section {
        padding: 48px 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
}
