@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;
  --success: #22c55e;
  --error: #ef4444;
}

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

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

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

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

.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-brand { font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: 0.2s; }

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

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

.section { padding: 96px 0; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; color: var(--muted); text-transform: uppercase; 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-subtitle { font-size: 16px; color: var(--body); max-width: 600px; }

.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: 14px; 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); }

.articles-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; overflow: hidden; }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .article-card-img img { transform: scale(1.03); }
.article-card-body { padding: 24px; }
.article-card-body h3 { font-size: 18px; font-weight: 600; line-height: 1.4; color: var(--ink); margin-bottom: 8px; }
.article-card-body p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.article-card-body a { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; }

.content-section { padding: 96px 0; background: var(--canvas); }
.content-section .container { max-width: 760px; }
.content-section h1 { font-size: 40px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 24px; }
.content-section h2 { font-size: 28px; font-weight: 500; line-height: 1.15; letter-spacing: -0.5px; color: var(--ink); margin: 40px 0 16px; }
.content-section h3 { font-size: 20px; font-weight: 600; color: var(--ink); margin: 28px 0 12px; }
.content-section p { font-size: 16px; line-height: 1.7; color: var(--body); margin-bottom: 16px; }
.content-section ul, .content-section ol { padding-left: 24px; margin-bottom: 16px; }
.content-section li { font-size: 16px; line-height: 1.7; color: var(--body); margin-bottom: 6px; }
.content-section .meta { font-size: 13px; color: var(--muted-soft); margin-bottom: 32px; }
.content-section img { border-radius: 16px; margin: 32px 0; }
.info-box { background: var(--surface-soft); border-radius: 16px; padding: 24px; margin: 32px 0; }
.info-box h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.info-box p, .info-box li { font-size: 14px; color: var(--body); }

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

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

.contact-section { padding: 96px 0; background: var(--surface-soft); }
.contact-form { max-width: 560px; margin: 48px auto 0; }
.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-size: 16px; font-family: inherit; line-height: 1.55; padding: 12px 16px; height: 44px; border: 1px solid var(--hairline); border-radius: 12px; outline: none; transition: border-color 0.15s; }
.form-group textarea { height: auto; min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--ink); }
.form-message { display: none; padding: 16px; border-radius: 12px; font-size: 14px; font-weight: 500; margin-top: 16px; }
.form-message.success { background: #dcfce7; color: #166534; display: block; }
.form-loading { display: none; font-size: 14px; color: var(--muted); margin-top: 12px; }

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

.cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); width: calc(100% - 48px); max-width: 640px; background: var(--primary); color: var(--on-primary); padding: 20px 24px; border-radius: 16px; z-index: 9999; display: flex; align-items: center; gap: 20px; box-shadow: 0 4px 24px rgba(0,0,0,0.15); }
.cookie-banner p { font-size: 14px; line-height: 1.5; flex: 1; }
.cookie-banner a { color: var(--brand-peach); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-accept { background: var(--on-primary); color: var(--primary); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 8px; border: none; cursor: pointer; }
.cookie-reject { background: transparent; color: var(--on-primary); font-size: 13px; font-weight: 500; padding: 8px 12px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.3); cursor: pointer; }

.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin: 0 6px; }

@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .hero-band .container { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-img-wrap { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); padding: 16px 24px; border-bottom: 1px solid var(--hairline); }
  .nav-links.open { display: flex; }
  .nav-menu-toggle { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .cta-band { padding: 48px 24px; }
  .section-title { font-size: 28px; }
  .cookie-banner { flex-direction: column; gap: 12px; }
  .cookie-actions { width: 100%; }
}
