@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;
  --r-xs: 6px; --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-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(--muted); }
img { display: block; max-width: 100%; height: auto; }

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

/* TOP 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-logo span { color: var(--brand-teal); }
.nav-menu { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav-menu a { font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none; padding: 8px 12px; border-radius: var(--r-pill); transition: background 0.2s; }
.nav-menu a:hover { background: var(--surface-card); }
.nav-actions { display: flex; align-items: center; gap: 8px; }
.btn-primary { background: var(--primary); color: var(--on-primary); border: none; border-radius: var(--r-md); padding: 12px 20px; height: 44px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; transition: background 0.2s; }
.btn-primary:hover { background: var(--primary-active); color: var(--on-primary); }
.btn-secondary { background: var(--canvas); color: var(--ink); border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 12px 20px; height: 44px; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; transition: background 0.2s; }
.btn-secondary:hover { background: var(--surface-soft); color: var(--ink); }

.hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; 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-inner { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; }
.hero-tag { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.hero-band h1 { font-size: 72px; font-weight: 500; line-height: 1; letter-spacing: -2.5px; color: var(--ink); margin-bottom: 24px; }
.hero-band .hero-sub { font-size: 18px; font-weight: 400; line-height: 1.55; color: var(--body); margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-img-card { background: var(--surface-soft); border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; }
.hero-img-card img { width: 100%; height: 100%; object-fit: cover; }

/* FEATURE CARDS */
.features-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-size: 40px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 48px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { border-radius: var(--r-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; line-height: 1.55; }
.feature-card-pink { background: var(--brand-pink); color: var(--on-primary); }
.feature-card-teal { background: var(--brand-teal); color: var(--on-dark); }
.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 */
.articles-section { padding: 96px 0; background: var(--surface-soft); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card { background: var(--canvas); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--hairline); }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 24px; }
.article-card-tag { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.article-card-body h3 { font-size: 18px; font-weight: 600; line-height: 1.4; letter-spacing: -0.3px; color: var(--ink); margin-bottom: 10px; }
.article-card-body p { font-size: 14px; line-height: 1.55; color: var(--body); margin-bottom: 16px; }
.article-card-body a { font-size: 14px; font-weight: 600; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--ink); padding-bottom: 1px; }
.article-card-body a:hover { color: var(--muted); border-color: var(--muted); }

/* CONTACT FORM */
.contact-section { padding: 96px 0; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 40px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 16px; }
.contact-info p { font-size: 16px; line-height: 1.55; color: var(--body); margin-bottom: 32px; }
.contact-detail { margin-bottom: 12px; font-size: 14px; color: var(--muted); }
.contact-detail strong { color: var(--body-strong); }
.contact-form { background: var(--surface-card); border-radius: var(--r-xl); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--body-strong); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; background: var(--canvas); color: var(--ink); font-family: inherit; font-size: 16px; border: 1px solid var(--hairline); border-radius: var(--r-md); padding: 12px 16px; height: 44px; outline: none; transition: border-color 0.2s; }
.form-group textarea { height: auto; min-height: 100px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--ink); }
.form-success { display: none; background: var(--success); color: #fff; border-radius: var(--r-md); padding: 12px 16px; font-size: 14px; font-weight: 600; margin-top: 12px; }

/* ARTICLE PAGE */
.article-page { padding: 64px 0 96px; }
.article-header { margin-bottom: 40px; }
.article-header .tag { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.article-header h1 { font-size: 56px; font-weight: 500; line-height: 1.05; letter-spacing: -2px; color: var(--ink); margin-bottom: 20px; }
.article-header .meta { font-size: 13px; color: var(--muted-soft); }
.article-hero-img { border-radius: var(--r-xl); overflow: hidden; margin-bottom: 48px; max-height: 440px; }
.article-hero-img img { width: 100%; height: 440px; object-fit: cover; }
.article-body { max-width: 720px; }
.article-body h2 { 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; line-height: 1.3; letter-spacing: -0.3px; color: var(--body-strong); margin: 32px 0 12px; }
.article-body p { font-size: 16px; line-height: 1.55; color: var(--body); margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body li { font-size: 16px; line-height: 1.55; color: var(--body); margin-bottom: 8px; }
.article-body a { color: var(--ink); }
.article-sidebar { padding-top: 8px; }
.sidebar-card { background: var(--surface-card); border-radius: var(--r-lg); padding: 24px; margin-bottom: 24px; }
.sidebar-card h4 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.sidebar-card ul { list-style: none; margin: 0; padding: 0; }
.sidebar-card ul li { margin-bottom: 10px; }
.sidebar-card ul li a { font-size: 14px; color: var(--body); text-decoration: none; border-bottom: 1px solid var(--hairline); padding-bottom: 2px; }
.sidebar-card ul li a:hover { color: var(--ink); border-color: var(--ink); }

.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }

/* INNER PAGE */
.page-header { background: var(--surface-soft); padding: 64px 0 48px; border-bottom: 1px solid var(--hairline); }
.page-header h1 { font-size: 56px; font-weight: 500; line-height: 1.05; letter-spacing: -2px; color: var(--ink); margin-bottom: 12px; }
.page-header .meta { font-size: 13px; color: var(--muted-soft); }
.page-content { padding: 64px 0 96px; max-width: 820px; }
.page-content h2 { font-size: 32px; font-weight: 500; line-height: 1.15; letter-spacing: -0.5px; color: var(--ink); margin: 48px 0 16px; }
.page-content h3 { font-size: 22px; font-weight: 600; color: var(--body-strong); margin: 32px 0 10px; }
.page-content p { font-size: 16px; line-height: 1.55; color: var(--body); margin-bottom: 20px; }
.page-content ul, .page-content ol { margin: 0 0 20px 24px; }
.page-content li { font-size: 16px; line-height: 1.55; color: var(--body); margin-bottom: 8px; }

/* CTA BAND */
.cta-band { background: var(--surface-soft); border-radius: var(--r-xl); padding: 80px; margin: 0 24px 96px; 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: 18px; color: var(--body); margin-bottom: 32px; }

/* BREADCRUMB */
.breadcrumb { font-size: 13px; color: var(--muted-soft); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 6px; }

/* FOOTER */
.site-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: 64px; }
.footer-brand p { font-size: 14px; line-height: 1.55; color: var(--muted); margin-top: 12px; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 600; letter-spacing: 0.5px; color: var(--body-strong); margin-bottom: 16px; }
.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; }
.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-soft); }

/* COOKIE BANNER */
#cookie-banner { position: fixed; bottom: 24px; left: 24px; right: 24px; max-width: 640px; background: var(--surface-dark); color: var(--on-dark); border-radius: var(--r-xl); padding: 24px 28px; display: flex; gap: 20px; align-items: center; justify-content: space-between; z-index: 9999; box-shadow: 0 8px 40px rgba(0,0,0,0.18); }
#cookie-banner p { font-size: 14px; line-height: 1.55; color: #ccc; }
#cookie-banner a { color: #fff; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept { background: var(--on-primary); color: var(--ink); border: none; border-radius: var(--r-md); padding: 10px 18px; font-size: 13px; font-weight: 600; cursor: pointer; }
.cookie-reject { background: transparent; color: #aaa; border: 1px solid #444; border-radius: var(--r-md); padding: 10px 18px; font-size: 13px; font-weight: 600; cursor: pointer; }
.cookie-reject:hover { background: #1f1f1f; color: #fff; }

/* DISCLAIMER */
.disclaimer-bar { background: var(--surface-strong); border-radius: var(--r-md); padding: 16px 20px; font-size: 13px; color: var(--muted); margin-bottom: 48px; line-height: 1.55; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-band h1 { font-size: 56px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img-card { display: none; }
  .hero-band h1 { font-size: 36px; letter-spacing: -1px; }
  .hero-band { padding: 48px 0; }
  .features-section, .articles-section, .contact-section { padding: 48px 0; }
  .section-title { font-size: 28px; }
  .feature-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-info h2 { font-size: 28px; }
  .nav-menu { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-mobile-open .nav-menu { 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 24px; gap: 4px; }
  .nav-mobile-open .nav-actions { display: flex; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); padding: 0 24px 24px; gap: 8px; margin-top: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-header h1 { font-size: 36px; letter-spacing: -1px; }
  .page-header h1 { font-size: 36px; }
  .cta-band { padding: 40px 24px; margin: 0 0 48px; }
  .cta-band h2 { font-size: 28px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; bottom: 0; left: 0; right: 0; border-radius: var(--r-xl) var(--r-xl) 0 0; }
}
