@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;
  --on-primary: #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;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--canvas); color: var(--body); line-height: 1.55; }

a { color: var(--ink); text-decoration: underline; }
a:hover { color: var(--primary-active); }

.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; }
nav.top-nav .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
nav.top-nav .nav-logo { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 18px; color: var(--ink); text-decoration: none; letter-spacing: -0.3px; }
nav.top-nav .nav-links { display: flex; gap: 24px; list-style: none; }
nav.top-nav .nav-links a { font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none; }
nav.top-nav .nav-links a:hover { color: var(--muted); }
nav.top-nav .nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
nav.top-nav .nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

.hero-band { padding: 96px 0; background: var(--canvas); }
.hero-band .hero-inner { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; }
.hero-band h1 { font-family: 'Inter', sans-serif; font-size: 56px; font-weight: 500; line-height: 1.05; letter-spacing: -2px; color: var(--ink); margin-bottom: 24px; }
.hero-band .hero-sub { font-size: 18px; font-weight: 400; color: var(--body); line-height: 1.55; margin-bottom: 32px; }
.hero-illustration { background: var(--surface-soft); border-radius: 24px; overflow: hidden; aspect-ratio: 4/3; }
.hero-illustration img { width: 100%; height: 100%; object-fit: cover; }

.section { padding: 96px 0; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.section-title { font-family: 'Inter', sans-serif; font-size: 40px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 16px; }
.section-body { font-size: 16px; color: var(--body); line-height: 1.55; max-width: 640px; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.feature-card { border-radius: 24px; padding: 32px; }
.feature-card h3 { font-size: 18px; font-weight: 600; line-height: 1.4; margin-bottom: 12px; }
.feature-card p { font-size: 16px; line-height: 1.55; }
.feature-card.pink { background: var(--brand-pink); color: #fff; }
.feature-card.teal { background: var(--brand-teal); color: #fff; }
.feature-card.lavender { background: var(--brand-lavender); color: var(--ink); }
.feature-card.peach { background: var(--brand-peach); color: var(--ink); }
.feature-card.ochre { background: var(--brand-ochre); color: var(--ink); }
.feature-card.cream { background: var(--surface-card); color: var(--ink); }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.article-card { background: var(--canvas); border: 1px solid var(--hairline); border-radius: 16px; padding: 24px; transition: box-shadow 0.2s; }
.article-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.article-card .card-img { border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; margin-bottom: 16px; }
.article-card .card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card .card-tag { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.article-card h3 { font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.4; margin-bottom: 8px; }
.article-card p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.article-card a { text-decoration: none; }

.cta-band { background: var(--surface-soft); border-radius: 24px; padding: 80px; text-align: center; margin: 96px 0; }
.cta-band h2 { font-family: 'Inter', sans-serif; font-size: 40px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 16px; }
.cta-band p { font-size: 18px; color: var(--body); max-width: 560px; margin: 0 auto 32px; }

.btn-primary { display: inline-flex; align-items: center; background: var(--primary); color: #fff; font-size: 14px; font-weight: 600; padding: 12px 20px; border-radius: 12px; border: none; cursor: pointer; text-decoration: none; height: 44px; transition: background 0.15s; }
.btn-primary:hover { background: var(--primary-active); color: #fff; }
.btn-secondary { display: inline-flex; align-items: center; background: var(--canvas); color: var(--ink); font-size: 14px; font-weight: 600; padding: 12px 20px; border-radius: 12px; border: 1px solid var(--hairline); cursor: pointer; text-decoration: none; height: 44px; }

.badge-pill { display: inline-block; background: var(--surface-card); color: var(--ink); font-size: 13px; font-weight: 500; padding: 4px 12px; border-radius: 9999px; }

footer { background: var(--surface-soft); padding: 80px 0 40px; }
footer .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
footer .footer-brand { font-size: 18px; font-weight: 600; color: var(--ink); margin-bottom: 12px; text-decoration: none; display: block; }
footer .footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.55; }
footer .footer-col h4 { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
footer .footer-col ul { list-style: none; }
footer .footer-col ul li { margin-bottom: 8px; }
footer .footer-col ul li a { font-size: 14px; color: var(--muted); text-decoration: none; }
footer .footer-col ul li a:hover { color: var(--ink); }
footer .footer-bottom { border-top: 1px solid var(--hairline); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
footer .footer-bottom p { font-size: 14px; color: var(--muted); }

.article-hero { padding: 64px 0 48px; }
.article-hero .article-meta { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.article-hero h1 { font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 500; line-height: 1.08; letter-spacing: -1.5px; color: var(--ink); margin-bottom: 24px; }
.article-hero .article-lead { font-size: 18px; color: var(--body-strong); line-height: 1.55; max-width: 720px; }
.article-hero .article-img { margin-top: 40px; border-radius: 24px; overflow: hidden; max-height: 480px; }
.article-hero .article-img img { width: 100%; object-fit: cover; }

.article-body { max-width: 740px; margin: 0 auto; padding: 48px 0 96px; }
.article-body h2 { font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 500; line-height: 1.15; 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.7; margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { font-size: 16px; color: var(--body); line-height: 1.7; margin-bottom: 8px; }
.article-body .info-box { background: var(--surface-card); border-radius: 16px; padding: 24px; margin: 32px 0; }
.article-body .info-box h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.article-body a { color: var(--ink); }

.page-hero { padding: 64px 0 48px; border-bottom: 1px solid var(--hairline); }
.page-hero h1 { font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 500; line-height: 1.08; letter-spacing: -1.5px; color: var(--ink); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--body); }
.page-content { max-width: 740px; margin: 0 auto; padding: 48px 0 96px; }
.page-content h2 { font-size: 24px; font-weight: 600; color: var(--ink); margin: 32px 0 12px; }
.page-content p { font-size: 16px; color: var(--body); line-height: 1.7; margin-bottom: 16px; }

.contact-form { background: var(--surface-card); border-radius: 24px; padding: 48px; max-width: 560px; margin: 48px auto; }
.contact-form h2 { font-size: 32px; font-weight: 500; color: var(--ink); margin-bottom: 8px; }
.contact-form p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; background: var(--canvas); color: var(--ink); font-family: 'Inter', sans-serif; font-size: 16px; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--hairline); height: 44px; outline: none; transition: border-color 0.15s; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--ink); }
.form-group textarea { height: 120px; resize: vertical; }
#form-msg { margin-top: 16px; font-size: 14px; color: var(--success); display: none; }

.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; border-radius: 16px; padding: 20px 28px; display: flex; align-items: center; gap: 24px; z-index: 9999; max-width: 640px; width: calc(100% - 48px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.cookie-banner p { font-size: 14px; line-height: 1.5; flex: 1; }
.cookie-banner a { color: var(--brand-ochre); }
.cookie-banner .cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-banner .btn-accept { background: #fff; color: var(--ink); font-size: 14px; font-weight: 600; padding: 8px 16px; border-radius: 8px; border: none; cursor: pointer; white-space: nowrap; }
.cookie-banner .btn-reject { background: transparent; color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 600; padding: 8px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.3); cursor: pointer; white-space: nowrap; }

.breadcrumbs { font-size: 13px; color: var(--muted); padding: 16px 0; }
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span { margin: 0 6px; }

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
  footer .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav.top-nav .nav-links { display: none; }
  nav.top-nav .nav-hamburger { display: block; }
  nav.top-nav .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid var(--hairline); padding: 16px 24px; gap: 16px; }
  .hero-band .hero-inner { grid-template-columns: 1fr; }
  .hero-band h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-illustration { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  .cta-band { padding: 48px 24px; }
  .cta-band h2 { font-size: 28px; }
  footer .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .article-hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 32px; }
  .contact-form { padding: 32px 24px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
