*, *::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;
    --surface-dark-elevated: #1a2a2a;
    --on-primary: #ffffff;
    --on-dark: #ffffff;
    --on-dark-soft: #a0a0a0;
    --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;
    --space-xxs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-xxl: 48px;
    --space-section: 96px;
}

html { scroll-behavior: smooth; }

body {
    background-color: 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;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

/* Top Nav */
.top-nav {
    background-color: var(--canvas);
    height: 64px;
    border-bottom: 1px solid var(--hairline);
    position: sticky;
    top: 0;
    z-index: 100;
}
.top-nav .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}
.nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.15s;
}
.nav-links a:hover { color: var(--muted); }
.nav-actions { display: flex; align-items: center; gap: var(--space-md); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0;
    transition: all 0.2s;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    color: var(--on-primary);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 12px 20px;
    height: 44px;
    border-radius: var(--rounded-md);
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.15s;
}
.btn-primary:hover { background-color: var(--primary-active); }

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

/* Hero Band */
.hero-band {
    background-color: var(--canvas);
    padding: var(--space-section) 0;
}
.hero-band .container {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: var(--space-xxl);
    align-items: center;
}
.hero-content {}
.hero-eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--space-md);
}
.hero-content h1 {
    font-family: Inter, sans-serif;
    font-size: 72px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2.5px;
    color: var(--ink);
    margin-bottom: var(--space-lg);
}
.hero-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--body);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}
.hero-actions { display: flex; gap: var(--space-md); align-items: center; flex-wrap: wrap; }
.hero-illustration {
    background-color: var(--surface-soft);
    border-radius: var(--rounded-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}
.hero-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Section */
.section { padding: var(--space-section) 0; }
.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--space-md);
    display: block;
}
.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: var(--space-lg);
}
.section-subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--body);
    max-width: 600px;
    margin-bottom: var(--space-xxl);
}

/* Feature Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.feature-card {
    border-radius: var(--rounded-xl);
    padding: var(--space-xl);
}
.feature-card-pink { background-color: var(--brand-pink); }
.feature-card-pink .card-title,
.feature-card-pink .card-body { color: var(--on-primary); }
.feature-card-teal { background-color: var(--brand-teal); }
.feature-card-teal .card-title,
.feature-card-teal .card-body { color: var(--on-dark); }
.feature-card-lavender { background-color: var(--brand-lavender); }
.feature-card-lavender .card-title,
.feature-card-lavender .card-body { color: var(--ink); }
.feature-card-peach { background-color: var(--brand-peach); }
.feature-card-peach .card-title,
.feature-card-peach .card-body { color: var(--ink); }
.feature-card-ochre { background-color: var(--brand-ochre); }
.feature-card-ochre .card-title,
.feature-card-ochre .card-body { color: var(--ink); }
.feature-card-cream { background-color: var(--surface-card); }
.feature-card-cream .card-title,
.feature-card-cream .card-body { color: var(--ink); }
.card-icon {
    font-size: 28px;
    margin-bottom: var(--space-md);
    display: block;
}
.card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}
.card-body {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    opacity: 0.9;
}

/* Article cards */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}
.article-card {
    background-color: var(--canvas);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-lg);
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.article-card:hover {
    border-color: var(--ink);
}
.article-card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}
.article-card-body { padding: var(--space-lg); }
.article-card-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--space-xs);
    display: block;
}
.article-card-title {
    font-family: Inter, sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}
.article-card-excerpt {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
}

/* CTA Band */
.cta-band {
    background-color: var(--surface-soft);
    border-radius: var(--rounded-xl);
    padding: 80px;
    text-align: center;
    margin: var(--space-section) 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: var(--space-md);
}
.cta-band p {
    font-size: 18px;
    color: var(--body);
    margin-bottom: var(--space-xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--surface-soft);
    padding: 80px 0;
    border-top: 1px solid var(--hairline);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xxl);
}
.footer-brand p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    margin-top: var(--space-md);
    max-width: 260px;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-md);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: var(--space-xs); }
.footer-col ul li a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--ink); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid var(--hairline);
    font-size: 13px;
    color: var(--muted-soft);
}
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--ink); }

/* Article page */
.article-hero {
    padding: var(--space-xxl) 0 0;
}
.article-meta {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    margin-bottom: var(--space-lg);
    font-size: 13px;
    color: var(--muted);
}
.article-tag {
    background-color: var(--surface-card);
    color: var(--ink);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--rounded-pill);
}
.article-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: var(--space-lg);
    max-width: 800px;
}
.article-hero .lead {
    font-size: 18px;
    line-height: 1.55;
    color: var(--body-strong);
    max-width: 680px;
    margin-bottom: var(--space-xl);
}
.article-hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--rounded-xl);
    margin-bottom: var(--space-section);
}
.article-layout {
    display: grid;
    grid-template-columns: 680px 1fr;
    gap: var(--space-xxl);
    padding-bottom: var(--space-section);
}
.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: var(--space-xxl) 0 var(--space-md);
}
.article-body h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.3px;
    color: var(--ink);
    margin: var(--space-xl) 0 var(--space-sm);
}
.article-body p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--body);
    margin-bottom: var(--space-md);
}
.article-body ul, .article-body ol {
    padding-left: var(--space-lg);
    margin-bottom: var(--space-md);
}
.article-body li {
    font-size: 16px;
    line-height: 1.55;
    color: var(--body);
    margin-bottom: var(--space-xs);
}
.article-body img {
    width: 100%;
    border-radius: var(--rounded-lg);
    margin: var(--space-lg) 0;
}
.article-sidebar {}
.sidebar-widget {
    background-color: var(--surface-card);
    border-radius: var(--rounded-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}
.sidebar-widget h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-md);
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { margin-bottom: var(--space-sm); }
.sidebar-widget ul li a {
    font-size: 14px;
    color: var(--body);
    text-decoration: none;
    line-height: 1.4;
}
.sidebar-widget ul li a:hover { color: var(--ink); }

/* Contact form */
.contact-form { max-width: 560px; }
.form-group { margin-bottom: var(--space-md); }
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-xs);
}
.form-group input,
.form-group textarea {
    width: 100%;
    background-color: var(--canvas);
    color: var(--ink);
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    padding: 12px 16px;
    height: 44px;
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-md);
    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); }

/* Static pages */
.page-hero { padding: var(--space-section) 0 var(--space-xl); }
.page-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: var(--space-md);
}
.page-content { max-width: 720px; padding-bottom: var(--space-section); }
.page-content h2 {
    font-family: Inter, sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--ink);
    margin: var(--space-xxl) 0 var(--space-md);
}
.page-content p {
    font-size: 16px;
    line-height: 1.55;
    color: var(--body);
    margin-bottom: var(--space-md);
}
.page-content ul { padding-left: var(--space-lg); margin-bottom: var(--space-md); }
.page-content li {
    font-size: 16px;
    line-height: 1.55;
    color: var(--body);
    margin-bottom: var(--space-xs);
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--surface-dark);
    color: var(--on-dark);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    z-index: 999;
}
#cookie-banner p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--on-dark-soft);
    flex: 1;
}
#cookie-banner p a { color: var(--on-dark); }
.cookie-actions { display: flex; gap: var(--space-sm); flex-shrink: 0; }
.btn-cookie-accept {
    background-color: var(--canvas);
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--rounded-md);
    border: none;
    cursor: pointer;
}
.btn-cookie-reject {
    background-color: transparent;
    color: var(--on-dark-soft);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--rounded-md);
    border: 1px solid #2a3a3a;
    cursor: pointer;
}
.btn-cookie-reject:hover { border-color: var(--on-dark-soft); }

/* Breadcrumbs */
.breadcrumbs {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: var(--space-md);
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span { margin: 0 6px; }

/* Responsive */
@media (max-width: 1024px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .article-layout { grid-template-columns: 1fr; }
    .article-layout .article-sidebar { display: none; }
}

@media (max-width: 768px) {
    .hero-band .container { grid-template-columns: 1fr; }
    .hero-illustration { display: none; }
    .hero-content h1 { font-size: 36px; letter-spacing: -1px; }
    .section-title { font-size: 28px; }
    .cards-grid { grid-template-columns: 1fr; }
    .article-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    .nav-actions .btn-primary { display: none; }
    .nav-hamburger { display: block; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--canvas); padding: var(--space-lg); border-bottom: 1px solid var(--hairline); gap: var(--space-md); }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 48px var(--space-xl); }
    .cta-band h2 { font-size: 28px; }
    .article-hero h1 { font-size: 32px; letter-spacing: -0.5px; }
    .page-hero h1 { font-size: 36px; }
    #cookie-banner { flex-direction: column; align-items: flex-start; }
    .container { padding: 0 var(--space-md); }
}
