*, *::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; --rounded-xs: 6px; --rounded-sm: 8px; --rounded-md: 12px; --rounded-lg: 16px; --rounded-xl: 24px; --rounded-pill: 9999px; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; background-color: var(--canvas); color: var(--body); 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; }
.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-family: Inter, sans-serif; font-size: 18px; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: -0.3px; }
.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(--rounded-pill); transition: background 0.15s; }
.nav-menu a:hover { background: var(--surface-card); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.hero-band { background: var(--canvas); padding: 96px 0; }
.hero-band .container { display: grid; grid-template-columns: 7fr 5fr; gap: 48px; align-items: center; }
.hero-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.hero-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-lead { font-size: 18px; font-weight: 400; line-height: 1.55; color: var(--body-strong); margin-bottom: 32px; max-width: 520px; }
.hero-img-card { background: var(--surface-soft); border-radius: var(--rounded-xl); overflow: hidden; aspect-ratio: 4/3; }
.hero-img-card 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-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; }
.section-lead { font-size: 16px; color: var(--body); max-width: 640px; margin-bottom: 48px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { border-radius: var(--rounded-xl); padding: 32px; }
.feature-card-pink { background: var(--brand-pink); color: var(--on-primary); }
.feature-card-teal { background: var(--brand-teal); color: var(--on-primary); }
.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); }
.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; opacity: 0.9; }
.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; text-decoration: none; color: inherit; transition: box-shadow 0.15s; }
.article-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.article-card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-soft); }
.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: 8px; }
.article-card-title { font-size: 18px; font-weight: 600; line-height: 1.3; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.3px; }
.article-card-desc { font-size: 14px; color: var(--body); line-height: 1.55; }
.content-area { max-width: 800px; margin: 0 auto; }
.content-area h1 { font-size: 40px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; color: var(--ink); margin-bottom: 24px; }
.content-area h2 { font-size: 32px; font-weight: 500; line-height: 1.15; letter-spacing: -0.5px; color: var(--ink); margin-top: 48px; margin-bottom: 16px; }
.content-area h3 { font-size: 24px; font-weight: 600; line-height: 1.3; color: var(--ink); margin-top: 32px; margin-bottom: 12px; letter-spacing: -0.3px; }
.content-area p { font-size: 16px; line-height: 1.7; color: var(--body); margin-bottom: 20px; }
.content-area ul, .content-area ol { margin: 0 0 20px 24px; }
.content-area li { font-size: 16px; line-height: 1.7; color: var(--body); margin-bottom: 6px; }
.content-area a { color: var(--ink); }
.content-area strong { color: var(--body-strong); font-weight: 600; }
.article-meta { display: flex; gap: 16px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 32px; flex-wrap: wrap; }
.article-img-main { border-radius: var(--rounded-lg); overflow: hidden; margin-bottom: 40px; }
.article-img-main img { width: 100%; max-height: 480px; object-fit: cover; }
.compare-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 15px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--hairline); }
.compare-table th { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); background: var(--surface-soft); }
.compare-table tr:hover td { background: var(--surface-soft); }
.info-box { background: var(--surface-card); border-left: 4px solid var(--brand-ochre); border-radius: var(--rounded-sm); padding: 20px 24px; margin: 32px 0; font-size: 15px; line-height: 1.6; color: var(--body-strong); }
.cta-band { background: var(--surface-soft); border-radius: var(--rounded-xl); padding: 80px; text-align: center; margin: 0 24px; }
.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); max-width: 560px; margin: 0 auto 32px; }
.contact-form { background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--rounded-lg); padding: 40px; max-width: 600px; margin: 0 auto; }
.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); border: 1px solid var(--hairline); border-radius: var(--rounded-md); padding: 12px 16px; font-size: 16px; font-family: inherit; color: var(--ink); height: 44px; transition: border-color 0.15s; }
.form-group textarea { height: auto; min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--ink); }
.btn-primary { background: var(--primary); color: var(--on-primary); font-size: 14px; font-weight: 600; border: none; border-radius: var(--rounded-md); padding: 12px 20px; height: 44px; cursor: pointer; font-family: inherit; transition: background 0.15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-primary:hover { background: var(--primary-active); }
.btn-primary:disabled { background: var(--primary-disabled); color: var(--muted); cursor: not-allowed; }
.form-msg { margin-top: 16px; font-size: 14px; color: var(--muted); display: none; }
.form-msg.success { color: #22c55e; display: block; }
.form-msg.loading { display: block; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { margin: 0 6px; }
.badge { display: inline-block; background: var(--surface-card); color: var(--ink); font-size: 13px; font-weight: 500; border-radius: var(--rounded-pill); padding: 4px 12px; }
#cookie-banner { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--on-primary); border-radius: var(--rounded-lg); padding: 16px 24px; display: flex; align-items: center; gap: 24px; max-width: 640px; width: calc(100% - 48px); z-index: 1000; font-size: 14px; box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
#cookie-banner p { flex: 1; line-height: 1.5; }
#cookie-banner p a { color: var(--brand-mint); }
.cookie-btns { display: flex; gap: 8px; }
.btn-cookie-accept { background: var(--canvas); color: var(--ink); border: none; border-radius: var(--rounded-md); padding: 8px 16px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }
.btn-cookie-reject { background: transparent; color: var(--on-primary); border: 1px solid rgba(255,255,255,0.3); border-radius: var(--rounded-md); padding: 8px 16px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }
.footer { background: var(--surface-soft); padding: 80px 0 40px; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--muted); 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; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 14px; color: var(--body); text-decoration: none; }
.footer-col 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; font-size: 13px; color: var(--muted); flex-wrap: wrap; gap: 12px; }
.page-hero { background: var(--canvas); padding: 64px 0 48px; border-bottom: 1px solid var(--hairline-soft); }
.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); max-width: 640px; }
@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; } }
@media (max-width: 768px) { .hero-h1 { font-size: 36px; letter-spacing: -1px; } .hero-band .container { grid-template-columns: 1fr; } .hero-img-card { display: none; } .section-h2 { font-size: 28px; } .feature-grid { grid-template-columns: 1fr; } .articles-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } .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: 16px; gap: 4px; } .nav-menu.open { display: flex; } .nav-hamburger { display: flex; } .cta-band { padding: 48px 24px; margin: 0; } .cta-band h2 { font-size: 28px; } .contact-form { padding: 24px; } .compare-table { font-size: 13px; } .compare-table th, .compare-table td { padding: 10px 12px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; } #cookie-banner { flex-direction: column; gap: 16px; bottom: 0; border-radius: var(--rounded-xl) var(--rounded-xl) 0 0; } }
