*, *::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.25;
    color: var(--body);
    background: var(--canvas);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; }
a:active { color: #1a3866; }
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;
    height: 64px;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    display: flex;
    align-items: center;
}

.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    list-style: none;
}

.nav-menu a {
    font-size: 14px;
    color: var(--body);
    text-decoration: none;
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.2s;
}

.hero-band {
    padding: var(--spacing-section) 0;
    background: var(--canvas);
}

.hero-band .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxl);
    align-items: center;
}

.hero-text h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: var(--spacing-xl);
    max-width: 480px;
}

.hero-img {
    border-radius: var(--rounded-md);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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;
    line-height: 1.4;
}

.btn-primary:active { background: var(--primary-active); 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;
    line-height: 1.4;
    margin-left: var(--spacing-md);
}

.btn-secondary:active { background: var(--surface-soft); color: var(--ink); }

.btn-legal {
    display: inline-block;
    background: var(--link);
    color: var(--on-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 10px;
    border-radius: var(--rounded-xs);
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.2;
}

.section {
    padding: var(--spacing-section) 0;
}

.section-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.12px;
    color: var(--ink);
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
}

.article-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;
}

.article-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.article-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-card-body {
    padding: var(--spacing-md);
}

.article-tag {
    font-size: 12px;
    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);
    text-decoration: none;
    display: block;
}

.article-card-title:active { color: var(--primary-active); }

.article-meta {
    font-size: 13px;
    color: var(--muted);
}

.signature-coral-card {
    background: var(--signature-coral);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xxl);
    color: var(--on-primary);
}

.signature-coral-card h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.signature-coral-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 540px;
}

.signature-forest-card {
    background: 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-md);
}

.signature-forest-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 540px;
}

.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;
}

.cream-band {
    background: var(--signature-cream);
    padding: var(--spacing-section) 0;
}

.cream-band h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
}

.cream-band p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.info-card {
    background: var(--canvas);
    border-radius: var(--rounded-md);
    padding: var(--spacing-lg);
    border: 1px solid var(--hairline);
}

.info-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
}

.info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body);
    margin-bottom: 0;
}

.dark-cta-band {
    background: var(--surface-dark);
    padding: var(--spacing-section) 0;
}

.dark-cta-band h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--on-primary);
    margin-bottom: var(--spacing-md);
}

.dark-cta-band p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--spacing-xl);
    max-width: 540px;
}

.light-cta-band {
    background: var(--surface-strong);
    padding: var(--spacing-xxl) 0;
}

.light-cta-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.light-cta-band h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
}

.site-footer {
    background: 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 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-top: var(--spacing-sm);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: var(--spacing-xs); }

.footer-col ul li a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid var(--hairline);
    padding-top: var(--spacing-md);
    font-size: 13px;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-bottom a { color: var(--muted); }

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--surface-dark);
    color: var(--on-primary);
    padding: var(--spacing-md) var(--spacing-xxl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-banner p {
    font-size: 13px;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-banner p a { color: var(--signature-peach); }

.cookie-buttons { display: flex; gap: var(--spacing-xs); flex-shrink: 0; }

.cookie-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    padding: 12px 10px;
    border-radius: var(--rounded-xs);
    border: 1px solid rgba(255,255,255,0.3);
    cursor: pointer;
}

.article-page { padding: var(--spacing-section) 0; }

.article-page-header { margin-bottom: var(--spacing-xl); }

.article-page-header .article-tag { margin-bottom: var(--spacing-sm); }

.article-page-header h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
}

.article-page-header .article-meta { margin-bottom: var(--spacing-lg); }

.article-hero-img {
    border-radius: var(--rounded-md);
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
    aspect-ratio: 16/9;
}

.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.article-body { max-width: 720px; }

.article-body h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.article-body h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.article-body p {
    font-size: 16px;
    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 li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: var(--spacing-xs);
}

.article-body a { color: var(--link); }

.article-body figure {
    margin: var(--spacing-xl) 0;
    border-radius: var(--rounded-md);
    overflow: hidden;
}

.article-body figure img { width: 100%; }

.article-body figcaption {
    font-size: 13px;
    color: var(--muted);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--surface-soft);
}

.article-related {
    margin-top: var(--spacing-section);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--hairline);
}

.page-content {
    padding: var(--spacing-section) 0;
    max-width: 720px;
}

.page-content h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-xl);
}

.page-content h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.page-content h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.page-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: var(--spacing-md);
}

.page-content ul, .page-content ol {
    padding-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.page-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: var(--spacing-xs);
}

.contact-form {
    background: var(--surface-soft);
    border-radius: var(--rounded-md);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    max-width: 480px;
}

.contact-form h2 {
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
}

.form-group { margin-bottom: var(--spacing-md); }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
}

.form-group input, .form-group textarea {
    width: 100%;
    background: var(--canvas);
    color: var(--ink);
    font-size: 14px;
    padding: 12px 16px;
    border-radius: var(--rounded-sm);
    border: 1px solid var(--hairline);
    height: 44px;
    font-family: inherit;
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #458fff;
}

.form-group textarea { height: auto; min-height: 100px; resize: vertical; }

.updated-date {
    font-size: 13px;
    color: var(--muted);
    margin-top: var(--spacing-xs);
}

@media (max-width: 1024px) {
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .info-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 var(--spacing-md); }

    .nav-menu { display: none; }
    .nav-menu.is-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--canvas);
        padding: var(--spacing-xl) var(--spacing-md);
        gap: var(--spacing-lg);
        z-index: 99;
        overflow-y: auto;
    }
    .nav-hamburger { display: flex; }

    .hero-band .container { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 32px; }
    .hero-img { display: none; }

    .article-grid { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }

    .signature-coral-card h2, .signature-forest-card h2 { font-size: 24px; }
    .section-subtitle { font-size: 24px; }

    .light-cta-band .container { flex-direction: column; align-items: flex-start; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .article-page-header h1 { font-size: 28px; }

    .cookie-banner { flex-direction: column; padding: var(--spacing-md); }
    .cookie-buttons { width: 100%; justify-content: flex-end; }
}
