:root {
    --primary:              #181d26;
    --primary-active:       #0d1218;
    --canvas:               #ffffff;
    --surface-soft:         #f8fafc;
    --surface-strong:       #e0e2e6;
    --surface-dark:         #181d26;
    --hairline:             #dddddd;
    --ink:                  #181d26;
    --body:                 #333840;
    --muted:                #41454d;
    --on-primary:           #ffffff;
    --link:                 #1b61c9;
    --link-active:          #1a3866;
    --signature-coral:      #aa2d00;
    --signature-forest:     #0a2e0e;
    --signature-cream:      #f5e9d4;
    --signature-peach:      #fcab79;
    --signature-mint:       #a8d8c4;
    --signature-yellow:     #f4d35e;
    --signature-mustard:    #d9a441;
    --rounded-xs:           2px;
    --rounded-sm:           6px;
    --rounded-md:           10px;
    --rounded-lg:           12px;
    --rounded-pill:         9999px;
    --rounded-full:         50%;
    --spacing-xxs:          4px;
    --spacing-xs:           8px;
    --spacing-sm:           12px;
    --spacing-md:           16px;
    --spacing-lg:           24px;
    --spacing-xl:           32px;
    --spacing-xxl:          48px;
    --spacing-section:      96px;
    --font-sans:            -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--body);
    background: var(--canvas);
}

a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-active); }

img { display: block; max-width: 100%; height: auto; }

ul { list-style: none; }

address { font-style: normal; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xxl);
}

/* TOP NAV */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 64px;
    background: var(--canvas);
    border-bottom: 1px solid var(--hairline);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xxl);
    height: 100%;
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}
.nav-logo {
    font-size: 18px;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
}
.nav-logo span { color: var(--muted); }
.nav-menu {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    flex: 1;
}
.nav-menu a {
    font-size: 14px;
    font-weight: 400;
    color: var(--body);
}
.nav-menu a[aria-current="page"] { color: var(--ink); font-weight: 500; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--ink);
    margin-left: auto;
}

/* BUTTONS */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    padding: 16px 24px;
    border-radius: var(--rounded-lg);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.btn-primary:active { background: var(--primary-active); color: var(--on-primary); }

.btn-secondary {
    display: inline-block;
    background: var(--canvas);
    color: var(--ink);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    padding: 16px 24px;
    border-radius: var(--rounded-lg);
    border: 1px solid var(--hairline);
    cursor: pointer;
    white-space: nowrap;
}
.btn-secondary:active { background: var(--surface-soft); }

/* HERO BAND */
.hero-band {
    padding: var(--spacing-section) 0;
    background: var(--canvas);
}
.hero-band .container { max-width: 720px; }
.hero-band h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
}
.hero-band p {
    font-size: 14px;
    line-height: 1.25;
    color: var(--body);
    margin-bottom: var(--spacing-xl);
    max-width: 560px;
}
.hero-actions { display: flex; gap: var(--spacing-md); flex-wrap: wrap; }

/* SIGNATURE CORAL CARD */
.signature-coral-card {
    background: var(--signature-coral);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xxl);
    color: var(--on-primary);
    margin: var(--spacing-section) 0;
}
.signature-coral-card h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}
.signature-coral-card p {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

/* SIGNATURE FOREST CARD */
.signature-forest-card {
    background: var(--signature-forest);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xxl);
    color: var(--on-primary);
    margin: var(--spacing-section) 0;
}
.signature-forest-card h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}
.signature-forest-card p {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

/* DARK CARD */
.hero-card-dark {
    background: var(--surface-dark);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xxl);
    color: var(--on-primary);
    margin: var(--spacing-section) 0;
}
.hero-card-dark h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}
.hero-card-dark p {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

/* CREAM CALLOUT */
.cream-callout {
    background: var(--signature-cream);
    border-radius: var(--rounded-md);
    padding: var(--spacing-lg);
}
.cream-callout h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.12px;
    color: var(--ink);
    margin-bottom: var(--spacing-md);
}
.cream-callout p { color: var(--body); font-size: 14px; line-height: 1.25; }

/* SECTION */
.section {
    padding: var(--spacing-section) 0;
}
.section-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.12px;
    color: var(--ink);
    margin-bottom: var(--spacing-xl);
}
.section-body {
    font-size: 14px;
    line-height: 1.25;
    color: var(--body);
    max-width: 720px;
}

/* ARTICLE CARDS GRID */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}
.article-card {
    background: var(--canvas);
    border-radius: var(--rounded-md);
    padding: var(--spacing-md);
    border: 1px solid var(--hairline);
}
.article-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: var(--rounded-md);
    margin-bottom: var(--spacing-md);
}
.article-card .card-tag {
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-xs);
}
.article-card h3 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
}
.article-card .card-meta {
    font-size: 12px;
    color: var(--muted);
    margin-bottom: var(--spacing-md);
}
.article-card p {
    font-size: 14px;
    line-height: 1.25;
    color: var(--body);
    margin-bottom: var(--spacing-md);
}
.article-card a.card-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
}

/* DEMO GRID */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}
.demo-grid-card {
    border-radius: var(--rounded-md);
    padding: var(--spacing-md);
}
.demo-grid-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--rounded-md);
    margin-bottom: var(--spacing-md);
}
.demo-grid-card h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
}
.demo-grid-card p {
    font-size: 14px;
    line-height: 1.25;
    color: var(--body);
}
.demo-grid-card.peach  { background: var(--signature-peach); }
.demo-grid-card.mint   { background: var(--signature-mint); }
.demo-grid-card.yellow { background: var(--signature-yellow); }

/* CTA BAND LIGHT */
.cta-band-light {
    background: var(--surface-strong);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-xxl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
    margin: var(--spacing-section) 0;
}
.cta-band-light h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
}

/* ARTICLE PAGE */
.article-hero-img {
    width: 100%;
    aspect-ratio: 16/6;
    object-fit: cover;
    border-radius: var(--rounded-lg);
    margin-bottom: var(--spacing-xl);
}
.article-meta {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: var(--spacing-xl);
    display: flex;
    gap: var(--spacing-lg);
}
.article-body {
    max-width: 720px;
    margin: 0 auto;
}
.article-body h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
}
.article-body h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin: var(--spacing-xxl) 0 var(--spacing-lg);
}
.article-body h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: 0.12px;
    color: var(--ink);
    margin: var(--spacing-xl) 0 var(--spacing-md);
}
.article-body p {
    font-size: 14px;
    line-height: 1.25;
    color: var(--body);
    margin-bottom: var(--spacing-md);
}
.article-body ul {
    list-style: disc;
    padding-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}
.article-body ul li {
    font-size: 14px;
    line-height: 1.25;
    color: var(--body);
    margin-bottom: var(--spacing-xs);
}
.article-body a {
    color: var(--link);
}

/* FORM */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 480px;
}
.contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: var(--spacing-xs);
    display: block;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: var(--canvas);
    color: var(--ink);
    font-size: 14px;
    font-family: var(--font-sans);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-sm);
    padding: 12px 16px;
    height: 44px;
}
.contact-form textarea {
    height: auto;
    min-height: 120px;
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #458fff;
}

/* LOGO STRIP */
.logo-strip {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    display: flex;
    justify-content: center;
    gap: var(--spacing-xxl);
    flex-wrap: wrap;
    margin: var(--spacing-section) 0;
}
.logo-strip span {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* FOOTER */
.footer {
    background: var(--canvas);
    padding: var(--spacing-section) 0 var(--spacing-xl);
    border-top: 1px solid var(--hairline);
}
.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xxl);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}
.footer-col strong {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    display: block;
    margin-bottom: var(--spacing-md);
}
.footer-col p,
.footer-col address,
.footer-col ul li a {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}
.footer-col ul li { margin-bottom: var(--spacing-xs); }
.footer-col a { color: var(--muted); }
.footer-legal {
    max-width: 1280px;
    margin: 0 auto;
    padding: var(--spacing-md) var(--spacing-xxl) 0;
    border-top: 1px solid var(--hairline);
    display: flex;
    gap: var(--spacing-lg);
    font-size: 14px;
    color: var(--muted);
}
.footer-legal a { color: var(--muted); }

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--surface-dark);
    color: var(--on-primary);
    border-radius: var(--rounded-lg);
    padding: var(--spacing-lg) var(--spacing-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    z-index: 200;
    flex-wrap: wrap;
    font-size: 14px;
}
.cookie-banner a { color: var(--on-primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--spacing-md); }

/* PAGE SECTIONS */
.page-header {
    padding: var(--spacing-section) 0 var(--spacing-xl);
    background: var(--canvas);
}
.page-header h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--spacing-lg);
}
.page-header p {
    font-size: 14px;
    line-height: 1.25;
    color: var(--body);
    max-width: 640px;
}
.page-body {
    max-width: 720px;
    padding-bottom: var(--spacing-section);
}
.page-body h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin: var(--spacing-xxl) 0 var(--spacing-lg);
}
.page-body h3 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink);
    margin: var(--spacing-xl) 0 var(--spacing-md);
}
.page-body p {
    font-size: 14px;
    line-height: 1.25;
    color: var(--body);
    margin-bottom: var(--spacing-md);
}
.page-body ul {
    list-style: disc;
    padding-left: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}
.page-body ul li {
    font-size: 14px;
    line-height: 1.25;
    color: var(--body);
    margin-bottom: var(--spacing-xs);
}

/* DISCLAIMER */
.disclaimer {
    background: var(--surface-soft);
    border: 1px solid var(--hairline);
    border-radius: var(--rounded-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .article-grid { grid-template-columns: repeat(2, 1fr); }
    .demo-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .container { padding: 0 var(--spacing-lg); }
    .nav-inner { padding: 0 var(--spacing-lg); }
    .nav-menu {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--canvas);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--spacing-xl);
        z-index: 99;
        font-size: 24px;
    }
    .nav-menu.open { display: flex; }
    .nav-toggle { display: block; }
    .hero-band h1 { font-size: 28px; }
    .article-grid { grid-template-columns: 1fr; }
    .demo-grid { grid-template-columns: 1fr; }
    .signature-coral-card h2,
    .signature-forest-card h2,
    .hero-card-dark h2 { font-size: 24px; }
    .cta-band-light { flex-direction: column; align-items: flex-start; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-legal { flex-direction: column; gap: var(--spacing-sm); }
    .cookie-banner { flex-direction: column; }
    .logo-strip { gap: var(--spacing-lg); }
}
