:root {
    --bg-primary: #fdf8f4;
    --bg-secondary: #fff5ee;
    --bg-tertiary: #ffeedd;
    --text-primary: #2c1810;
    --text-secondary: #5a3e35;
    --text-muted: #9a7a6e;
    --accent: #d4654a;
    --accent-hover: #c0523a;
    --accent-muted: rgba(212, 101, 74, 0.12);
    --accent-soft: #f9ede8;
    --border: #e8d5cc;
    --success: #4a8a5a;
    --error: #c04040;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.container-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
}
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--accent);
    color: #fff;
    padding: 12px 24px;
    z-index: 9999;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}
.skip-link:focus {
    top: 0;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.page-loader.show {
    opacity: 1;
    pointer-events: all;
}
.loader-ring {
    width: 48px;
    height: 48px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-icon {
    font-size: 1.5rem;
}
.logo-text {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--accent);
}
.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.burger-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}
.burger-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.burger-btn.active span:nth-child(2) {
    opacity: 0;
}
.burger-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
    cursor: pointer;
}
.nav-link:hover, .nav-link.active {
    color: var(--accent);
}
.nav-dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    list-style: none;
    margin-top: 12px;
    box-shadow: 0 8px 24px rgba(44, 24, 16, 0.1);
}
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}
.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}
.dropdown-menu li a:hover {
    background: var(--accent-soft);
    color: var(--accent);
}
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 60%, var(--bg-tertiary) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-muted) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 101, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.hero-text {
    max-width: 680px;
}
.hero-tag {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
}
.hero h1 {
    font-family: 'Lora', serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 16px rgba(212, 101, 74, 0.3);
}
.hero-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 101, 74, 0.4);
}
.intro-section {
    padding: 80px 0;
    background: #fff;
}
.intro-content {
    max-width: 800px;
}
.intro-content h2 {
    font-family: 'Lora', serif;
    font-size: 1.9rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.intro-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}
.articles-section {
    padding: 80px 0;
    background: var(--bg-primary);
}
.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 40px;
}
.articles-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
}
.articles-secondary {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.article-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(44, 24, 16, 0.05);
}
.article-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(212, 101, 74, 0.15);
}
.article-featured {
    display: flex;
    flex-direction: column;
}
.article-image {
    position: relative;
    overflow: hidden;
}
.article-featured .article-image {
    height: 300px;
}
.articles-secondary .article-image {
    height: 170px;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-card:hover .article-image img {
    transform: scale(1.05);
}
.image-credit {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(44, 24, 16, 0.65);
    color: rgba(255,255,255,0.85);
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Source Serif 4', serif;
}
.article-content {
    padding: 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.article-tag {
    display: inline-block;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 14px;
}
.article-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}
.article-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 18px;
    flex-grow: 1;
    line-height: 1.7;
}
.article-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.article-link:hover {
    color: var(--accent-hover);
}
.values-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.values-content h2 {
    font-family: 'Lora', serif;
    font-size: 1.9rem;
    margin-bottom: 16px;
    color: var(--text-primary);
}
.values-content > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 48px;
    max-width: 600px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.value-item {
    padding: 32px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.value-item:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(212, 101, 74, 0.1);
}
.value-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}
.value-item h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}
.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}
.article-page {
    padding-bottom: 80px;
}
.article-header {
    padding: 60px 0 40px;
    background: var(--bg-secondary);
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}
.back-link:hover {
    color: var(--accent);
}
.article-header h1 {
    font-family: 'Lora', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}
.article-meta {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: 'Source Serif 4', serif;
}
.article-hero {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}
.article-hero img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-top: -40px;
    box-shadow: 0 8px 32px rgba(44, 24, 16, 0.12);
}
.article-body {
    padding: 48px 0;
}
.article-intro {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 32px;
    line-height: 1.8;
    font-family: 'Source Serif 4', serif;
}
.article-body h2 {
    font-family: 'Lora', serif;
    font-size: 1.55rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 44px;
    margin-bottom: 20px;
}
.article-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.article-body ul {
    margin: 20px 0 20px 24px;
    color: var(--text-secondary);
}
.article-body li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.article-body a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.article-body a:hover {
    text-decoration: underline;
}
.article-tip {
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 28px 0;
}
.article-tip p {
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}
.article-footer-nav {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.article-footer-nav p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.about-page, .contact-page, .policy-page {
    padding: 80px 0;
}
.page-header {
    margin-bottom: 48px;
}
.page-header h1 {
    font-family: 'Lora', serif;
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.about-text h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}
.about-text h2:first-child {
    margin-top: 0;
}
.about-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1.05rem;
    line-height: 1.8;
}
.about-text a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.contact-info h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.contact-info h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 28px;
    margin-bottom: 12px;
}
.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}
.contact-details {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 16px;
    margin-top: 24px;
    border: 1px solid var(--border);
}
.contact-form {
    background: #fff;
    padding: 36px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(44, 24, 16, 0.06);
}
.form-group {
    margin-bottom: 22px;
}
.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-primary);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
}
.submit-btn {
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 4px 16px rgba(212, 101, 74, 0.3);
}
.submit-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}
.success-message, .error-message {
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}
.success-message {
    background: rgba(74, 138, 90, 0.12);
    border: 1px solid var(--success);
}
.success-message h3 {
    color: var(--success);
    margin-bottom: 8px;
    font-family: 'Quicksand', sans-serif;
}
.error-message {
    background: rgba(192, 64, 64, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}
.policy-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 36px;
    margin-bottom: 16px;
}
.policy-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}
.policy-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}
.policy-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-secondary);
}
.policy-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 64px 0 24px;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.footer-col h4 {
    font-family: 'Quicksand', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--accent);
}
.footer-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 9000;
    display: none;
    box-shadow: 0 -4px 20px rgba(44, 24, 16, 0.08);
}
.cookie-banner.show {
    display: block;
}
.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}
.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 22px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: 'Nunito', sans-serif;
}
.cookie-btn.accept {
    background: var(--accent);
    color: #fff;
}
.cookie-btn.accept:hover {
    background: var(--accent-hover);
}
.cookie-btn.reject, .cookie-btn.settings {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border);
}
.cookie-btn.reject:hover, .cookie-btn.settings:hover {
    border-color: var(--accent);
    color: var(--accent);
}
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(44, 24, 16, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9500;
}
.cookie-modal.show {
    display: flex;
}
.modal-inner {
    background: #fff;
    padding: 36px;
    border-radius: 20px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 16px 48px rgba(44, 24, 16, 0.2);
}
.modal-inner h3 {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: var(--text-primary);
}
.cookie-option {
    margin-bottom: 20px;
}
.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 700;
    cursor: pointer;
}
.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}
.cookie-option p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 6px;
    margin-left: 28px;
}
.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
@media (max-width: 968px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .footer-main {
        grid-template-columns: 1fr;
    }
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 24px rgba(44, 24, 16, 0.1);
    }
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav .nav-list {
        flex-direction: column;
        gap: 0;
    }
    .main-nav .nav-list li {
        width: 100%;
    }
    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 16px;
        margin-top: 0;
    }
    .dropdown-menu li a {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }
    .hero {
        padding: 60px 0;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-form {
        padding: 24px;
    }
}
