@import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --green: #00d36e;
    --green-dark: #00b85c;
    --text: #1a1a1a;
    --text-light: #555;
    --bg: #ffffff;
    --bg-mint: #eff8f4;
    --border: #e0e0e0;
    --shadow: 0 0 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 0 20px rgba(0,0,0,0.15);
    --radius: 4px;
    --max-w: 1080px;
}

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

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--green-dark); text-decoration: none; transition: color .2s; }
a:hover { color: var(--green); }

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

h1, h2, h3, h4 {
    font-family: 'Zilla Slab', Georgia, serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

.site-header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    height: 60px;
}

.site-logo {
    font-family: 'Zilla Slab', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green);
    text-decoration: none;
    white-space: nowrap;
}
.site-logo:hover { color: var(--green-dark); }

.main-nav { display: flex; gap: 0; align-items: center; }
.main-nav a {
    padding: 18px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: border-color .2s, color .2s;
}
.main-nav a:first-child {
    border-bottom-color: var(--green);
    color: var(--green-dark);
}
.main-nav a:hover {
    color: var(--green);
    border-bottom-color: var(--green);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger svg { width: 24px; height: 24px; }

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg);
    z-index: 99;
    padding: 20px;
    overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.hero-section {
    background: var(--bg-mint);
    padding: 50px 0;
}
.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    align-items: center;
}
.hero-text { flex: 1; }
.hero-text .category-tag {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}
.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 14px;
}
.hero-text p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.6;
}
.hero-text .read-more {
    display: inline-block;
    background: var(--green);
    color: #fff;
    padding: 10px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background .2s;
}
.hero-text .read-more:hover { background: var(--green-dark); color: #fff; }
.hero-image { flex: 1; }
.hero-image img { border-radius: var(--radius); width: 100%; }

.section { padding: 50px 0; }
.section-mint { background: var(--bg-mint); }
.section-title {
    font-family: 'Zilla Slab', serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--green);
    display: inline-block;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.article-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: box-shadow .3s, transform .2s;
}
.article-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-card-body { padding: 18px; }
.article-card-body .category-tag {
    display: inline-block;
    color: var(--green-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.article-card-body h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    line-height: 1.35;
}
.article-card-body h3 a { color: var(--text); }
.article-card-body h3 a:hover { color: var(--green); }
.article-card-body .meta {
    font-size: 0.8rem;
    color: #999;
}

.articles-row {
    display: flex;
    gap: 25px;
}
.articles-row .article-card-horizontal {
    display: flex;
    gap: 16px;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    flex: 1;
    transition: box-shadow .3s;
}
.articles-row .article-card-horizontal:hover { box-shadow: var(--shadow-hover); }
.articles-row .article-card-horizontal img {
    width: 160px;
    min-height: 120px;
    object-fit: cover;
    flex-shrink: 0;
}
.articles-row .article-card-horizontal .card-text {
    padding: 14px 14px 14px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.articles-row .article-card-horizontal .card-text h3 { font-size: 0.95rem; margin-bottom: 6px; }
.articles-row .article-card-horizontal .card-text h3 a { color: var(--text); }
.articles-row .article-card-horizontal .card-text h3 a:hover { color: var(--green); }
.articles-row .article-card-horizontal .card-text .meta { font-size: 0.8rem; color: #999; }

.quote-banner {
    background: var(--green);
    color: #fff;
    padding: 45px 0;
    text-align: center;
}
.quote-banner blockquote {
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Zilla Slab', serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.5;
    font-style: italic;
}
.quote-banner cite {
    display: block;
    margin-top: 16px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    font-style: normal;
    opacity: 0.85;
}

.newsletter-section {
    background: var(--bg-mint);
    padding: 50px 0;
    text-align: center;
}
.newsletter-section h2 { margin-bottom: 10px; }
.newsletter-section p { color: var(--text-light); margin-bottom: 24px; }
.newsletter-form {
    display: flex;
    max-width: 460px;
    margin: 0 auto;
    gap: 10px;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--border);
    border-radius: 9999px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
}
.newsletter-form input[type="email"]:focus { border-color: var(--green); }
.newsletter-form button {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 9999px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background .2s;
}
.newsletter-form button:hover { background: var(--green-dark); }

.about-preview {
    padding: 50px 0;
}
.about-preview-inner {
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}
.about-preview-text { flex: 1; }
.about-preview-text h2 { margin-bottom: 14px; }
.about-preview-text p { color: var(--text-light); margin-bottom: 18px; line-height: 1.7; }
.about-preview-image { flex: 1; }
.about-preview-image img { border-radius: var(--radius); }

.btn-outline {
    display: inline-block;
    border: 2px solid var(--green);
    color: var(--green-dark);
    padding: 10px 28px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--green); color: #fff; }

.site-footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 50px 0 0;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}
.footer-grid h4 {
    color: #fff;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 8px; }
.footer-grid ul li a { color: #aaa; font-size: 0.85rem; }
.footer-grid ul li a:hover { color: var(--green); }
.footer-about p { color: #aaa; line-height: 1.6; margin-bottom: 12px; }
.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 0.8rem;
    color: #777;
}
.footer-bottom a { color: #999; }
.footer-bottom a:hover { color: var(--green); }
.footer-disclaimer {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px 20px;
    font-size: 0.78rem;
    color: #777;
    line-height: 1.5;
    border-top: 1px solid #333;
    padding-top: 20px;
}
.manage-cookies-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    font-family: 'Work Sans', sans-serif;
    padding: 0;
    margin-top: 8px;
}
.manage-cookies-btn:hover { color: var(--green); }

.page-header {
    background: var(--bg-mint);
    padding: 40px 0;
    text-align: center;
}
.page-header h1 { margin-bottom: 8px; }
.page-header p { color: var(--text-light); }

.page-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 40px 20px;
}
.page-content h2 { margin-top: 30px; margin-bottom: 14px; }
.page-content h3 { margin-top: 24px; margin-bottom: 10px; }
.page-content p { margin-bottom: 16px; color: var(--text-light); line-height: 1.7; }
.page-content ul, .page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--text-light);
}
.page-content ul li, .page-content ol li { margin-bottom: 6px; line-height: 1.6; }

.article-hero { margin-bottom: 24px; }
.article-hero img { width: 100%; border-radius: var(--radius); }
.article-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.article-content p { margin-bottom: 16px; line-height: 1.75; }
.article-content h2 { margin-top: 30px; margin-bottom: 14px; }
.article-content h3 { margin-top: 24px; margin-bottom: 10px; }

.related-articles {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}
.related-articles h3 { margin-bottom: 20px; font-size: 1.2rem; }
.related-list { display: flex; flex-direction: column; gap: 12px; }
.related-list a {
    display: block;
    padding: 12px 16px;
    background: var(--bg-mint);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    transition: background .2s;
}
.related-list a:hover { background: #dff0e8; color: var(--green-dark); }

.contact-form {
    max-width: 560px;
    margin: 0 auto;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 0.9rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
    background: var(--green);
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 9999px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background .2s;
}
.form-submit:hover { background: var(--green-dark); }

.cookie-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    display: none;
}
.cookie-overlay.show { display: block; }

.cookie-modal {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    z-index: 9999;
    width: 90%;
    max-width: 520px;
    padding: 28px;
    display: none;
}
.cookie-modal.show { display: block; }
.cookie-modal h3 {
    font-family: 'Zilla Slab', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.cookie-modal p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}
.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cookie-option:last-child { border-bottom: none; }
.cookie-option-label { font-size: 0.9rem; font-weight: 500; }
.cookie-option-desc { font-size: 0.78rem; color: #999; }

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #ccc;
    border-radius: 24px;
    cursor: pointer;
    transition: background .3s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    bottom: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform .3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.6; cursor: default; }

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.cookie-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 9999px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
    transition: background .2s;
    min-width: 120px;
    text-align: center;
}
.cookie-btn-outline {
    background: none;
    border: 1px solid var(--border);
    color: var(--text);
}
.cookie-btn-outline:hover { border-color: var(--green); color: var(--green-dark); }
.cookie-btn-save {
    background: var(--bg-mint);
    color: var(--green-dark);
}
.cookie-btn-save:hover { background: #dff0e8; }
.cookie-btn-accept {
    background: var(--green);
    color: #fff;
}
.cookie-btn-accept:hover { background: var(--green-dark); }

.breadcrumb {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--green-dark); }

.small-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.small-card { text-align: center; }
.small-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 10px;
}
.small-card h4 {
    font-size: 0.9rem;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
}
.small-card h4 a { color: var(--text); }
.small-card h4 a:hover { color: var(--green); }

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: block; }
    .hero-inner { flex-direction: column; }
    .hero-text h1 { font-size: 1.5rem; }
    .articles-grid { grid-template-columns: 1fr; }
    .articles-row { flex-direction: column; }
    .articles-row .article-card-horizontal { flex-direction: column; }
    .articles-row .article-card-horizontal img { width: 100%; min-height: 180px; }
    .articles-row .article-card-horizontal .card-text { padding: 14px; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .about-preview-inner { flex-direction: column; }
    .small-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .cookie-modal { width: 95%; bottom: 10px; padding: 20px; }
    .cookie-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.4rem; }
    .small-cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
