:root {
  --ink: #171715;
  --muted: #66635e;
  --paper: #f6f3ed;
  --panel: #fff;
  --line: #ddd7cd;
  --dark: #20201e;
  --dark-2: #30302d;
  --red: #c6312b;
  --red-dark: #9e2723;
  --amber: #dfa13b;
  --green: #47705a;
  --shadow: 0 20px 54px rgba(24, 22, 18, 0.14);
  --radius: 8px;
  --header-h: 96px;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: 920px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.95;
}

h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

p {
  line-height: 1.6;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 8px clamp(18px, 4vw, 58px);
  color: #fff;
  background: rgba(22, 22, 20, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  background: rgba(22, 22, 20, 0.97);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 330px;
  height: 86px;
  object-fit: contain;
}

.brand-text {
  display: none;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 19px;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  padding: 10px 11px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 5px;
  transition: color 150ms ease, background 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.header-phones {
  display: grid;
  gap: 6px;
  justify-items: stretch;
}

.header-phone,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.header-phone,
.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 12px 28px rgba(198, 49, 43, 0.26);
}

.header-phone {
  min-height: 36px;
  padding: 8px 12px;
  font-size: 14px;
  white-space: nowrap;
}

.header-phone:hover,
.button.primary:hover {
  transform: translateY(-1px);
  background: var(--red-dark);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.09);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.17);
}

.button.light {
  color: var(--ink);
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.page-hero {
  position: relative;
  min-height: min(720px, 90vh);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-h) + 70px) clamp(18px, 5vw, 74px) 38px;
  color: #fff;
  background: var(--dark);
}

.page-hero > picture,
.page-hero > picture > img,
.page-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero > picture > img {
  object-fit: cover;
  object-position: center;
}

.page-hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 12, 11, 0.94) 0%, rgba(12, 12, 11, 0.7) 44%, rgba(12, 12, 11, 0.12) 78%),
    linear-gradient(0deg, rgba(12, 12, 11, 0.78), transparent 48%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-lead {
  width: min(730px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(800px, 100%);
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
}

.hero-facts span {
  padding: 15px 16px;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(18, 18, 17, 0.62);
  font-size: 13px;
  line-height: 1.35;
}

.hero-facts strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 18px;
}

.breadcrumbs {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--red);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading > p,
.sticky-intro > p,
.rich-text p {
  color: var(--muted);
  font-size: 17px;
}

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

.direction-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.direction-card:hover {
  transform: translateY(-3px);
  border-color: #c8bba6;
  box-shadow: var(--shadow);
}

.card-number {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.direction-card h3 {
  margin-top: 28px;
  font-size: 26px;
}

.direction-card p {
  margin: 12px 0;
  color: var(--muted);
}

.card-link {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 900;
}

.trust-layout,
.two-column {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.trust-list article {
  min-height: 190px;
  padding: 25px;
  background: #fff;
}

.trust-list strong {
  font-size: 20px;
}

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

.process-band,
.problem-band {
  background: var(--dark);
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.process-grid article {
  min-height: 190px;
  padding: 26px;
  background: var(--dark);
}

.process-grid span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3 {
  margin-top: 24px;
}

.process-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.reviews-band {
  background: #e9e2d7;
}

.rating-line {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.rating-line strong {
  font-size: 66px;
  line-height: 1;
}

.rating-line span {
  color: var(--muted);
  font-size: 18px;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

blockquote {
  margin: 0;
  padding: 25px;
  background: #fff;
  border-left: 4px solid var(--red);
}

blockquote p {
  margin: 0;
  font-size: 17px;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 56px max(18px, calc((100vw - 1180px) / 2));
  background: var(--amber);
}

.contact-cta h2 {
  max-width: 760px;
}

.contact-cta p:not(.eyebrow) {
  max-width: 700px;
  margin-bottom: 0;
}

.contact-cta .eyebrow {
  color: #6e4200;
}

.cta-actions {
  display: grid;
  gap: 10px;
  min-width: 240px;
}

.sticky-intro {
  position: sticky;
  top: 104px;
}

.check-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
}

.check-grid li {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.check-grid svg {
  color: var(--green);
}

.local-service {
  padding-top: 56px;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  padding: 10px 13px;
  color: var(--ink);
  font-weight: 800;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.problem-grid article {
  min-height: 210px;
  padding: 25px;
  background: var(--dark);
}

.problem-grid p {
  color: rgba(255, 255, 255, 0.62);
}

.faq {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
}

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

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

.faq summary {
  padding: 22px 32px 22px 0;
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
}

.faq details p {
  margin: -5px 0 22px;
  color: var(--muted);
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  background: #fff;
}

.image-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-right: 1px solid var(--line);
}

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

.catalog-grid article,
.story-grid article {
  min-height: 220px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-grid svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.catalog-grid h3 {
  margin-top: 24px;
}

.catalog-grid p,
.story-grid p {
  color: var(--muted);
}

.problem-band .rich-text p {
  color: rgba(255, 255, 255, 0.68);
}

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

.feature-row article {
  min-height: 310px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.feature-row span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.feature-row h2 {
  margin-top: 60px;
  font-size: 32px;
}

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

.rating-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 34px;
  align-items: center;
  margin-bottom: 44px;
}

.rating-hero > strong {
  font-size: clamp(78px, 12vw, 150px);
  line-height: 0.8;
  color: var(--red);
}

.rating-hero h2 {
  font-size: clamp(30px, 4vw, 48px);
}

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

.timeline article {
  display: grid;
  grid-template-columns: minmax(130px, 0.3fr) minmax(0, 1fr);
  gap: 36px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.timeline article:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline > article > strong {
  color: var(--red);
  font-size: 42px;
}

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

.contact-page {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-details article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 25px;
  background: #fff;
}

.contact-details span {
  color: var(--muted);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
}

.contact-details strong,
.contact-details a {
  font-size: 20px;
}

.contact-details a {
  color: var(--red);
  font-weight: 900;
}

.contact-details small {
  color: var(--muted);
}

.route-panel {
  min-height: 421px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 30px;
  color: #fff;
  background:
    linear-gradient(rgba(27, 27, 24, 0.34), rgba(27, 27, 24, 0.92)),
    url("/assets/images/hero-directions-1000.jpg") center/cover;
}

.route-panel > svg {
  width: 40px;
  height: 40px;
  color: var(--amber);
  margin-bottom: auto;
}

.route-panel h2 {
  font-size: 36px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 0.65fr));
  gap: 34px;
  padding: 46px clamp(18px, 5vw, 72px) 28px;
  color: #fff;
  background: #181816;
}

.site-footer > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-brand {
  font-size: 24px;
  font-weight: 900;
}

.site-footer p,
.site-footer a,
.site-footer address,
.site-footer span {
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
  line-height: 1.45;
}

.site-footer a:hover {
  color: #fff;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between;
  padding-top: 25px;
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.mobile-call {
  display: none;
}

.not-found {
  min-height: 70vh;
  padding: calc(var(--header-h) + 90px) 18px 80px;
  text-align: center;
}

.not-found h1 {
  max-width: none;
  color: var(--ink);
}

.not-found p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    padding: 14px 18px 20px;
    background: rgba(22, 22, 20, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-nav.is-open {
    display: grid;
    gap: 5px;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-phones {
    display: none;
  }

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

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

  .contact-cta {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    grid-template-columns: 1.3fr repeat(2, minmax(150px, 0.7fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 78px;
  }

  body {
    padding-bottom: 62px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand-logo {
    width: 210px;
    height: 62px;
  }

  .brand strong {
    font-size: 17px;
  }

  .page-hero {
    min-height: 700px;
    padding: calc(var(--header-h) + 48px) 18px 28px;
  }

  .page-hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 12, 11, 0.94), rgba(12, 12, 11, 0.68)),
      linear-gradient(0deg, rgba(12, 12, 11, 0.9), transparent 58%);
  }

  h1 {
    font-size: 36px;
  }

  .hero-lead {
    font-size: 17px;
  }

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

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

  .hero-facts span {
    padding: 11px 8px;
    font-size: 11px;
  }

  .hero-facts strong {
    font-size: 15px;
  }

  .section {
    width: calc(100% - 24px);
    padding: 62px 0;
  }

  .breadcrumbs {
    width: calc(100% - 24px);
  }

  .section-heading,
  .trust-layout,
  .two-column,
  .faq,
  .contact-page {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .direction-grid,
  .process-grid,
  .problem-grid,
  .catalog-grid,
  .story-grid,
  .feature-row,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .direction-card {
    min-height: 220px;
  }

  .sticky-intro {
    position: static;
  }

  .check-grid,
  .trust-list,
  .contact-details {
    grid-template-columns: 1fr;
  }

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

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

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

  .timeline article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .footer-legal {
    grid-column: auto;
    flex-direction: column !important;
  }

  .mobile-call {
    position: fixed;
    z-index: 40;
    inset: auto 0 0;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: var(--red);
    font-weight: 900;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
