/*
 * Web-Concept24 – Grundgestaltung aller Werbedomains (Bootstrap 5.3.8 + diese Datei).
 * #1A1814 / #35332E ersetzt der DomainSiteBuilder je Domain (Farbton aus dem Hostnamen).
 * Hat die Domain eine Designvorlage, hängt der Builder deren Design-System (design/Design_<id>.md) als
 * zweiten :root-Block an – alle Regeln unten lesen Farben, Schriften, Größen, Radien und Abstände nur aus diesen Variablen.
 * Systemschriften: schnell, keine Font-Requests, DSGVO-neutral.
 */
:root {
    /* Farben */
    --wc-accent: #1A1814;
    --wc-accent-soft: #35332E;
    --wc-accent-text: var(--wc-accent);
    --wc-on-accent: #ffffff;
    --wc-ink: #1b1f24;
    --wc-muted: #5b6470;
    --wc-line: #e4e7eb;
    --wc-ground: #ffffff;
    --wc-surface: #ffffff;
    --wc-band: #f5f6f8;
    --wc-footer-bg: var(--wc-ink);
    --wc-footer-ink: #ffffff;
    --wc-btn-bg: var(--wc-accent);
    --wc-btn-ink: var(--wc-on-accent);
    --wc-header-bg: color-mix(in srgb, var(--wc-ground) 96%, transparent);
    --wc-header-ink: var(--wc-ink);
    --wc-hero-bg: linear-gradient(180deg, var(--wc-accent-soft), var(--wc-ground));

    /* Schriften und Typo-Skala */
    --wc-font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --wc-font-heading: var(--wc-font-body);
    --wc-h1-size: clamp(1.9rem, 4.2vw, 3rem);
    --wc-h1-weight: 800;
    --wc-h1-leading: 1.2;
    --wc-h1-tracking: -.01em;
    --wc-h2-size: clamp(1.35rem, 2.6vw, 1.75rem);
    --wc-h2-weight: 750;
    --wc-h2-leading: 1.2;
    --wc-h2-tracking: -.01em;
    --wc-h3-size: 1.05rem;
    --wc-h3-weight: 700;
    --wc-h3-leading: 1.3;
    --wc-h3-tracking: -.01em;
    --wc-body-size: 1rem;
    --wc-body-weight: 400;
    --wc-body-leading: 1.5;
    --wc-body-tracking: normal;
    --wc-label-size: .78rem;
    --wc-label-weight: 700;
    --wc-label-tracking: .08em;

    /* Formen und Abstände */
    --wc-radius-sm: 3px;
    --wc-radius: .6rem;
    --wc-radius-pill: 999px;
    --wc-btn-radius: var(--bs-border-radius);
    --wc-section-space: clamp(2rem, 5vw, 3.25rem);
    --wc-gap: .75rem;
    --wc-card-pad: .8rem .9rem .9rem;

    /* Bootstrap an die Variablen binden */
    --bs-body-font-family: var(--wc-font-body);
    --bs-body-font-size: var(--wc-body-size);
    --bs-body-font-weight: var(--wc-body-weight);
    --bs-body-line-height: var(--wc-body-leading);
    --bs-body-color: var(--wc-ink);
    --bs-body-bg: var(--wc-ground);
    --bs-secondary-color: var(--wc-muted);
    --bs-border-color: var(--wc-line);
    --bs-link-color-rgb: 27, 31, 36;
    --bs-border-radius: .5rem;
}
body { background: var(--wc-ground); color: var(--wc-ink); letter-spacing: var(--wc-body-tracking); }
a { color: var(--wc-accent-text); text-underline-offset: .2em; }
:focus-visible { outline: 3px solid var(--wc-accent); outline-offset: 2px; }
h1, h2, h3 { text-wrap: balance; font-family: var(--wc-font-heading); color: var(--wc-ink); }
h1 { font-size: var(--wc-h1-size); font-weight: var(--wc-h1-weight); line-height: var(--wc-h1-leading); letter-spacing: var(--wc-h1-tracking); text-transform: var(--wc-h1-case, none); }
h2 { font-weight: var(--wc-h2-weight); line-height: var(--wc-h2-leading); letter-spacing: var(--wc-h2-tracking); text-transform: var(--wc-h2-case, none); }
h3 { font-weight: var(--wc-h3-weight); line-height: var(--wc-h3-leading); letter-spacing: var(--wc-h3-tracking); text-transform: var(--wc-h3-case, none); }

.btn { --bs-btn-border-radius: var(--wc-btn-radius); }
.btn-primary {
    --bs-btn-bg: var(--wc-btn-bg); --bs-btn-border-color: var(--wc-btn-bg); --bs-btn-color: var(--wc-btn-ink);
    --bs-btn-hover-bg: var(--wc-ink); --bs-btn-hover-border-color: var(--wc-ink); --bs-btn-hover-color: var(--wc-ground);
    --bs-btn-active-bg: var(--wc-ink); --bs-btn-active-border-color: var(--wc-ink); --bs-btn-active-color: var(--wc-ground);
}
.btn-outline-primary {
    --bs-btn-color: var(--wc-accent-text); --bs-btn-border-color: var(--wc-line);
    --bs-btn-hover-bg: var(--wc-accent-soft); --bs-btn-hover-color: var(--wc-ink); --bs-btn-hover-border-color: var(--wc-accent);
    --bs-btn-active-bg: var(--wc-accent-soft); --bs-btn-active-color: var(--wc-ink);
}
.btn-link { color: var(--wc-accent-text); font-weight: 600; text-decoration: none; }

.skip-link { position: absolute; top: .5rem; left: .5rem; z-index: 2000; background: var(--wc-ground); padding: .5rem .75rem; }

/* Kopf */
.site-header { background: var(--wc-header-bg); color: var(--wc-header-ink); border-bottom: 1px solid var(--wc-line); backdrop-filter: saturate(1.4) blur(6px); }
.site-header .navbar { min-height: var(--wc-header-height, auto); }
.navbar-brand { font-family: var(--wc-font-heading); font-weight: 800; display: inline-flex; align-items: center; gap: .55rem; color: var(--wc-header-ink); }
.navbar-brand:hover, .navbar-brand:focus { color: var(--wc-header-ink); }
.brand-dot { width: .8rem; height: .8rem; border-radius: var(--wc-radius-sm); background: var(--wc-accent); transform: rotate(45deg); }
.nav-link { color: color-mix(in srgb, var(--wc-header-ink) 75%, var(--wc-header-bg)); font-weight: 500; }
.nav-link.active, .nav-link:hover { color: var(--wc-header-ink); }
.ad-disclosure { font-size: .78rem; color: var(--wc-muted); background: var(--wc-band); border-top: 1px solid var(--wc-line); padding-block: .35rem; }

/* Werbekennzeichnung direkt am Link (UWG § 5a, MStV § 22) */
.ad-mark {
    display: inline-block; font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    color: var(--wc-muted); border: 1px solid var(--wc-line); border-radius: var(--wc-radius-sm); padding: 0 .3rem; vertical-align: middle; line-height: 1.5;
}

/* Einstieg */
.hero-lite { padding-block: calc(var(--wc-section-space) * 1.35) calc(var(--wc-section-space) * .75); border-bottom: 1px solid var(--wc-line); background: var(--wc-hero-bg); color: var(--wc-hero-ink, var(--wc-ink)); }
.hero-lite--compact { padding-block: 2rem 1.5rem; }
.hero-lite h1, .hero-lite h2 { color: inherit; max-width: 22ch; margin-bottom: .75rem; }
.hero-lite .lead { max-width: 62ch; color: color-mix(in srgb, currentColor 72%, transparent); }
.eyebrow { font-family: var(--wc-label-font, inherit); font-size: var(--wc-label-size); font-weight: var(--wc-label-weight); letter-spacing: var(--wc-label-tracking); text-transform: uppercase; color: var(--wc-accent-text); margin-bottom: .5rem; }
.crumbs { background: var(--wc-band); border-bottom: 1px solid var(--wc-line); font-size: .85rem; }
.crumbs .breadcrumb { padding-block: .5rem; }

/* Abschnitte */
.theme-section { padding-block: var(--wc-section-space); }
.theme-section + .theme-section:not(.band) { border-top: 1px solid var(--wc-line); }
.band { background: var(--wc-band); color: var(--wc-band-ink, inherit); }
.band h2, .band h3 { color: inherit; }
.band .section-intro, .band .result-count, .band .guide-meta { color: color-mix(in srgb, currentColor 72%, transparent); }
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: .5rem 1.5rem; margin-bottom: 1.25rem; }
.section-head h2, .theme-section h2 { font-size: var(--wc-h2-size); margin-bottom: .25rem; }
.section-intro { color: var(--wc-muted); max-width: 65ch; margin-bottom: 0; }
.result-count { font-size: .85rem; color: var(--wc-muted); font-variant-numeric: tabular-nums; }

/* Angebotskarte */
.offer-card { display: flex; flex-direction: column; border: 1px solid var(--wc-line); border-radius: var(--wc-radius); background: var(--wc-surface); overflow: hidden; transition: border-color .15s, box-shadow .15s; }
.offer-card:hover { border-color: var(--wc-accent); box-shadow: 0 6px 18px rgba(20, 24, 30, .08); }
.offer-card__media { position: relative; display: block; aspect-ratio: 1; background: var(--wc-band); }
.offer-card__media img { width: 100%; height: 100%; object-fit: contain; padding: .75rem; }
.offer-card__placeholder { position: absolute; inset: 0; display: grid; place-items: center; font-size: 2.5rem; font-weight: 800; color: var(--wc-accent-text); opacity: .35; }
.offer-card__flag { position: absolute; top: .5rem; left: .5rem; background: var(--wc-ink); color: var(--wc-ground); font-size: .75rem; font-weight: 700; padding: .1rem .45rem; border-radius: var(--wc-radius-sm); font-variant-numeric: tabular-nums; }
.offer-card__body { display: flex; flex-direction: column; gap: .35rem; padding: var(--wc-card-pad); flex: 1; }
.offer-card__brand { font-size: .72rem; font-weight: var(--wc-label-weight); letter-spacing: .05em; text-transform: uppercase; color: var(--wc-muted); margin: 0; }
.offer-card__title { font-size: .95rem; font-weight: 600; line-height: 1.35; margin: 0; }
.offer-card__title a { color: var(--wc-ink); text-decoration: none; }
.offer-card__title a:hover { color: var(--wc-accent-text); text-decoration: underline; }
.offer-card__price { margin-top: auto; display: flex; align-items: baseline; gap: .5rem; flex-wrap: wrap; }
.offer-card__price .price { font-size: 1.1rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.offer-card__price .price--none { font-size: .9rem; font-weight: 600; color: var(--wc-muted); }
.offer-card__price .uvp { font-size: .8rem; color: var(--wc-muted); }
.offer-card__note { font-size: .7rem; color: var(--wc-muted); margin: 0; }

/* Gutscheine (Partial aus dem Hauptprojekt) */
.coupon-card { border: 1px dashed color-mix(in srgb, var(--wc-accent) 45%, var(--wc-surface)); background: var(--wc-surface); border-radius: var(--wc-radius); }
.coupon-card__code { display: inline-block; font-size: 1.05rem; padding: .25rem .6rem; letter-spacing: .05em; background: var(--wc-accent-soft); border-radius: var(--wc-radius-sm); color: var(--wc-ink); }
.coupon-card .text-bg-light { background: var(--wc-band) !important; color: var(--wc-ink) !important; }

/* Banner */
.ad-slot { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.ad-slot__label { font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; color: var(--wc-muted); }
.ad-slot img { max-width: 100%; height: auto; }

/* Shop-Liste (Textlinks) */
.shop-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr)); gap: var(--wc-gap); }
.shop-list li { display: flex; align-items: center; justify-content: space-between; gap: .75rem; border: 1px solid var(--wc-line); border-radius: var(--bs-border-radius); background: var(--wc-surface); padding: .7rem .85rem; }
.shop-list a { text-decoration: none; display: flex; flex-direction: column; min-width: 0; }
.shop-list__name { font-weight: 700; color: var(--wc-ink); }
.shop-list__text { font-size: .85rem; color: var(--wc-accent-text); }

/* Ratgeber (Contentseite je Schlüsselwort) */
.theme-section--tight { padding-block: 1.25rem; }
.guide-meta { margin: .75rem 0 0; font-size: .8rem; color: var(--wc-muted); }
.guide-body { max-width: 70ch; }
.guide-body h2 { margin: 2rem 0 .6rem; font-size: calc(var(--wc-h2-size) * .86); }
.guide-body h2:first-child { margin-top: 0; }
.guide-body h3 { margin: 1.4rem 0 .35rem; font-size: var(--wc-h3-size); }
.guide-body p, .guide-body li { line-height: calc(var(--wc-body-leading) + .2); }
.guide-body ul { margin-bottom: 1rem; padding-left: 1.2rem; }
.guide-chips__head { font-size: 1rem; font-weight: 700; margin-bottom: .6rem; }
.guide-chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.guide-chips a { display: inline-block; padding: .3rem .75rem; border: 1px solid var(--wc-line); border-radius: var(--wc-radius-pill); background: var(--wc-surface); color: var(--wc-ink); font-size: .88rem; text-decoration: none; }
.guide-chips a:hover { border-color: var(--wc-accent); color: var(--wc-accent-text); }
.guide-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr)); gap: var(--wc-gap); }
.guide-list a { display: flex; flex-direction: column; gap: .25rem; height: 100%; padding: .9rem 1rem; border: 1px solid var(--wc-line); border-radius: var(--wc-radius); background: var(--wc-surface); text-decoration: none; }
.guide-list a:hover { border-color: var(--wc-accent); }
.guide-list__title { font-weight: 700; color: var(--wc-ink); }
.guide-list__text { font-size: .88rem; color: var(--wc-muted); }

/* Bilder der Ratgeberseiten (hochgeladen: Beitragsbild, im Text, Galerie) */
.guide-figure { margin: 1.5rem 0; }
.guide-figure img { width: 100%; height: auto; border-radius: var(--wc-radius); background: var(--wc-band); }
.guide-figure figcaption { margin-top: .4rem; font-size: .85rem; color: var(--wc-muted); }
.guide-figure--lead { margin: 0 0 .5rem; }
.guide-figure--lead img { aspect-ratio: 16 / 9; object-fit: cover; }
.guide-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr)); gap: var(--wc-gap); }
.guide-gallery .guide-figure { margin: 0; }
.guide-gallery img { aspect-ratio: 4 / 3; object-fit: cover; }

/* Rechtstexte (Template aus dem Hauptprojekt) */
.legal-content h2 { margin-top: 1.75rem; font-size: 1.2rem; }
.legal-content p { line-height: 1.7; max-width: 70ch; }

/* Fuß */
.site-footer { margin-top: 3rem; padding-block: 2.5rem 2rem; background: var(--wc-footer-bg); color: color-mix(in srgb, var(--wc-footer-ink) 85%, var(--wc-footer-bg)); }
.site-footer a { color: var(--wc-footer-ink); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); gap: 1.5rem 2rem; }
.footer-brand { font-family: var(--wc-font-heading); font-weight: 800; color: var(--wc-footer-ink); margin-bottom: .35rem; }
.footer-head { font-size: .75rem; font-weight: 700; letter-spacing: var(--wc-label-tracking); text-transform: uppercase; color: color-mix(in srgb, var(--wc-footer-ink) 70%, var(--wc-footer-bg)); margin-bottom: .4rem; }
.footer-note { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid color-mix(in srgb, var(--wc-footer-ink) 12%, transparent); color: color-mix(in srgb, var(--wc-footer-ink) 70%, var(--wc-footer-bg)); }

/* --- Layout-Profil „editorial“ (Vorlagenzeile: layout=editorial) -----------------------------
 * Aufbau einer Magazin-Vorlage: Kapitelnummer über dem Sektionstitel, Akzentlinie unter der
 * Hauptüberschrift, Karten mit liegendem, randlosem Bild und Titellinie, wechselnde Bänder.
 */
.wc-layout-editorial main { counter-reset: wc-chapter; }
.wc-layout-editorial .theme-section[id^="thema-"] .section-head h2::before {
    counter-increment: wc-chapter;
    content: "Kapitel " counter(wc-chapter, upper-roman);
    display: block; margin-bottom: .4rem;
    font-family: var(--wc-label-font, inherit); font-size: var(--wc-label-size); font-weight: var(--wc-label-weight);
    letter-spacing: var(--wc-label-tracking); text-transform: uppercase; color: var(--wc-accent-text);
}
.wc-layout-editorial .section-head { flex-direction: column; align-items: flex-start; gap: .75rem; }
.wc-layout-editorial .hero-lite h1::after { content: ""; display: block; width: 8rem; height: 1px; margin-top: 1.25rem; background: var(--wc-accent); }
.wc-layout-editorial .theme-section:nth-of-type(even) { background: var(--wc-band); }
.wc-layout-editorial .offer-card__media { aspect-ratio: 4 / 3; }
.wc-layout-editorial .offer-card__media img { object-fit: cover; padding: 0; }
.wc-layout-editorial .offer-card__title { padding-bottom: .5rem; border-bottom: 2px solid var(--wc-accent); }
.wc-layout-editorial .guide-list a, .wc-layout-editorial .offer-card { box-shadow: none; }

/* --- Layout-Profil „studio“ (Vorlagenzeile: layout=studio) ------------------------------------
 * Aufbau einer Studio-/Magazin-Vorlage: nummerierte Kategorien, drei breite Karten je Reihe mit
 * eingefasstem Bild, Preis mit Label, Pillen als Bedienelemente, Haarlinien zwischen den Sektionen.
 */
.wc-layout-studio main { counter-reset: wc-kategorie; }
.wc-layout-studio .theme-section[id^="thema-"] .section-head h2::before {
    counter-increment: wc-kategorie;
    content: "Kategorie " counter(wc-kategorie, decimal-leading-zero);
    display: block; margin-bottom: .5rem;
    font-family: var(--wc-label-font, inherit); font-size: var(--wc-label-size); font-weight: var(--wc-label-weight);
    letter-spacing: var(--wc-label-tracking); text-transform: uppercase; color: var(--wc-muted);
}
.wc-layout-studio .section-head { align-items: flex-start; }
.wc-layout-studio .section-head h2 { max-width: 30ch; }
.wc-layout-studio .row > .col-xl-3 { flex: 0 0 auto; width: 100%; }
@media (min-width: 768px) { .wc-layout-studio .row > .col-xl-3 { width: 50%; } }
@media (min-width: 1200px) { .wc-layout-studio .row > .col-xl-3 { width: 33.3333%; } }
.wc-layout-studio .offer-card__media { aspect-ratio: 4 / 3; padding: .75rem .75rem 0; background: var(--wc-surface); }
.wc-layout-studio .offer-card__media img { padding: 0; border-radius: var(--bs-border-radius); background: var(--wc-band); }
.wc-layout-studio .offer-card { transition: transform .15s, box-shadow .15s; }
.wc-layout-studio .offer-card:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(20, 24, 30, .10); }
.wc-layout-studio .offer-card__price::before {
    content: "Preis"; display: block; width: 100%; margin-bottom: -.15rem;
    font-size: var(--wc-label-size); letter-spacing: var(--wc-label-tracking); text-transform: uppercase; color: var(--wc-muted);
}
.wc-layout-studio .btn { --bs-btn-border-radius: var(--wc-radius-pill); }
.wc-layout-studio .theme-section + .theme-section { border-top: 1px solid var(--wc-line); }

@media (prefers-reduced-motion: reduce) {
    .wc-layout-studio .offer-card { transition: none; }
    .wc-layout-studio .offer-card:hover { transform: none; }
}

/* --- Layout-Profil „quiet“ (Vorlagenzeile: layout=quiet) --------------------------------------
 * Aufbau einer zurückhaltenden Vorlage: Haarlinien statt Schatten, Pillen als Bedienelemente,
 * Punkt vor der Themenzeile, nummerierte Kategorien, drei Karten je Reihe mit eingefasstem Bild.
 */
.wc-layout-quiet main { counter-reset: wc-kategorie; }
.wc-layout-quiet .eyebrow::before { content: "● "; font-size: .6em; vertical-align: .15em; }
.wc-layout-quiet .theme-section[id^="thema-"] .section-head h2::before {
    counter-increment: wc-kategorie;
    content: "Kategorie " counter(wc-kategorie, decimal-leading-zero);
    display: block; margin-bottom: .5rem;
    font-family: var(--wc-label-font, inherit); font-size: var(--wc-label-size); font-weight: var(--wc-label-weight);
    letter-spacing: var(--wc-label-tracking); text-transform: uppercase; color: var(--wc-muted);
}
.wc-layout-quiet .section-head { align-items: flex-start; }
.wc-layout-quiet .section-head h2 { max-width: 34ch; }
.wc-layout-quiet .row > .col-xl-3 { flex: 0 0 auto; width: 100%; }
@media (min-width: 768px) { .wc-layout-quiet .row > .col-xl-3 { width: 50%; } }
@media (min-width: 1200px) { .wc-layout-quiet .row > .col-xl-3 { width: 33.3333%; } }
.wc-layout-quiet .offer-card { box-shadow: none; }
.wc-layout-quiet .offer-card:hover { box-shadow: none; border-color: var(--wc-ink); }
.wc-layout-quiet .offer-card__media { aspect-ratio: 4 / 3; padding: .75rem .75rem 0; background: var(--wc-surface); }
.wc-layout-quiet .offer-card__media img { padding: 0; border-radius: var(--wc-radius); background: var(--wc-band); }
.wc-layout-quiet .offer-card__flag { border-radius: var(--wc-radius-pill); background: var(--wc-surface); color: var(--wc-ink); border: 1px solid var(--wc-line); top: 1.25rem; left: 1.25rem; }
.wc-layout-quiet .btn, .wc-layout-quiet .guide-chips a { --bs-btn-border-radius: var(--wc-radius-pill); border-radius: var(--wc-radius-pill); }

@media (prefers-reduced-motion: reduce) {
    .offer-card { transition: none; }
}
@font-face { font-family: "Archivo"; src: url("/assets/fonts/archivo-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/assets/fonts/inter-400.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/assets/fonts/inter-600.woff2") format("woff2"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/assets/fonts/inter-500.woff2") format("woff2"); font-weight: 500; font-style: normal; font-display: swap; }

/* Designvorlage primefold-ai (design/Design_primefold-ai.md) – überschreibt die Grundwerte oben */
:root {
    --wc-on-accent: #FFFFFF;
    --wc-ink: #1A1814;
    --wc-muted: #545454;
    --wc-line: #E2E2E2;
    --wc-ground: #FAF9F8;
    --wc-surface: #FFFFFF;
    --wc-band: #EDEDED;
    --wc-footer-bg: #FFFFFF;
    --wc-footer-ink: #1A1814;
    --wc-h1-font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --wc-h1-size: clamp(1.8rem, 4vw, 3rem);
    --wc-h1-weight: 400;
    --wc-h1-leading: 1.17;
    --wc-h1-tracking: 0.02em;
    --wc-h2-font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --wc-h2-size: clamp(1.3rem, 2.67vw, 2rem);
    --wc-h2-weight: 400;
    --wc-h2-leading: 1.25;
    --wc-h2-tracking: 0em;
    --wc-h3-font: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --wc-h3-size: 20px;
    --wc-h3-weight: 400;
    --wc-h3-leading: 1.4;
    --wc-h3-tracking: 0em;
    --wc-body-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --wc-body-size: 16px;
    --wc-body-weight: 400;
    --wc-body-leading: 1.5;
    --wc-body-tracking: -0.01em;
    --wc-label-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --wc-label-size: 12px;
    --wc-label-weight: 500;
    --wc-label-leading: 1.33;
    --wc-label-tracking: 0em;
    --wc-font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --wc-font-heading: "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --wc-radius-sm: 8px;
    --bs-border-radius: 12px;
    --wc-radius: 16px;
    --wc-radius-pill: 999px;
    --wc-btn-radius: 999px;
    --wc-section-space: clamp(4.5rem, 10vw, 7.5rem);
    --wc-gap: 16px;
    --wc-card-pad: 24px;
    --wc-btn-bg: #1A1814;
    --wc-btn-ink: #FFFFFF;
    --wc-header-bg: #FFFFFF;
    --wc-header-ink: #1A1814;
    --wc-header-height: 72px;
    --wc-hero-bg: #1A1814;
    --wc-hero-ink: #FBF9F6;
}
.container { max-width: 1280px; }
.hero-lite .eyebrow { color: inherit; }
.hero-lite .btn-outline-primary { --bs-btn-color: currentColor; --bs-btn-border-color: currentColor; --bs-btn-hover-bg: currentColor; --bs-btn-hover-color: var(--wc-hero-bg); }
.site-footer { border-top: 1px solid var(--wc-line); }
