:root {
  --bg: #f3f0e9;
  --bg-alt: #e7e1d7;
  --surface: #ffffff;
  --surface-dark: #171717;
  --surface-mid: #272727;
  --surface-soft: #2f3439;
  --text: #171717;
  --text-muted: #5f646b;
  --text-on-dark: #f7f4ef;
  --accent: #b11f24;
  --accent-dark: #88171b;
  --border: rgba(23, 23, 23, 0.12);
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --site-width: min(1240px, calc(100vw - 2.5rem));
}

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Bitter";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/assets/fonts/bitter-latin.woff2") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(177, 31, 36, 0.08), transparent 22rem),
    linear-gradient(180deg, #f8f5ef 0%, var(--bg) 48%, #ece6dc 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

picture {
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent);
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link,
.visually-hidden {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  background: var(--surface-dark);
  color: var(--text-on-dark);
  border-radius: 999px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.button--ghost:hover {
  color: var(--accent);
  border-color: rgba(177, 31, 36, 0.4);
  background: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Bitter", Georgia, serif;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(248, 245, 239, 0.9);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.site-header__bar,
.site-header__inner,
.hero,
.page-hero,
.section,
.quote-card,
.site-footer__top,
.site-footer__grid,
.site-footer__bottom,
.trust-strip {
  width: var(--site-width);
  margin: 0 auto;
}

.site-header__bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.site-header__bar a {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 0 0.95rem;
}

.site-brand {
  display: block;
  flex: 0 0 clamp(11.75rem, 13vw, 13rem);
  width: clamp(11.75rem, 13vw, 13rem);
}

.site-brand picture,
.site-brand img {
  width: 100%;
  max-width: 100%;
}

.site-brand img {
  border-radius: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  width: 100%;
}

.site-nav ul {
  display: flex;
  gap: 1.05rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.site-nav__actions {
  display: flex;
  gap: 0.75rem;
}

.site-nav__actions .button {
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  padding: 0.8rem 1rem;
}

.menu-toggle span:not(.menu-toggle__label) {
  display: block;
  width: 1rem;
  height: 2px;
  background: var(--text);
  margin-bottom: 0.18rem;
}

.hero,
.page-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  padding: 4.5rem 0 3rem;
}

.page-hero {
  position: relative;
  padding: 4rem clamp(1.25rem, 3vw, 2.5rem) 3rem;
  margin-top: 1rem;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(177, 31, 36, 0.12), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 232, 223, 0.9));
  border: 1px solid rgba(23, 23, 23, 0.06);
  box-shadow: 0 22px 48px rgba(18, 18, 18, 0.1);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 60%, rgba(29, 31, 35, 0.06) 60% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 24%);
  pointer-events: none;
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

.page-hero--tight {
  padding-bottom: 2rem;
}

.page-hero--support {
  background:
    radial-gradient(circle at top right, rgba(177, 31, 36, 0.15), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(236, 229, 219, 0.92));
}

.page-hero--service {
  grid-template-columns: 1.05fr 0.95fr;
  padding-top: 4.25rem;
  padding-bottom: 3.25rem;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(21, 23, 27, 0.86) 52% 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(237, 231, 223, 0.9));
}

.page-hero--service::before {
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(255, 255, 255, 0.08) 52% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 24%);
}

.page-hero--service h1,
.page-hero--service p:not(.eyebrow):not(.hero__support) {
  max-width: 38rem;
}

.page-hero--service img {
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero--home {
  grid-template-columns: minmax(0, 1.32fr) minmax(18rem, 0.82fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  position: relative;
  padding: 4.7rem clamp(1.5rem, 3.2vw, 3rem) 4rem;
  margin-top: 1.25rem;
  border-radius: 40px;
  background:
    linear-gradient(125deg, rgba(20, 22, 25, 0.08), transparent 45%),
    radial-gradient(circle at top right, rgba(177, 31, 36, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(237, 229, 218, 0.96) 62%, rgba(227, 214, 197, 0.95));
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-top: 6px solid rgba(177, 31, 36, 0.88);
  box-shadow: 0 34px 72px rgba(18, 18, 18, 0.14);
  overflow: hidden;
}

.hero--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 54%, rgba(29, 31, 35, 0.14) 54% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 26%);
  pointer-events: none;
}

.hero--home::after {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(1.5rem, 3.5vw, 3.25rem);
  width: min(18rem, 44%);
  height: 0.45rem;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), #d44a4f);
  pointer-events: none;
}

.hero--home > * {
  position: relative;
  z-index: 1;
}

.hero__intro {
  max-width: 36rem;
}

.hero__intro h1 {
  margin-bottom: 0;
  font-size: clamp(3.25rem, 4.3vw, 4.35rem);
  max-width: 11.5ch;
  text-wrap: balance;
}

.hero__lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 38rem;
  margin-top: 1.35rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero__support {
  margin: -0.5rem 0 0;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 0.97rem;
}

.hero__proof {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero__proof li {
  padding-left: 1.3rem;
  position: relative;
}

.service-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  padding: 1.25rem 0 0;
  margin: 0;
  list-style: none;
}

.service-facts li {
  padding-left: 1.3rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.hero__proof li::before,
.service-facts li::before,
.feature-list li::before,
.quote-card__list li::before,
.footer-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
}

.hero__media {
  position: relative;
  min-height: 32.5rem;
  align-self: stretch;
}

.hero__frame {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero__frame picture,
.page-hero picture {
  width: 100%;
  height: 100%;
}

.hero__frame img,
.page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__frame--primary {
  inset: 4.25rem 0 1rem 2.8rem;
}

.hero__frame--secondary {
  top: 0.8rem;
  left: 0;
  width: clamp(9.5rem, 36%, 12.25rem);
  height: auto;
  aspect-ratio: 1 / 1.08;
  border: 8px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  z-index: 2;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin-bottom: 1rem;
  background: transparent;
  color: var(--text-on-dark);
}

.trust-strip--home {
  position: relative;
  z-index: 1;
  width: var(--site-width);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  box-shadow: none;
}

.trust-strip p {
  margin: 0;
  padding: 0.95rem 1rem;
  background: rgba(23, 23, 23, 0.94);
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.16);
}

.section {
  padding: 3.5rem 0;
}

.section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.8));
  border-top: 1px solid rgba(23, 23, 23, 0.05);
  border-bottom: 1px solid rgba(23, 23, 23, 0.05);
}

.section--accent {
  background: linear-gradient(180deg, #1c1d20 0%, #292b2f 100%);
  color: var(--text-on-dark);
}

.section--alt,
.section--accent {
  position: relative;
  padding: 4rem clamp(1rem, 3vw, 2.5rem);
  border-radius: 36px;
  overflow: hidden;
}

.section--alt {
  border: 1px solid rgba(23, 23, 23, 0.05);
  box-shadow: var(--shadow);
}

.section--accent {
  box-shadow: var(--shadow);
}

.section--centered {
  text-align: center;
  padding: 8rem 0;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

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

.service-cards,
.review-grid,
.process-grid,
.area-grid,
.three-column,
.service-detail-grid,
.related-links {
  display: grid;
  gap: 1.5rem;
}

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

.service-card,
.review-card,
.panel,
.quote-card,
.map-frame,
.contact-details,
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-card__body,
.panel,
.review-card,
.faq-item,
.contact-details {
  padding: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.service-card__body p:not(.eyebrow),
.panel p:not(.eyebrow),
.faq-item p {
  font-size: 0.98rem;
  line-height: 1.65;
}

.panel--soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 237, 227, 0.9));
  border-color: rgba(177, 31, 36, 0.12);
}

.panel--dark {
  background: linear-gradient(180deg, #1d1f23 0%, #292c31 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
}

.panel--dark .eyebrow,
.panel--dark p,
.panel--dark li {
  color: rgba(255, 255, 255, 0.88);
}

.service-card--support {
  display: flex;
  align-items: stretch;
  background: linear-gradient(180deg, #26282c 0%, #1d1f22 100%);
  color: var(--text-on-dark);
}

.service-cards--home .service-card--support {
  grid-column: 1 / -1;
}

.service-card--support a {
  color: #fff;
}

.service-card--support a:hover {
  color: #fff;
}

.service-card__body a {
  margin-top: auto;
  font-weight: 700;
}

.section-callout {
  width: var(--site-width);
  margin: 0 auto;
  padding: 0 0 1rem;
}

.section-callout__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.75rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(177, 31, 36, 0.98), rgba(128, 18, 25, 0.98));
  color: #fff;
  box-shadow: var(--shadow);
}

.section-callout__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.section-callout .button {
  background: #fff;
  color: var(--accent-dark);
}

.section-callout .button:hover {
  color: var(--accent-dark);
  background: #fff;
}

.section-callout .button--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.section-callout .button--ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.split,
.split--wide {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.split--wide {
  grid-template-columns: 1.2fr 0.8fr;
}

.service-detail-grid {
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.85fr));
  align-items: stretch;
}

.service-detail-grid__primary {
  grid-row: span 2;
}

.service-detail-grid .panel {
  height: 100%;
}

.feature-list,
.quote-card__list,
.footer-trust,
.hours-list,
.site-footer__grid ul,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li,
.quote-card__list li,
.footer-trust li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.8rem;
}

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

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

.review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.3rem;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.7;
}

.review-card strong {
  display: inline-block;
  font-size: 0.98rem;
}

.review-card--cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(231, 225, 215, 0.9));
}

.review-card span,
.review-link {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.review-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(177, 31, 36, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.review-stars {
  margin: -0.2rem 0 0;
  color: #d89a16;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
}

.review-card__footer {
  margin-top: auto;
}

.review-link {
  font-weight: 700;
}

.related-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-link {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.related-link:hover {
  transform: translateY(-2px);
  border-color: rgba(177, 31, 36, 0.35);
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.14);
}

.related-link span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.related-link strong {
  color: var(--text);
  font-family: "Bitter", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.2;
}

.review-card--large {
  min-height: 15rem;
}

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

.process-grid article {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(177, 31, 36, 0.18);
  margin-bottom: 1rem;
  font-family: "Bitter", Georgia, serif;
  font-size: 1.3rem;
}

.quote-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  padding: 2rem;
  margin-bottom: 4rem;
}

.quote-card__intro > p:not(.eyebrow) {
  font-size: 0.98rem;
  line-height: 1.65;
}

.quote-card__list li {
  font-size: 0.94rem;
  line-height: 1.55;
}

.section--accent + .quote-card {
  margin-top: 3.5rem;
}

.decision-grid .panel {
  height: 100%;
}

.home-values .split,
.home-process .process-grid {
  gap: 2rem;
}

.home-values .panel,
.home-process .process-grid article {
  padding: 2rem;
}

.home-values {
  padding-top: 4.75rem;
  padding-bottom: 4.75rem;
}

.home-values .panel {
  align-self: start;
}

.home-proof {
  padding-top: 5.5rem;
}

.home-proof .section-heading {
  margin-bottom: 2.75rem;
}

.home-process {
  margin-top: 1rem;
  padding-top: 4.5rem;
  padding-bottom: 4.75rem;
}

.home-process .section-heading {
  max-width: 54rem;
  margin-bottom: 2.85rem;
}

.home-process .process-grid article {
  min-height: 100%;
}

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

.quote-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.quote-form span {
  font-size: 0.95rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(23, 23, 23, 0.14);
  background: #fff;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus,
.menu-toggle:focus,
.button:focus,
a:focus {
  outline: 3px solid rgba(177, 31, 36, 0.28);
  outline-offset: 2px;
}

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

.form-recaptcha {
  margin-bottom: 1rem;
}

.timeline,
.faq-list,
.team-stack {
  display: grid;
  gap: 1.5rem;
}

.timeline article {
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
}

.map-frame {
  min-height: 26rem;
  overflow: hidden;
}

.directions-card .map-frame {
  min-height: 22rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.directions-card img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.directions-card__body {
  padding: 1.5rem;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 26rem;
  border: 0;
  border-radius: inherit;
}

.directions-card .map-frame iframe,
.team-card img {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: start;
}

.team-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.team-card__body {
  padding: 1.5rem;
}

.hours-list li,
.site-footer__grid li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item h2 {
  font-size: 1.45rem;
}

.site-footer {
  background: linear-gradient(180deg, #181818 0%, #111111 100%);
  color: var(--text-on-dark);
  padding: 2.8rem 0 4rem;
}

.site-footer__top,
.site-footer__grid,
.site-footer__bottom {
  display: grid;
  gap: 1.5rem;
}

.site-footer__top {
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 23rem);
  align-items: start;
  padding-bottom: 1.2rem;
}

.site-footer h2 {
  max-width: 12ch;
  margin-bottom: 0.85rem;
  font-size: clamp(1.85rem, 2.6vw, 2.45rem);
}

.site-footer h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.site-footer p,
.site-footer li,
.site-footer a {
  font-size: 0.93rem;
}

.site-footer__panel {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__panel-title {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__panel a {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.site-footer__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 1.15rem 0 1rem;
}

.site-footer__bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__bottom div {
  display: flex;
  gap: 1rem;
}

.site-footer__bottom p,
.site-footer__bottom a {
  font-size: 0.86rem;
}

.mobile-cta {
  display: none;
}

@media (min-width: 1120px) {
  .service-cards--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1500px) {
  :root {
    --site-width: min(1280px, calc(100vw - 4rem));
  }

  .site-header__bar {
    padding: 0.55rem 0;
  }

  .site-header__inner {
    gap: 1rem;
    padding: 0.72rem 0 0.82rem;
  }

  .site-brand {
    flex-basis: 12.5rem;
    width: 12.5rem;
  }

  .site-nav a {
    font-size: 0.93rem;
  }

  .site-nav__actions .button {
    padding: 0.78rem 1rem;
    font-size: 0.9rem;
  }

  .hero--home {
    grid-template-columns: minmax(0, 1.28fr) minmax(18rem, 0.72fr);
    gap: 1.65rem;
    padding: 4rem 2.4rem 3.45rem;
  }

  .hero__intro {
    max-width: 34rem;
  }

  .hero__intro h1 {
    font-size: clamp(3.05rem, 3.85vw, 4.05rem);
    max-width: 11.6ch;
  }

  .hero__lead {
    max-width: 35rem;
    font-size: 1.04rem;
    margin-top: 1.15rem;
  }

  .hero__actions {
    margin: 1.6rem 0;
  }

  .hero__media {
    min-height: 25.5rem;
  }

  .hero__frame--primary {
    inset: 3.6rem 0 0.8rem 2.2rem;
  }

  .hero__frame--secondary {
    width: clamp(8.5rem, 38%, 10.75rem);
  }

  .trust-strip--home {
    width: var(--site-width);
    margin-top: 0.85rem;
  }

  .site-footer {
    padding: 2.5rem 0 3.6rem;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    gap: 1rem;
    padding: 0.8rem 0 0.9rem;
  }

  .hero__intro {
    max-width: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    gap: 0.5rem;
    padding: 0.68rem 0.9rem;
  }

  .menu-toggle__label {
    font-size: 0.92rem;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.35rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(23, 23, 23, 0.08);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav ul,
  .site-nav__actions,
  .trust-strip,
  .hero,
  .page-hero,
  .split,
  .split--wide,
  .team-grid,
  .quote-card,
  .site-footer__top,
  .site-footer__grid,
  .site-footer__bottom {
    grid-template-columns: 1fr;
  }

  .site-nav ul,
  .site-nav__actions {
    flex-direction: column;
    gap: 0.65rem;
  }

  .site-nav a {
    font-size: 0.98rem;
  }

  .site-nav__actions .button {
    width: 100%;
    padding: 0.82rem 1.05rem;
  }

  .site-header__bar {
    display: none;
  }

  .hero__media {
    min-height: 22rem;
  }

  .hero__frame--primary {
    inset: 2.5rem 0 0 1.2rem;
  }

  .hero__frame--secondary {
    width: clamp(7.5rem, 42%, 9rem);
    top: 0;
  }

  .service-cards,
  .decision-grid,
  .review-grid,
  .process-grid,
  .area-grid,
  .field-grid,
  .three-column,
  .service-detail-grid,
  .section-callout__inner {
    grid-template-columns: 1fr;
  }

  .service-detail-grid__primary {
    grid-row: auto;
  }

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

  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    z-index: 25;
    background: rgba(17, 17, 17, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  body {
    padding-bottom: 4.3rem;
  }

  .mobile-cta a {
    padding: 1rem 0.75rem;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
  }

  .mobile-cta a:first-child {
    background: var(--accent);
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero,
  .page-hero,
  .section,
  .quote-card {
    width: min(100vw - 1.25rem, 100%);
  }

  .site-header__inner,
  .site-header__bar {
    width: min(100vw - 1.25rem, 100%);
  }

  .site-header__inner {
    gap: 0.8rem;
    padding: 0.65rem 0 0.75rem;
  }

  .hero,
  .page-hero {
    padding-top: 1.5rem;
  }

  .page-hero {
    padding: 2.35rem 0.95rem 1.95rem;
    margin-top: 0.75rem;
    border-radius: 28px;
  }

  .page-hero--service {
    background:
      radial-gradient(circle at top right, rgba(177, 31, 36, 0.18), transparent 14rem),
      linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(236, 229, 219, 0.92));
  }

  .hero--home {
    padding: 2.1rem 0.95rem 2.5rem;
    margin-top: 0.75rem;
    border-radius: 28px;
  }

  .site-brand img {
    max-width: 10.5rem;
  }

  .menu-toggle {
    gap: 0.45rem;
    padding: 0.58rem 0.8rem;
  }

  .menu-toggle__label {
    font-size: 0.88rem;
  }

  .site-nav {
    top: calc(100% + 0.3rem);
    padding: 0.8rem;
  }

  .site-nav a {
    font-size: 0.95rem;
  }

  .hero__media {
    min-height: 18rem;
  }

  .hero__frame--primary {
    inset: 2.4rem 0 0 0.65rem;
  }

  .hero__frame--secondary {
    width: 7.2rem;
    border-width: 6px;
  }

  .hero__support {
    margin-top: 0.2rem;
  }

  .quote-card {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .quote-card__intro h2,
  .section-callout__inner h2 {
    text-wrap: balance;
  }

  .service-card__body,
  .review-card,
  .panel,
  .quote-card,
  .contact-details,
  .faq-item {
    padding: 1.1rem;
  }

  .trust-strip {
    border-radius: 24px;
  }

  .trust-strip--home {
    width: min(100vw - 1.25rem, 100%);
    margin-top: -1rem;
    margin-bottom: 1.5rem;
  }

  .site-footer {
    padding-bottom: 6.2rem;
  }

  .related-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) and (max-height: 500px) {
  .site-header__inner {
    padding: 0.45rem 0 0.55rem;
  }

  .site-brand img {
    max-width: 8.75rem;
  }

  .menu-toggle {
    padding: 0.45rem 0.7rem;
  }

  .menu-toggle__label {
    display: none;
  }

  .site-nav {
    top: calc(100% + 0.2rem);
    gap: 0.6rem;
    max-height: calc(100vh - 4.25rem);
    overflow-y: auto;
    padding: 0.72rem;
  }

  .site-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 1rem;
  }

  .site-nav__actions {
    flex-direction: row;
    gap: 0.5rem;
  }

  .site-nav a,
  .site-nav__actions .button {
    font-size: 0.92rem;
  }

  .site-nav__actions .button {
    flex: 1 1 0;
    padding: 0.68rem 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
