@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: #0a0a0a;
  --primary-active: #1f1f1f;
  --primary-disabled: #e5e5e5;
  --ink: #0a0a0a;
  --body: #3a3a3a;
  --body-strong: #1a1a1a;
  --muted: #6a6a6a;
  --muted-soft: #9a9a9a;
  --hairline: #e5e5e5;
  --hairline-soft: #f0f0f0;
  --canvas: #fffaf0;
  --surface-soft: #faf5e8;
  --surface-card: #f5f0e0;
  --surface-strong: #ebe6d6;
  --surface-dark: #0a1a1a;
  --on-primary: #ffffff;
  --on-dark: #ffffff;
  --brand-pink: #ff4d8b;
  --brand-teal: #1a3a3a;
  --brand-lavender: #b8a4ed;
  --brand-peach: #ffb084;
  --brand-ochre: #e8b94a;
  --brand-mint: #a4d4c5;
  --brand-coral: #ff6b5a;
  --success: #22c55e;
  --error: #ef4444;
  --rounded-xs: 6px;
  --rounded-sm: 8px;
  --rounded-md: 12px;
  --rounded-lg: 16px;
  --rounded-xl: 24px;
  --rounded-pill: 9999px;
}

html { scroll-behavior: smooth; }
body { background: var(--canvas); color: var(--body); font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; font-size: 16px; line-height: 1.55; }

a { color: var(--ink); text-decoration: underline; }
a:hover { color: var(--primary-active); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* NAV */
.top-nav { background: var(--canvas); height: 64px; border-bottom: 1px solid var(--hairline); position: sticky; top: 0; z-index: 100; }
.top-nav .container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { font-size: 18px; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: -0.3px; }
.nav-menu { display: flex; gap: 8px; list-style: none; }
.nav-menu a { font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none; padding: 8px 16px; border-radius: var(--rounded-pill); transition: background 0.15s; }
.nav-menu a:hover { background: var(--surface-card); }
.nav-menu a.active { background: var(--surface-card); }
.nav-contact { font-size: 14px; font-weight: 600; background: var(--primary); color: var(--on-primary); padding: 12px 20px; border-radius: var(--rounded-md); text-decoration: none; height: 44px; display: inline-flex; align-items: center; }
.nav-contact:hover { background: var(--primary-active); color: var(--on-primary); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* HERO */
.hero-band { padding: 96px 0; background: var(--canvas); }
.hero-band .container { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; }
.hero-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.hero-band h1 { font-size: 56px; font-weight: 500; line-height: 1.05; letter-spacing: -2px; color: var(--ink); margin-bottom: 24px; }
.hero-band p { font-size: 18px; font-weight: 600; line-height: 1.4; color: var(--body-strong); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary { font-size: 14px; font-weight: 600; background: var(--primary); color: var(--on-primary); padding: 12px 20px; border-radius: var(--rounded-md); text-decoration: none; height: 44px; display: inline-flex; align-items: center; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--primary-active); color: var(--on-primary); }
.btn-secondary { font-size: 14px; font-weight: 600; background: var(--canvas); color: var(--ink); padding: 12px 20px; border-radius: var(--rounded-md); text-decoration: none; height: 44px; display: inline-flex; align-items: center; border: 1px solid var(--hairline); }
.btn-secondary:hover { background: var(--surface-card); }
.hero-img-card { background: var(--surface-soft); border-radius: var(--rounded-xl); overflow: hidden; }
.hero-img-card img { width: 100%; height: 380px; object-fit: cover; }

/* SECTION */
section { padding: 96px 0; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.section-title { font-size: 40px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 16px; }
.section-sub { font-size: 18px; font-weight: 400; color: var(--body); max-width: 600px; }
.section-header { margin-bottom: 48px; }

/* FEATURE CARDS */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { border-radius: var(--rounded-xl); padding: 32px; }
.feature-card h3 { font-size: 18px; font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
.feature-card p { font-size: 16px; font-weight: 400; line-height: 1.55; }
.feature-card .card-icon { font-size: 32px; margin-bottom: 16px; }
.fc-pink { background: var(--brand-pink); color: var(--on-primary); }
.fc-teal { background: var(--brand-teal); color: var(--on-dark); }
.fc-lavender { background: var(--brand-lavender); color: var(--ink); }
.fc-peach { background: var(--brand-peach); color: var(--ink); }
.fc-ochre { background: var(--brand-ochre); color: var(--ink); }
.fc-cream { background: var(--surface-card); color: var(--ink); }

/* ARTICLES GRID */
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--rounded-lg); overflow: hidden; transition: box-shadow 0.15s; }
.article-card:hover { box-shadow: 0 4px 20px rgba(10,10,10,0.08); }
.article-card img { width: 100%; height: 200px; object-fit: cover; }
.article-card-body { padding: 24px; }
.article-card-body .badge { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; display: block; }
.article-card-body h3 { font-size: 18px; font-weight: 600; line-height: 1.4; color: var(--ink); margin-bottom: 10px; }
.article-card-body p { font-size: 14px; color: var(--body); line-height: 1.55; margin-bottom: 16px; }
.article-card-body a { font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: underline; }

/* STATS BAND */
.stats-band { background: var(--surface-strong); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item .stat-num { font-size: 40px; font-weight: 500; letter-spacing: -1px; color: var(--ink); line-height: 1.1; }
.stat-item .stat-desc { font-size: 14px; color: var(--muted); margin-top: 8px; }

/* CONTACT FORM */
.contact-band { background: var(--surface-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 40px; font-weight: 500; letter-spacing: -1px; color: var(--ink); margin-bottom: 16px; }
.contact-info p { font-size: 16px; color: var(--body); margin-bottom: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 12px; }
.contact-detail a { font-size: 16px; color: var(--ink); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--body-strong); }
.form-group input, .form-group textarea { background: var(--canvas); color: var(--ink); font-family: inherit; font-size: 16px; border: 1px solid var(--hairline); border-radius: var(--rounded-md); padding: 12px 16px; height: 44px; width: 100%; outline: none; transition: border-color 0.15s; }
.form-group textarea { height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--ink); }
.form-submit { font-size: 14px; font-weight: 600; background: var(--primary); color: var(--on-primary); padding: 12px 20px; border-radius: var(--rounded-md); height: 44px; border: none; cursor: pointer; align-self: flex-start; }
.form-submit:hover { background: var(--primary-active); }
.form-note { font-size: 13px; color: var(--muted-soft); }

/* CTA BAND */
.cta-band { background: var(--surface-soft); border-radius: var(--rounded-xl); padding: 80px; margin: 0 24px 96px; }
.cta-band h2 { font-size: 40px; font-weight: 500; letter-spacing: -1px; color: var(--ink); margin-bottom: 16px; }
.cta-band p { font-size: 18px; color: var(--body); margin-bottom: 32px; }

/* FOOTER */
footer { background: var(--surface-soft); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { font-size: 14px; color: var(--body); line-height: 1.55; margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--body); text-decoration: none; }
.footer-col ul a:hover { color: var(--ink); }
.footer-bottom { border-top: 1px solid var(--hairline); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: var(--muted); }
.footer-bottom .footer-links { display: flex; gap: 20px; }
.footer-bottom .footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-bottom .footer-links a:hover { color: var(--ink); }

/* COOKIE */
#cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--surface-dark); color: var(--on-dark); border-radius: var(--rounded-lg); padding: 20px 28px; max-width: 560px; width: calc(100% - 48px); z-index: 999; display: flex; gap: 20px; align-items: center; justify-content: space-between; box-shadow: 0 8px 32px rgba(10,10,10,0.24); }
#cookie-banner p { font-size: 14px; line-height: 1.55; }
#cookie-banner a { color: var(--brand-mint); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns button { font-size: 14px; font-weight: 600; padding: 10px 18px; border-radius: var(--rounded-md); border: none; cursor: pointer; height: 40px; }
#cookie-accept { background: var(--on-primary); color: var(--ink); }
#cookie-reject { background: transparent; color: var(--on-dark); border: 1px solid rgba(255,255,255,0.3); }

/* ARTICLE PAGE */
.article-hero { padding: 64px 0 48px; }
.article-hero .container { max-width: 800px; }
.article-meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; display: flex; gap: 16px; flex-wrap: wrap; }
.article-hero h1 { font-size: 40px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 20px; }
.article-hero .lead { font-size: 18px; font-weight: 600; color: var(--body-strong); line-height: 1.4; }
.article-img { margin: 48px 0; border-radius: var(--rounded-xl); overflow: hidden; }
.article-img img { width: 100%; height: 460px; object-fit: cover; }
.article-body { max-width: 800px; margin: 0 auto; padding-bottom: 96px; }
.article-body h2 { font-size: 32px; font-weight: 500; letter-spacing: -0.5px; color: var(--ink); margin: 48px 0 16px; }
.article-body h3 { font-size: 24px; font-weight: 600; color: var(--ink); margin: 32px 0 12px; }
.article-body p { font-size: 16px; color: var(--body); line-height: 1.55; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 20px; }
.article-body li { font-size: 16px; color: var(--body); line-height: 1.55; margin-bottom: 8px; }
.article-body a { color: var(--ink); }
.info-box { background: var(--surface-card); border-radius: var(--rounded-lg); padding: 24px 28px; margin: 32px 0; border-left: 4px solid var(--brand-ochre); }
.info-box p { margin: 0; }
.article-nav { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.article-nav a { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; padding: 8px 16px; border-radius: var(--rounded-pill); background: var(--surface-card); color: var(--ink); text-decoration: none; }
.article-nav a:hover { background: var(--surface-strong); }

/* PAGE */
.page-hero { padding: 64px 0 48px; }
.page-hero h1 { font-size: 40px; font-weight: 500; letter-spacing: -1px; color: var(--ink); margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: var(--body); }
.page-body { max-width: 800px; padding-bottom: 96px; }
.page-body h2 { font-size: 24px; font-weight: 600; color: var(--ink); margin: 40px 0 12px; }
.page-body p { font-size: 16px; color: var(--body); line-height: 1.55; margin-bottom: 16px; }
.page-body ul { margin: 0 0 16px 20px; }
.page-body li { font-size: 16px; color: var(--body); line-height: 1.55; margin-bottom: 8px; }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 20px; display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--muted-soft); }

/* DISCLAIMER */
.disclaimer { background: var(--surface-card); border-radius: var(--rounded-md); padding: 16px 20px; font-size: 13px; color: var(--muted); line-height: 1.55; margin: 24px 0; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-band .container { grid-template-columns: 1fr; }
  .hero-band h1 { font-size: 36px; }
  .section-title { font-size: 28px; }
  .hero-img-card { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; margin: 0 0 48px; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid var(--hairline); padding: 12px 24px 20px; z-index: 99; }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .nav-contact { display: none; }
  .article-hero h1 { font-size: 28px; }
  .article-body h2 { font-size: 24px; }
  .article-img img { height: 240px; }
}
