/* Strawberry Creek Community Coworking — sc3 styles
 *
 * Theming: two independent axes, both set as attributes on <html>
 *   data-design = creekside | studio | poster   (three visual designs)
 *   data-mode   = light | dark
 * Structural layout uses only the semantic tokens; each design block
 * below remaps the tokens (light) and re-remaps them (dark).
 */

/* ── Design A: Creekside ───────────────────────────────────────────
 * Warm, organic, serif display. Moss green + cream. Soft radii. */
html[data-design="creekside"] {
  --bg: #f6f3ec;
  --bg-soft: #efe9dd;
  --surface: #fffdf8;
  --text: #33322d;
  --text-soft: #6f6a5d;
  --heading: #2c4a38;
  --accent: #3e6b4f;
  --accent-soft: #e2ecdf;
  --accent-contrast: #fffdf8;
  --border: #ddd5c4;
  --sidebar-bg: #2c4a38;
  --sidebar-text: #f4f7f1;
  --sidebar-soft: #b7c9b6;
  --hero-tint: rgba(30, 52, 39, 0.62);
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 2px 14px rgba(44, 74, 56, 0.10);
  --shadow-lg: 0 10px 34px rgba(44, 74, 56, 0.18);
  --font-display: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-body: Georgia, "Iowan Old Style", "Times New Roman", serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --heading-weight: 600;
  --heading-transform: none;
  --heading-spacing: 0;
  --border-width: 1px;
}
html[data-design="creekside"][data-mode="dark"] {
  --bg: #1d241f;
  --bg-soft: #232b25;
  --surface: #28312a;
  --text: #e4e2d6;
  --text-soft: #a8a794;
  --heading: #b9d3ba;
  --accent: #8fbf9c;
  --accent-soft: #2e3b31;
  --accent-contrast: #16211a;
  --border: #3a463c;
  --sidebar-bg: #16211a;
  --sidebar-text: #e8efe5;
  --sidebar-soft: #8ba08c;
  --hero-tint: rgba(10, 18, 13, 0.68);
  --shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 10px 34px rgba(0, 0, 0, 0.5);
}

/* ── Design B: Modern Studio ───────────────────────────────────────
 * Clean, minimal, near-monochrome sans. Burnt-orange accent.
 * Hairline borders, sharp corners, tight grid. */
html[data-design="studio"] {
  --bg: #fafafa;
  --bg-soft: #f0f0ee;
  --surface: #ffffff;
  --text: #1d1d1f;
  --text-soft: #6e6e73;
  --heading: #1d1d1f;
  --accent: #c05621;
  --accent-soft: #fbe9df;
  --accent-contrast: #ffffff;
  --border: #e3e3e0;
  --sidebar-bg: #1d1d1f;
  --sidebar-text: #f5f5f7;
  --sidebar-soft: #98989d;
  --hero-tint: rgba(20, 20, 22, 0.42);
  --radius: 2px;
  --radius-sm: 2px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --heading-weight: 700;
  --heading-transform: none;
  --heading-spacing: -0.02em;
  --border-width: 1px;
}
html[data-design="studio"][data-mode="dark"] {
  --bg: #111113;
  --bg-soft: #1a1a1d;
  --surface: #1e1e21;
  --text: #f2f2f4;
  --text-soft: #a1a1a6;
  --heading: #f5f5f7;
  --accent: #f97e40;
  --accent-soft: #33221a;
  --accent-contrast: #14100e;
  --border: #313135;
  --sidebar-bg: #0a0a0b;
  --sidebar-text: #f2f2f4;
  --sidebar-soft: #8e8e93;
  --hero-tint: rgba(0, 0, 0, 0.5);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.55);
}

/* ── Design C: Co-op Poster ────────────────────────────────────────
 * Bold retro print: deep teal + mustard, thick rules, uppercase
 * display, hard offset shadows, zero radius. */
html[data-design="poster"] {
  --bg: #f3ead8;
  --bg-soft: #eadfc6;
  --surface: #faf5e9;
  --text: #21322e;
  --text-soft: #5d6b63;
  --heading: #17453f;
  --accent: #b7791f;
  --accent-soft: #f0dfb8;
  --accent-contrast: #faf5e9;
  --border: #21322e;
  --sidebar-bg: #17453f;
  --sidebar-text: #f3ead8;
  --sidebar-soft: #9cbcb2;
  --hero-tint: rgba(23, 69, 63, 0.5);
  --radius: 0px;
  --radius-sm: 0px;
  --shadow: 5px 5px 0 rgba(23, 69, 63, 0.9);
  --shadow-lg: 8px 8px 0 rgba(23, 69, 63, 0.9);
  --font-display: "Avenir Next Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --heading-weight: 800;
  --heading-transform: uppercase;
  --heading-spacing: 0.04em;
  --border-width: 3px;
}
html[data-design="poster"][data-mode="dark"] {
  --bg: #0f2622;
  --bg-soft: #14332d;
  --surface: #17453f;
  --text: #ece2cd;
  --text-soft: #a3b5ab;
  --heading: #f0dfb8;
  --accent: #e5b54e;
  --accent-soft: #1d524a;
  --accent-contrast: #0f2622;
  --border: #e5b54e;
  --sidebar-bg: #0a1a17;
  --sidebar-text: #ece2cd;
  --sidebar-soft: #7fa197;
  --hero-tint: rgba(6, 20, 17, 0.55);
  --shadow: 5px 5px 0 rgba(229, 181, 78, 0.85);
  --shadow-lg: 8px 8px 0 rgba(229, 181, 78, 0.85);
}

/* ── Base + layout ───────────────────────────────────────────────── */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); }
a:hover { color: var(--heading); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.layout { display: flex; min-height: 100vh; }

/* ── Sidebar ─────────────────────────────────────────────────────── */
.sidebar {
  width: 280px;
  flex: 0 0 280px;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  padding: 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.brand { text-decoration: none; color: inherit; display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { flex: 0 0 44px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.3;
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-spacing);
}
.brand-name small {
  display: block;
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 0.72rem;
  opacity: 0.75;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.15rem;
}
.nav { display: flex; flex-direction: column; gap: 0.15rem; }
.nav a {
  color: var(--sidebar-text);
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav a:hover { background: rgba(255, 255, 255, 0.09); color: var(--sidebar-text); }
.nav a[aria-current="page"] {
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 600;
}
.nav a .n {
  font-size: 0.72rem;
  opacity: 0.55;
  width: 1.3rem;
  font-variant-numeric: tabular-nums;
}
.sidebar-foot { margin-top: auto; display: flex; flex-direction: column; gap: 0.9rem; }

/* theme controls */
.theme-panel {
  border: var(--border-width) solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.theme-panel .lbl {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sidebar-soft);
}
.design-picker { display: flex; gap: 0.4rem; }
.design-picker button {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--sidebar-text);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  padding: 0.42rem 0.2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.design-picker button[aria-pressed="true"] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-contrast);
  font-weight: 600;
}
.mode-row { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--sidebar-text);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.mode-toggle:hover { border-color: var(--accent); color: var(--sidebar-text); }
.sidebar-note {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--sidebar-soft);
  line-height: 1.5;
}
.sidebar-note a { color: var(--sidebar-text); }

/* ── Main column ─────────────────────────────────────────────────── */
.main { flex: 1; min-width: 0; }
.wrap { max-width: 980px; margin: 0 auto; padding: 0 2.2rem 4rem; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 2.2rem 4rem; }

.topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  padding: 0.7rem 1rem;
  align-items: center;
  gap: 0.8rem;
}
.topbar .brand-name { font-size: 0.9rem; }
.topbar-spacer { flex: 1; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
  margin-bottom: 2.6rem;
  box-shadow: var(--shadow);
}
.hero img.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, var(--hero-tint) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 3.2rem 2.6rem;
  max-width: 720px;
}
html[data-design="creekside"] .hero-inner {
  text-shadow: 0 1px 3px rgba(10, 20, 14, 0.55), 0 3px 16px rgba(10, 20, 14, 0.35);
}
html[data-design="poster"] .hero-inner { padding: 3.2rem 2.6rem 2.6rem; }
.hero-kicker {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0 0 0.6rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.5vw, 3.3rem);
  line-height: 1.12;
  margin: 0 0 0.7rem;
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-spacing);
  text-transform: var(--heading-transform);
  text-wrap: balance;
}
.hero p.tagline {
  font-size: 1.15rem;
  margin: 0 0 1.4rem;
  opacity: 0.94;
}
.hero .cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-sm);
  border: var(--border-width) solid var(--accent);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.btn-primary { background: var(--accent); color: var(--accent-contrast); }
.btn-primary:hover { background: var(--heading); border-color: var(--heading); color: #fff; }
.btn-ghost { background: transparent; color: var(--accent); }
.btn-ghost:hover { background: var(--accent-soft); }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.hero .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); color: #fff; }
html[data-design="poster"] .btn { box-shadow: var(--shadow); }
html[data-design="poster"] .btn:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--border); }

/* ── Sections + type ─────────────────────────────────────────────── */
section { margin-bottom: 3rem; }
.kicker {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.4rem;
  font-weight: 700;
}
h2 {
  font-family: var(--font-display);
  color: var(--heading);
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0 0 0.9rem;
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-spacing);
  text-transform: var(--heading-transform);
}
h3 {
  font-family: var(--font-display);
  color: var(--heading);
  font-size: 1.25rem;
  margin: 1.6rem 0 0.5rem;
  font-weight: var(--heading-weight);
  letter-spacing: var(--heading-spacing);
}
.lede { font-size: 1.13rem; color: var(--text-soft); margin: 0 0 1.4rem; max-width: 62ch; }
p { margin: 0 0 1rem; }
.page-head { padding-top: 2.6rem; }

.rule { border: 0; border-top: var(--border-width) solid var(--border); margin: 2.4rem 0; }

/* feature list (checkmark style) */
.features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.55rem 1.4rem;
}
.features li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.98rem;
}
.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* value props row */
.props { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem; margin-top: 1.4rem; }
.prop {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}
.prop h3 { margin: 0 0 0.3rem; font-size: 1.05rem; }
.prop p { margin: 0; font-size: 0.92rem; color: var(--text-soft); }

/* ── Cards: spaces ───────────────────────────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.4rem; margin-top: 1.4rem; }
.card {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 1rem 1.15rem 1.2rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.card-kind {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.card h3 { margin: 0; font-size: 1.18rem; }
.card p { margin: 0; font-size: 0.92rem; color: var(--text-soft); flex: 1; }
.card .card-link { font-family: var(--font-ui); font-size: 0.85rem; font-weight: 600; margin-top: 0.5rem; }
.card .rate-chip { align-self: flex-start; margin-top: 0.45rem; }

/* ── Space detail pages ──────────────────────────────────────────── */
.breadcrumb { font-family: var(--font-ui); font-size: 0.85rem; margin: 2rem 0 0.4rem; }
.breadcrumb a { color: var(--text-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.detail-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2.2rem; align-items: start; }
@media (max-width: 860px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; margin: 1rem 0 1.4rem; }
.detail-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: var(--border-width) solid var(--border);
}
.detail-dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.2rem; margin: 0.6rem 0 1.2rem; font-size: 0.95rem; }
.detail-dl dt {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  padding-top: 0.25rem;
}
.detail-dl dd { margin: 0; }

/* ── Empty state (events) ────────────────────────────────────────── */
.empty-state {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.4rem 1.6rem;
  text-align: center;
  color: var(--text-soft);
  background: var(--surface);
}

/* ── Rental panels ───────────────────────────────────────────────── */
.rental {
  background: var(--surface);
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem 1.7rem;
  margin-bottom: 1.6rem;
  scroll-margin-top: 1.5rem;
}
.rental-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.rental-head h3 { margin: 0; font-size: 1.4rem; }
.rate-chip {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--heading);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  white-space: nowrap;
}
.rental ul { margin: 0.6rem 0 0; padding-left: 1.2rem; }
.rental ul li { margin-bottom: 0.3rem; }
html[data-design="poster"] .rental { border-width: 3px; }

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.gallery figure { margin: 0; }
.gallery button {
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: var(--border-width) solid var(--border);
  transition: transform 0.2s ease;
}
.gallery button:hover img { transform: scale(1.03); }
.gallery figcaption {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 0.35rem;
}

/* lightbox */
.lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 1100px);
  max-height: 92vh;
}
.lightbox::backdrop { background: rgba(10, 12, 10, 0.82); }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: var(--radius-sm); }
.lightbox figcaption {
  color: #eee;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  padding: 0.6rem 0.2rem 0;
}

/* ── Photo strip (home) ──────────────────────────────────────────── */
.strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: var(--border-width) solid var(--border);
}

/* ── Contact / CTA band ──────────────────────────────────────────── */
.cta-band {
  background: var(--sidebar-bg);
  color: var(--sidebar-text);
  border-radius: var(--radius);
  padding: 2.4rem 2.4rem;
  box-shadow: var(--shadow);
}
.cta-band h2 { color: inherit; margin-top: 0; }
.cta-band a { color: var(--accent-soft); }
.cta-band .btn { margin-top: 0.8rem; }
.cta-band .btn-primary { background: var(--accent); color: var(--accent-contrast); border-color: var(--accent); }

.map-frame {
  border: var(--border-width) solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-frame img { width: 100%; }

address { font-style: normal; line-height: 1.8; }

/* ── Footer ──────────────────────────────────────────────────────── */
footer.site {
  border-top: var(--border-width) solid var(--border);
  margin-top: 3rem;
  padding: 1.8rem 0 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
footer.site a { color: var(--text-soft); }

/* ── Focus ───────────────────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 2px; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .layout { display: block; }
  .topbar { display: flex; }
  .sidebar {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    width: 300px;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    box-shadow: var(--shadow-lg);
  }
  .sidebar.open { transform: translateX(0); }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.6rem;
    cursor: pointer;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--sidebar-text); }
  .backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 50;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .backdrop.show { opacity: 1; pointer-events: auto; }
  .wrap, .wrap-narrow { padding: 0 1.2rem 3rem; }
  .hero { min-height: 380px; margin: 0 -1.2rem 2.2rem; border-radius: 0; }
  .hero-inner { padding: 2.2rem 1.4rem; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 1.8rem 1.4rem; }
  footer.site { flex-direction: column; gap: 0.4rem; }
}
@media (min-width: 861px) {
  .nav-toggle { display: none; }
  .backdrop { display: none; }
}
