/* =========================================================
   Microsite Base — shared styles
   Plain CSS, no build step. Edit freely.
   Brand color and font are driven by CSS variables below so
   a single change re-themes the whole site.
   ========================================================= */

:root {
  --brand:        #6b1b12;   /* {{BRAND_COLOR}} primary brand / links / buttons */
  --brand-dark:   30b368;   /* darker shade for hovers */
  --ink:          #15212e;   /* body text */
  --ink-soft:     #4a5a6a;   /* secondary text */
  --line:         #e3e8ee;   /* hairlines / borders */
  --bg:           #ffffff;
  --bg-alt:       #f6f8fa;   /* alternating section background */
  --bg-dark:      #15212e;   /* footer / dark band */
  --max:          1160px;    /* content max width */
  --radius:       10px;
  --font-head: Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: var(--bg-dark);
  color: #fff;
  font-weight: 600;
  border-radius: 0 0 var(--radius) var(--radius);
  transform: translateY(-120%);
  transition: transform .15s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--brand-dark);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
.nav__toggle:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: 2px;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

.stack-top { margin-top: 24px; }
.stack-top--sm { margin-top: 18px; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: .6em; }
h3 { font-size: 1.25rem; margin-bottom: .35em; }
p  { margin-bottom: 1rem; color: var(--ink-soft); }
a  { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background .15s ease;
}
.btn:hover { background: var(--brand-dark); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--brand); border: 2px solid var(--brand); }
.btn--ghost:hover { background: var(--brand); color: #fff; }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

.muted { color: var(--ink-soft); font-size: .9rem; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 12px 20px; max-width: var(--max); margin: 0 auto;
}
.nav__logo img { max-height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 22px; list-style: none; }
.nav__links a { color: var(--ink); font-weight: 500; font-size: .97rem; }
.nav__links a:hover { color: var(--brand); text-decoration: none; }

/* dropdown for services */
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  min-width: 250px; padding: 8px 0; box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
/* invisible bridge: fills the gap between the menu item and the dropdown
   so hover isn't lost when the mouse travels down into the submenu */
.has-dropdown::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; display: none;
}
.has-dropdown:hover::after { display: block; }
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }
.has-dropdown:focus-within::after { display: block; }
.dropdown li { list-style: none; }
.dropdown a { display: block; padding: 9px 18px; font-size: .92rem; }
.dropdown a:hover { background: var(--bg-alt); }

.nav__call {
  background: var(--brand); color: #fff !important;
  padding: 10px 18px; border-radius: var(--radius); font-weight: 600;
}
.nav__call:hover { background: var(--brand-dark); text-decoration: none; }

/* mobile nav toggle */
.nav__toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--ink); }
@media (max-width: 900px) {
  .nav__links { display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); padding: 10px 20px; }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; padding: 8px 0; }
  .dropdown { position: static; display: block; box-shadow: none; border: 0; padding: 4px 0 4px 14px; min-width: 0; }
  .nav__toggle { display: block; }
}

/* ---------- hero ---------- */
/* Dark `background` on .hero (not on h1/p) so contrast tools don't treat text as white-on-white. */
.hero { position: relative; color: #fff; background: var(--bg-dark); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,33,46,.55), rgba(21,33,46,.78));
  z-index: 1;
}
.hero__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 90px 20px; }
.hero__eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; font-weight: 600; opacity: .9; color: #fff; background: none; }
.hero h1 {
  color: #fff;
  background: none;
  margin: 10px 0 16px;
  max-width: 18ch;
}
.hero p {
  color: rgba(255,255,255,.9);
  background: none;
  font-size: 1.15rem;
  max-width: 46ch;
}
.hero__cta { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero:not(.hero--home) .hero__cta .btn--ghost {
  color: #fff;
  border-color: #fff;
}
.hero:not(.hero--home) .hero__cta .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.hero--contact .hero__inner { padding-bottom: 56px; }
.hero--contact h1 { max-width: none; }

/* Home above-the-fold: copy left + quote card right + trust strip */
.hero--home {
  display: flex;
  flex-direction: column;
  min-height: min(92vh, 820px);
}
.hero--home::after {
  background: linear-gradient(
    105deg,
    rgba(21, 33, 46, 0.88) 0%,
    rgba(21, 33, 46, 0.72) 38%,
    rgba(21, 33, 46, 0.35) 68%,
    rgba(21, 33, 46, 0.18) 100%
  );
}
.hero--home .hero__inner {
  flex: 1 1 auto;
  display: block;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 20px 40px;
  box-sizing: border-box;
}
.hero--home .hero__grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 36px 48px;
  width: 100%;
  max-width: 100%;
  min-height: min(60vh, 520px);
}
.hero--home .hero__copy {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}
.hero--home .hero__form {
  flex: 0 0 380px;
  width: 380px;
  max-width: 40%;
  min-width: 0;
  align-self: center;
}
.hero--home .hero__copy h1 {
  max-width: 14ch;
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  line-height: 1.08;
  color: #fff;
  background: none;
}
.hero--home .hero__copy > p {
  max-width: none;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  background: none;
}
.hero--home .hero__cta { margin-top: 28px; }
.hero--home .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(21, 33, 46, 0.35);
}
.hero--home .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.form-card--estimate {
  background: #fff;
  color: var(--ink);
  border: 0;
  border-radius: 14px;
  padding: 28px 26px 24px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
.form-card--estimate h2 {
  margin: 0 0 8px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ink);
}
.form-card--estimate .form-card__lead {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: none;
}
.form-card--estimate .form-card__submit {
  width: 100%;
  text-align: center;
}
.form-card--estimate .form-card__note {
  margin: 12px 0 0;
  text-align: center;
  max-width: none;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.form-card--estimate .contact-form-embed {
  margin-top: 0;
  padding-top: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}
.form-card--estimate .contact-form-embed > script {
  display: none;
}
.form-card--estimate .contact-form-embed > *:first-child,
.form-card--estimate .contact-form-embed .hs-form-frame,
.form-card--estimate .contact-form-embed iframe {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.form-card--estimate .contact-form-embed .hs-form-frame,
.form-card--estimate .contact-form-embed iframe,
.form-card--estimate .contact-form-embed form {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box;
}
.section--with-estimate .split,
.section--home-intro .split {
  align-items: start;
}
.section--with-estimate .section__lead,
.section--home-intro .section__lead {
  max-width: none;
}
.section--with-estimate .estimate-split__copy {
  text-align: left;
}
.hero__trust {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__trust li {
  padding: 18px 16px;
  text-align: center;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  border-right: 2px solid var(--brand);
}
.hero__trust li:last-child { border-right: 0; }
@media (max-width: 900px) {
  .hero--home { min-height: 0; }
  .hero--home .hero__grid {
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 28px;
    min-height: 0;
  }
  .hero--home .hero__form {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }
  .hero--home .hero__copy h1 { max-width: 16ch; }
  .hero--home .hero__inner { padding: 48px 20px 32px; }
  .hero__trust { grid-template-columns: 1fr 1fr; }
  .hero__trust li:nth-child(2n) { border-right: 0; }
  .hero__trust li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .hero__trust li:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 520px) {
  .hero__trust { grid-template-columns: 1fr; }
  .hero__trust li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero__trust li:last-child { border-bottom: 0; }
}

/* ---------- contact page ---------- */
.contact-page {
  padding: 48px 0;
}
.contact-page .split {
  align-items: start;
  gap: 36px 48px;
}
.contact-page__info {
  min-width: 0;
}
.contact-page__info .section__lead {
  max-width: none;
  margin-bottom: 0;
}
.contact-page__info .btn {
  display: inline-block;
  margin-top: 24px;
}
.contact-page__form-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
}
.contact-page__form-wrap .form-card--contact,
.contact-page__form-wrap .contact-form-embed {
  width: 100%;
  max-width: none;
}
.contact-page__form-wrap .contact-form-embed iframe {
  width: 100% !important;
  max-width: 100% !important;
}
.contact-form-legal-links {
  text-align: center;
  font-size: 14px;
  margin-top: 12px;
  color: var(--ink-soft);
}
.contact-form-legal-links a {
  color: var(--brand);
  font-weight: 500;
}
.contact-form-legal-links a:hover {
  color: var(--brand-dark);
  text-decoration: underline;
}
.contact-form-legal-links__sep {
  color: var(--ink-soft);
}
.contact-page__email { margin-top: 16px; color: var(--ink-soft); }
.form-card--contact h2 {
  text-align: center;
  margin: 0 0 24px;
  font-size: 1.75rem;
}
.contact-page__more-inner,
.page-prose__inner {
  max-width: 72ch;
  margin: 0 auto;
  width: 100%;
}
.contact-page__more-inner h2,
.contact-page__more-inner h3,
.page-prose__inner h2,
.page-prose__inner h3 {
  text-align: center;
}
.contact-page__more-inner > *:first-child,
.page-prose__inner > *:first-child {
  margin-top: 0;
}
.page-prose__inner .section__lead {
  max-width: none;
}
@media (max-width: 800px) {
  .contact-page { padding: 36px 0; }
}

/* ---------- sections ---------- */
.section { padding: 64px 0; }
.section--alt { background: var(--bg-alt); }
.section--image { padding: 18px 0; }
.section--image img {
  width: 100%;
  border-radius: var(--radius);
}
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.82); }
.section__lead { max-width: 65ch; }
.center { text-align: center; }
.center .section__lead,
.section__lead.center { margin-left: auto; margin-right: auto; }

/* ---------- home / services image cards ---------- */
.section--services { padding-top: 56px; }
.section--services > .wrap > h2.center {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section--services .section__lead {
  margin-bottom: 36px;
  max-width: 62ch;
}
.service-cards-wrap { margin-top: 8px; }
.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(21, 33, 46, 0.08);
  border: 1px solid rgba(21, 33, 46, 0.06);
  display: flex;
  flex-direction: column;
  width: calc((100% - 56px) / 3);
  max-width: calc((100% - 56px) / 3);
  flex: 0 1 calc((100% - 56px) / 3);
}
.service-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-alt);
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card__media--empty {
  background: linear-gradient(135deg, var(--bg-alt), #e8eef5);
}
.service-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
}
.service-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card__body h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 0 10px;
  color: var(--ink);
}
.service-card__body p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}
.service-card__body .btn {
  align-self: flex-start;
  padding: 12px 18px;
  font-size: 0.95rem;
  border-radius: 8px;
}
@media (max-width: 900px) {
  .service-cards { gap: 22px; }
  .service-card {
    width: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
    flex-basis: calc((100% - 22px) / 2);
  }
}
@media (max-width: 600px) {
  .service-card {
    width: 100%;
    max-width: 100%;
    flex-basis: 100%;
  }
}

/* two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* feature / why-us grid */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px;
}
.section--alt .card { background: #fff; }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }

/* service / area link list */
.linklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; list-style: none; }
@media (max-width: 800px) { .linklist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .linklist { grid-template-columns: 1fr; } }
.linklist a {
  display: block; padding: 14px 18px; border: 1px solid var(--line);
  border-radius: var(--radius); background: #fff; color: var(--ink); font-weight: 600;
}
.linklist a:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }

/* cost table */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .96rem; }
th { background: var(--bg-alt); font-family: var(--font-body); font-weight: 700; color: var(--ink); }
tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq {
  max-width: 820px;
  margin: 28px auto 0;
}
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 4px 20px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-head); font-size: 1.1rem; padding: 16px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--brand); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details > p { padding-bottom: 16px; margin-bottom: 0; }

/* ---------- legal pages ---------- */
.legal-band {
  position: relative;
  background: var(--bg-dark);
  color: #fff;
  padding: 48px 0 44px;
  overflow: hidden;
}
.legal-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand);
  opacity: 0.32;
  -webkit-mask-image: linear-gradient(100deg, transparent 15%, #000 100%);
  mask-image: linear-gradient(100deg, transparent 15%, #000 100%);
  pointer-events: none;
}
.legal-band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.legal-band h1 {
  color: #fff;
  margin: 0 auto;
  max-width: 72ch;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.15;
}
.breadcrumbs {
  padding-top: 18px;
  padding-bottom: 0;
  font-size: 0.88rem;
  color: var(--ink-soft);
  text-align: center;
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--brand); }
.breadcrumbs__sep { margin: 0 0.4em; opacity: 0.7; }
.breadcrumbs [aria-current="page"] { color: var(--ink-soft); }
.legal-page {
  padding-top: 28px;
  padding-bottom: 72px;
}
.legal-page > .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.legal-summary {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 0 auto 36px;
  max-width: 72ch;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.legal-summary p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}
.legal-content {
  max-width: 72ch;
  width: 100%;
  margin: 0 auto;
  text-align: start;
}
.legal-content h2 {
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  margin: 2em 0 0.55em;
  line-height: 1.25;
  text-align: center;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem 1.25rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-content li { margin-bottom: 0.35rem; }

/* CTA band */
.cta-band { background: var(--brand); color: #fff; text-align: center; padding: 56px 20px; }
.cta-band h2 { color: #fff; font-family: var(--font-head); margin: 0 0 20px; }
.cta-band__copy { max-width: 52ch; margin: 0 auto; }
.cta-band__lead,
.cta-band__closing { color: rgba(255,255,255,.9); font-size: 1.05rem; line-height: 1.55; margin: 0; }
.cta-band__book { margin: 18px 0; }
.cta-band__closing { margin-top: 18px; }
.cta-band__call { margin: 20px 0 0; }
.cta-band__note { color: rgba(255,255,255,.8); font-size: .9rem; margin: 10px 0 0; }
.cta-band p { color: rgba(255,255,255,.9); }
.cta-band .btn { background: #fff; color: var(--brand); font-weight: 700; border-radius: 999px; }
.cta-band .btn:hover { background: #f0f3f7; }

/* ---------- estimate / contact form ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: 1rem;
}
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- footer ---------- */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.85); padding: 56px 0 28px; }
.footer__heading { color: #fff; margin-bottom: 14px; font-family: var(--font-body); font-size: 1rem; letter-spacing: .02em; font-weight: 700; }
.footer__logo { display: inline-block; margin-bottom: 14px; }
.footer__logo img { max-height: 46px; width: auto; display: block; }
.footer__logo strong { color: #fff; font-size: 1rem; letter-spacing: .02em; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.85); font-size: .93rem; }
.site-footer a:hover { color: #fff; }
.site-footer p { color: rgba(255,255,255,.85); }
.footer__about p { color: rgba(255,255,255,.85); }
.footer__contact { color: rgba(255,255,255,.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 40px; padding-top: 20px; font-size: .85rem; color: rgba(255,255,255,.7); }
.footer-disclaimer { font-size: .82rem; color: rgba(255,255,255,.7); margin-top: 10px; line-height: 1.5; }
.footer-hours { margin-top: 22px; }
.footer-hours .footer__heading { margin-bottom: 10px; }
.footer-hours ul { list-style: none; padding: 0; margin: 0; }
.footer-hours li { margin-bottom: 7px; font-size: .93rem; line-height: 1.45; color: rgba(255,255,255,.85); }
.footer-hours__line { white-space: normal; }

/* phone link — class is a stable hook for Site Analyticsdynamic number insertion */
.wc-phone { font-weight: 700; }
