@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

*, *::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;
    --link-active: #1a3866;
    --signature-coral: #aa2d00;
    --signature-forest: #0a2e0e;
    --signature-cream: #f5e9d4;
    --signature-peach: #fcab79;
    --signature-mint: #a8d8c4;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--body);
    background: var(--canvas);
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-active); }

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

/* TOP NAV */
.top-nav {
    height: 64px;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
}

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

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

.nav-logo span { color: var(--signature-coral); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--body);
    text-decoration: none;
    transition: color 0.15s;
}

.nav-links a:hover { color: var(--ink); }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

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

.nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--canvas);
    z-index: 99;
    padding: 32px 24px;
    overflow-y: auto;
}

.nav-mobile.open { display: block; }

.nav-mobile ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-mobile ul li a {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--hairline);
    text-decoration: none;
}

/* HERO */
.hero-band {
    padding: 96px 0;
    background: var(--canvas);
}

.hero-band h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    max-width: 720px;
    margin-bottom: 20px;
}

.hero-band p {
    font-size: 16px;
    color: var(--body);
    max-width: 560px;
    margin-bottom: 36px;
    line-height: 1.6;
}

.meta-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    min-height: 48px;
    line-height: 1.4;
}

.btn-primary:hover { 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: 14px 24px;
    border-radius: 12px;
    border: 1px solid var(--hairline);
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s;
    min-height: 48px;
    line-height: 1.4;
}

.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

.btn-on-dark {
    display: inline-block;
    background: var(--canvas);
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    padding: 14px 24px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.15s;
    min-height: 48px;
    line-height: 1.4;
}

.btn-on-dark:hover { opacity: 0.9; color: var(--ink); }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* SECTIONS */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

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

.section-sub {
    font-size: 16px;
    color: var(--body);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 48px;
}

/* SIGNATURE CARDS */
.signature-coral {
    background: var(--signature-coral);
    color: var(--on-primary);
    border-radius: 12px;
    padding: 48px;
    margin: 0 0 24px;
}

.signature-coral h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--on-primary);
}

.signature-coral p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 15px; line-height: 1.6; }

.signature-forest {
    background: var(--signature-forest);
    color: var(--on-primary);
    border-radius: 12px;
    padding: 48px;
    margin: 0 0 24px;
}

.signature-forest h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--on-primary);
}

.signature-forest p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 15px; line-height: 1.6; }

.signature-dark {
    background: var(--surface-dark);
    color: var(--on-primary);
    border-radius: 12px;
    padding: 48px;
}

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

.signature-dark p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 15px; line-height: 1.6; }

.signature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }

/* ARTICLE CARDS GRID */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: var(--canvas);
    border-radius: 10px;
    border: 1px solid var(--hairline);
    overflow: hidden;
    transition: box-shadow 0.15s;
}

.article-card:hover { box-shadow: 0 4px 16px rgba(24,29,38,0.08); }

.article-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-card-body { padding: 20px; }

.article-card-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--signature-coral);
    margin-bottom: 8px;
}

.article-card h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 10px;
}

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

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

/* CREAM CALLOUT */
.cream-callout {
    background: var(--signature-cream);
    border-radius: 10px;
    padding: 48px;
    display: flex;
    gap: 48px;
    align-items: center;
}

.cream-callout h2 {
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
}

.cream-callout p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.6;
}

.cream-callout-text { flex: 1; }

.stats-block { display: flex; gap: 32px; flex-wrap: wrap; }

.stat-item { }

.stat-number {
    font-size: 36px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.1;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

/* CTA BAND */
.cta-band {
    background: var(--surface-strong);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
}

.cta-band h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
}

.cta-band p {
    font-size: 16px;
    color: var(--body);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* FORM */
.contact-form {
    max-width: 560px;
}

.form-group { margin-bottom: 16px; }

.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);
    border: 1px solid var(--hairline);
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--ink);
    font-family: inherit;
    height: 44px;
    outline: none;
    transition: border-color 0.15s;
}

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

.form-group textarea { height: 120px; resize: vertical; }

/* FOOTER */
.site-footer {
    background: var(--canvas);
    border-top: 1px solid var(--hairline);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand { }

.footer-logo {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

.footer-logo span { color: var(--signature-coral); }

.footer-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 260px;
    margin-bottom: 16px;
}

.footer-contact p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 4px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

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

.footer-col ul li { margin-bottom: 10px; }

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

.footer-col ul li a:hover { color: var(--ink); }

.footer-bottom {
    border-top: 1px solid var(--hairline);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
}

.footer-legal a:hover { color: var(--ink); }

/* ARTICLE PAGE */
.article-hero {
    background: var(--surface-dark);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
}

.article-hero-stripes {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 40%;
    display: flex;
    opacity: 0.15;
}

.article-hero-stripes span {
    flex: 1;
}

.stripe-1 { background: var(--signature-coral); }
.stripe-2 { background: var(--signature-mint); }
.stripe-3 { background: #f4d35e; }
.stripe-4 { background: var(--signature-peach); }
.stripe-5 { background: var(--signature-forest); }

.article-hero h1 {
    font-size: 40px;
    font-weight: 400;
    color: var(--on-primary);
    max-width: 700px;
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.article-hero .meta-tag { color: rgba(255,255,255,0.6); position: relative; z-index: 1; }

.article-hero .article-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    position: relative;
    z-index: 1;
    margin-top: 12px;
}

.article-body {
    padding: 64px 0;
}

.article-content {
    max-width: 740px;
}

.article-content h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin: 40px 0 16px;
    line-height: 1.35;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    margin: 28px 0 12px;
    line-height: 1.4;
}

.article-content p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 20px;
}

.article-content ul, .article-content ol {
    margin: 0 0 20px 24px;
}

.article-content li {
    font-size: 15px;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 8px;
}

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

.article-content blockquote {
    border-left: 3px solid var(--signature-coral);
    padding: 16px 24px;
    background: var(--surface-soft);
    border-radius: 0 8px 8px 0;
    margin: 28px 0;
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.5;
}

.article-img {
    width: 100%;
    border-radius: 10px;
    margin: 32px 0;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-img-caption {
    font-size: 13px;
    color: var(--muted);
    margin-top: -24px;
    margin-bottom: 32px;
}

.related-articles { padding: 64px 0; background: var(--surface-soft); }

.related-articles h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 32px;
}

/* PAGE */
.page-hero {
    padding: 72px 0 48px;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 400;
    color: var(--ink);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16px;
    color: var(--body);
    max-width: 560px;
}

.page-body {
    padding: 64px 0;
}

.page-content {
    max-width: 740px;
}

.page-content h2 {
    font-size: 22px;
    font-weight: 500;
    color: var(--ink);
    margin: 36px 0 14px;
}

.page-content p {
    font-size: 15px;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 18px;
}

.page-content ul {
    margin: 0 0 18px 24px;
}

.page-content li {
    font-size: 15px;
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 8px;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-dark);
    color: var(--on-primary);
    padding: 20px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    z-index: 999;
    flex-wrap: wrap;
}

#cookie-banner p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    line-height: 1.5;
}

#cookie-banner a { color: rgba(255,255,255,0.7); text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; 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: 2px;
    border: none;
    cursor: pointer;
}

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

/* BREADCRUMB */
.breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 6px; }

/* DISCLAIMER */
.disclaimer {
    background: var(--surface-soft);
    border: 1px solid var(--hairline);
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 40px;
}

.disclaimer p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ABOUT TEAM */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.info-card {
    background: var(--surface-soft);
    border-radius: 10px;
    padding: 28px;
    border: 1px solid var(--hairline);
}

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

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

/* RESPONSIVE */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); }
    .signature-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cream-callout { flex-direction: column; gap: 32px; }
    .info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero-band { padding: 64px 0; }
    .hero-band h1 { font-size: 28px; }
    .section { padding: 64px 0; }
    .section-title { font-size: 24px; }
    .articles-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .signature-coral, .signature-forest, .signature-dark { padding: 32px 24px; }
    .signature-coral h2, .signature-forest h2, .signature-dark h2 { font-size: 24px; }
    .cream-callout { padding: 32px 24px; }
    .cta-band { padding: 32px 24px; }
    #cookie-banner { padding: 16px 20px; }
    .article-hero h1 { font-size: 28px; }
    .article-hero-stripes { width: 30%; }
    .stats-block { gap: 20px; }
}
