:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f7f6f3;
  --color-bg-warm: #fbfaf7;
  --color-text: #202327;
  --color-muted: #626a72;
  --color-border: #dedbd4;
  --color-red: #b61f2d;
  --color-red-dark: #8f1723;
  --color-red-soft: #f8e6e8;
  --color-green-muted: #42675d;
  --color-shadow: rgba(32, 35, 39, 0.14);
  --container: 1180px;
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--color-red-dark);
}

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

:focus-visible {
  outline: 3px solid rgba(182, 31, 45, 0.42);
  outline-offset: 3px;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  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;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(222, 219, 212, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(222, 219, 212, 0.9);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(32, 35, 39, 0.12);
}

.brand-name {
  display: block;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.15;
}

.brand-location {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.2;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nav a,
.text-link {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--color-red-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 14px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle__lines {
  position: relative;
  font-size: 0;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle__lines::before {
  top: -7px;
}

.menu-toggle__lines::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
  transform: translateY(7px) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
  opacity: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button--large {
  min-height: 50px;
  padding-inline: 22px;
}

.button--primary {
  background: var(--color-red);
  color: #fff;
  box-shadow: 0 12px 22px rgba(182, 31, 45, 0.18);
}

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

.button--secondary {
  background: #fff;
  color: var(--color-red-dark);
  border-color: rgba(182, 31, 45, 0.28);
}

.button--secondary:hover {
  border-color: var(--color-red);
  color: var(--color-red-dark);
}

.button--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(32, 35, 39, 0.18);
}

.button--ghost:hover {
  color: var(--color-red-dark);
  border-color: rgba(182, 31, 45, 0.34);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 35%, rgba(255, 255, 255, 0.45) 56%, rgba(255, 255, 255, 0.05) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.2) 100%);
}

.hero__content {
  min-height: 680px;
  display: flex;
  align-items: center;
  padding-block: 96px 78px;
}

.hero__panel {
  width: min(100%, 610px);
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 60px rgba(32, 35, 39, 0.14);
  backdrop-filter: blur(10px);
}

.hero h1,
.section h2,
.final-cta h2 {
  margin: 0;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 590px;
  font-size: 56px;
}

.hero__lead {
  margin: 22px 0 0;
  max-width: 570px;
  color: #3b4148;
  font-size: 20px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__facts {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(160px, 0.55fr);
  gap: 14px;
  margin: 32px 0 0;
}

.hero__fact {
  padding-top: 16px;
  border-top: 1px solid rgba(32, 35, 39, 0.16);
}

.hero__fact-label {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__fact-value {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  font-weight: 750;
}

.quick-actions {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

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

.quick-card {
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(222, 219, 212, 0.94);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 36px rgba(32, 35, 39, 0.1);
  text-decoration: none;
}

.quick-card:hover {
  color: var(--color-text);
  border-color: rgba(182, 31, 45, 0.35);
}

.quick-card__title {
  display: block;
  margin-bottom: 8px;
  color: var(--color-red-dark);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.2;
}

.quick-card__text {
  display: block;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.35;
}

.section {
  padding-block: 92px;
}

.section--white {
  background: #fff;
}

.section--tinted {
  background: var(--color-bg-soft);
}

.section--trust {
  background: var(--color-text);
  color: #fff;
}

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

.section h2,
.final-cta h2 {
  font-size: 42px;
}

.section-heading p,
.process-intro p,
.location-copy p,
.trust-layout > div:first-child p,
.final-cta p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.service-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-red);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(32, 35, 39, 0.06);
}

.service-card h3,
.process-list h3,
.trust-grid h3,
.map-placeholder h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.22;
}

.service-card p,
.process-list p,
.trust-grid p,
.map-placeholder p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

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

.process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  min-height: 126px;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-red-soft);
  color: var(--color-red-dark);
  font-weight: 850;
}

.location-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 6px;
  width: min(100%, 430px);
  margin: 28px 0 0;
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg-warm);
  font-style: normal;
}

.contact-card strong {
  font-size: 19px;
}

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

.map-panel {
  min-height: 430px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-soft);
  box-shadow: 0 18px 40px rgba(32, 35, 39, 0.08);
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 430px;
  padding: 36px;
  text-align: center;
}

.map-placeholder > div {
  max-width: 430px;
}

.map-placeholder::before {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #fff 0 18%, var(--color-red) 19% 34%, transparent 35%),
    var(--color-red-soft);
}

.map-frame {
  display: block;
  width: 100%;
  min-height: 430px;
  border: 0;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 56px;
  align-items: start;
}

.section--trust h2 {
  color: #fff;
}

.section--trust .trust-layout > div:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

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

.trust-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trust-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.final-cta {
  background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
  color: #fff;
}

.final-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.75fr);
  gap: 36px 52px;
  align-items: start;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.8);
}

.opening-note {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-size: 15px;
  font-weight: 750;
}

.final-cta .button--primary {
  background: #fff;
  color: var(--color-red-dark);
  box-shadow: none;
}

.final-cta .button--secondary,
.final-cta .button--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.final-cta .button--primary:hover,
.final-cta .button--secondary:hover,
.final-cta .button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

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

.contact-details p {
  min-height: 92px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  font-size: 15px;
}

.contact-details strong {
  display: block;
  color: #fff;
}

.site-footer {
  padding-block: 34px;
  background: #14171a;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(240px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.site-footer strong {
  color: #fff;
}

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

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  object-fit: cover;
}

.site-footer p {
  margin: 4px 0;
}

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

.footer-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

@media (max-width: 1040px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand-name,
  .brand-location {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    flex-direction: column;
    gap: 0;
    padding: 10px 0 18px;
    border-top: 1px solid var(--color-border);
  }

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

  .nav a {
    padding: 13px 2px;
    font-size: 18px;
  }

  .header-actions {
    display: none;
  }

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

  .process-layout,
  .location-layout,
  .trust-layout,
  .final-cta__inner {
    grid-template-columns: 1fr;
  }

  .process-intro {
    position: static;
  }

  .location-layout {
    gap: 34px;
  }
}

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

  .site-header {
    position: sticky;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

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

  .brand-location {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    background: var(--color-bg-warm);
  }

  .hero__image {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 340px;
    object-position: 100% center;
    transform: scale(1.16);
    transform-origin: right center;
  }

  .hero__scrim {
    display: none;
  }

  .hero__content {
    min-height: 0;
    display: block;
    padding-block: 0 44px;
  }

  .hero__panel {
    width: auto;
    margin-top: -52px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.96);
    max-width: 100%;
  }

  .hero h1 {
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .hero__lead {
    font-size: 17px;
  }

  .hero__actions,
  .process-actions,
  .location-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button,
  .button--large {
    width: 100%;
  }

  .hero__facts,
  .quick-actions__grid,
  .service-grid,
  .trust-grid,
  .contact-details,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions {
    margin-top: 0;
    padding-top: 18px;
    background: #fff;
  }

  .quick-card {
    min-height: 96px;
  }

  .section {
    padding-block: 64px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  .section-heading p,
  .process-intro p,
  .location-copy p,
  .trust-layout > div:first-child p,
  .final-cta p {
    font-size: 16px;
  }

  .service-card,
  .trust-grid article {
    min-height: auto;
    padding: 22px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    min-height: 0;
    padding: 20px;
  }

  .process-list span {
    width: 38px;
    height: 38px;
  }

  .map-panel,
  .map-placeholder,
  .map-frame {
    min-height: 350px;
  }
}

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

  .brand {
    gap: 9px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero__panel {
    padding: 22px;
  }

  .hero h1 {
    font-size: 31px;
  }
}

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