@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;
  --warning: #f59e0b;
  --error: #ef4444;
  --rounded-xs: 6px;
  --rounded-sm: 8px;
  --rounded-md: 12px;
  --rounded-lg: 16px;
  --rounded-xl: 24px;
  --rounded-pill: 9999px;
  --section: 96px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--canvas);
  color: var(--body);
  font-size: 16px;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; 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;
  height: 100%;
  gap: 32px;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--brand-teal); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: var(--rounded-pill);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--ink);
  background: var(--surface-card);
}
.nav-right { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.btn-primary {
  background: var(--primary);
  color: var(--on-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  height: 44px;
  border-radius: var(--rounded-md);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--primary-active); }
.btn-secondary {
  background: var(--canvas);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  height: 44px;
  border-radius: var(--rounded-md);
  border: 1px solid var(--hairline);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: background 0.15s;
}
.btn-secondary:hover { background: var(--surface-card); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

/* HERO */
.hero-band {
  background: var(--canvas);
  padding: var(--section) 0;
}
.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-family: 'Inter', sans-serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2.5px;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-band p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--body);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-illustration-card {
  background: var(--surface-soft);
  border-radius: var(--rounded-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.hero-illustration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* BADGE PILLS */
.badge-pill {
  display: inline-block;
  background: var(--surface-card);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--rounded-pill);
}

/* SECTIONS */
.section { padding: var(--section) 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-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-desc {
  font-size: 16px;
  color: var(--body);
  max-width: 560px;
  line-height: 1.55;
}

/* FEATURE CARDS GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.feature-card {
  border-radius: var(--rounded-xl);
  padding: 32px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.85;
}
.feature-card-img {
  width: 100%;
  border-radius: var(--rounded-lg);
  margin-bottom: 20px;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.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); }

/* ARTICLE CARDS */
.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: 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%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-card-body { padding: 24px; }
.article-card-meta {
  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;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.article-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin-bottom: 16px;
}
.text-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* TESTIMONIAL */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--surface-card);
  border-radius: var(--rounded-lg);
  padding: 24px;
}
.testimonial-card p {
  font-size: 16px;
  color: var(--body-strong);
  line-height: 1.55;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testimonial-role { font-size: 13px; color: var(--muted); }

/* CTA BAND */
.cta-band {
  background: var(--surface-soft);
  border-radius: var(--rounded-xl);
  padding: 80px;
  text-align: center;
  margin: 0 24px;
}
.cta-band h2 {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 16px;
  color: var(--body);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTACT FORM */
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input {
  background: var(--canvas);
  color: var(--ink);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  padding: 12px 16px;
  height: 44px;
  border-radius: var(--rounded-md);
  border: 1px solid var(--hairline);
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.contact-form input:focus { border-color: var(--ink); }
.contact-form button { width: 100%; justify-content: center; }

/* FOOTER */
.footer {
  background: var(--surface-soft);
  padding: 80px 0 40px;
  margin-top: var(--section);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin-top: 12px;
  max-width: 260px;
}
.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); transition: color 0.15s; }
.footer-col ul a:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted-soft); }
.footer-contact { font-size: 13px; color: var(--muted); }
.footer-contact a { color: var(--body); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-dark);
  color: var(--on-dark);
  padding: 20px 28px;
  border-radius: var(--rounded-lg);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 999;
  width: min(680px, calc(100vw - 32px));
  box-shadow: 0 8px 32px rgba(0,0,0,0.24);
}
#cookie-banner p { font-size: 14px; line-height: 1.5; flex: 1; }
#cookie-banner a { color: var(--brand-mint); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 8px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--on-primary);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--rounded-md);
  border: none;
  cursor: pointer;
}
.btn-cookie-reject {
  background: transparent;
  color: var(--on-dark);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--rounded-md);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
}

/* ARTICLE PAGE */
.article-hero {
  padding: 64px 0 0;
  background: var(--canvas);
}
.article-hero-img {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: var(--rounded-xl);
  margin-top: 40px;
}
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px var(--section);
}
.article-body h1 {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.article-body h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin: 40px 0 12px;
}
.article-body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 8px;
}
.article-body p { font-size: 16px; color: var(--body); line-height: 1.65; margin-bottom: 16px; }
.article-body ul, .article-body ol { padding-left: 24px; margin-bottom: 16px; }
.article-body li { font-size: 16px; color: var(--body); line-height: 1.65; margin-bottom: 6px; }
.article-body a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.article-body .note {
  background: var(--surface-card);
  border-left: 3px solid var(--brand-ochre);
  border-radius: 0 var(--rounded-md) var(--rounded-md) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--body-strong);
}
.article-updated { font-size: 13px; color: var(--muted-soft); }

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--muted-soft); }

/* STATIC PAGES */
.static-page { padding: 64px 0 var(--section); }
.static-page h1 {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 32px;
}
.static-page h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 40px 0 12px;
}
.static-page p { font-size: 16px; color: var(--body); line-height: 1.65; margin-bottom: 14px; }
.static-page ul { padding-left: 24px; margin-bottom: 14px; }
.static-page li { font-size: 16px; color: var(--body); line-height: 1.65; margin-bottom: 4px; }
.static-page a { color: var(--ink); text-decoration: underline; }
.static-content { max-width: 720px; }

/* DISCLAIMER */
.disclaimer {
  background: var(--surface-card);
  border-radius: var(--rounded-md);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 32px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-band h1 { font-size: 36px; letter-spacing: -1px; }
  .section-title { font-size: 28px; }
  .hero-band .container { grid-template-columns: 1fr; }
  .hero-illustration-card { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 40px 24px; margin: 0; border-radius: var(--rounded-xl); }
  .cta-band h2 { font-size: 28px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); border-bottom: 1px solid var(--hairline); padding: 16px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .top-nav .container { position: relative; flex-wrap: wrap; }
  .article-body h1 { font-size: 28px; }
  #cookie-banner { flex-direction: column; align-items: flex-start; bottom: 0; border-radius: var(--rounded-xl) var(--rounded-xl) 0 0; }
}
