/**
 * bauhaus-geometric theme CSS — byte-for-byte port of
 *   /Volumes/x9/claude-design/ui_kits/bauhaus-geometric/{index,blog,post,page}.html
 *
 * Generated by scripts/port-theme-css.py.
 *
 * NOTE: top-level `:root` and `html, body` selectors are mechanically
 * rewritten to `body[data-theme="bauhaus-geometric"]` so multiple theme.css
 * files can coexist in the bundle without overriding each other's
 * CSS custom properties. Other selectors (.brand, .nav-link, etc.)
 * are preserved verbatim from source — they reference var(--bg)/
 * var(--fg) which inherit from the scoped body.
 */

/* ===== bauhaus-geometric/index.html <style> ===== */
body[data-theme="bauhaus-geometric"], [data-theme="bauhaus-geometric"] {
    --bg:        #ffffff;
    --fg:        #0a0a0a;
    --muted:     #6b6b6b;
    --yellow:    #FFD400;
    --blue:      #1E40AF;
    --red:       #DC2626;
    --black:     #0a0a0a;
    --sans: 'Inter', system-ui, sans-serif;
    --container: 1280px;
  }
  [data-theme="bauhaus-geometric"] * { box-sizing: border-box; }
  body[data-theme="bauhaus-geometric"], [data-theme="bauhaus-geometric"] {
    margin: 0; padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
  }
  [data-theme="bauhaus-geometric"] a { color: inherit; text-decoration: none; }

  /* Nav — pure black */
  [data-theme="bauhaus-geometric"] nav.site-nav {
    background: var(--black);
    color: #fff;
    padding: 18px 32px;
    border-bottom: 2px solid var(--black);
  }
  [data-theme="bauhaus-geometric"] .nav-inner {
    max-width: var(--container); margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
  }
  [data-theme="bauhaus-geometric"] .brand {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
  }
  [data-theme="bauhaus-geometric"] .nav-links { display: flex; align-items: center; gap: 32px; }
  [data-theme="bauhaus-geometric"] .nav-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    transition: color 150ms;
  }
  [data-theme="bauhaus-geometric"] .nav-link:hover { color: var(--yellow); }
  [data-theme="bauhaus-geometric"] .nav-cta {
    background: var(--yellow);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 8px 18px;
    white-space: nowrap;
  }

  /* Hero — oversized typographic composition */
  [data-theme="bauhaus-geometric"] .hero {
    max-width: var(--container); margin: 0 auto;
    padding: 96px 32px 64px;
    position: relative;
  }
  [data-theme="bauhaus-geometric"] .hero h1 {
    font-size: clamp(64px, 11vw, 160px);
    font-weight: 900;
    letter-spacing: -0.05em;
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
    color: var(--black);
  }
  [data-theme="bauhaus-geometric"] .hero h1 .red { color: var(--red); }
  [data-theme="bauhaus-geometric"] .hero h1 .blue { color: var(--blue); }
  [data-theme="bauhaus-geometric"] .hero h1 .indent { padding-left: 4ch; display: block; }
  [data-theme="bauhaus-geometric"] .hero .lede {
    margin-top: 32px;
    max-width: 540px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--muted);
  }
  [data-theme="bauhaus-geometric"] .ornament-yellow {
    position: absolute;
    top: 120px; right: 80px;
    width: 96px; height: 96px;
    background: var(--yellow);
  }
  [data-theme="bauhaus-geometric"] .ornament-circle {
    position: absolute;
    bottom: 100px; right: 220px;
    width: 110px; height: 110px;
    border-radius: 9999px;
    background: var(--blue);
  }
  @media (max-width: 900px) {
    [data-theme="bauhaus-geometric"] .ornament-yellow, [data-theme="bauhaus-geometric"] .ornament-circle { display: none; }
  }
  [data-theme="bauhaus-geometric"] .hero-cta {
    display: inline-block;
    margin-top: 32px;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 32px;
    white-space: nowrap;
  }

  /* Geometric divider */
  [data-theme="bauhaus-geometric"] .geom-divider {
    max-width: var(--container); margin: 0 auto;
    padding: 64px 32px;
    display: flex; align-items: center; gap: 24px;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
  }
  [data-theme="bauhaus-geometric"] .geom-divider svg { display: block; }
  [data-theme="bauhaus-geometric"] .geom-divider .label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-left: auto;
  }

  /* Monolith card grid */
  [data-theme="bauhaus-geometric"] .grid-wrap {
    max-width: var(--container); margin: 0 auto;
    padding: 56px 32px 96px;
  }
  [data-theme="bauhaus-geometric"] .grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
    border: 2px solid var(--black);
  }
  @media (max-width: 900px) { [data-theme="bauhaus-geometric"] .grid-3 { grid-template-columns: 1fr; } }
  [data-theme="bauhaus-geometric"] .card {
    border: 2px solid var(--black);
    padding: 32px;
    min-height: 280px;
    display: flex; flex-direction: column;
    margin: -2px;
  }
  [data-theme="bauhaus-geometric"] .c-yellow { background: var(--yellow); color: var(--black); }
  [data-theme="bauhaus-geometric"] .c-blue   { background: var(--blue);   color: #fff; }
  [data-theme="bauhaus-geometric"] .c-red    { background: var(--red);    color: #fff; }
  [data-theme="bauhaus-geometric"] .c-white  { background: var(--bg);     color: var(--black); }
  [data-theme="bauhaus-geometric"] .card .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0 0 16px;
  }
  [data-theme="bauhaus-geometric"] .c-yellow .label { color: var(--blue); }
  [data-theme="bauhaus-geometric"] .c-blue .label, [data-theme="bauhaus-geometric"] .c-red .label { color: var(--yellow); }
  [data-theme="bauhaus-geometric"] .c-white .label { color: var(--red); }
  [data-theme="bauhaus-geometric"] .card h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 16px;
  }
  [data-theme="bauhaus-geometric"] .card p {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 auto;
  }
  [data-theme="bauhaus-geometric"] .c-blue p, [data-theme="bauhaus-geometric"] .c-red p { color: rgba(255,255,255,0.85); }
  [data-theme="bauhaus-geometric"] .c-yellow p, [data-theme="bauhaus-geometric"] .c-white p { color: var(--muted); }
  [data-theme="bauhaus-geometric"] .c-blue p, [data-theme="bauhaus-geometric"] .c-red p, [data-theme="bauhaus-geometric"] .c-white p, [data-theme="bauhaus-geometric"] .c-yellow p { font-weight: 500; }
  [data-theme="bauhaus-geometric"] .card .meta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 16px;
  }
  [data-theme="bauhaus-geometric"] .c-blue .meta, [data-theme="bauhaus-geometric"] .c-red .meta { color: #fff; }

  /* Color-band footer */
  [data-theme="bauhaus-geometric"] footer.site-footer { margin-top: 0; }
  [data-theme="bauhaus-geometric"] .band {
    padding: 48px 32px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
  }
  [data-theme="bauhaus-geometric"] .band-y { background: var(--yellow); color: var(--black); }
  [data-theme="bauhaus-geometric"] .band-b { background: var(--blue);   color: #fff; }
  [data-theme="bauhaus-geometric"] .band-r { background: var(--red);    color: #fff; }
  [data-theme="bauhaus-geometric"] .band-inner {
    max-width: var(--container); margin: 0 auto;
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; flex-wrap: wrap;
  }
  [data-theme="bauhaus-geometric"] .band-name {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  [data-theme="bauhaus-geometric"] .band-nav { display: flex; gap: 28px; }
  [data-theme="bauhaus-geometric"] .band-nav a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  [data-theme="bauhaus-geometric"] .band-y a:hover { color: var(--red); }
  [data-theme="bauhaus-geometric"] .band-b a:hover, [data-theme="bauhaus-geometric"] .band-r a:hover { color: var(--yellow); }
  [data-theme="bauhaus-geometric"] .copy-bar {
    background: var(--black);
    color: #fff;
    padding: 20px 32px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }

/* ===== bauhaus-geometric/blog.html <style> ===== */
/* === Inner page (blog/post/page) — inherits theme typography & color from body === */
  [data-theme="bauhaus-geometric"] .ip-wrap { max-width: 1200px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="bauhaus-geometric"] .ip-narrow { max-width: 760px; margin: 0 auto; padding: 64px clamp(16px, 4vw, 32px); }
  [data-theme="bauhaus-geometric"] .ip-prose-wrap { max-width: 720px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 32px); }
  [data-theme="bauhaus-geometric"] .ip-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; margin: 0 0 18px; }
  [data-theme="bauhaus-geometric"] .ip-h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 800; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 18px; text-wrap: balance; }
  [data-theme="bauhaus-geometric"] .ip-h1-serif { font-family: var(--vb-heading-font, var(--heading, var(--display, inherit))); font-size: clamp(40px, 5.4vw, 64px); font-weight: 600; letter-spacing: -0.015em; line-height: 1.1; margin: 0 0 18px; text-wrap: balance; }
  [data-theme="bauhaus-geometric"] .ip-dek { font-size: 19px; line-height: 1.55; opacity: 0.7; margin: 0 0 28px; max-width: 640px; text-wrap: pretty; }
  [data-theme="bauhaus-geometric"] .ip-byline { display: flex; align-items: center; gap: 14px; margin: 0 0 40px; padding: 14px 0; border-top: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
  [data-theme="bauhaus-geometric"] .ip-byline > div { min-width: 0; flex: 1; }
  [data-theme="bauhaus-geometric"] .ip-avatar { width: 40px; height: 40px; border-radius: 9999px; background: color-mix(in srgb, currentColor 12%, transparent); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
  [data-theme="bauhaus-geometric"] .ip-byline .author { font-size: 14px; font-weight: 600; }
  [data-theme="bauhaus-geometric"] .ip-byline .meta { font-size: 13px; opacity: 0.55; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  [data-theme="bauhaus-geometric"] .ip-cover { width: 100%; aspect-ratio: 16/9; background-size: cover; background-position: center; margin: 0 0 40px; }
  [data-theme="bauhaus-geometric"] .ip-prose { font-size: 18px; line-height: 1.75; }
  [data-theme="bauhaus-geometric"] .ip-prose p { margin: 0 0 22px; opacity: 0.92; }
  [data-theme="bauhaus-geometric"] .ip-prose h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.2; margin: 40px 0 16px; }
  [data-theme="bauhaus-geometric"] .ip-prose h3 { font-size: clamp(20px, 2.4vw, 24px); font-weight: 700; margin: 32px 0 12px; }
  [data-theme="bauhaus-geometric"] .ip-prose blockquote { margin: 28px 0; padding: 4px 0 4px 22px; border-left: 3px solid color-mix(in srgb, currentColor 35%, transparent); font-style: italic; font-size: 21px; line-height: 1.5; opacity: 0.78; }
  [data-theme="bauhaus-geometric"] .ip-prose ul, [data-theme="bauhaus-geometric"] .ip-prose ol { margin: 0 0 22px; padding-left: 22px; }
  [data-theme="bauhaus-geometric"] .ip-prose li { margin: 0 0 8px; opacity: 0.92; line-height: 1.7; }
  [data-theme="bauhaus-geometric"] .ip-prose code:not(pre code) { font-family: 'JetBrains Mono', 'IBM Plex Mono', 'Courier New', monospace; font-size: 0.88em; background: color-mix(in srgb, currentColor 8%, transparent); padding: 1px 6px; border-radius: 4px; }
  [data-theme="bauhaus-geometric"] .ip-prose pre { font-family: 'JetBrains Mono', 'IBM Plex Mono', 'Courier New', monospace; background: color-mix(in srgb, currentColor 4%, transparent); border: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-radius: 8px; padding: 16px 18px; overflow-x: auto; font-size: 14px; line-height: 1.65; margin: 22px 0; }
  [data-theme="bauhaus-geometric"] .ip-prose hr { border: none; height: 1px; background: color-mix(in srgb, currentColor 14%, transparent); margin: 36px 0; }
  [data-theme="bauhaus-geometric"] .ip-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 0; }
  [data-theme="bauhaus-geometric"] .ip-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); border-radius: 9999px; opacity: 0.7; text-decoration: none; color: inherit; white-space: nowrap; }
  [data-theme="bauhaus-geometric"] .ip-tag:hover { opacity: 1; }
  /* Blog index */
  [data-theme="bauhaus-geometric"] .ip-index-head { margin: 0 0 40px; padding-bottom: 24px; border-bottom: 1px solid color-mix(in srgb, currentColor 12%, transparent); }
  [data-theme="bauhaus-geometric"] .ip-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0 0; }
  [data-theme="bauhaus-geometric"] .ip-filter { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border: 1px solid color-mix(in srgb, currentColor 18%, transparent); border-radius: 9999px; text-decoration: none; color: inherit; opacity: 0.7; white-space: nowrap; }
  [data-theme="bauhaus-geometric"] .ip-filter:hover { opacity: 1; border-color: color-mix(in srgb, currentColor 32%, transparent); }
  [data-theme="bauhaus-geometric"] .ip-filter.active { background: color-mix(in srgb, currentColor 14%, transparent); border-width: 2px; padding: 5px 13px; opacity: 1; font-weight: 700; }
  [data-theme="bauhaus-geometric"] .ip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  @media (max-width: 900px) { [data-theme="bauhaus-geometric"] .ip-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { [data-theme="bauhaus-geometric"] .ip-grid { grid-template-columns: 1fr; } }
  [data-theme="bauhaus-geometric"] .ip-card { display: block; border: 1px solid color-mix(in srgb, currentColor 12%, transparent); border-radius: 8px; overflow: hidden; text-decoration: none; color: inherit; transition: border-color 200ms, transform 200ms; }
  [data-theme="bauhaus-geometric"] .ip-card:hover { border-color: color-mix(in srgb, currentColor 30%, transparent); transform: translateY(-2px); }
  [data-theme="bauhaus-geometric"] .ip-card .img { width: 100%; aspect-ratio: 16/10; background-size: cover; background-position: center; }
  [data-theme="bauhaus-geometric"] .ip-card .body { padding: 18px 20px 20px; }
  [data-theme="bauhaus-geometric"] .ip-card .kicker { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.6; margin: 0 0 8px; }
  [data-theme="bauhaus-geometric"] .ip-card h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 8px; }
  [data-theme="bauhaus-geometric"] .ip-card p { font-size: 14px; line-height: 1.55; opacity: 0.7; margin: 0 0 12px; }
  [data-theme="bauhaus-geometric"] .ip-card .meta { font-size: 12px; opacity: 0.55; }
  [data-theme="bauhaus-geometric"] .ip-pag { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 56px 0 0; }
  [data-theme="bauhaus-geometric"] .ip-pag a, [data-theme="bauhaus-geometric"] .ip-pag span { min-width: 36px; height: 36px; padding: 0 12px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid color-mix(in srgb, currentColor 16%, transparent); border-radius: 6px; text-decoration: none; color: inherit; font-size: 13px; font-weight: 600; }
  [data-theme="bauhaus-geometric"] .ip-pag .current { background: color-mix(in srgb, currentColor 12%, transparent); }
  /* Inline newsletter CTA — outline style, no blend tricks */
  [data-theme="bauhaus-geometric"] .ip-inline-cta { margin: 56px 0 0; padding: 36px; border: 1px solid color-mix(in srgb, currentColor 14%, transparent); border-radius: 12px; text-align: center; }
  [data-theme="bauhaus-geometric"] .ip-inline-cta h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 8px; }
  [data-theme="bauhaus-geometric"] .ip-inline-cta p { font-size: 14px; opacity: 0.7; margin: 0 0 18px; }
  [data-theme="bauhaus-geometric"] .ip-inline-cta form { display: flex; gap: 8px; max-width: 380px; margin: 0 auto; }
  [data-theme="bauhaus-geometric"] .ip-inline-cta input { flex: 1; min-width: 0; background: transparent; border: 1px solid color-mix(in srgb, currentColor 22%, transparent); border-radius: 8px; color: inherit; font-family: inherit; font-size: 14px; padding: 10px 14px; outline: none; }
  [data-theme="bauhaus-geometric"] .ip-inline-cta button { background: transparent; border: 2px solid currentColor; border-radius: 8px; color: inherit; font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: 0.04em; padding: 9px 22px; cursor: pointer; white-space: nowrap; transition: background 150ms; }
  [data-theme="bauhaus-geometric"] .ip-inline-cta button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }
  /* Comments */
  [data-theme="bauhaus-geometric"] .ip-comments { margin: 64px 0 0; padding-top: 32px; border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent); }
  [data-theme="bauhaus-geometric"] .ip-comments h3 { font-size: 18px; font-weight: 700; margin: 0 0 24px; }
  [data-theme="bauhaus-geometric"] .ip-comment { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid color-mix(in srgb, currentColor 8%, transparent); }
  [data-theme="bauhaus-geometric"] .ip-comment > div { min-width: 0; flex: 1; }
  [data-theme="bauhaus-geometric"] .ip-comment:last-child { border-bottom: none; }
  [data-theme="bauhaus-geometric"] .ip-comment .who { font-size: 13px; font-weight: 600; }
  [data-theme="bauhaus-geometric"] .ip-comment .when { font-size: 12px; opacity: 0.55; }
  [data-theme="bauhaus-geometric"] .ip-comment .text { font-size: 14px; line-height: 1.55; opacity: 0.85; margin: 6px 0 0; }
  /* Back link */
  [data-theme="bauhaus-geometric"] .ip-back { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-decoration: none; color: inherit; opacity: 0.65; margin: 0 0 24px; white-space: nowrap; }
  [data-theme="bauhaus-geometric"] .ip-back:hover { opacity: 1; }
  /* Static page form */
  [data-theme="bauhaus-geometric"] .ip-form { max-width: 520px; margin: 32px 0 0; }
  [data-theme="bauhaus-geometric"] .ip-form label { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.7; margin: 0 0 6px; }
  [data-theme="bauhaus-geometric"] .ip-form .row { margin: 0 0 16px; }
  [data-theme="bauhaus-geometric"] .ip-form input, [data-theme="bauhaus-geometric"] .ip-form textarea { width: 100%; background: transparent; border: 1px solid color-mix(in srgb, currentColor 20%, transparent); border-radius: 8px; color: inherit; font-family: inherit; font-size: 15px; padding: 10px 14px; outline: none; }
  [data-theme="bauhaus-geometric"] .ip-form textarea { min-height: 120px; resize: vertical; }
  [data-theme="bauhaus-geometric"] .ip-form button { background: transparent; border: 2px solid currentColor; border-radius: 8px; color: inherit; font-family: inherit; font-size: 14px; font-weight: 700; letter-spacing: 0.04em; padding: 10px 24px; cursor: pointer; white-space: nowrap; transition: background 150ms; }
  [data-theme="bauhaus-geometric"] .ip-form button:hover { background: color-mix(in srgb, currentColor 10%, transparent); }


/* ===== Responsive overrides ===== */
@media (max-width: 1023px) {
  [data-theme="bauhaus-geometric"] header.site-nav { padding: 14px 16px; }
  [data-theme="bauhaus-geometric"] .nav-inner { padding: 0; }
  [data-theme="bauhaus-geometric"] .hero { padding: 64px 16px 48px; }
  [data-theme="bauhaus-geometric"] .hero h1 { font-size: clamp(48px, 14vw, 120px); }
  [data-theme="bauhaus-geometric"] .geom-divider { padding: 32px 16px; }
  [data-theme="bauhaus-geometric"] .grid-wrap { padding: 32px 16px 64px; }
  [data-theme="bauhaus-geometric"] .ip-wrap { padding: 0 16px; }
  [data-theme="bauhaus-geometric"] .ip-prose-wrap { padding: 48px 16px 64px; }
  [data-theme="bauhaus-geometric"] .site-footer .band-inner { padding: 20px 16px; flex-direction: column; align-items: flex-start; gap: 12px; }
  [data-theme="bauhaus-geometric"] .copy-bar { padding: 16px 16px; }
}
@media (max-width: 767px) {
  [data-theme="bauhaus-geometric"] .grid-3 { grid-template-columns: 1fr; }
  [data-theme="bauhaus-geometric"] .ip-grid { grid-template-columns: 1fr; }
  [data-theme="bauhaus-geometric"] .hero h1 .indent { padding-left: 1ch; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  [data-theme="bauhaus-geometric"] .grid-3 { grid-template-columns: 1fr 1fr; }
  [data-theme="bauhaus-geometric"] .ip-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Old-30 Bespoke Parity Wave 6: bespoke drawer + shop CSS-only hover
 * rules (P-097 — ShopLayout is a server component, zero JS handlers). */
[data-theme="bauhaus-geometric"] .card:hover {
  outline: 3px solid var(--black);
  outline-offset: -3px;
}
[data-theme="bauhaus-geometric"] .bg-shop-pill:hover {
  outline: 2px solid var(--black);
}
[data-theme="bauhaus-geometric"] .bg-shop-input:focus {
  outline: 2px solid var(--blue);
}

/* ===== V2 contract: Page-builder block token bridge =====
 * Maps generic --vb-* block renderer variables to Bauhaus Geometric's
 * own --bg / --fg / --red theme tokens, scoped to <main>.
 * Chrome (header, footer) is unaffected.
 */
[data-theme="bauhaus-geometric"] main {
  --vb-color-bg:          var(--bg);
  --vb-color-surface:     var(--bg);
  --vb-color-bg-elevated: var(--bg);
  --vb-color-fg:          var(--fg);
  --vb-color-heading:     var(--fg);
  --vb-color-muted:       var(--muted);
  --vb-color-text-muted:  var(--muted);
  --vb-color-border:      var(--black);
  --vb-color-primary:     var(--red);
  --vb-color-primary-bg:  var(--red);
  --vb-color-primary-fg:  var(--bg);
  --vb-color-cta-btn-bg:  var(--red);
  --vb-color-cta-btn-fg:  var(--bg);
  --vb-color-secondary:   var(--blue);
  --vb-heading-font:      var(--sans);
}
