/* Limitless Marketing — demo site engine.
   Shared across the portfolio mockups. Each site sets its own tokens in
   theme.css; everything below reads from them. Plain CSS, no build step. */

:root {
  /* Theme tokens (overridden per site in theme.css) */
  --bg: #f7f5ef;
  --bg-2: #efece4;
  --surface: #fffdf9;
  --ink: #14201a;
  --ink-2: #4a5550;
  --ink-3: #7b847f;
  --line: #e2ddd2;
  --accent: #1a5e3a;
  --accent-ink: #ffffff;
  --accent-soft: #e4efe7;
  --dark: #10231a;
  --dark-ink: #f4f6f2;
  --dark-muted: #a7b3ab;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px rgba(20, 32, 26, .14);
  --font-head: "Outfit", "SF Pro Display", system-ui, sans-serif;
  --font-body: "Inter", "SF Pro Text", system-ui, sans-serif;
  --bar-h: 64px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--bar-h) + env(safe-area-inset-top, 0px) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main, footer { overflow-x: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; letter-spacing: -.025em; line-height: 1.05; margin: 0; }
h1 { font-size: clamp(42px, 6.2vw, 78px); letter-spacing: -.035em; }
h2 { font-size: clamp(34px, 4.4vw, 56px); }
h3 { font-size: clamp(22px, 2.2vw, 28px); }
p { margin: 0; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 32px); } }

.kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.lede { color: var(--ink-2); font-size: clamp(17px, 1.4vw, 20px); max-width: 56ch; }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-head { display: grid; gap: 14px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.split { grid-template-columns: 1fr auto; align-items: end; }
@media (max-width: 760px) { .section-head.split { grid-template-columns: 1fr; } }

/* Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-head); font-weight: 600; font-size: 15px; letter-spacing: -.005em;
  cursor: pointer; white-space: nowrap; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 24px color-mix(in srgb, var(--accent) 30%, transparent); }
.btn-primary:hover { box-shadow: 0 14px 30px color-mix(in srgb, var(--accent) 38%, transparent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); }
.btn-light { background: #fff; color: var(--ink); }
.btn svg { width: 18px; height: 18px; flex: none; }

/* Top bar --------------------------------------------------------------
   Fixed, fully opaque, same colour as the page, no backdrop blur, and padded
   by the iOS safe-area inset so it paints all the way up under the status bar.
   theme-color in <head> matches --bg so the strip never looks like a seam. */
.bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg);
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.bar[data-scrolled="true"] { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(0, 0, 0, .06); }
.bar-inner { height: var(--bar-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); font-weight: 700; font-size: 18px; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; flex: none; }
.brand-mark svg { width: 20px; height: 20px; }
.nav { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav a:hover { color: var(--ink); }
.bar .btn { min-height: 44px; padding: 0 18px; }
.menu-btn { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; align-items: center; gap: 5px; margin-right: -8px; }
.menu-btn span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.menu { display: none; }
@media (max-width: 900px) {
  .nav, .bar .btn-call { display: none; }
  .menu-btn { display: flex; }
  .menu {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
    border-bottom: 1px solid var(--line); padding: 8px 16px 18px; flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  }
  .menu a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-weight: 500; }
  .menu .btn { margin-top: 14px; border-bottom: 0; }
  .bar[data-open="true"] .menu { display: flex; }
  .bar[data-open="true"] .menu-btn span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .bar[data-open="true"] .menu-btn span:nth-child(2) { opacity: 0; }
  .bar[data-open="true"] .menu-btn span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
/* Page content starts below the bar */
main { padding-top: calc(var(--bar-h) + env(safe-area-inset-top, 0px)); }

/* Hero: photo with frosted card ---------------------------------------- */
.hero { position: relative; min-height: min(88vh, 900px); display: flex; align-items: flex-end; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-focus, 60% 50%); }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,0) 30%, rgba(0,0,0,.18)); }
.hero-card {
  position: relative; margin: clamp(48px, 8vw, 110px) 0 clamp(40px, 6vw, 80px);
  width: min(600px, 100%); padding: clamp(28px, 4vw, 48px);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card h1 { margin: 0 0 18px; }
.hero-card .lede { margin-bottom: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { margin-top: 18px; font-size: 14px; color: var(--ink-3); }
@media (max-width: 640px) {
  .hero { display: block; min-height: 0; }
  .hero-media { position: relative; inset: auto; height: 52vw; min-height: 240px; z-index: 0; }
  .hero-media::after { display: none; }
  .hero-card { margin: -34px 0 0; width: 100%; box-shadow: 0 16px 40px rgba(0,0,0,.10); }
  .hero-actions .btn { width: 100%; }
}

/* Trust strip */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-inner { display: flex; flex-wrap: wrap; gap: 10px 36px; padding: 18px 0; font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.trust-inner span { display: inline-flex; align-items: center; gap: 8px; }
.trust-inner svg { width: 18px; height: 18px; color: var(--accent); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat { padding: 8px 24px; border-left: 2px solid var(--line); }
.stat b { display: block; font-family: var(--font-head); font-size: clamp(40px, 5vw, 64px); font-weight: 600; letter-spacing: -.03em; color: var(--accent); line-height: 1; }
.stat span { display: block; margin-top: 10px; color: var(--ink-2); font-size: 15px; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; gap: 20px; } }

/* Services: numbered rows */
.rows { border-top: 1px solid var(--line); }
.row { display: grid; grid-template-columns: 48px 1.1fr 1.6fr; gap: 24px; align-items: start; padding: 30px 0; border-bottom: 1px solid var(--line); }
.row i { font-style: normal; font-family: var(--font-head); font-weight: 600; color: var(--accent); padding-top: 6px; }
.row p { color: var(--ink-2); }
@media (max-width: 760px) { .row { grid-template-columns: 32px 1fr; } .row p { grid-column: 2; } }

/* Cards grid */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; position: relative; }
.card.featured { border-color: var(--accent); box-shadow: var(--shadow); }
.card .tag { position: absolute; top: -14px; right: 22px; background: var(--accent); color: var(--accent-ink); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; }
.card h3 { margin-bottom: 6px; }
.card .sub { color: var(--accent); font-weight: 600; font-size: 15px; margin-bottom: 14px; }
.card p { color: var(--ink-2); margin-bottom: 18px; }
.card ul { display: grid; gap: 10px; margin-bottom: 26px; font-size: 15px; }
.card li { display: flex; gap: 10px; align-items: flex-start; }
.card li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.card .btn { width: 100%; }
.cards-note { margin-top: 18px; font-size: 14px; color: var(--ink-3); }
@media (max-width: 900px) { .cards { grid-template-columns: 1fr; } }

/* Before / after slider */
.ba { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.ba-copy .btn { margin-top: 8px; }
.ba-copy .note { display: block; margin-top: 16px; font-size: 13px; color: var(--ink-3); }
.compare { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); user-select: none; touch-action: pan-y; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare .after { clip-path: inset(0 0 0 var(--pos, 50%)); }
.compare .handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: #fff; transform: translateX(-1px); pointer-events: none; }
.compare .knob { position: absolute; top: 50%; left: var(--pos, 50%); width: 44px; height: 44px; margin: -22px 0 0 -22px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; box-shadow: 0 8px 20px rgba(0,0,0,.3); pointer-events: none; }
.compare .knob svg { width: 20px; height: 20px; }
.compare .lbl { position: absolute; bottom: 14px; padding: 6px 12px; border-radius: 999px; background: rgba(20,20,20,.75); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .1em; }
.compare .lbl.b { left: 14px; } .compare .lbl.a { right: 14px; }
.compare input { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
@media (max-width: 860px) { .ba { grid-template-columns: 1fr; } }

/* Reviews */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 22px; }
.review blockquote { margin: 0; color: var(--ink); font-size: 16.5px; }
.review blockquote::before { content: "\201C"; color: var(--accent); font-family: var(--font-head); font-weight: 700; margin-right: 4px; }
.review footer { margin-top: auto; display: flex; justify-content: space-between; font-size: 14px; }
.review footer b { font-weight: 600; } .review footer span { color: var(--ink-3); }
.stars { color: #d9a021; letter-spacing: 2px; font-size: 14px; }
.reviews-meta { display: flex; align-items: center; gap: 12px; color: var(--ink-2); font-size: 15px; }
.pill { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }

/* Work: dark band with horizontal rail */
.work { background: var(--dark); color: var(--dark-ink); }
.work .kicker { color: var(--dark-muted); }
.work .lede { color: var(--dark-muted); }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: min(420px, 78vw); gap: 18px; overflow-x: auto; padding: 8px 0 24px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail figure { margin: 0; scroll-snap-align: start; }
.rail img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; border-radius: var(--radius-sm); }
.rail figcaption { margin-top: 12px; font-size: 14.5px; color: var(--dark-muted); }
.rail figcaption b { display: block; color: var(--dark-ink); font-weight: 600; font-family: var(--font-head); font-size: 17px; margin-bottom: 2px; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { padding: 28px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--line); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; font-family: var(--font-head); font-weight: 600; color: var(--accent); font-size: 14px; letter-spacing: .1em; margin-bottom: 14px; }
.step p { color: var(--ink-2); margin-top: 8px; font-size: 15.5px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* Serving strip */
.area { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.area-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px; padding: 22px 0; font-family: var(--font-head); font-weight: 600; font-size: 17px; }
.area-inner .kicker { margin: 0; color: var(--ink-3); }

/* Quote form */
.quote { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.quote-copy p { color: var(--ink-2); font-size: 18px; margin: 18px 0 24px; max-width: 46ch; }
.quote-copy .hours { display: block; margin-top: 20px; color: var(--ink-2); }
.quote-copy .hours a { text-decoration: underline; text-underline-offset: 3px; }
.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow); }
.form h3 { margin-bottom: 18px; }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 14.5px; color: var(--ink-2); }
.field input, .field select, .field textarea { font: inherit; padding: 13px 14px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--bg); color: var(--ink); width: 100%; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--accent); border-color: transparent; }
.form .btn { width: 100%; margin-top: 6px; }
.form small { display: block; margin-top: 12px; font-size: 13px; color: var(--ink-3); }
.form .thanks { display: none; padding: 20px 0; text-align: center; }
.form[data-sent="true"] form { display: none; } .form[data-sent="true"] .thanks { display: block; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 860px) { .quote { grid-template-columns: 1fr; } }

/* Footer */
.foot { padding: 48px 0 calc(28px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--line); font-size: 14.5px; color: var(--ink-2); }
.foot-grid { display: grid; grid-template-columns: 1fr auto; gap: 20px 40px; align-items: start; }
.foot .brand { color: var(--ink); margin-bottom: 8px; }
.foot .phone { font-family: var(--font-head); font-weight: 600; font-size: 22px; color: var(--ink); }
.foot .right { text-align: right; display: grid; gap: 8px; }
.foot .right a:hover, .foot .left a:hover { text-decoration: underline; }
.foot-legal { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-3); }
@media (max-width: 700px) { .foot-grid { grid-template-columns: 1fr; } .foot .right { text-align: left; } }

/* Mobile sticky call bar */
.callbar { display: none; }
@media (max-width: 640px) {
  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; z-index: 90;
    left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    transition: transform .3s var(--ease), opacity .3s;
  }
  .callbar[data-hidden="true"] { transform: translateY(140%); opacity: 0; pointer-events: none; }
  .callbar .btn { box-shadow: 0 14px 40px rgba(0,0,0,.25); }
  .foot { padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px)); }
}

/* Reveal on scroll */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ---- Layout variants (used by different demos) ------------------------ */

/* Full-bleed hero: text directly over the photo, no card */
.hero-full { position: relative; min-height: min(92vh, 940px); display: flex; align-items: flex-end; isolation: isolate; color: #fff; }
.hero-full .hero-media::after { background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.05) 35%, rgba(0,0,0,.72) 100%); }
.hero-full .hero-body { padding: clamp(60px, 9vw, 140px) 0 clamp(44px, 6vw, 80px); max-width: 760px; }
.hero-full .kicker { color: color-mix(in srgb, #fff 80%, var(--accent)); }
.hero-full .lede { color: rgba(255,255,255,.82); margin: 18px 0 28px; }
.hero-full .hero-note { color: rgba(255,255,255,.65); }
@media (max-width: 640px) {
  .hero-full { min-height: 0; display: block; color: var(--ink); }
  .hero-full .hero-media { position: relative; height: 62vw; min-height: 260px; z-index: 0; }
  .hero-full .hero-media::after { display: none; }
  .hero-full .hero-body { padding: 28px 0 36px; }
  .hero-full .kicker { color: var(--accent); }
  .hero-full .lede { color: var(--ink-2); }
  .hero-full .hero-note { color: var(--ink-3); }
  .hero-full .hero-actions .btn { width: 100%; }
}

/* Split hero: copy left, photo right */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding: clamp(40px, 6vw, 96px) 0; }
.hero-split .hero-photo { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.hero-split .hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-split .lede { margin: 18px 0 28px; }
@media (max-width: 860px) { .hero-split { grid-template-columns: 1fr; padding-top: 24px; } .hero-split .hero-photo { order: -1; aspect-ratio: 16 / 10; } .hero-split .hero-actions .btn { width: 100%; } }

/* Editorial stories: alternating photo / text */
.story { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(28px, 5vw, 72px); align-items: center; padding: clamp(28px, 4vw, 56px) 0; border-top: 1px solid var(--line); }
.story:first-child { border-top: 0; }
.story:nth-child(even) .story-photo { order: 2; }
.story-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.story-photo img { width: 100%; height: 100%; object-fit: cover; }
.story h3 { font-size: clamp(26px, 2.8vw, 36px); margin-bottom: 12px; }
.story p { color: var(--ink-2); }
.story .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.story .meta span { border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; font-size: 12.5px; color: var(--ink-2); }
@media (max-width: 860px) { .story { grid-template-columns: 1fr; } .story:nth-child(even) .story-photo { order: 0; } }

/* Spec cards: photo + spec table */
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.spec { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.spec .spec-body { padding: 22px 24px 24px; }
.spec h3 { font-size: 21px; margin-bottom: 4px; }
.spec .loc { color: var(--ink-3); font-size: 14px; margin-bottom: 14px; }
.spec table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec td { padding: 8px 0; border-top: 1px solid var(--line); vertical-align: top; }
.spec td:first-child { color: var(--ink-3); width: 38%; }
.spec td:last-child { font-weight: 500; }
@media (max-width: 900px) { .specs { grid-template-columns: 1fr; } }

/* Before/after gallery pairs */
.pairs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pair { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.pair .pair-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.pair .pair-imgs div { position: relative; aspect-ratio: 4 / 3; }
.pair img { width: 100%; height: 100%; object-fit: cover; }
.pair .lbl { position: absolute; top: 10px; left: 10px; padding: 5px 10px; border-radius: 999px; background: rgba(20,20,20,.72); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.pair .pair-body { padding: 18px 22px 22px; }
.pair h3 { font-size: 20px; margin-bottom: 4px; }
.pair p { color: var(--ink-2); font-size: 15px; }
@media (max-width: 760px) { .pairs { grid-template-columns: 1fr; } }

/* Checklist / promise band */
.band { background: var(--accent-soft); }
.band-inner { padding: clamp(40px, 6vw, 72px) 0; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.band h2 { font-size: clamp(28px, 3.4vw, 44px); }
.band ul { display: grid; gap: 12px; }
.band li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.band li svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 3px; }
@media (max-width: 860px) { .band-inner { grid-template-columns: 1fr; } }

/* Dark-site tweaks: when --bg is dark, surfaces need lifting instead of tinting */
.is-dark .card, .is-dark .review, .is-dark .step, .is-dark .form, .is-dark .spec, .is-dark .pair { background: var(--surface); border-color: var(--line); }
.is-dark .btn-ghost { border-color: color-mix(in srgb, var(--ink) 30%, transparent); }
.is-dark .btn-light { background: var(--ink); color: var(--bg); }
.is-dark .hero-card { background: color-mix(in srgb, var(--bg) 82%, transparent); }
.is-dark .field input, .is-dark .field select, .is-dark .field textarea { background: var(--bg); }
.is-dark .compare .lbl { background: rgba(0,0,0,.6); }

/* Logo lockup */
.logo { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); }
.logo-mark { width: 40px; height: 40px; flex: none; color: var(--accent); --logo-bg: var(--bg); }
.logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-word { font-family: var(--font-head); font-weight: 700; font-size: 21px; letter-spacing: -.02em; }
.logo-sub { margin-top: 4px; font-size: 9.5px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); }
.foot .logo { margin-bottom: 10px; }
.foot .logo-mark { width: 34px; height: 34px; }
.foot .logo-word { font-size: 18px; }
@media (max-width: 400px) { .logo-mark { width: 34px; height: 34px; } .logo-word { font-size: 18px; } }
