:root {
  --ink: #101820;
  --ink-soft: #273444;
  --navy: #102a43;
  --navy-2: #163b5c;
  --copper: #c96f2e;
  --copper-dark: #a85520;
  --blue: #4ca3d9;
  --bg: #f6f8fb;
  --panel: #ffffff;
  --line: #dbe3ea;
  --muted: #5f6f7d;
  --success: #1f7a4d;
  --shadow: 0 20px 55px rgba(16, 42, 67, 0.14);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  z-index: 99;
}
.skip-link:focus { top: 1rem; }
.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}
.topbar {
  background: #0b1724;
  color: #ffffff;
  font-size: 0.92rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}
.topbar strong,
.topbar a { color: #ffffff; }
.topbar a:hover,
.topbar a:focus { color: #ffd7ba; }
.topbar-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-header {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.navbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--copper));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(16,42,67,0.22);
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: -0.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.94rem;
}
.nav-links a:hover,
.nav-links a:focus { color: var(--copper); }
.nav-actions {
  display: flex;
  gap: 0.7rem;
  align-items: center;
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  cursor: pointer;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.88rem 1.18rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: var(--copper);
  box-shadow: 0 12px 24px rgba(201,111,46,0.28);
}
.btn-primary:hover { background: var(--copper-dark); }
.btn-secondary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 12px 24px rgba(16,42,67,0.22);
}
.btn-outline {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--copper); }
.btn-light {
  color: var(--navy);
  background: #fff;
}
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, rgba(76,163,217,0.24), transparent 36%), linear-gradient(135deg, #eef6fc 0%, #ffffff 45%, #f5eee8 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -15% -50% auto;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: rgba(201,111,46,0.09);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 3rem;
  padding: 5.5rem 0 4.5rem;
}
.eyebrow {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  color: var(--copper-dark);
  background: #fff4ec;
  border: 1px solid #f3d3bf;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 1.1rem;
}
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -0.045em; }
h1 { font-size: clamp(2.55rem, 5vw, 5rem); max-width: 880px; }
h2 { font-size: clamp(2rem, 3vw, 3rem); }
h3 { font-size: 1.24rem; }
p { margin: 0; color: var(--muted); }
.lede {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  max-width: 740px;
  margin-top: 1.25rem;
}
.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
  flex-wrap: wrap;
}
.badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  color: var(--ink-soft);
  font-weight: 750;
  font-size: 0.88rem;
}
.hero-card {
  background: var(--panel);
  border: 1px solid rgba(219,227,234,0.8);
  border-radius: 28px;
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.hero-visual {
  background: linear-gradient(160deg, var(--navy), #0b1d2c);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  padding: 1.4rem;
  color: #fff;
}
.hero-visual img {
  display: block;
  width: 100%;
  border-radius: 16px;
  background: #0d2336;
  border: 1px solid rgba(255,255,255,0.14);
}
.visual-caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  gap: 0.25rem;
}
.visual-caption strong { font-size: 1.1rem; }
.visual-caption span { color: var(--muted); font-weight: 650; }
.section { padding: 5rem 0; }
.section-tight { padding: 3rem 0; }
.section-white { background: #fff; }
.section-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), #071625);
}
.section-dark p,
.section-dark .section-label { color: rgba(255,255,255,0.78); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.section-head p { max-width: 670px; margin-top: 0.75rem; }
.section-label {
  color: var(--copper-dark);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 0.75rem;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 4;
}
.quick-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 14px 32px rgba(16,42,67,0.08);
}
.quick-card span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
  font-weight: 750;
  margin-bottom: 0.35rem;
}
.quick-card strong { font-size: 1.02rem; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 14px 35px rgba(16,42,67,0.07);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.card-featured {
  border-color: rgba(201,111,46,0.35);
  background: linear-gradient(180deg, #fff, #fff9f5);
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #eff7fc;
  color: var(--navy);
  font-weight: 900;
}
.card-featured .card-icon { background: #fff0e6; color: var(--copper-dark); }
.card-link {
  margin-top: auto;
  color: var(--copper-dark);
  font-weight: 900;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.2rem;
  align-items: center;
}
.feature-list {
  display: grid;
  gap: 1rem;
}
.feature-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 0.85rem;
  align-items: start;
}
.check {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf8f1;
  color: var(--success);
  font-weight: 900;
}
.photo-panel {
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(16,42,67,0.94), rgba(22,59,92,0.86)), url('../images/jobsite-abstract.svg') center/cover no-repeat;
  box-shadow: var(--shadow);
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.photo-panel p { color: rgba(255,255,255,0.78); max-width: 420px; margin-top: 0.8rem; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 1rem;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-area-list {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.city-pill {
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-weight: 800;
}
.cta-band {
  background: linear-gradient(135deg, var(--copper), #df8a49);
  color: #fff;
  border-radius: 28px;
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  box-shadow: 0 20px 45px rgba(201,111,46,0.25);
}
.cta-band p { color: rgba(255,255,255,0.88); max-width: 720px; margin-top: 0.7rem; }
.faq-list {
  display: grid;
  gap: 0.8rem;
}
details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
}
summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}
details p { margin-top: 0.7rem; }
.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 14px 35px rgba(16,42,67,0.07);
}
.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}
.contact-list a,
.contact-list div {
  display: block;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfcfe;
}
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.field { display: grid; gap: 0.35rem; }
.field-full { grid-column: 1 / -1; }
label { font-weight: 850; color: var(--ink-soft); font-size: 0.92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  color: var(--ink);
  background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(76,163,217,0.22);
  border-color: var(--blue);
}
.page-hero {
  background: linear-gradient(135deg, #eef6fc, #fff6ee);
  padding: 4.2rem 0;
}
.page-hero p { max-width: 820px; margin-top: 1rem; font-size: 1.1rem; }
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
}
.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.content-card ul { margin: 1rem 0 0; padding-left: 1.25rem; color: var(--muted); }
.content-card li { margin-bottom: 0.55rem; }
.footer {
  background: var(--ink);
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer p,
.footer a { color: rgba(255,255,255,0.75); }
.footer a:hover { color: #fff; }
.footer h3 { font-size: 1rem; margin-bottom: 1rem; }
.footer-links { display: grid; gap: 0.55rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 2rem;
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.66);
  font-size: 0.9rem;
}

.quote-builder-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 2rem;
  align-items: start;
}
.quote-help-card { position: sticky; top: 104px; }
.plain-list {
  color: var(--muted);
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}
.plain-list li { margin-bottom: 0.45rem; }
.form-section-title {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.form-section-title .section-label { margin-bottom: 0; }
.form-section-title h2 { font-size: clamp(1.45rem, 2vw, 2rem); }
.form-divider {
  height: 1px;
  background: var(--line);
  margin: 1.5rem 0;
}
.turnstile-placeholder {
  margin-top: 1.25rem;
  border: 2px dashed #b9c6d1;
  border-radius: var(--radius-sm);
  background: #f8fbfd;
  padding: 1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--ink-soft);
}
.turnstile-placeholder span {
  color: var(--muted);
  font-size: 0.92rem;
}
.turnstile-placeholder code {
  display: block;
  white-space: normal;
  overflow-wrap: anywhere;
  background: #eef3f7;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.7rem;
  color: var(--ink);
}
.quote-action-panel {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fbfcfe, #fff8f2);
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
}
.quote-action-panel h3 { font-size: 1.12rem; }
.quote-action-panel p { font-size: 0.93rem; }
.quote-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.35rem;
}
.quote-methods .btn { min-width: 190px; justify-content: center; }
.footer-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.6fr);
  gap: 2rem;
  align-items: start;
}
.footer-contact-only { justify-self: end; }

@media (max-width: 1020px) {
  .topbar-links { display: none; }
  .topbar .container { justify-content: center; text-align: center; }
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-links.open {
    display: grid;
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 88px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .hero-grid, .split, .form-wrap, .content-grid, .quote-builder-layout, .footer-simple-grid { grid-template-columns: 1fr; }
  .quick-grid, .card-grid, .profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-help-card { position: static; }
  .footer-contact-only { justify-self: start; }
}
@media (max-width: 720px) {
  .topbar { display: none; }
  .brand { font-size: 0.98rem; }
  .brand-mark { width: 42px; height: 42px; }
  .hero-grid { padding: 3.4rem 0 3rem; gap: 2rem; }
  .hero-visual { min-height: 420px; }
  .quick-grid, .card-grid, .profile-grid, .process-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3.6rem 0; }
  .section-head { display: block; }
  .cta-band { display: block; padding: 1.5rem; }
  .cta-band .hero-actions { margin-bottom: 0; }
  .btn { width: 100%; }
  .hero-actions { display: grid; }
}

.yelp-gallery-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 2rem;
  align-items: center;
}
.gallery-preview-card {
  background: linear-gradient(135deg, var(--navy), #0b1d2c);
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  gap: 0.85rem;
}
.gallery-preview-card p { color: rgba(255,255,255,0.78); }
.gallery-preview-card .card-link { color: #fff; }
.gallery-preview-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: auto;
}

@media (max-width: 1020px) {
  .yelp-gallery-panel { grid-template-columns: 1fr; }
}

/* Theme switch and color mode support */
html[data-theme="dark"] {
  --ink: #eef5fb;
  --ink-soft: #d4e1ea;
  --navy: #7cc4f0;
  --navy-2: #9bd3f5;
  --copper: #f49a57;
  --copper-dark: #ffb074;
  --blue: #83cdf8;
  --bg: #07111c;
  --panel: #101d2a;
  --line: #243446;
  --muted: #a8b8c7;
  --success: #75d7a8;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --ink: #eef5fb;
    --ink-soft: #d4e1ea;
    --navy: #7cc4f0;
    --navy-2: #9bd3f5;
    --copper: #f49a57;
    --copper-dark: #ffb074;
    --blue: #83cdf8;
    --bg: #07111c;
    --panel: #101d2a;
    --line: #243446;
    --muted: #a8b8c7;
    --success: #75d7a8;
    --shadow: 0 20px 55px rgba(0, 0, 0, 0.34);
  }
}

.theme-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.48rem 0.62rem;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
}
.switch-track {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: #e8eef4;
  border: 1px solid var(--line);
  padding: 2px;
  display: inline-flex;
  align-items: center;
  transition: background 0.18s ease;
}
.switch-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px rgba(16, 42, 67, 0.28);
  transform: translateX(0);
  transition: transform 0.18s ease, background 0.18s ease;
}
html[data-theme="dark"] .switch-track { background: #31475c; }
@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .switch-track { background: #31475c; }
}
html[data-theme="dark"] .switch-thumb,
html:not([data-theme="light"]) .theme-switch[data-system-dark="true"] .switch-thumb {
  transform: translateX(19px);
  background: #f49a57;
}
.theme-label {
  font-size: 0.86rem;
  min-width: 4.9rem;
  text-align: left;
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .quick-card,
html[data-theme="dark"] .card,
html[data-theme="dark"] .process-step,
html[data-theme="dark"] details,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .form,
html[data-theme="dark"] .content-card,
html[data-theme="dark"] .nav-links.open,
html[data-theme="dark"] .menu-toggle,
html[data-theme="dark"] .btn-outline,
html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select,
html[data-theme="dark"] .contact-list a,
html[data-theme="dark"] .contact-list div,
html[data-theme="dark"] .turnstile-placeholder,
html[data-theme="dark"] .quote-action-panel {
  background: var(--panel);
  color: var(--ink);
  border-color: var(--line);
}
html[data-theme="dark"] .hero,
html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .section-white {
  background: #0b1622;
}
html[data-theme="dark"] .hero {
  background: radial-gradient(circle at top left, rgba(124,196,240,0.18), transparent 36%), linear-gradient(135deg, #0b1622 0%, #101d2a 48%, #1b1a18 100%);
}
html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .badge,
html[data-theme="dark"] .card-featured,
html[data-theme="dark"] .card-icon,
html[data-theme="dark"] .turnstile-placeholder code {
  background: #132334;
  color: var(--ink);
  border-color: var(--line);
}
html[data-theme="dark"] .visual-caption {
  background: rgba(16, 29, 42, 0.94);
  color: var(--ink);
}
html[data-theme="dark"] .footer { background: #04090f; }

html[data-theme="dark"] .topbar {
  background: #02070d;
  color: #ffffff;
}
html[data-theme="dark"] .topbar strong,
html[data-theme="dark"] .topbar a { color: #ffffff; }
html[data-theme="dark"] .topbar a:hover,
html[data-theme="dark"] .topbar a:focus { color: #ffb074; }

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) .site-header,
  html:not([data-theme="light"]) .quick-card,
  html:not([data-theme="light"]) .card,
  html:not([data-theme="light"]) .process-step,
  html:not([data-theme="light"]) details,
  html:not([data-theme="light"]) .contact-card,
  html:not([data-theme="light"]) .form,
  html:not([data-theme="light"]) .content-card,
  html:not([data-theme="light"]) .nav-links.open,
  html:not([data-theme="light"]) .menu-toggle,
  html:not([data-theme="light"]) .btn-outline,
  html:not([data-theme="light"]) input,
  html:not([data-theme="light"]) textarea,
  html:not([data-theme="light"]) select,
  html:not([data-theme="light"]) .contact-list a,
  html:not([data-theme="light"]) .contact-list div,
  html:not([data-theme="light"]) .turnstile-placeholder,
  html:not([data-theme="light"]) .quote-action-panel {
    background: var(--panel);
    color: var(--ink);
    border-color: var(--line);
  }
  html:not([data-theme="light"]) .hero,
  html:not([data-theme="light"]) .page-hero,
  html:not([data-theme="light"]) .section-white { background: #0b1622; }
  html:not([data-theme="light"]) .hero {
    background: radial-gradient(circle at top left, rgba(124,196,240,0.18), transparent 36%), linear-gradient(135deg, #0b1622 0%, #101d2a 48%, #1b1a18 100%);
  }
  html:not([data-theme="light"]) .eyebrow,
  html:not([data-theme="light"]) .badge,
  html:not([data-theme="light"]) .card-featured,
  html:not([data-theme="light"]) .card-icon,
  html:not([data-theme="light"]) .turnstile-placeholder code {
    background: #132334;
    color: var(--ink);
    border-color: var(--line);
  }
  html:not([data-theme="light"]) .visual-caption {
    background: rgba(16, 29, 42, 0.94);
    color: var(--ink);
  }
  html:not([data-theme="light"]) .footer { background: #04090f; }

  html:not([data-theme="light"]) .topbar {
    background: #02070d;
    color: #ffffff;
  }
  html:not([data-theme="light"]) .topbar strong,
  html:not([data-theme="light"]) .topbar a { color: #ffffff; }
  html:not([data-theme="light"]) .topbar a:hover,
  html:not([data-theme="light"]) .topbar a:focus { color: #ffb074; }
}


@media (max-width: 1020px) {
  .theme-switch { margin-left: auto; }
  .theme-label { display: none; }
}
