/* =========================================================================
   Home Services Template — Component styles
   ========================================================================= */

/* --------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn svg { flex: 0 0 auto; }
.btn-sm { font-size: 13px; padding: 8px 14px; }
.btn-md { font-size: 14px; padding: 12px 20px; }
.btn-lg { font-size: 15px; padding: 16px 26px; text-transform: uppercase; letter-spacing: 0.06em; }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--accent-hover); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); filter: brightness(0.92); box-shadow: var(--shadow-sm); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding-left: 6px; padding-right: 6px;
}
.btn-ghost:hover { color: var(--accent); }

/* --------------------------------------------------------- Badges */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-accent { background: var(--accent); color: var(--accent-ink); }
.badge-ink { background: var(--ink); color: #fff; }
.badge-soft { background: var(--accent-soft); color: var(--ink); }

/* --------------------------------------------------------- Phone block */
.phone-block {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
  text-decoration: none;
}
.phone-block:hover .phone-block-num { color: var(--accent); }
.phone-block-icon {
  position: relative;
  width: 40px; height: 40px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 50%;
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.phone-block-badge {
  position: absolute; bottom: -2px; right: -6px;
  background: var(--ink); color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 1px 4px;
  border-radius: var(--r-sm);
  letter-spacing: 0.02em;
}
.phone-block-meta { display: flex; flex-direction: column; line-height: 1.1; white-space: nowrap; }
.phone-block-hours { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
.phone-block-num { font-size: 15px; font-weight: 700; transition: color var(--dur-fast); white-space: nowrap; }

/* --------------------------------------------------------- Stars */
.stars { display: inline-flex; gap: 2px; align-items: center; }
.stars svg { stroke-width: 1.5; }

/* --------------------------------------------------------- Utility strip */
.utility-strip {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
}
.utility-strip-inner {
  display: flex; align-items: center;
  min-height: 36px;
  gap: 20px;
  flex-wrap: nowrap;
}
.utility-item {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}
.utility-item:hover { color: var(--accent); }
.utility-item--muted { color: rgba(255,255,255,0.7); cursor: default; }
.utility-item--phone { font-weight: 700; }
.utility-spacer { flex: 1; }

/* --------------------------------------------------------- Site header */
.site-header {
  position: sticky; top: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  z-index: 50;
  transition: background var(--dur-med), box-shadow var(--dur-med);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); }
.site-header-inner {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
}
.site-header-logo { flex: 0 0 auto; }
.site-header-actions { display: flex; align-items: center; gap: 16px; margin-left: auto; }

/* --------------------------------------------------------- Logo */
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo--image { gap: 0; }
.logo-image {
  display: block;
  height: 88px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  margin: -12px 0;
}
.site-footer .logo-image {
  filter: brightness(0) invert(1);
  opacity: 0.95;
  height: 72px;
  margin: 0;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.logo-text-primary {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo-text-secondary {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 2px;
  white-space: nowrap;
}

/* --------------------------------------------------------- Nav menu */
.nav-menu { display: flex; gap: 4px; align-items: center; height: 100%; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link:hover { color: var(--accent); }
.nav-item--has-menu .nav-link svg { transition: transform var(--dur-fast); }
.nav-item.is-open .nav-link svg { transform: rotate(180deg); }

.mega-menu {
  position: absolute; top: 100%; left: -16px;
  min-width: 560px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  opacity: 0; visibility: hidden;
  transform: translateY(4px);
  transition: opacity var(--dur-fast), transform var(--dur-fast), visibility var(--dur-fast);
  z-index: 100;
}
.nav-item.is-open .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mega-col-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 8px;
}
.mega-link {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; margin: 0 -10px;
  font-size: 14px; font-weight: 500;
  border-radius: var(--r-sm);
  color: var(--ink-2);
}
.mega-link svg { color: var(--accent); }
.mega-link:hover { background: var(--surface-2); color: var(--ink); }

/* --------------------------------------------------------- Hero */
.hero {
  position: relative;
  min-height: 620px;
  color: #fff;
  overflow: hidden;
  padding-top: var(--s-8); padding-bottom: var(--s-9);
}
.hero-media {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.8) 40%, rgba(10,10,10,0.3) 70%, rgba(10,10,10,0) 100%);
}
.hero-inner {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
  gap: 48px; align-items: center;
  min-height: 520px;
}
.hero-copy { max-width: 620px; }
.hero-copy .badge { margin-bottom: var(--s-5); }
.hero-title { color: #fff; margin-bottom: var(--s-4); }
.hero-title-line { display: block; }
.hero-title-accent { color: var(--accent); }
.hero-sub { font-size: var(--fs-lead); color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: var(--s-5); }

.hero-rating {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--r-pill);
  width: fit-content;
  margin-bottom: var(--s-6);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-rating-g, .hero-rating svg { width: 20px; height: 20px; flex: 0 0 auto; }
.reviews-g, .reviews-head-right svg:first-of-type { width: 36px !important; height: 36px !important; flex: 0 0 auto; }
.hero-rating-score { font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.hero-rating-count { font-size: 13px; color: rgba(255,255,255,0.8); }

.zip-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-lg);
  padding: 20px;
  max-width: 520px;
}
.zip-form-label { font-weight: 600; margin-bottom: 10px; font-size: 14px; }
.zip-form-row { display: flex; gap: 10px; }
.zip-form input {
  flex: 1;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border: none;
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 500;
}
.zip-form input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.zip-form-msg { margin-top: 10px; font-size: 13px; color: #FFD4D4; display: flex; align-items: center; gap: 4px; }
.zip-form-msg--ok { color: #B6F5C5; }

.hero-card {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 32px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card-pin {
  width: 56px; height: 56px;
  background: var(--ink);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.hero-card-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.8; margin-bottom: 6px; }
.hero-card-title { font-family: var(--font-display); font-weight: 800; font-size: 26px; line-height: 1.1; margin-bottom: 10px; }
.hero-card-sub { font-size: 14px; line-height: 1.5; margin-bottom: 20px; }

/* --------------------------------------------------------- Section head */
.section-head { max-width: 720px; margin: 0 auto var(--s-7); text-align: center; }
.section-head--split { display: flex; justify-content: space-between; align-items: flex-end; text-align: left; max-width: none; gap: 24px; }
.section-foot { margin-top: var(--s-6); text-align: center; }

/* --------------------------------------------------------- Services grid */
.services-section { background: var(--surface-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast), box-shadow var(--dur-med), transform var(--dur-med);
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card-icon {
  width: 56px; height: 56px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  margin-bottom: 8px;
  transition: transform var(--dur-med) var(--ease);
}
.service-card:hover .service-card-icon { transform: rotate(-6deg) scale(1.05); }
.service-card-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; margin: 0; }
.service-card-body { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin: 0; flex: 1; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--accent); font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 8px;
}

/* --------------------------------------------------------- Trust bar */
.trust-bar {
  background: var(--ink);
  color: #fff;
  padding: 48px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { display: flex; gap: 16px; align-items: flex-start; }
.trust-item > div:last-child { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.trust-item-icon {
  width: 48px; height: 48px; flex: 0 0 auto;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 50%;
  display: grid; place-items: center;
}
.trust-item-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.25; margin-bottom: 0; }
.trust-item-body { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5; }

/* --------------------------------------------------------- About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-media img { width: 100%; border-radius: var(--r-lg); display: block; aspect-ratio: 4/3; object-fit: cover; }
.about-media-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--accent); color: var(--accent-ink);
  padding: 20px 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-media-badge-num { font-family: var(--font-display); font-weight: 800; font-size: 44px; line-height: 1; }
.about-media-badge-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

/* --------------------------------------------------------- Reviews */
.reviews-section { background: var(--surface-2); }
.reviews-head { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-bottom: var(--s-7); flex-wrap: wrap; }
.reviews-head-right { display: flex; align-items: center; gap: 16px; background: var(--surface); padding: 16px 24px; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); }
.reviews-g { width: 36px; height: 36px; }
.reviews-score { font-family: var(--font-display); font-weight: 800; font-size: 36px; line-height: 1; }
.reviews-count { font-size: 12px; color: var(--ink-3); }

.reviews-carousel { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: stretch; }
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow: hidden;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.review-body { font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 0; flex: 1; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-meta > div:last-child { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
}
.review-author { font-weight: 700; font-size: 14px; }
.review-when { font-size: 12px; color: var(--ink-3); }

.reviews-arrow {
  width: 44px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  color: var(--ink);
  display: grid; place-items: center;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.reviews-arrow:hover { border-color: var(--accent); background: var(--accent-soft); }
.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: var(--s-5); }
.reviews-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-strong); border: none; cursor: pointer; padding: 0; transition: background var(--dur-fast), width var(--dur-fast); }
.reviews-dot.is-active { background: var(--accent); width: 24px; border-radius: 4px; }

/* --------------------------------------------------------- Tips */
.tips-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.tip-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-fast), box-shadow var(--dur-med), transform var(--dur-med);
}
.tip-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.tip-card-media {
  aspect-ratio: 16/10;
  background-size: cover; background-position: center;
  position: relative;
}
.tip-card-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--accent-ink);
  padding: 4px 10px; border-radius: var(--r-sm);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.tip-card-body { padding: 20px 24px 24px; }
.tip-card-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.2; margin: 0 0 10px; }
.tip-card-link { display: inline-flex; align-items: center; gap: 4px; color: var(--accent); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }

/* --------------------------------------------------------- Lead form */
.lead-section { background: var(--ink); color: #fff; }
.lead-section .eyebrow { color: var(--accent); }
.lead-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.lead-inner--thanks { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.lead-thanks { max-width: 480px; color: #fff; }
.lead-thanks .h2 { color: #fff; }
.lead-thanks svg { color: var(--accent); margin-bottom: 16px; }
.lead-copy h2 { color: #fff; }
.lead-copy .lead { color: rgba(255,255,255,0.8); }
.lead-reassure { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding: 16px 20px; background: rgba(255,255,255,0.06); border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,0.1); }
.lead-reassure svg { color: var(--accent); flex: 0 0 auto; }
.lead-reassure-label { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 700; }
.lead-reassure-num { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: #fff; }
.lead-reassure-num:hover { color: var(--accent); }

.lead-form { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--half { grid-column: span 3; }
.field--third { grid-column: span 2; }
.field--two-thirds { grid-column: span 4; }
.field--full { grid-column: span 6; }
.field label { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
}
.field textarea { resize: vertical; font-family: var(--font-body); }
.field--consent { flex-direction: row; align-items: flex-start; gap: 10px; }
.field--consent input { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--accent); }
.field--consent span { font-size: 12px; color: rgba(255,255,255,0.7); line-height: 1.5; letter-spacing: 0; text-transform: none; font-weight: 400; }

/* --------------------------------------------------------- Footer */
.site-footer { background: var(--surface); color: var(--ink); }
.footer-cta {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 48px 0;
}
.footer-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-cta h2 { margin: 0; }
.footer-cta .eyebrow--light { color: rgba(0,0,0,0.6); }
.footer-cta-actions { display: flex; align-items: center; gap: 16px; }
.footer-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 800; font-size: 22px;
  color: var(--accent-ink);
}
.footer-phone:hover { color: var(--ink-2); }

.footer-body { padding: 64px 0 32px; border-bottom: 1px solid var(--line); }
.footer-body-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--ink-2); }
.footer-col a:hover { color: var(--accent); }
.footer-col-heading {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink);
  padding-bottom: 8px; margin-bottom: 4px;
  border-bottom: 2px solid var(--accent);
  width: fit-content;
}
.footer-col--brand .small { color: var(--ink-3); }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); }
.footer-contact-item svg { color: var(--accent); flex: 0 0 auto; }
.footer-socials { display: flex; gap: 8px; margin-top: 8px; }
.footer-social {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.footer-social:hover { border-color: var(--accent); color: var(--accent-ink); background: var(--accent); }

.footer-legal { padding: 20px 0; font-size: 12px; color: var(--ink-3); }
.footer-legal-inner { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: var(--ink-3); }
.footer-legal-links a:hover { color: var(--accent); }

.eyebrow--light { color: rgba(255,255,255,0.7); }

/* --------------------------------------------------------- Tweaks panel */
.tweaks-panel {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  overflow: hidden;
  max-height: calc(100vh - 40px);
  display: flex; flex-direction: column;
}
.tweaks-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px;
  background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.tweaks-close { background: none; border: none; color: #fff; cursor: pointer; opacity: 0.6; }
.tweaks-close:hover { opacity: 1; }
.tweaks-body { padding: 20px; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
.tweaks-section-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-bottom: 8px; }
.theme-swatches { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.theme-swatch {
  aspect-ratio: 1;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  transition: transform var(--dur-fast), border-color var(--dur-fast);
}
.theme-swatch:hover { transform: scale(1.05); }
.theme-swatch.is-active { border-color: var(--ink); }
.theme-swatch.is-active::after {
  content: ''; position: absolute; inset: 4px;
  border: 2px solid var(--surface);
  border-radius: var(--r-sm);
}
.tweaks-input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-family: var(--font-body); font-size: 13px;
  color: var(--ink);
  background: var(--surface);
}
.tweaks-input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.tweaks-field { display: flex; flex-direction: column; gap: 6px; }
.tweaks-field label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }

.tweaks-fab {
  position: fixed; bottom: 20px; right: 20px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink); color: var(--accent);
  border: none; cursor: pointer;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  z-index: 999;
  transition: transform var(--dur-fast);
}
.tweaks-fab:hover { transform: scale(1.05) rotate(20deg); }

/* --------------------------------------------------------- Responsive */
@media (max-width: 1100px) {
  .site-header-actions .phone-block .phone-block-meta { display: none; }
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid, .tips-grid, .reviews-track { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .about-grid, .lead-inner, .footer-body-inner { grid-template-columns: 1fr; }
  .nav-menu { display: none; }
}
@media (max-width: 640px) {
  .utility-strip { display: none; }
  .services-grid, .tips-grid, .reviews-track, .trust-bar-inner, .footer-body-inner { grid-template-columns: 1fr; }
  .lead-form { grid-template-columns: 1fr 1fr; }
  .field--third, .field--half, .field--two-thirds, .field--full { grid-column: span 2; }
  .site-header-actions .phone-block { display: none; }
}
