*, *::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;
    --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;
    --max-width: 1280px;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--body);
    background-color: var(--canvas);
    -webkit-font-smoothing: antialiased;
}

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

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

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

.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
    height: 64px;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    text-decoration: none;
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo-leaf {
    font-size: 22px;
    color: var(--brand-teal);
}

.logo-text strong { font-weight: 700; }

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    margin-left: auto;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.15s;
}

.nav-link:hover { color: var(--ink); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    margin-left: auto;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.2s;
}

.hero-band {
    background: var(--canvas);
    padding: var(--space-section) var(--space-xl);
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: var(--space-xxl);
    align-items: center;
}

.hero-content {}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--surface-card);
    padding: var(--space-xxs) var(--space-sm);
    border-radius: var(--rounded-pill);
    margin-bottom: var(--space-lg);
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--ink);
    margin-bottom: var(--space-lg);
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--body);
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

.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: var(--space-section) var(--space-xl);
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: var(--space-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.section-sub {
    font-size: 16px;
    color: var(--body);
    max-width: 560px;
    margin-bottom: var(--space-xxl);
}

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

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 14px;
    line-height: 1.55;
    opacity: 0.85;
}

.feature-card-img {
    border-radius: var(--rounded-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
    aspect-ratio: 16/9;
}

.feature-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card a.card-link {
    display: inline-block;
    margin-top: var(--space-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

.articles-section { background: var(--surface-soft); }

.article-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.article-card {
    background: var(--canvas);
    border-radius: var(--rounded-lg);
    border: 1px solid var(--hairline);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.15s;
    display: flex;
    flex-direction: column;
}

.article-card:hover { box-shadow: 0 4px 20px rgba(10,10,10,0.08); color: inherit; }

.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: var(--space-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--surface-card);
    padding: var(--space-xxs) var(--space-sm);
    border-radius: var(--rounded-pill);
    margin-bottom: var(--space-sm);
    text-decoration: none;
}

.article-card h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.3px;
}

.article-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
    margin-bottom: var(--space-md);
}

.article-meta {
    font-size: 13px;
    color: var(--muted-soft);
    font-weight: 500;
}

.contact-section { background: var(--canvas); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: var(--space-lg);
}

.contact-info p {
    font-size: 16px;
    color: var(--body);
    margin-bottom: var(--space-md);
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-xl);
}

.contact-detail a { color: var(--ink); }

.contact-form {
    background: var(--surface-soft);
    border-radius: var(--rounded-xl);
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--body-strong);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: var(--canvas);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-md);
    padding: 12px 16px;
    height: 44px;
    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-status { margin-top: var(--space-sm); font-size: 14px; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

.btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: var(--on-primary);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    border: none;
    border-radius: var(--rounded-md);
    padding: 12px 20px;
    height: 44px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.btn-primary:hover { background: var(--primary-active); color: var(--on-primary); }

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

.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

.cta-band {
    background: var(--surface-soft);
    border-radius: var(--rounded-xl);
    padding: 80px;
    margin: 0 var(--space-xl) var(--space-section);
    max-width: var(--max-width);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-band h2 {
    font-family: var(--font-display);
    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);
}

.footer {
    background: var(--surface-soft);
    padding: 80px var(--space-xl);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-xxl);
    margin-bottom: var(--space-xxl);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.footer-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: var(--space-lg);
}

.footer-address {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-address a { color: var(--muted); }

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 14px;
    color: var(--muted);
    text-decoration: none;
}

.footer-links a:hover { color: var(--ink); }

.footer-text {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    margin-bottom: var(--space-md);
}

.footer-disclaimer {
    font-size: 13px;
    color: var(--muted-soft);
    line-height: 1.55;
}

.footer-bottom {
    border-top: 1px solid var(--hairline);
    padding-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    font-size: 13px;
    color: var(--muted-soft);
}

.footer-bottom a { color: var(--muted-soft); }

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--surface-dark);
    color: var(--on-dark);
    padding: var(--space-lg) var(--space-xl);
}

.cookie-banner.visible { display: block; }

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 14px;
    line-height: 1.55;
    flex: 1;
    min-width: 260px;
}

.cookie-inner a { color: var(--brand-mint); }

.cookie-actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.page-hero {
    background: var(--canvas);
    padding: var(--space-section) var(--space-xl) var(--space-xxl);
    border-bottom: 1px solid var(--hairline-soft);
}

.page-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
}

.page-hero .hero-eyebrow { margin-bottom: var(--space-md); }

.page-h1 {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--ink);
    margin-bottom: var(--space-lg);
    max-width: 760px;
}

.page-sub {
    font-size: 18px;
    color: var(--body);
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.page-meta {
    font-size: 13px;
    color: var(--muted-soft);
}

.article-body {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-section) var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--space-xxl);
    align-items: start;
}

.article-content h2 {
    font-family: var(--font-display);
    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-content 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-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: var(--space-md);
}

.article-content ul,
.article-content ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.article-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: var(--space-xs);
}

.article-content a { color: var(--ink); }

.article-content .article-img {
    border-radius: var(--rounded-lg);
    overflow: hidden;
    margin: var(--space-xl) 0;
}

.article-content .article-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-content .article-img figcaption {
    font-size: 13px;
    color: var(--muted-soft);
    padding: var(--space-xs) 0;
}

.article-content blockquote {
    border-left: 3px solid var(--brand-teal);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
    background: var(--surface-soft);
    border-radius: 0 var(--rounded-md) var(--rounded-md) 0;
    font-size: 18px;
    font-style: italic;
    color: var(--body-strong);
}

.article-sidebar {
    position: sticky;
    top: 80px;
}

.sidebar-card {
    background: var(--surface-card);
    border-radius: var(--rounded-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.sidebar-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.sidebar-card ul li a {
    font-size: 14px;
    color: var(--body);
    text-decoration: none;
}

.sidebar-card ul li a:hover { color: var(--ink); }

.related-articles {
    background: var(--surface-soft);
    padding: var(--space-section) var(--space-xl);
}

.related-articles .section-title { margin-bottom: var(--space-xxl); }

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-section) var(--space-xl);
}

.page-content h2 {
    font-family: var(--font-display);
    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 h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin: var(--space-xl) 0 var(--space-sm);
}

.page-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: var(--space-md);
}

.page-content ul, .page-content ol {
    padding-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.page-content li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
    margin-bottom: var(--space-xs);
}

.page-content a { color: var(--ink); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-section);
    align-items: center;
    margin-bottom: var(--space-section);
}

.about-img {
    border-radius: var(--rounded-xl);
    overflow: hidden;
}

.about-img img { width: 100%; height: auto; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xxl);
}

.team-card {
    background: var(--surface-card);
    border-radius: var(--rounded-lg);
    padding: var(--space-lg);
}

.team-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-xxs);
}

.team-card .role {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: var(--space-sm);
}

.team-card p {
    font-size: 14px;
    color: var(--body);
    line-height: 1.55;
}

@media (max-width: 1024px) {
    .hero-h1, .page-h1 { font-size: 40px; }
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .article-list { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
    .about-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container, .nav-container, .hero-band, .section, .footer, .page-hero, .related-articles, .contact-section { padding-left: var(--space-md); padding-right: var(--space-md); }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-img-card { display: none; }
    .hero-h1, .page-h1 { font-size: 32px; letter-spacing: -0.5px; }
    .section-title { font-size: 28px; }
    .cards-grid { grid-template-columns: 1fr; }
    .article-list { grid-template-columns: 1fr; }
    .article-body { grid-template-columns: 1fr; padding-left: var(--space-md); padding-right: var(--space-md); }
    .article-sidebar { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-band { padding: var(--space-xxl) var(--space-xl); margin: 0 var(--space-md) var(--space-xxl); }
    .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: var(--space-md); gap: var(--space-md); }
    .nav-links.open { display: flex; }
    .nav-toggle { display: flex; }
    .top-nav { position: relative; }
    .team-grid { grid-template-columns: 1fr; }
    .page-content { padding-left: var(--space-md); padding-right: var(--space-md); }
}
