:root {
  --ink: #18191b;
  --muted: #5f5f5f;
  --line: #e6e6e6;
  --paper: #ffffff;
  --soft: #f9f9f9;
  --gold: #3c797d;
  --gold-dark: #2d6468;
  --green: #3c797d;
  --red: #e3292f;
  --deep-red: #b10000;
  --white: #ffffff;
  --shadow: 4px 0 10px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Figtree, Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem clamp(1rem, 4vw, 4rem);
  color: var(--white);
  background: var(--ink);
  font-size: 0.88rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--ink);
  border-bottom: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

:target {
  scroll-margin-top: 92px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
  padding: 0 clamp(1rem, 4vw, 4rem);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 68px;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu a {
  color: var(--white);
  text-decoration: none;
}

.nav-menu a:hover {
  color: #5cc969;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0.65rem;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.15rem;
  border: 1px solid var(--red);
  border-radius: 3px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
  color: var(--white);
}

.btn.ghost:hover,
.btn.call:hover {
  background: var(--white);
  color: var(--green);
}

.btn.call {
  background: rgba(255, 0, 0, 0.78);
  border-color: var(--white);
}

.btn.small {
  min-height: 38px;
  padding: 0.55rem 0.9rem;
}

.btn.ghost-dark {
  background: transparent;
  border-color: var(--green);
  color: var(--green);
}

.btn.ghost-dark:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.mobile-action-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 15;
  display: none;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.18);
}

.mobile-action-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.7rem;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.mobile-action-bar a + a {
  background: var(--red);
}

.hero picture,
.hero picture::after,
.hero picture img {
  position: absolute;
  inset: 0;
}

.hero picture::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.16)
  );
  z-index: 1;
}

.hero picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 2rem));
  margin: 0 auto;
  color: var(--white);
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.62), 0 1px 1px rgba(0, 0, 0, 0.55);
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Domine, Georgia, "Times New Roman", serif;
  line-height: 1.4;
}

h1 {
  max-width: none;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
}

h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
}

h3 {
  font-size: 1.25rem;
}

p {
  color: var(--muted);
}

.hero p {
  max-width: 66ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.hero h2 {
  margin-top: 0.15rem;
  color: var(--white);
  font-family: Figtree, Arial, Helvetica, sans-serif;
  font-size: clamp(2.1rem, 6vw, 3.75rem);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.1;
  text-transform: uppercase;
  white-space: pre-line;
}

.hero-divider {
  display: block;
  width: 78px;
  height: 2px;
  margin: 1.2rem auto 0;
  background: rgba(255, 255, 255, 0.5);
}

.section,
.article-body {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  max-width: 720px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.intro-section {
  max-width: 980px;
  text-align: center;
}

.intro-section h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(1.85rem, 3.4vw, 2.65rem);
}

.intro-section p {
  margin: 0 auto 1.6rem;
  max-width: 850px;
  font-size: 1.05rem;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.home-intro h2 {
  max-width: 780px;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
}

.home-intro > p {
  margin: 0;
  font-size: 1.05rem;
}

.location-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.location-intro h2 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
}

.location-intro > p {
  margin: 0;
  font-size: 1.05rem;
}

.location-primary-services {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.compact-head {
  align-items: start;
  justify-content: flex-start;
}

.location-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.location-service-grid article {
  display: grid;
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.location-service-grid h3 {
  font-size: 1.25rem;
}

.location-service-grid p {
  color: var(--muted);
}

.location-service-grid a {
  align-self: end;
  color: var(--deep-red);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.25em;
}

.location-common-work {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.compact-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.compact-link-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.compact-link-grid a:hover {
  border-color: var(--green);
  color: var(--green);
}

.service-overview {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-overview-card {
  display: grid;
  align-content: start;
  min-height: 245px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.service-overview-card h3 {
  font-size: 1.25rem;
}

.service-overview-card p {
  margin-bottom: 1rem;
}

.service-overview-card a {
  align-self: end;
  color: var(--deep-red);
  font-weight: 900;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.25em;
}

.quick-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.quick-link-row a {
  padding: 0.58rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.quick-link-row a:hover {
  border-color: var(--green);
  color: var(--green);
}

.card-grid,
.post-grid,
.feature-grid,
.list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card,
.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.post-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.post-card h3 {
  font-size: 1.24rem;
}

.post-card p {
  color: var(--muted);
}

.enhanced-post-grid {
  align-items: stretch;
}

.blog-listing {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.blog-preview .section-head {
  align-items: start;
  justify-content: flex-start;
}

.blog-preview-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--green);
  text-decoration-color: var(--gold);
  text-underline-offset: 0.25em;
}

.breadcrumbs span:last-child {
  color: var(--ink);
}

.topic-filter,
.post-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.topic-filter {
  margin: -0.25rem 0 1.8rem;
}

.topic-filter a,
.post-topics a,
.read-article {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.topic-filter a:hover,
.topic-filter a.active,
.post-topics a:hover,
.read-article:hover {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.post-topics {
  margin: 1rem 0;
}

.read-article {
  border-radius: 4px;
  background: var(--soft);
  color: var(--deep-red);
}

.image-card {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
  color: var(--white);
  border: 0;
  border-radius: 0;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.52);
}

.image-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card div {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.image-card h3 {
  color: var(--white);
  font-size: 23px;
  letter-spacing: 1px;
}

.image-card span {
  display: block;
  width: 30px;
  height: 2px;
  margin: 1rem 0 1.5rem;
  background: rgba(255, 255, 255, 0.55);
}

.image-card p {
  color: var(--white);
}

.image-card a {
  margin-top: 1rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--white);
  border-radius: 2px;
  background: var(--white);
  color: var(--green);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.image-card a:hover {
  background: var(--green);
  color: var(--white);
}

.trust-section {
  max-width: 1180px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.trust-grid article {
  min-height: 170px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-grid span {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--deep-red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.trust-grid strong {
  display: block;
  color: var(--green);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.2;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.review-widget {
  min-height: 180px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.review-widget-placeholder {
  display: grid;
  min-height: 140px;
  place-items: center;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.card:not(.image-card) img,
.post-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card div,
.post-card div {
  padding: 1.2rem;
}

.card a,
.post-card a,
.footer a {
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.25em;
}

.band {
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 4vw, 4rem);
  background: #fff4f1;
  color: var(--white);
}

.band p {
  color: var(--muted);
}

.band a {
  color: var(--green);
  font-weight: 800;
}

.feature-grid article {
  text-align: center;
  border-left: 0;
  padding: 1rem;
}

.feature-grid h2 {
  color: var(--ink);
  font-size: 23px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.service-directory {
  align-items: center;
}

.service-directory-image {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.service-directory h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 200;
}

.service-directory h2 strong {
  font-weight: 800;
}

.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
}

.service-list-grid h3,
.home-feature h3,
.contact-heading h3 {
  font-family: Figtree, Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
}

.service-list-grid ul {
  display: grid;
  gap: 0.5rem;
  margin: 0.7rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list-grid a {
  color: var(--muted);
  text-decoration-color: var(--red);
  text-underline-offset: 0.25em;
}

.service-list-grid a:hover {
  color: var(--green);
}

.local-seo {
  max-width: 1040px;
}

.pill-links,
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.pill-links a,
.related-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.52rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.pill-links a:hover,
.related-links a:hover {
  border-color: var(--red);
  color: var(--deep-red);
}

.related-links h2 {
  flex: 0 0 100%;
  margin-bottom: 0.2rem;
}

.red-divider {
  display: block;
  width: 78px;
  height: 3px;
  margin: 1rem auto 1.5rem;
  background: var(--red);
}

.red-divider.left {
  margin-left: 0;
}

.home-feature {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.home-feature h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
}

.home-feature h3 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

.home-feature p {
  font-size: 1.04rem;
}

.contact-heading {
  max-width: 720px;
  padding-bottom: 1rem;
  text-align: center;
}

.contact-heading h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rounded-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 70px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 1.2rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--green);
  border-radius: 50%;
}

.steps {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.steps article {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

.list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.list-grid a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.list-grid span {
  font-weight: 900;
}

.list-grid small {
  color: var(--muted);
  text-align: right;
}

.cta {
  width: min(1180px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin: 0 auto clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 0;
  background: #fff4f1;
  color: var(--ink);
  text-align: center;
}

.cta p {
  color: var(--muted);
}

.cta-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.cta-proof span {
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(60, 121, 125, 0.35);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 1rem;
}

.contact-intro,
.form-note {
  color: var(--muted);
}

.form-note {
  margin: -0.2rem 0 0;
  font-size: 0.95rem;
}

.form-status {
  margin: 1rem 0;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  font-weight: 800;
}

.form-status-success {
  border: 1px solid rgba(60, 121, 125, 0.35);
  background: rgba(60, 121, 125, 0.1);
  color: var(--green);
}

.form-status-error {
  border: 1px solid rgba(178, 51, 51, 0.25);
  background: rgba(178, 51, 51, 0.08);
  color: #8f2424;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.turnstile-wrap {
  min-height: 65px;
}

#contact {
  color: var(--ink);
}

#contact h2,
#contact label {
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.85rem;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-panel {
  align-self: stretch;
  padding: 1.4rem;
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
}

.contact-panel h2 {
  color: var(--ink);
  font-size: 1.15rem;
}

.contact-panel p,
.contact-panel a,
.contact-panel li {
  color: var(--muted);
}

.contact-panel ol {
  display: grid;
  gap: 0.45rem;
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
}

.contact-panel .phone {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--deep-red);
  font-size: 1.4rem;
  font-weight: 900;
}

.stat-stack {
  display: grid;
  gap: 1rem;
}

.stat-stack div {
  padding: 1.3rem;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat-stack strong {
  display: block;
  color: var(--green);
  font-size: 2.5rem;
}

.stat-stack span {
  color: var(--muted);
  font-weight: 800;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

.faq summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
}

.article .hero {
  min-height: 62vh;
}

.article h1 {
  max-width: 18ch;
}

.article-body {
  max-width: 820px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: var(--deep-red);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-lede {
  margin: 1.4rem 0 2rem;
  padding-left: 1rem;
  border-left: 4px solid var(--gold);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.65;
}

.article-topics {
  margin-bottom: 1.25rem;
}

.article-body h2 {
  margin-top: 2rem;
  font-size: 1.45rem;
}

.article-callout {
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: 8px;
  background: var(--soft);
}

.article-faq {
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.article-faq details {
  margin: 0.8rem 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.article-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.sitemap-list ul {
  columns: 2;
  padding-left: 1.2rem;
}

.legal {
  max-width: 820px;
}

.footer {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 4rem) 0;
  background: #f9f9f9;
  color: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
  text-align: center;
}

.footer h2 {
  margin: 0 0 0.8rem;
  color: #333333;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer p,
.footer a,
.footer-bottom {
  color: #4f4f4f;
}

.footer a {
  display: block;
  margin: 0.35rem 0;
}

.footer-logo {
  width: min(146px, 70%);
  height: auto;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.bbb-seal img {
  width: min(200px, 100%);
  min-height: 42px;
  height: auto;
  margin: 0 auto 1.25rem;
  object-fit: contain;
}

.bbb-seal img:not([src]) {
  display: block;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--soft);
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--red);
  border-radius: 3px;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 900;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-center-col > p,
.footer-contact-col > p {
  margin: 0.35rem 0;
}

.social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0.75rem auto 1.6rem !important;
  border-radius: 50%;
  background: var(--red);
  color: var(--white) !important;
  font-size: 0;
  text-decoration: none;
}

.social-link::before {
  content: "IG";
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-inline-links,
.footer-legal-links,
.footer-bottom-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
}

.footer-inline-links {
  margin: 0.5rem 0 1.5rem;
}

.footer-legal-links {
  margin-top: 1.5rem;
}

.footer-inline-links a,
.footer-legal-links a,
.footer-bottom-menu a {
  display: inline;
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: 1rem;
  border-top: 1px solid #e0e0e0;
}

.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;
}

@media (max-width: 900px) {
  .topbar {
    flex-direction: column;
    gap: 0.2rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% - 0.3rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #222222;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .hero {
    min-height: 72vh;
  }

  .card-grid,
  .post-grid,
  .feature-grid,
  .service-overview-grid,
  .location-service-grid,
  .trust-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-intro,
  .location-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .split,
  .cta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 52px;
  }

  .mobile-action-bar {
    display: grid;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .brand span {
    max-width: 11rem;
    line-height: 1.05;
  }

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    width: min(100% - 2rem, 23rem);
  }

  h1 {
    font-size: clamp(1.9rem, 8vw, 2.25rem);
    line-height: 1.18;
  }

  .hero h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-content {
    margin-bottom: 2rem;
  }

  .card-grid,
  .post-grid,
  .feature-grid,
  .service-overview-grid,
  .location-service-grid,
  .steps,
  .list-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .list-grid a {
    display: block;
  }

  .list-grid small {
    display: block;
    text-align: left;
  }

  .sitemap-list ul {
    columns: 1;
  }
}
