/* mechanic/sample-editorial/styles.css  (v3, 2026-05-30)
   QWQ Mechanics sample - Dark Editorial theme
   --------------------------------------------------------
   Rebuilt from empty per owner instruction: structure follows the
   sample-industrial v3 (commit 96dafaf) shell, dressed in a dark
   magazine (editorial) visual language. No old Direction C code reused.

   L1/L2/L3 tokens sourced from /templates/shared/tokens.css
   (data-theme="editorial": deep-navy #0F172A bg, warm ivory #F8F5EE text,
    brass #D4AF37 default accent, Playfair Display serif headings).

   Single shared shell across home + module subpages + reviews + before-after.
   Spec source: docs/product/template-info-architecture.md (amended 2026-05-30).

   Editorial visual signatures (all inside the v3 slot skeleton):
   - Serif display headings, mixed case (not uppercase), high optical contrast
   - Generous whitespace, thin hairline gold rules as dividers
   - Vertical (writing-mode) sidebar label in the hero
   - Photo-forward hero with a soft ivory-to-navy veil

   Hard rules honoured: pure English, no em-dash, no emoji, no literal
   angle brackets in heading / paragraph text (per spec 11.16).
   -------------------------------------------------------- */

/* 1. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* 2. Utilities */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Skip to main content (a11y, WCAG 2.4.1). Off-screen until focused. */
.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 1000;
  padding: 10px 16px;
  background: #ffffff;
  color: #000000;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #000000;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 8px;
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* Editorial section labels: small caps mono with a brass hairline */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: var(--accent-text);
  margin-bottom: 18px;
}
.section-label::before {
  content: ""; width: 34px; height: 1px;
  background: var(--accent); display: inline-block;
}
.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 500;
  letter-spacing: 0.005em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 14px;
}
.section-h2 .accent { color: var(--accent-text); font-style: italic; }
.section-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
section { padding-block: clamp(48px, 6vw, 84px); position: relative; }

/* 3. Sample banner */
.sample-banner {
  background: #0A1120;
  border-bottom: 1px solid var(--border);
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 9px 20px;
  text-align: center;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sample-banner a { color: var(--accent-text); text-decoration: underline; margin-left: 8px; }
.sample-banner a:hover { color: var(--text); }

/* 4. Navigation (sticky; backdrop blur after scroll handled by translucency) */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(16px) saturate(135%);
  -webkit-backdrop-filter: blur(16px) saturate(135%);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.site-nav .container {
  display: flex; align-items: center; gap: 30px; height: 100%;
}
.nav-logo {
  font-family: var(--font-display);
  /* Amendment 20: nudged 24 to 23 so the three sample brands read at a
     matched visual weight alongside performance (now 22/600). */
  font-size: 23px; font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  /* Long-name robustness: brand may shrink and wrap so a long client name
     never pushes BOOK NOW out or triggers horizontal scroll.
     flex: 0 1 auto lets it shrink without growing past its content on desktop. */
  flex: 0 1 auto; min-width: 0;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: normal; line-height: 1.15;
}
.nav-logo .nlg-mark {
  display: inline-block; width: 9px; height: 9px;
  background: var(--accent); border-radius: 50%; margin-right: 6px;
  flex-shrink: 0;
}
.nav-logo span.nlg-accent { color: var(--accent-text); font-style: italic; }
.nav-links { display: flex; gap: 26px; flex: 1; flex-wrap: wrap; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--dim);
  transition: color 220ms; position: relative;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--accent-text); outline: none; }
.nav-actions { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }

/* Editorial buttons: soft radius, refined, brass fill */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 46px; padding: 0 26px;
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid currentColor; border-radius: var(--radius);
  transition: background 220ms, color 220ms, transform 180ms, box-shadow 220ms;
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent); color: #0F172A; border-color: var(--accent-text);
  box-shadow: 0 6px 22px var(--accent-glow);
}
.btn-accent:hover { background: var(--accent-dim); border-color: var(--accent-dim); transform: translateY(-1px); }
.btn-outline { color: var(--text); background: transparent; border-color: var(--border-hi); }
.btn-outline:hover { color: var(--accent-text); border-color: var(--accent-text); }
.btn-lg { height: 58px; padding: 0 32px; font-size: 13px; }

/* Per Amendment 9: Emergency button matches Book Now in the top nav,
   distinguished by the accent-alt (warm urgent) treatment. */
.btn-emergency { background: var(--accent-alt); color: #0F172A; border-color: var(--accent-alt); }
.btn-emergency:hover { background: #d97706; border-color: #d97706; transform: translateY(-1px); }
.nav-cta { height: 44px; padding: 0 18px; font-size: 11.5px; letter-spacing: 0.12em; }
/* Amendment 15: header Emergency CTA is toggled by the open-now script
   (shown only out-of-hours). Default hidden to avoid a flash before JS runs. */
.nav-cta-emergency { display: none; }
.nav-cta-emergency.is-shown { display: inline-flex; }

/* 5. Hero (Slot 2 baseline; open-now pill; no Hero CTAs per Amendment 10) */
.hero {
  position: relative; overflow: hidden;
  padding-block: clamp(72px, 9vw, 132px);
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url("/templates/shared/stock-images/mechanic/hero-editorial.webp");
  background-size: cover; background-position: center 40%;
  z-index: -2;
  filter: contrast(1.04) brightness(0.42) saturate(0.78);
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(15,23,42,0.97) 0%, rgba(15,23,42,0.82) 46%, rgba(15,23,42,0.45) 100%),
    radial-gradient(circle at 88% 26%, var(--accent-pale) 0%, transparent 58%);
  z-index: -1;
}
/* Editorial signature: vertical sidebar text down the left edge */
.hero-sidebar {
  position: absolute; left: clamp(10px, 2.6vw, 26px); top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--dim);
  opacity: 0.7; pointer-events: none;
  z-index: 0;
}
@media (max-width: 980px) { .hero-sidebar { display: none; } }
.hero-content { position: relative; max-width: 800px; z-index: 1; }
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--accent-text);
  margin-bottom: 30px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: ""; width: 36px; height: 1px;
  background: var(--accent); display: inline-block;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.2vw, 96px);
  font-weight: 500; line-height: 1.02;
  letter-spacing: 0.002em;
  color: var(--text); margin-bottom: 22px;
}
.hero-h1 .accent { color: var(--accent-text); font-style: italic; }
.hero-rule { width: 88px; height: 2px; background: var(--accent); margin: 22px 0; }
.hero-sub {
  font-size: clamp(16px, 1.7vw, 20px);
  color: var(--text-2); line-height: 1.7;
  max-width: 640px; margin-bottom: 30px;
}

/* Hero open-now status line: a thin editorial dateline above the eyebrow
   (Amendment 17). Uppercase serif (italic dropped for legibility), hairline
   rule, low-key so the H1 leads. */
.hero-status-line {
  display: flex; width: fit-content; align-items: center; gap: 9px;
  margin-bottom: 22px;
  padding: 0 0 9px 0;
  border-bottom: 1px solid var(--border-hi);
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-2);
  text-decoration: none;
  transition: color 0.18s ease;
}
.hero-status-line:hover,
.hero-status-line:focus-visible { color: var(--accent-text); }
/* In-page anchor target offset so the sticky header never hides the heading. */
.anchor-offset { display: block; position: relative; top: -90px; visibility: hidden; }
#footer-hours { scroll-margin-top: 90px; }

/* Hero chip row: location pill links to the Find Us block (per spec 1.8 + Amendment 17) */
.hero-meta-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 24px;
}
.hero-chip {
  display: inline-flex; align-items: flex-start; gap: 8px;
  padding: 9px 16px;
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  background: rgba(15,23,42,0.55);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-2);
  text-decoration: none;
  transition: color 0.18s ease, border-color 0.18s ease;
}
a.hero-chip:hover,
a.hero-chip:focus-visible { color: var(--accent-text); border-color: var(--accent-text); }
.hero-chip-dot {
  width: 7px; height: 7px;
  background: var(--accent); border-radius: 50%;
  display: inline-block;
}
/* Top-align the dot with the first line of the address so a 2-line
   address on mobile keeps the dot beside the first line (Amendment 20). */
.hero-chip .hero-chip-dot { margin-top: 5px; flex-shrink: 0; }
.hero-chip-dot.open { background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,0.16); }
.hero-chip-dot.closed { background: var(--accent-alt); box-shadow: 0 0 0 4px rgba(245,158,11,0.16); }

/* Whole trust line is the link to /reviews/ (no separate read-all link) */
.hero-trust {
  display: inline-flex; align-items: center; flex-wrap: wrap;
  gap: 14px; padding: 13px 20px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  background: rgba(15,23,42,0.5);
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--text-2);
  transition: border-color 220ms, color 220ms, transform 220ms;
}
.hero-trust:hover, .hero-trust:focus-visible {
  border-color: var(--accent-text); color: var(--text); outline: none;
  transform: translateY(-1px);
}
.hero-trust .star-row { color: var(--accent-text); letter-spacing: 0.04em; font-size: 14px; }
.hero-trust-arrow {
  color: var(--accent-text);
  font-family: var(--font-mono);
  transition: transform 220ms;
}
.hero-trust:hover .hero-trust-arrow { transform: translateX(4px); }

/* Compact the trust line on narrow screens so the rating + reviews + arrow
   stay on a single line and never wrap (Amendment 19). */
@media (max-width: 600px) {
  .hero-trust {
    gap: 9px; padding: 11px 15px;
    font-size: 11px; letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .hero-trust .star-row { font-size: 12px; }
  .hero-chip { font-size: 10.5px; letter-spacing: 0.08em; }
}
@media (max-width: 480px) {
  .hero-trust {
    gap: 8px; padding: 10px 13px;
    font-size: 10px; letter-spacing: 0.03em;
  }
  .hero-trust .star-row { font-size: 11px; letter-spacing: 0; }
  .hero-chip { font-size: 10px; letter-spacing: 0.06em; }
}

/* 6. Services Overview (Slot 3 baseline, auto-fit grid) */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.svc-card {
  background: var(--bg-card);
  padding: 32px 30px 34px;
  transition: background 220ms; position: relative;
}
.svc-card:hover { background: var(--bg-elev); }
.svc-num {
  font-family: var(--font-display);
  font-size: 20px; font-style: italic;
  color: var(--accent-text); margin-bottom: 18px;
}
.svc-name {
  font-family: var(--font-display);
  font-size: 25px; font-weight: 500;
  color: var(--text); margin-bottom: 10px; line-height: 1.15;
}
.svc-desc {
  font-size: 15px; color: var(--text-2);
  line-height: 1.6; margin-bottom: 18px;
}
.svc-price {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-text);
  padding-top: 14px;
  border-top: 1px solid var(--border-hi);
  width: 100%;
}

/* 7. Why Choose Us (Slot 4 baseline) */
.why-choose { background: var(--bg-card); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.why-card {
  padding: 30px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: border-color 220ms, transform 220ms;
}
.why-card:hover { border-color: var(--accent-text); transform: translateY(-3px); }
.why-icon-wrap {
  width: 46px; height: 46px;
  border: 1px solid var(--accent); border-radius: 50%;
  color: var(--accent-text);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.why-icon { width: 22px; height: 22px; }
.why-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--text); margin-bottom: 8px; line-height: 1.2;
}
.why-text { font-size: 15px; color: var(--text-2); line-height: 1.6; }

/* Certifications badge row INSIDE Why Choose Us (per spec 1.7, 11.15) */
.why-certs-row {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--border-hi);
  display: flex; flex-wrap: wrap;
  align-items: center; gap: 16px;
}
.why-certs-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--dim);
  margin-right: 8px;
}
.cert-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: var(--bg); border: 1px solid var(--border-hi);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--text-2);
  transition: border-color 220ms, color 220ms;
}
.cert-badge:hover { border-color: var(--accent-text); color: var(--accent-text); }
.cert-badge strong { color: var(--accent-text); font-weight: 700; letter-spacing: 0.04em; }
.why-certs-link {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.why-certs-link:hover { color: var(--text); border-bottom-color: var(--text); }

/* 8. Link cards (Tier B + compact Tier A row) */
.link-cards-mod { background: var(--bg); }
.link-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.link-card {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 220ms, transform 220ms;
}
.link-card:hover { border-color: var(--accent-text); transform: translateX(3px); }
.link-card-marker {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  color: var(--accent-text);
  border: 1px solid var(--accent); border-radius: 100px;
  padding: 5px 10px; flex-shrink: 0;
  text-transform: uppercase;
}
.link-card-text { flex: 1; min-width: 0; }
.link-card-title {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--text); margin-bottom: 4px; line-height: 1.2;
}
.link-card-sub { font-size: 13.5px; color: var(--text-2); line-height: 1.5; }
.link-card-arrow {
  font-family: var(--font-mono); color: var(--faint);
  font-size: 18px; transition: color 220ms, transform 220ms;
}
.link-card:hover .link-card-arrow { color: var(--accent-text); transform: translateX(4px); }

/* 9. Brands (Slot 10, compact strip) */
.brands-mod { background: var(--bg-card); }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.brand-tile {
  padding: 24px 16px;
  background: var(--bg);
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  color: var(--text-2);
  transition: background 220ms, color 220ms;
}
.brand-tile:hover { background: var(--bg-elev); color: var(--accent-text); }
.brand-tile small {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--faint); margin-top: 6px;
  text-transform: uppercase;
}
.brands-link-row { margin-top: 18px; font-size: 13.5px; color: var(--dim); }
.brands-link-row a {
  color: var(--accent-text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.brands-link-row a:hover { color: var(--text); border-bottom-color: var(--text); }

/* 10. Pricing (Slot 12) */
.pricing-mod { background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.price-tier {
  background: var(--bg-card);
  padding: 34px 30px 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: border-color 220ms, transform 220ms;
}
.price-tier:hover { border-color: var(--border-hi); transform: translateY(-2px); }
.price-tier--featured {
  border-color: var(--accent-text);
  box-shadow: 0 10px 40px var(--accent-glow);
}
.price-tier-name {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.price-tier-tagline {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim);
  margin-bottom: 20px;
}
.price-tier-cost {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 500;
  color: var(--accent-text); margin-bottom: 4px; line-height: 1;
}
.price-tier-cost small {
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--dim); letter-spacing: 0.08em;
  text-transform: uppercase; margin-left: 6px;
}
.price-tier-list { margin: 24px 0; flex: 1; }
.price-tier-list li {
  font-size: 14px; color: var(--text-2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  position: relative; padding-left: 22px;
}
.price-tier-list li::before {
  content: "+"; position: absolute; left: 0;
  color: var(--accent-text);
  font-family: var(--font-mono); font-weight: bold;
}
.price-tier-list li:last-child { border-bottom: none; }

/* 11. Financing banner (Slot 13) */
.financing-mod {
  background: var(--bg-card);
  border-block: 1px solid var(--border-hi);
  padding-block: 40px;
}
.financing-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px; align-items: center;
}
@media (max-width: 720px) {
  .financing-banner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
.financing-banner .fin-tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-text);
  border: 1px solid var(--accent); border-radius: 100px;
  padding: 7px 14px;
}
.financing-banner .fin-text h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px; line-height: 1.15;
}
.financing-banner .fin-text p { font-size: 14.5px; color: var(--text-2); }

/* 12. Contact CTA strip (Slot 14 baseline, extended by Booking) */
.contact-cta { background: var(--bg); border-top: 2px solid var(--accent); }
.contact-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: center;
}
@media (max-width: 780px) { .contact-cta-inner { grid-template-columns: 1fr; } }
.contact-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.1; margin-bottom: 12px;
}
.contact-cta p { color: var(--text-2); font-size: 16px; line-height: 1.6; margin-bottom: 26px; }
.contact-cta-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-cta-aside {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 28px 26px;
}
.contact-cta-aside dt {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-text);
  margin-bottom: 6px;
}
.contact-cta-aside dd {
  font-size: 16px; color: var(--text);
  margin-bottom: 18px;
  font-family: var(--font-mono);
}
.contact-cta-aside dd:last-of-type { margin-bottom: 0; }

/* 13. Emergency Service (Slot 15, time-conditional per spec 3.5)
   DEFAULT hidden during business hours; JS sets data-after-hours="true". */
.emergency-mod {
  display: none;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.06), transparent),
    var(--bg-card);
  border-block: 1px solid var(--accent-alt);
}
.emergency-mod[data-after-hours="true"] { display: block; }
.emergency-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px; align-items: center;
}
@media (max-width: 720px) { .emergency-banner { grid-template-columns: 1fr; } }
.emergency-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--accent-alt);
  margin-bottom: 12px;
}
.emergency-tag::before {
  content: ""; width: 10px; height: 10px;
  border-radius: 50%; background: var(--accent-alt);
  box-shadow: 0 0 0 0 currentColor;
  animation: pulse-emerg 2s infinite;
}
@keyframes pulse-emerg {
  0% { box-shadow: 0 0 0 0 var(--accent-alt); opacity: 1; }
  100% { box-shadow: 0 0 0 14px transparent; opacity: 0.4; }
}
.emergency-h {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.1; margin-bottom: 8px;
}
.emergency-mod p { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.emergency-btn { background: var(--accent-alt); color: #0F172A; border-color: var(--accent-alt); }
.emergency-btn:hover { background: var(--accent); border-color: var(--accent-text); }

/* 14. Location + Coverage Map mode B (Slot 16 baseline + ext)
   Per Amendment 11 + 12: OpenStreetMap static image (not a hero overlay);
   single drive-from chip + Get directions link. */
.location-mod { background: var(--bg-card); }
.location-head { text-align: center; margin-bottom: 32px; }
.hours-table {
  width: 100%;
  font-family: var(--font-mono);
  font-size: 13px;
  border-top: 1px solid var(--border);
}
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 11px 0; color: var(--text-2); }
.hours-table td:first-child {
  color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase;
}

/* Single chip + directions link (per Amendment 12) */
.location-quick-row {
  display: flex; flex-wrap: wrap;
  gap: 14px; align-items: center;
  margin-top: 4px;
}
.location-chip {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--border-hi); border-radius: 100px;
  background: var(--bg);
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--text-2);
}
.location-directions-link {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}
.location-directions-link:hover { color: var(--text); border-bottom-color: var(--text); }

/* Parking + transport block (mode B) */
.travel-notes {
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg);
}
.travel-notes h4 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-text);
  margin-bottom: 6px;
}
.travel-notes p { font-size: 14px; color: var(--text-2); margin-bottom: 10px; }
.travel-notes p:last-child { margin-bottom: 0; }

/* Reliable OpenStreetMap embed (iframe), centered + width-constrained,
   with an address card overlaid in a corner [Amendment 18]. */
.map-card {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg);
  overflow: hidden;
}
.map-frame {
  display: block;
  width: 100%; height: 400px;
  border: 0;
}
.map-info-card {
  position: absolute; left: 18px; bottom: 18px;
  z-index: 2;
  max-width: 320px;
  display: flex; flex-direction: column; gap: 7px;
  padding: 16px 18px;
  background: rgba(15,23,42,0.92);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(15,23,42,0.35);
}
.map-info-address {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.06em;
  color: #fff; line-height: 1.55;
}
.map-info-link {
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--accent-text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px; align-self: flex-start;
}
.map-info-link:hover { color: #fff; border-bottom-color: #fff; }
@media (max-width: 480px) {
  .map-frame { height: 340px; }
  .map-info-card { left: 12px; right: 12px; bottom: 12px; max-width: none; padding: 14px 16px; }
}

/* 15. Before/After (subpage shape) */
.ba-pair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}
.ba-pair {
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.ba-images {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border);
}
.ba-images figure { position: relative; background: #0A1120; }
.ba-images img {
  width: 100%; height: 230px;
  object-fit: cover;
  filter: contrast(1.03) saturate(0.9);
}
.ba-images figcaption {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(15,23,42,0.88);
  color: var(--accent-text);
  padding: 4px 10px;
  border: 1px solid var(--accent); border-radius: 100px;
}
.ba-meta { padding: 18px 20px; }
.ba-meta h3 {
  font-family: var(--font-display);
  font-size: 21px; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.ba-meta p { font-size: 14px; color: var(--text-2); line-height: 1.55; }

/* 16. Gallery (subpage shape) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.gallery-item img {
  width: 100%; height: 210px;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: contrast(1.03) saturate(0.86);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(15,23,42,0.94), transparent);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text);
}

/* 17. Reviews subpage (cards) */
.reviews-strip-meta {
  display: inline-flex; align-items: center;
  gap: 18px; padding: 16px 22px;
  border: 1px solid var(--border-hi); border-radius: var(--radius-lg);
  background: var(--bg-card);
  margin-bottom: 36px;
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-2);
}
.reviews-strip-meta strong {
  color: var(--accent-text); font-size: 26px;
  font-family: var(--font-display); font-weight: 500;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  padding: 30px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  position: relative;
}
.review-stars { color: var(--accent-text); letter-spacing: 0.04em; font-size: 15px; margin-bottom: 16px; }
.review-quote {
  font-family: var(--font-display);
  font-size: 18px; font-style: italic; font-weight: 400;
  color: var(--text); line-height: 1.55; margin-bottom: 18px;
}
.review-attrib {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--dim);
}

/* 18. Certifications subpage shape */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.cert-tile {
  padding: 24px 20px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  background: var(--bg-card);
}
.cert-tile strong {
  display: block;
  font-family: var(--font-display);
  font-size: 21px; font-weight: 500;
  color: var(--text); margin-bottom: 6px;
}
.cert-tile span {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--dim);
  display: block; margin-bottom: 12px;
}
.cert-tile p { font-size: 13.5px; color: var(--text-2); line-height: 1.5; }

/* 19. Footer (Slot 17 baseline) */
.site-footer {
  background: #0A1120;
  border-top: 1px solid var(--border);
  padding-block: 56px 28px;
  font-size: 14px; color: var(--dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
/* Opening hours: one day per line, day label over time, time never wraps mid-string (Amendment 17). */
.footer-hours {
  list-style: none; margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 13px;
}
.footer-hours li {
  display: flex; flex-direction: column; gap: 2px;
  padding: 4px 0;
}
.footer-hours .fh-day {
  color: var(--dim); letter-spacing: 0.06em; text-transform: uppercase;
  font-size: 11px; white-space: nowrap;
}
.footer-hours .fh-time { color: var(--text-2); white-space: nowrap; }
.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-text);
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-2); transition: color 220ms; font-size: 14px; }
.footer-col a:hover { color: var(--accent-text); }
.footer-brand .nav-logo { font-size: 23px; margin-bottom: 16px; display: inline-block; }
.footer-brand p { color: var(--dim); font-size: 14px; line-height: 1.65; max-width: 340px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--faint);
}
.footer-bottom a { color: var(--dim); }
.footer-bottom a:hover { color: var(--accent-text); }

/* 21. Module catalogue (sample-mode /modules/) */
.modules-catalogue { background: var(--bg); padding-block: 48px; }
.modules-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.module-cat-card {
  padding: 26px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  transition: border-color 220ms, transform 220ms;
  display: flex; flex-direction: column; gap: 12px;
}
.module-cat-card:hover { border-color: var(--accent-text); transform: translateY(-3px); }
.module-cat-tier {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-text);
  border: 1px solid var(--accent); border-radius: 100px;
  padding: 4px 10px; align-self: flex-start;
}
.module-cat-card h3 {
  font-family: var(--font-display);
  font-size: 23px; font-weight: 500;
  color: var(--text); line-height: 1.2;
}
.module-cat-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.module-cat-card a.module-cat-link {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent-text);
  margin-top: auto;
  border-bottom: 1px solid var(--accent);
  align-self: flex-start; padding-bottom: 2px;
}
.module-cat-card a.module-cat-link:hover { color: var(--text); border-bottom-color: var(--text); }

/* 22. Subpage hero */
.sub-hero {
  background: var(--bg-card);
  padding-block: clamp(64px, 8vw, 100px);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.sub-hero .container { position: relative; }
.sub-hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.20em;
  text-transform: uppercase; color: var(--accent-text);
  margin-bottom: 14px;
}
.sub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.05; margin-bottom: 18px;
}
.sub-hero .accent { color: var(--accent-text); font-style: italic; }
.sub-hero p { font-size: 17px; color: var(--text-2); line-height: 1.65; max-width: 640px; }

/* Cross-link section at bottom of subpages */
.cross-links {
  background: var(--bg-card);
  padding-block: 64px;
  border-top: 1px solid var(--border);
}
.cross-links h2 {
  font-family: var(--font-display);
  font-size: 28px; font-weight: 500;
  color: var(--text); margin-bottom: 24px;
}
.cross-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* 23. Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.reveal--in { opacity: 1; transform: translateY(0); }
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
[data-reveal].reveal--in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 70ms; }
[data-reveal-delay="2"] { transition-delay: 140ms; }
[data-reveal-delay="3"] { transition-delay: 210ms; }
[data-reveal-delay="4"] { transition-delay: 280ms; }
[data-reveal-delay="5"] { transition-delay: 350ms; }

/* 23b. Home page compaction (5000px cap per spec 7.3) */
body.home section { padding-block: clamp(34px, 4vw, 56px); }
body.home .section-h2 { font-size: clamp(26px, 3.4vw, 40px); }
body.home .section-sub { margin-bottom: 24px; font-size: 15px; }
body.home .section-label { margin-bottom: 12px; }
body.home .why-grid { gap: 16px; }
body.home .why-card { padding: 22px 22px; }
body.home .why-icon-wrap { width: 40px; height: 40px; margin-bottom: 16px; }
body.home .why-title { font-size: 19px; }
body.home .why-text { font-size: 14px; }
body.home .why-certs-row { margin-top: 26px; padding-top: 20px; gap: 12px; }
body.home .brand-tile { padding: 16px 10px; font-size: 16px; }
body.home .brand-tile small { font-size: 9.5px; }
body.home .brands-grid { grid-template-columns: repeat(4, 1fr); }
body.home .price-tier { padding: 24px 22px 26px; }
body.home .price-tier-name { font-size: 21px; }
body.home .price-tier-list { margin: 16px 0; }
body.home .price-tier-list li { padding: 6px 0; padding-left: 18px; font-size: 13px; }
body.home .price-tier-cost { font-size: 34px; }
body.home .price-tier-tagline { margin-bottom: 12px; }
body.home .link-cards-grid { gap: 12px; }
body.home .link-card { padding: 16px 20px; }
body.home .services-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
body.home .svc-card { padding: 26px 24px 28px; }
body.home .svc-num { margin-bottom: 14px; }
body.home .svc-name { font-size: 21px; }
body.home .svc-desc { font-size: 14px; margin-bottom: 14px; }
body.home .footer-grid { gap: 28px; margin-bottom: 28px; }
body.home .site-footer { padding-block: 34px 18px; }
body.home .hero { padding-block: clamp(48px, 6vw, 80px); }
body.home .hero-h1 { font-size: clamp(40px, 6vw, 78px); margin-bottom: 18px; }
body.home .hero-rule { margin: 16px 0; }
body.home .hero-eyebrow { margin-bottom: 20px; }
body.home .hero-status-line { margin-bottom: 16px; }
body.home .hero-sub { margin-bottom: 22px; font-size: clamp(15px, 1.6vw, 18px); }
body.home .hero-meta-row { margin-bottom: 18px; }
body.home .map-frame { height: 360px; }
body.home .contact-cta-inner { gap: 28px; }
body.home .emergency-mod p { font-size: 14px; }
body.home .financing-mod { padding-block: 28px; }
body.home .financing-banner .fin-text h3 { font-size: clamp(20px, 2.2vw, 26px); }
body.home .financing-banner .fin-text p { font-size: 13.5px; }

/* Cap services + why at 3 columns desktop */
@media (min-width: 861px) {
  body.home .services-grid,
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  body.home .why-grid,
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}

/* 24. Mobile compaction (D16) */
@media (max-width: 860px) {
  .nav-links { display: none; }
  /* Per Amendment 16 (2026-05-30): no bottom sticky bar. The sticky header
     carries the CTAs on mobile, identical to desktop, so the button never
     jumps position. Nav links collapse; CTAs stay. Shrink the CTA padding
     and font so logo + Book Now (+ out-of-hours Emergency) fit on one line
     without wrapping and stretching the header. */
  .nav-actions { gap: 8px; flex-shrink: 0; }
  .nav-cta { height: 38px; padding: 0 12px; font-size: 10.5px; letter-spacing: 0.08em; white-space: nowrap; }
  /* Brand wraps naturally on phones; long client names fold inside the header
     and never crowd out BOOK NOW or cause horizontal scroll (Amendment 20). */
  .nav-logo { font-size: 19px; line-height: 1.1; flex-wrap: wrap; }
  .hero { padding-block: 56px; }
  .hero-h1 { font-size: clamp(40px, 11vw, 60px); }
  body.home .services-grid,
  .services-grid { grid-template-columns: 1fr 1fr; }
  .ba-pair-grid { grid-template-columns: 1fr; }
  .ba-images img { height: 170px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item img { height: 150px; }
  body.home .brands-grid,
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  body.home .why-grid,
  .why-grid { grid-template-columns: 1fr 1fr; }
  body.home .pricing-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  body.home .link-cards-grid,
  .link-cards-grid { grid-template-columns: 1fr; }
  .why-certs-row { gap: 10px; }
  .why-certs-link { margin-left: 0; }
}
@media (max-width: 520px) {
  .services-grid, body.home .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid, body.home .why-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
}

/* 25. Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal, [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* 26. Focus rings */
:where(a, button, [role="button"]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* 27. Module content (subpages) */
.module-content { padding-block: clamp(52px, 7vw, 88px); }
.module-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 500;
  color: var(--text); margin: 28px 0 16px;
}
.module-content h3 {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  color: var(--text); margin: 24px 0 10px;
}
.module-content p { color: var(--text-2); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.module-content ul { padding-left: 24px; margin-bottom: 18px; }
.module-content ul li { color: var(--text-2); font-size: 15.5px; line-height: 1.65; margin-bottom: 9px; position: relative; padding-left: 4px; }
.module-content ul li::marker { color: var(--accent-text); }

/* 28. FAQ accordion (subpage) */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); padding: 26px 0; }
.faq-q {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  color: var(--text); margin-bottom: 12px; line-height: 1.25;
}
.faq-a { color: var(--text-2); font-size: 15.5px; line-height: 1.7; }

/* 29. Process steps (subpage) */
.process-steps { display: grid; gap: 18px; margin-top: 22px; }
.process-step {
  display: grid; grid-template-columns: 88px 1fr;
  gap: 22px; padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.process-step-num {
  font-family: var(--font-display);
  font-size: 54px; font-style: italic;
  color: var(--accent-text); line-height: 1;
}
.process-step h3 { margin: 0 0 6px; font-size: 22px; }
.process-step p { margin: 0; font-size: 15px; color: var(--text-2); }

/* 30. Trust badges */
.trust-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim);
  padding: 5px 10px; border: 1px solid var(--border); border-radius: 100px;
}

/* 31. Accent switcher widget (sample-mode chrome, spec 6.1).
   Editorial template: ACCENT-ONLY (no Theme row), so the page cannot be
   switched to another template's look. Writes the isolated key
   'qwq-accent-editorial'. Markup is injected by accent-switcher.js. */
#qwq-accent-switcher {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  background: rgba(10,17,32,0.94);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  border-top: 1px solid var(--border-hi);
  padding: 9px clamp(12px, 4vw, 32px);
}
#qwq-accent-switcher .ps-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: center;
}
#qwq-accent-switcher .ps-row { display: flex; align-items: center; gap: 12px; }
#qwq-accent-switcher .ps-row-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--dim);
}
#qwq-accent-switcher .ps-btns { display: flex; flex-wrap: wrap; gap: 6px; }
#qwq-accent-switcher .ps-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 6px 12px; border: 1px solid var(--border-hi);
  background: transparent; color: var(--dim);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 100px;
  transition: border-color 200ms, color 200ms;
}
#qwq-accent-switcher .ps-btn:hover { color: var(--text); border-color: var(--accent-text); }
#qwq-accent-switcher .ps-btn.active { color: var(--text); border-color: var(--accent-text); }
#qwq-accent-switcher .ps-sw {
  width: 12px; height: 12px; border-radius: 50%; display: inline-block;
  border: 1px solid rgba(248,245,238,0.25);
}
