:root {
  --ink: #111116;
  --ink-soft: #1b1b22;
  --paper: #ffffff;
  --cream: #f4f0e8;
  --cream-deep: #e9e1d4;
  --red: #d71920;
  --red-dark: #a90f16;
  --forest: #133b25;
  --text: #26262d;
  --muted: #666670;
  --line: #dedbd5;
  --shadow: 0 20px 60px rgba(17, 17, 22, 0.14);
  --shadow-soft: 0 14px 34px rgba(17, 17, 22, 0.09);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --control: 48px;
  --shell: min(1180px, calc(100% - 40px));
  --focus: 0 0 0 3px rgba(215, 25, 32, 0.3);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 750;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.85rem);
}

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

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

strong {
  font-weight: 720;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  background: var(--red);
  text-decoration: none;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: var(--red);
}

.eyebrow.light {
  color: #ffffff;
}

.button {
  min-height: var(--control);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--red);
  box-shadow: 0 10px 25px rgba(215, 25, 32, 0.24);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-dark {
  color: #ffffff;
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: #ffffff;
}

.button-ghost,
.button-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover,
.button-outline-light:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
}

.button-full {
  width: 100%;
}

.button-facebook {
  color: #ffffff;
  background: #1877f2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(17, 17, 22, 0.1);
  box-shadow: 0 8px 30px rgba(17, 17, 22, 0.06);
  backdrop-filter: blur(16px);
}

.topbar {
  color: #ffffff;
  background: var(--ink);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.topbar-inner {
  min-height: 31px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.topbar-inner span:first-child {
  margin-right: auto;
}

.topbar a {
  color: #ffffff;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.nav-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}

.brand img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(17, 17, 22, 0.2);
}

.brand > span {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.brand small {
  margin-top: 6px;
  color: var(--red-dark);
  font-size: 0.61rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.88rem;
  font-weight: 680;
}

.desktop-nav > a,
.desktop-nav summary {
  color: var(--ink);
  text-decoration: none;
}

.desktop-nav > a:hover,
.desktop-nav summary:hover {
  color: var(--red-dark);
}

.service-menu {
  position: relative;
}

.service-menu summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  list-style: none;
}

.service-menu summary::-webkit-details-marker {
  display: none;
}

.service-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 300px;
  padding: 12px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 0 0 14px 14px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.service-dropdown::before {
  position: absolute;
  top: -18px;
  left: 0;
  width: 100%;
  height: 18px;
  content: "";
}

.service-dropdown a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 7px;
  color: var(--text);
  text-decoration: none;
}

.service-dropdown a:hover,
.service-dropdown a:focus-visible {
  color: var(--red-dark);
  background: var(--cream);
}

.service-dropdown .all-services {
  margin-bottom: 6px;
  color: #ffffff;
  background: var(--ink);
}

.header-cta {
  white-space: nowrap;
}

.menu-button {
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--cream);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span:nth-of-type(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-of-type(3) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-of-type(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu .shell {
  padding-block: 10px 22px;
}

.mobile-menu a,
.mobile-menu summary {
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu .service-menu > div {
  display: grid;
  padding: 4px 0 8px 16px;
}

.mobile-menu .service-menu > div a {
  min-height: 44px;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 48%;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(10, 10, 15, 0.93) 0%, rgba(10, 10, 15, 0.76) 43%, rgba(10, 10, 15, 0.32) 72%, rgba(10, 10, 15, 0.18) 100%);
}

.hero::after,
.page-hero::after {
  position: absolute;
  left: -4%;
  bottom: 0;
  width: 108%;
  height: 7px;
  content: "";
  background: repeating-linear-gradient(115deg, var(--red) 0 62px, #ffffff 62px 78px, var(--red) 78px 140px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  align-items: center;
  gap: 64px;
  padding-block: 70px;
}

.hero-copy {
  max-width: 670px;
}

.hero h1,
.page-hero h1,
.section-dark h2,
.area-section h2,
.cta-band h2,
.contact-card h2 {
  color: #ffffff;
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.3vw, 5.9rem);
}

.hero h1 em {
  color: #ffffff;
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 7px;
  text-underline-offset: 8px;
}

.hero-copy > p {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 650;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof svg,
.button svg,
.mobile-dock svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-form {
  align-self: center;
}

.lead-form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-form .lead-form {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.97);
}

.lead-form.compact {
  padding: 24px;
}

.form-heading h2 {
  margin-bottom: 8px;
  font-size: 1.65rem;
  letter-spacing: -0.025em;
}

.form-heading p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.form-grid label {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.25;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 45px;
  border: 1px solid #c9c5bd;
  border-radius: 7px;
  padding: 10px 11px;
  color: var(--ink);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-grid textarea {
  min-height: 82px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--red);
  outline: none;
  box-shadow: var(--focus);
}

.form-wide {
  grid-column: 1 / -1;
}

.lead-form .button {
  margin-top: 16px;
}

.form-status {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--red-dark);
  font-size: 0.82rem;
  font-weight: 650;
}

.form-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-note a {
  color: var(--red-dark);
  font-weight: 750;
}

.trust-strip {
  color: #ffffff;
  background: var(--forest);
}

.trust-strip .shell {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.trust-strip span {
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.84rem;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  color: #ffffff;
  font-size: 1.02rem;
}

.mobile-lead {
  display: none;
}

.section {
  padding-block: clamp(72px, 9vw, 118px);
}

.section-cream {
  padding-block: clamp(72px, 9vw, 112px);
  background: var(--cream);
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.8);
  background: var(--ink);
}

.section-dark::before {
  position: absolute;
  right: -180px;
  bottom: -250px;
  width: 560px;
  height: 560px;
  border: 70px solid rgba(215, 25, 32, 0.11);
  border-radius: 50%;
  content: "";
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}

.section-heading h2,
.center-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  max-width: 54ch;
  margin-bottom: 6px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 0 0 rgba(17, 17, 22, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 25, 32, 0.45);
  box-shadow: var(--shadow-soft);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 12px;
  color: #ffffff;
  background: var(--red);
}

.service-icon svg,
.location-grid svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h2,
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.43rem;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card a,
.location-grid a,
.text-link,
.text-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--red-dark);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.service-card a span,
.location-grid a span,
.text-link span,
.text-call span {
  transition: transform 180ms ease;
}

.service-card a:hover span,
.location-grid a:hover span,
.text-link:hover span,
.text-call:hover span {
  transform: translateX(4px);
}

.feature-stack {
  position: relative;
  display: grid;
  gap: 42px;
}

.feature-stack .split-copy {
  max-width: 850px;
}

.feature-light .split-copy {
  max-width: 920px;
}

.split-copy h2 {
  margin-bottom: 22px;
}

.split-copy > p,
.prose > p {
  max-width: 65ch;
  color: inherit;
  font-size: 1.03rem;
}

.image-frame {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream-deep);
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  content: "";
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 38%;
}

.wide-media {
  max-height: 510px;
}

.wide-media img {
  max-height: 510px;
}

.feature-light .wide-media {
  max-width: 940px;
}

.about-story {
  max-width: 900px;
  display: grid;
  justify-items: center;
  gap: 36px;
  text-align: center;
}

.about-story .split-copy {
  max-width: 760px;
}

.about-story .check-list {
  max-width: 560px;
  margin-inline: auto;
  text-align: left;
}

.logo-panel {
  width: 220px;
  height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 6px;
  color: #ffffff;
  background: rgba(17, 17, 22, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  content: "✓";
  color: #ffffff;
  background: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.check-list.dark {
  color: var(--text);
}

.stat-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 34px;
}

.stat-pair div {
  padding: 20px;
  border-left: 4px solid var(--red);
  background: var(--cream);
}

.stat-pair strong,
.stat-pair span {
  display: block;
}

.stat-pair strong {
  margin-bottom: 6px;
  color: var(--ink);
}

.stat-pair span {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.center-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-heading .eyebrow {
  justify-content: center;
}

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

.process-grid article {
  position: relative;
  padding: 30px;
  border-top: 4px solid var(--ink);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.process-grid article::after {
  position: absolute;
  top: -4px;
  right: 0;
  width: 72px;
  height: 4px;
  content: "";
  background: var(--red);
}

.process-grid article > span {
  display: block;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.process-grid h3 {
  margin-bottom: 12px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.area-section {
  color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, #102d1d, var(--forest));
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

.area-grid h2 {
  margin-bottom: 18px;
}

.area-grid p {
  max-width: 51ch;
  margin-bottom: 28px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.15);
}

.area-list span {
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 22px;
  color: #ffffff;
  background: rgba(14, 42, 26, 0.92);
  font-size: 1.06rem;
  font-weight: 720;
}

.area-list small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 600;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(44px, 8vw, 100px);
}

.faq-layout > div:first-child {
  position: sticky;
  top: 150px;
}

.faq-layout h2 {
  margin-bottom: 18px;
}

.faq-layout > div:first-child p {
  max-width: 44ch;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 17px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 720;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 70ch;
  padding: 0 48px 22px 0;
  color: var(--muted);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: 68px;
  color: #ffffff;
  background: var(--red-dark);
}

.cta-band::before {
  position: absolute;
  top: -90px;
  left: 41%;
  width: 780px;
  height: 260px;
  transform: rotate(-10deg);
  border: 36px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.cta-band .shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-band .shell > div:last-child {
  display: grid;
  gap: 10px;
  flex: 0 0 auto;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background: radial-gradient(circle at 25% 15%, #32323d 0, var(--ink) 45%, #09090d 100%);
}

.page-hero-grid {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  padding-block: 54px 62px;
}

.page-hero-grid > div {
  max-width: 940px;
}

.page-hero h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 5.6vw, 5.25rem);
}

.page-hero p {
  max-width: 650px;
  font-size: 1.06rem;
}

.page-hero figure {
  width: 100%;
  max-height: 340px;
  aspect-ratio: 16 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: #25252d;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.page-hero figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.page-hero .text-call {
  color: #ffffff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.breadcrumbs a {
  color: #ffffff;
  text-underline-offset: 3px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) 390px;
  align-items: start;
  gap: clamp(44px, 8vw, 100px);
}

.prose h2 {
  margin-bottom: 22px;
}

.prose h3 {
  margin: 38px 0 12px;
}

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

.contact-card {
  position: sticky;
  top: 150px;
  padding: 30px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.78);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin-bottom: 14px;
  font-size: 2rem;
}

.contact-card .button {
  margin-top: 10px;
}

.related .service-card {
  min-height: 285px;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.facts-grid article {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  background: #ffffff;
}

.facts-grid span {
  margin-bottom: 8px;
  color: var(--red-dark);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts-grid strong {
  color: var(--ink);
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.facts-grid a {
  text-decoration: none;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-grid article {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.location-grid svg {
  margin-bottom: 34px;
  color: var(--red);
}

.location-grid h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.location-grid p {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-location {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.contact-location h2 {
  margin-bottom: 14px;
}

.contact-location p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: clamp(36px, 7vw, 80px);
}

.contact-details {
  padding: 32px;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.contact-details h2 {
  margin-bottom: 28px;
  color: #ffffff;
  font-size: 2rem;
}

.contact-line {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 680;
  line-height: 1.45;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-line small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details .button {
  width: 100%;
  margin-top: 24px;
}

.contact-note {
  margin: 18px 0 0;
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  position: relative;
  color: rgba(255, 255, 255, 0.67);
  background: #0b0b0f;
}

.footer-road {
  height: 10px;
  overflow: hidden;
  background: var(--red);
}

.footer-road span {
  width: 100%;
  height: 100%;
  display: block;
  background: repeating-linear-gradient(115deg, var(--red) 0 72px, #ffffff 72px 82px, var(--red) 82px 154px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr 1.15fr;
  gap: 48px;
  padding-block: 68px 50px;
}

.footer-brand {
  width: 112px;
  height: 112px;
  display: block;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-grid p {
  max-width: 34ch;
  font-size: 0.9rem;
}

.footer-grid h2 {
  margin: 8px 0 20px;
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
}

.footer-grid a,
.footer-grid span {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 0.84rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: #ffffff;
}

.footer-grid .license {
  color: #ffffff;
  font-weight: 700;
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.73rem;
}

.mobile-dock {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 120;
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 7px;
  transform: translateY(calc(100% + 28px));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: rgba(17, 17, 22, 0.95);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-dock.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.mobile-dock a {
  min-width: 0;
  min-height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--red);
  font-size: 0.81rem;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-dock a:first-child {
  background: var(--forest);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 32px, 980px);
  }

  .desktop-nav {
    gap: 16px;
    font-size: 0.82rem;
  }

  .brand > span {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 34px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 24px;
  }

  .footer-grid > div:last-child h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 28px, 760px);
  }

  .topbar-inner span:nth-child(2) {
    display: none;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .nav-row {
    min-height: 78px;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand > span {
    display: flex;
  }

  .hero {
    min-height: 620px;
  }

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

  .hero-copy {
    max-width: 650px;
  }

  .hero-form {
    display: none;
  }

  .mobile-lead {
    display: block;
    padding-block: 28px 10px;
  }

  .section-heading,
  .area-grid,
  .faq-layout,
  .content-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .wide-media,
  .wide-media img {
    max-height: 460px;
  }

  .faq-layout > div:first-child,
  .contact-card {
    position: static;
  }

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

  .process-grid article {
    min-height: 0;
  }

  .page-hero-grid {
    gap: 34px;
    padding-block: 46px 54px;
  }

  .page-hero figure {
    max-height: 320px;
    aspect-ratio: 16 / 6;
  }

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

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

  .footer-grid > div:last-child {
    grid-column: auto;
    display: flex;
  }

  .footer-grid > div:last-child h2 {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
    --radius-lg: 20px;
  }

  html {
    scroll-padding-top: 84px;
  }

  body {
    padding-bottom: 80px;
    font-size: 15.5px;
  }

  .topbar {
    display: none;
  }

  .nav-row {
    min-height: 76px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand > span {
    font-size: 0.96rem;
  }

  .brand small {
    margin-top: 4px;
    font-size: 0.53rem;
  }

  .mobile-menu {
    max-height: calc(100vh - 76px);
  }

  .hero {
    min-height: 700px;
    align-items: flex-end;
  }

  .hero-media img {
    object-position: center 30%;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.12) 0%, rgba(10, 10, 15, 0.3) 32%, rgba(10, 10, 15, 0.96) 78%, rgba(10, 10, 15, 0.99) 100%);
  }

  .hero-grid {
    padding-block: 90px 55px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 13.4vw, 4.05rem);
  }

  .hero h1 em {
    text-decoration-thickness: 5px;
    text-underline-offset: 6px;
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    gap: 9px;
    margin-top: 22px;
  }

  .trust-strip .shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-block: 12px;
  }

  .trust-strip span {
    padding: 10px 6px;
    border-right: 0;
  }

  .lead-form,
  .lead-form.compact {
    padding: 22px 18px;
  }

  .form-grid,
  .service-grid,
  .stat-pair,
  .area-list,
  .facts-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .section,
  .section-cream {
    padding-block: 68px;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .service-card {
    min-height: 280px;
    padding: 24px;
  }

  .service-icon {
    margin-bottom: 20px;
  }

  .feature-stack {
    gap: 38px;
  }

  .image-frame img {
    aspect-ratio: 16 / 9;
  }

  .wide-media,
  .wide-media img {
    max-height: 260px;
  }

  .logo-panel img {
    aspect-ratio: 1;
  }

  .area-list span {
    min-height: 72px;
  }

  .faq-layout {
    gap: 34px;
  }

  .faq-list summary {
    min-height: 66px;
    font-size: 0.94rem;
  }

  .faq-list details p {
    padding-right: 12px;
  }

  .cta-band {
    padding-block: 58px;
  }

  .cta-band .shell,
  .contact-location {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band .shell > div:last-child {
    width: 100%;
  }

  .page-hero-grid {
    min-height: 0;
    padding-block: 42px 54px;
  }

  .page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.55rem);
  }

  .page-hero figure {
    max-height: none;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
  }

  .page-hero .hero-actions {
    margin-top: 22px;
  }

  .page-hero .text-call {
    justify-content: center;
  }

  .contact-card,
  .contact-details {
    padding: 24px 20px;
  }

  .facts-grid article {
    min-height: 118px;
  }

  .location-grid article {
    min-height: 245px;
  }

  .footer-grid {
    gap: 32px;
    padding-block: 58px 40px;
  }

  .footer-grid > div:last-child {
    display: flex;
  }

  .footer-bottom {
    min-height: 78px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    padding-block: 15px;
  }

  .mobile-dock {
    display: grid;
  }
}

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