*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #181d26;
    --primary-active: #0d1218;
    --canvas: #ffffff;
    --surface-soft: #f8fafc;
    --surface-strong: #e0e2e6;
    --surface-dark: #181d26;
    --hairline: #dddddd;
    --ink: #181d26;
    --body: #333840;
    --muted: #41454d;
    --on-primary: #ffffff;
    --link: #1b61c9;
    --signature-coral: #aa2d00;
    --signature-forest: #0a2e0e;
    --signature-cream: #f5e9d4;
    --signature-peach: #fcab79;
    --signature-mint: #a8d8c4;
    --rounded-xs: 2px;
    --rounded-sm: 6px;
    --rounded-md: 10px;
    --rounded-lg: 12px;
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
    --spacing-section: 96px;
    --max-width: 1280px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--body);
    background-color: var(--canvas);
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xxl);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    height: 64px;
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xxl);
}

.nav-logo {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-logo:hover {
    text-decoration: none;
    color: var(--ink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--body);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--ink);
    text-decoration: none;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
}

.hero-band {
    padding: var(--spacing-section) 0;
    background-color: var(--canvas);
}

.hero-band .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
}

.hero-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: var(--spacing-xl);
    max-width: 480px;
}

.hero-image {
    border-radius: var(--rounded-md);
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--rounded-md);
}

.section {
    padding: var(--spacing-section) 0;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--body);
    margin-bottom: var(--spacing-xxl);
    max-width: 600px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.article-card {
    background: var(--canvas);
    border-radius: var(--rounded-md);
    border: 1px solid var(--hairline);
    overflow: hidden;
    transition: border-color 0.2s;
}

.article-card:hover {
    border-color: #aaa;
}

.article-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-card-body {
    padding: var(--spacing-md);
}

.article-card-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--spacing-xs);
}

.article-card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
}

.article-card-title a:hover {
    text-decoration: underline;
}

.article-card-excerpt {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--body);
    margin-bottom: var(--spacing-sm);
}

.article-card-meta {
    font-size: 13px;
    color: var(--muted);
}

.signature-coral-card {
    background-color: var(--signature-coral);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xxl);
    color: var(--on-primary);
    margin: 0 auto;
}

.signature-coral-card h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--on-primary);
}

.signature-coral-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
}

.signature-forest-card {
    background-color: var(--signature-forest);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xxl);
    color: var(--on-primary);
}

.signature-forest-card h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--on-primary);
}

.signature-forest-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.cream-band {
    background-color: var(--signature-cream);
    padding: var(--spacing-section) 0;
}

.cream-band .section-title {
    color: var(--ink);
}

.dark-band {
    background-color: var(--surface-dark);
    padding: var(--spacing-section) 0;
    color: var(--on-primary);
}

.dark-band h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--on-primary);
    margin-bottom: var(--spacing-lg);
}

.dark-band p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 560px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}

.tip-card {
    background: var(--canvas);
    border-radius: var(--rounded-md);
    padding: var(--spacing-xl);
    border: 1px solid var(--hairline);
}

.tip-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.tip-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.two-col-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
    direction: rtl;
}

.two-col-reverse > * {
    direction: ltr;
}

.two-col img, .two-col-reverse img {
    border-radius: var(--rounded-md);
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.two-col-text h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
}

.two-col-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: var(--spacing-md);
}

.two-col-text ul {
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.two-col-text ul li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 4px;
}

.cta-band-light {
    background-color: var(--surface-strong);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xxl);
    text-align: center;
    margin: var(--spacing-section) 0;
}

.cta-band-light h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
}

.cta-band-light p {
    font-size: 16px;
    color: var(--body);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-section {
    padding: var(--spacing-section) 0;
    background-color: var(--surface-soft);
}

.contact-form {
    max-width: 540px;
    margin: 0 auto;
}

.contact-form h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
}

.contact-form p {
    font-size: 14px;
    color: var(--body);
    margin-bottom: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--canvas);
    color: var(--ink);
    font-size: 14px;
    font-family: inherit;
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-sm);
    padding: 12px 16px;
    height: 44px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group textarea {
    height: auto;
    min-height: 100px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #458fff;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: var(--rounded-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    line-height: 1.4;
}

.btn-primary:hover {
    background: var(--primary-active);
    text-decoration: none;
    color: var(--on-primary);
}

.btn-secondary {
    display: inline-block;
    background: var(--canvas);
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: var(--rounded-lg);
    border: 1px solid var(--hairline);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s;
    line-height: 1.4;
}

.btn-secondary:hover {
    border-color: #aaa;
    text-decoration: none;
    color: var(--ink);
}

.btn-secondary-on-dark {
    display: inline-block;
    background: var(--canvas);
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: var(--rounded-lg);
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
}

.btn-secondary-on-dark:hover {
    text-decoration: none;
    color: var(--ink);
    opacity: 0.92;
}

.btn-form {
    background: var(--primary);
    color: var(--on-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 16px 24px;
    border-radius: var(--rounded-lg);
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: var(--spacing-sm);
    transition: background 0.15s;
}

.btn-form:hover {
    background: var(--primary-active);
}

.site-footer {
    background-color: var(--canvas);
    border-top: 1px solid var(--hairline);
    padding: var(--spacing-section) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xxl);
}

.footer-brand h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-brand address {
    font-style: normal;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--ink);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid var(--hairline);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted);
}

.footer-bottom a {
    font-size: 13px;
    color: var(--muted);
}

.footer-bottom a:hover {
    color: var(--ink);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-dark);
    color: var(--on-primary);
    padding: var(--spacing-lg) var(--spacing-xxl);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-banner p {
    font-size: 13px;
    line-height: 1.6;
    flex: 1;
    min-width: 240px;
}

.cookie-banner p a {
    color: #a8d8c4;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.btn-cookie-accept {
    background: var(--link);
    color: var(--on-primary);
    font-size: 13.12px;
    font-weight: 600;
    padding: 12px 10px;
    border-radius: var(--rounded-xs);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-cookie-reject {
    background: transparent;
    color: var(--on-primary);
    font-size: 13.12px;
    font-weight: 600;
    padding: 12px 10px;
    border-radius: var(--rounded-xs);
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
    white-space: nowrap;
}

.page-hero {
    background-color: var(--canvas);
    padding: var(--spacing-section) 0 var(--spacing-xxl);
    border-bottom: 1px solid var(--hairline);
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
}

.page-hero p {
    font-size: 16px;
    color: var(--body);
    max-width: 600px;
    line-height: 1.6;
}

.article-meta {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: var(--spacing-xxl);
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    align-items: center;
}

.article-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--surface-soft);
    color: var(--muted);
    padding: 4px 10px;
    border-radius: var(--rounded-sm);
}

.article-body {
    max-width: 720px;
}

.article-body h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--ink);
    margin-top: var(--spacing-xxl);
    margin-bottom: var(--spacing-lg);
}

.article-body h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
}

.article-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: var(--spacing-md);
}

.article-body ul, .article-body ol {
    padding-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.article-body ul li, .article-body ol li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 6px;
}

.article-body a {
    color: var(--link);
}

.article-body img {
    border-radius: var(--rounded-md);
    margin: var(--spacing-xl) 0;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-body blockquote {
    border-left: 3px solid var(--signature-coral);
    padding-left: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--body);
    font-style: italic;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--spacing-xxl);
    padding: var(--spacing-section) 0;
}

.article-sidebar {
    padding-top: 0;
}

.sidebar-widget {
    background: var(--surface-soft);
    border-radius: var(--rounded-md);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.sidebar-widget h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li {
    margin-bottom: var(--spacing-sm);
}

.sidebar-widget ul li a {
    font-size: 14px;
    color: var(--link);
    text-decoration: none;
}

.sidebar-widget ul li a:hover {
    text-decoration: underline;
}

.sidebar-widget p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
}

.disclaimer {
    background: var(--surface-soft);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-sm);
    padding: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.disclaimer p {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: var(--spacing-lg);
}

.breadcrumb a {
    color: var(--muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--link);
}

.breadcrumb span {
    margin: 0 6px;
}

.prose-section {
    padding: var(--spacing-section) 0;
}

.prose-section h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
}

.prose-section h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-sm);
}

.prose-section p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: var(--spacing-md);
    max-width: 720px;
}

.prose-section ul, .prose-section ol {
    padding-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
    max-width: 720px;
}

.prose-section ul li, .prose-section ol li {
    font-size: 14px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: 4px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xxl);
}

.contact-info-card {
    background: var(--surface-soft);
    border-radius: var(--rounded-md);
    padding: var(--spacing-xl);
}

.contact-info-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-sm);
}

.contact-info-card p, .contact-info-card a {
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
}

.contact-info-card address {
    font-style: normal;
    font-size: 14px;
    color: var(--body);
    line-height: 1.6;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--canvas);
    z-index: 99;
    padding: var(--spacing-xl) var(--spacing-xxl);
    flex-direction: column;
    gap: var(--spacing-lg);
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 20px;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--hairline);
    padding-bottom: var(--spacing-lg);
}

.updated-badge {
    font-size: 12px;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .article-layout {
        grid-template-columns: 1fr;
    }
    .article-sidebar {
        display: none;
    }
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    .nav-inner {
        padding: 0 var(--spacing-lg);
    }
    .nav-links {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
    .hero-band .container {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-image {
        display: none;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .tips-grid {
        grid-template-columns: 1fr;
    }
    .two-col, .two-col-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner {
        padding: var(--spacing-md) var(--spacing-lg);
    }
    .section-title {
        font-size: 26px;
    }
    .signature-coral-card, .signature-forest-card {
        padding: var(--spacing-xl);
    }
    .signature-coral-card h2, .signature-forest-card h2 {
        font-size: 24px;
    }
    .page-hero h1 {
        font-size: 30px;
    }
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .cta-band-light {
        margin: var(--spacing-xl) 0;
    }
}
