:root {
  --bg: #ffffff;
  --surface: #f5f7fa;
  --surface-strong: #e8edf2;
  --text: #131820;
  --muted: #5f6b7a;
  --line: #dde3eb;
  --line-strong: #c2cad4;
  --brand: #c91f2f;
  --brand-dark: #9d1522;
  --brand-light: #fdecee;
  --ink: #0d1118;
  --ink-soft: #1c2330;
  --accent: #f2b705;
  --success: #16805d;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 6px 16px rgba(13, 17, 24, 0.06);
  --shadow: 0 18px 38px rgba(13, 17, 24, 0.1);
  --shadow-lg: 0 30px 70px rgba(13, 17, 24, 0.16);
  --container: 1240px;
  --container-wide: 1440px;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 800;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  font-weight: 900;
}

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

h3 {
  font-size: 1.18rem;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

.container {
  width: min(100% - clamp(20px, 4vw, 64px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  font-weight: 700;
  transform: translateY(-150%);
}

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

/* ----- Header ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(216, 224, 232, 0.7);
  box-shadow: 0 6px 24px rgba(13, 17, 24, 0.04);
}

.topbar {
  background: var(--ink);
  color: #cdd5e0;
  font-size: 0.82rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: space-between;
  padding-block: 9px;
}

.topbar__address,
.topbar__hours,
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__phone {
  color: white;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.topbar__phone:hover {
  color: var(--accent);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: white;
  background: var(--brand);
  border-radius: var(--radius);
  font-weight: 900;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(201, 31, 47, 0.3);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text strong {
  font-size: 1.04rem;
  color: var(--ink);
}

.brand__text small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.94rem;
}

.nav-menu > a:not(.btn) {
  position: relative;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-menu > a:not(.btn):hover {
  background: var(--surface);
  color: var(--brand);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform var(--transition);
}

/* ----- Buttons ----------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  color: white;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.96rem;
  line-height: 1.1;
  letter-spacing: 0.005em;
  box-shadow: 0 14px 30px rgba(201, 31, 47, 0.28);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(201, 31, 47, 0.34);
}

.btn:focus-visible {
  outline: 3px solid rgba(242, 183, 5, 0.6);
  outline-offset: 2px;
}

.btn__icon {
  font-size: 1.1rem;
  line-height: 1;
}

.btn--ghost {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.06);
}

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

.btn--ghost-dark {
  color: var(--ink);
  background: white;
  border-color: var(--line-strong);
  box-shadow: none;
}

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

.btn--ghost-light {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

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

.btn--inverse {
  background: white;
  color: var(--brand);
  border-color: white;
  box-shadow: 0 14px 30px rgba(13, 17, 24, 0.18);
}

.btn--inverse:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.btn--small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.btn--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 800;
  position: relative;
}

.text-link::after {
  content: "→";
  transition: transform var(--transition);
}

.text-link:hover {
  color: var(--brand-dark);
}

.text-link:hover::after {
  transform: translateX(3px);
}

/* ----- Hero -------------------------------------------------------------- */

.hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  color: white;
  isolation: isolate;
}

.hero__media,
.hero__media::after {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__media::after {
  z-index: 1;
  content: "";
  background:
    linear-gradient(95deg, rgba(7, 11, 19, 0.92) 0%, rgba(7, 11, 19, 0.74) 42%, rgba(7, 11, 19, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 11, 19, 0.18) 0%, rgba(7, 11, 19, 0.78) 100%);
}

.hero--home .hero__media::after {
  background:
    linear-gradient(95deg, rgba(7, 11, 19, 0.94) 0%, rgba(7, 11, 19, 0.68) 50%, rgba(7, 11, 19, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 11, 19, 0.1) 0%, rgba(7, 11, 19, 0.7) 100%);
}

.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: inherit;
  padding-block: 72px 92px;
  max-width: 1080px;
}

.hero h1,
.hero p {
  color: white;
}

.hero__lead {
  max-width: 720px;
  margin-top: 18px;
  font-size: clamp(1.04rem, 1.4vw, 1.18rem);
  color: rgba(255, 255, 255, 0.92);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 12px;
  margin-top: 36px;
}

.hero-trust span {
  display: grid;
  gap: 3px;
  min-height: 76px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  font-size: 0.88rem;
}

.hero-trust strong {
  color: white;
  font-size: 1rem;
  font-weight: 800;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  color: var(--brand);
  background: var(--brand-light);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
  background: rgba(242, 183, 5, 0.14);
  border: 1px solid rgba(242, 183, 5, 0.32);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ----- Trust band -------------------------------------------------------- */

.trust-band {
  background: var(--ink);
  color: white;
  padding-block: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 28px;
  align-items: center;
}

.trust-grid > div {
  display: grid;
  gap: 4px;
}

.trust-grid strong {
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
}

/* ----- Sections ---------------------------------------------------------- */

.section {
  padding-block: clamp(56px, 7vw, 96px);
}

.section--tight {
  padding-top: clamp(44px, 6vw, 72px);
}

.section--muted {
  background: var(--surface);
}

.section--image {
  background: var(--ink);
  position: relative;
}

.section--image h2,
.section--image p,
.section--image li {
  color: white;
}

.section--image .eyebrow {
  background: rgba(242, 183, 5, 0.16);
  color: var(--accent);
}

.lead-section {
  padding-block: clamp(56px, 7vw, 96px);
  background: linear-gradient(180deg, var(--surface) 0%, white 100%);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading p:not(.eyebrow) {
  margin-top: 12px;
  font-size: 1.04rem;
}

/* ----- Cards ------------------------------------------------------------- */

.cards {
  display: grid;
  gap: 22px;
}

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

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

.service-card,
.mini-card,
.contact-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover,
.mini-card:hover,
.contact-card:hover,
.panel:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

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

.service-card__media {
  display: block;
  overflow: hidden;
  background: var(--surface);
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card > div,
.mini-card,
.contact-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.service-card .text-link,
.mini-card .text-link {
  margin-top: auto;
}

.service-card p,
.mini-card p,
.contact-card p {
  margin: 0;
}

.panel {
  padding: 26px;
}

.panel--accent {
  background: linear-gradient(180deg, white 0%, var(--surface) 100%);
}

.panel h3 {
  margin-bottom: 14px;
}

.panel__note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-size: 0.92rem;
}

/* ----- Layout helpers ---------------------------------------------------- */

.split,
.media-split,
.two-columns,
.contact-grid,
.lead-grid {
  display: grid;
  gap: 40px;
}

.split,
.media-split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}

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

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

.lead-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 44px;
}

.lead-copy {
  position: sticky;
  top: 130px;
}

.lead-copy h2 {
  margin-bottom: 14px;
}

.lead-callout {
  display: grid;
  gap: 4px;
  margin-top: 22px;
  padding: 22px;
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
  border: 1px solid var(--ink-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 14px 30px rgba(13, 17, 24, 0.18);
}

.lead-callout:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(13, 17, 24, 0.24);
}

.lead-callout__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
}

.lead-callout strong {
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: white;
}

.lead-callout__hint {
  color: #cdd5e0;
  font-size: 0.88rem;
}

.google-business-card {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition);
}

.google-business-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.google-business-card span {
  color: var(--brand);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.google-business-card strong {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.google-business-card small {
  color: var(--muted);
}

.lead-checks {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  list-style: none;
  font-size: 0.92rem;
  color: var(--muted);
}

.lead-checks li {
  position: relative;
  padding-left: 24px;
}

.lead-checks li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 14px;
  height: 14px;
  content: "";
  background: var(--success);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px white;
}

/* ----- Forms ------------------------------------------------------------- */

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 3vw, 32px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 6px;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: #fafbfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-weight: 500;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.lead-form textarea {
  resize: vertical;
  min-height: 96px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  background: white;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(201, 31, 47, 0.12);
}

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

.form-alert {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.94rem;
}

.form-alert--success {
  color: #07543b;
  background: #e7f8f0;
  border: 1px solid #b6ead2;
}

.form-alert--error {
  color: #842029;
  background: #fdecec;
  border: 1px solid #f4b7bd;
}

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

.form-note a {
  color: var(--brand);
  font-weight: 700;
}

/* ----- Proof / stats ---------------------------------------------------- */

.proof-stack {
  display: grid;
  gap: 14px;
}

.proof-card {
  display: grid;
  gap: 6px;
  padding: 24px 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.proof-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--brand);
}

.proof-card__num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.proof-card__num small {
  font-size: 0.45em;
  color: var(--brand);
  font-weight: 700;
}

.proof-card strong {
  color: var(--ink);
  font-size: 1.04rem;
  font-weight: 800;
}

.proof-card span:not(.proof-card__num) {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ----- City grid -------------------------------------------------------- */

.city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.city-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(155deg, white 0%, var(--surface) 100%);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.city-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.city-card span {
  display: block;
  color: var(--brand);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.city-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  line-height: 1.25;
  font-size: 1.06rem;
  font-weight: 800;
}

.city-card em {
  display: block;
  margin-top: auto;
  padding-top: 12px;
  color: var(--brand);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 700;
}

/* ----- Visual showcase -------------------------------------------------- */

.visual-showcase {
  padding-block: clamp(56px, 7vw, 96px);
  background: #0a0d12;
  color: white;
  overflow: hidden;
}

.visual-showcase h2,
.visual-showcase p {
  color: white;
}

.visual-showcase .eyebrow {
  background: rgba(242, 183, 5, 0.16);
  color: var(--accent);
}

.visual-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.visual-showcase__head p:not(.eyebrow) {
  color: #cfd8e3;
  margin: 0;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(220px, 22vw);
  gap: 14px;
}

.visual-tile {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1f2937;
}

.visual-tile--large {
  grid-row: span 2;
}

.visual-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.visual-tile:hover img {
  transform: scale(1.05);
}

/* ----- Media split ------------------------------------------------------- */

.media-split img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 1.4 / 1;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* ----- Lists ------------------------------------------------------------- */

.check-list {
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.96rem;
}

.check-list li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  background: var(--success);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px white;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.feature-list > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.feature-list > div:hover {
  border-color: var(--brand);
  transform: translateX(2px);
}

.feature-list span {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 7px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(201, 31, 47, 0.12);
}

.feature-list p {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  min-height: 64px;
  padding: 18px 18px 18px 70px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 600;
  counter-increment: step;
  transition: border-color var(--transition);
}

.steps li:hover {
  border-color: var(--brand);
}

.steps li::before {
  position: absolute;
  top: 14px;
  left: 16px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  content: counter(step);
  background: var(--brand);
  border-radius: 50%;
  font-size: 0.96rem;
  font-weight: 900;
  box-shadow: 0 6px 14px rgba(201, 31, 47, 0.3);
}

.steps--inline li {
  display: grid;
  gap: 4px;
}

.steps--inline strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.steps--inline span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.92rem;
}

.section--image .steps li {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: white;
}

.section--image .steps li:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.section--image .steps--inline strong {
  color: white;
}

.section--image .steps--inline span {
  color: rgba(255, 255, 255, 0.7);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 4px;
}

.tag-list li {
  padding: 7px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

/* ----- FAQ -------------------------------------------------------------- */

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

details[open] {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  color: var(--ink);
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--brand);
  transition: transform var(--transition), background var(--transition);
}

details[open] summary::after {
  content: "−";
  background: var(--brand-light);
  border-color: var(--brand);
}

details p {
  padding: 0 22px 22px;
  margin: 0;
}

/* ----- SEO content blocks ----------------------------------------------- */

.seo-content {
  background: white;
}

.seo-grid {
  display: grid;
  gap: 24px;
}

.seo-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 1fr);
  gap: 14px 36px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.seo-block:first-child {
  border-top: none;
  padding-top: 0;
}

.seo-block .eyebrow {
  grid-row: span 4;
  align-self: start;
}

.seo-block h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--ink);
  font-weight: 800;
}

.seo-block p {
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.seo-block .check-list {
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin-top: 8px;
}

/* ----- CTA band --------------------------------------------------------- */

.cta-band {
  padding-block: 50px;
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: white;
}

.cta-band .eyebrow {
  background: rgba(255, 255, 255, 0.16);
}

.cta-band p {
  max-width: 660px;
  margin-bottom: 0;
}

/* ----- Contact page ---------------------------------------------------- */

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card h2 {
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  overflow-wrap: anywhere;
  color: var(--ink);
}

.contact-card .btn,
.contact-card .btn--ghost-dark {
  margin-top: auto;
  align-self: flex-start;
}

.contact-card--primary {
  background: linear-gradient(165deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: white;
  border-color: var(--ink);
}

.contact-card--primary:hover {
  border-color: var(--accent);
}

.contact-card--primary h2,
.contact-card--primary p {
  color: white;
}

.contact-card--primary p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-card--primary .eyebrow {
  color: var(--accent);
  background: rgba(242, 183, 5, 0.16);
}

.contact-card--primary .btn--inverse,
.contact-card--primary .btn {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

.hours-list {
  display: grid;
  gap: 8px;
}

.hours-list > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
}

.hours-list span {
  color: var(--muted);
}

.hours-list strong {
  color: var(--ink);
}

/* ----- Legal ----------------------------------------------------------- */

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  color: var(--ink);
}

.legal-content p {
  color: var(--text);
}

.legal-content a {
  color: var(--brand);
  font-weight: 700;
}

/* ----- Footer ---------------------------------------------------------- */

.site-footer {
  padding-block: 56px 28px;
  color: #cfd8e3;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer-brand p {
  color: #aeb8c5;
  margin-top: 14px;
  font-size: 0.92rem;
}

.footer-meta {
  margin-top: 14px !important;
  font-size: 0.82rem !important;
  color: #889299 !important;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text small {
  color: white;
}

.brand--footer .brand__text small {
  color: #aeb8c5;
}

.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: white;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: #cfd8e3;
  font-size: 0.94rem;
  transition: color var(--transition);
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom small {
  color: #889299;
  font-size: 0.82rem;
}

/* ----- Mobile call ----------------------------------------------------- */

.mobile-call {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 30;
  display: none;
}

.mobile-call a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  color: white;
  background: var(--brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* ----- Responsive ------------------------------------------------------ */

@media (max-width: 1100px) {
  .cards--services,
  .cards--compact,
  .contact-grid,
  .city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .lead-copy {
    position: static;
  }

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

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
  }

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

  .nav-menu > a {
    padding: 12px 14px;
  }

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

@media (max-width: 760px) {
  body {
    padding-bottom: 84px;
  }

  .topbar {
    display: none;
  }

  .navbar {
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand__text small {
    display: none;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 540px;
  }

  .hero__content {
    padding-block: 64px 80px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-trust span {
    min-height: 60px;
  }

  .visual-showcase__head,
  .visual-grid {
    grid-template-columns: 1fr;
  }

  .visual-grid {
    grid-auto-rows: 240px;
  }

  .visual-tile--large {
    grid-row: span 1;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .split,
  .media-split,
  .two-columns,
  .contact-grid,
  .lead-grid,
  .cards--services,
  .cards--compact,
  .city-grid,
  .footer-grid,
  .trust-grid,
  .check-list--two {
    grid-template-columns: 1fr;
  }

  .form-row,
  .seo-block,
  .seo-block .check-list {
    grid-template-columns: 1fr;
  }

  .seo-block .eyebrow,
  .seo-block .check-list {
    grid-column: auto;
  }

  .hours-list > div {
    flex-direction: column;
    gap: 4px;
  }

  .city-card {
    min-height: 130px;
  }

  .cta-band__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-call {
    display: block;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .service-card > div,
  .mini-card,
  .contact-card,
  .panel {
    padding: 20px;
  }

  .lead-form {
    padding: 22px;
  }

  .seo-block {
    padding: 26px 0;
  }
}

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

  .hero__media img {
    animation: none;
    transform: none;
  }
}
