:root {
  color-scheme: light;
  --ink: #151922;
  --muted: #626d7b;
  --paper: #f6f7f4;
  --surface: #ffffff;
  --line: #d9dfdc;
  --accent: #c72f38;
  --green: #1f6d63;
  --warm: #e9c46a;
  --dark: #121922;
  --shadow: 0 24px 70px rgba(18, 25, 34, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Tahoma, Verdana, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 16px 64px;
  background: rgba(246, 247, 244, .94);
  border-bottom: 1px solid rgba(217, 223, 220, .9);
  backdrop-filter: blur(14px);
}

.brand,
.phone-link,
.button,
.info-strip a {
  text-decoration: none;
}

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

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
  box-shadow: inset 0 -5px 0 var(--accent);
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 900;
}

.brand small,
.eyebrow,
.info-strip span,
.service-grid span,
.facts span {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 26px;
  color: #334155;
  font-size: .94rem;
  font-weight: 900;
}

nav a {
  text-decoration: none;
}

.phone-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  padding: 0 17px;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .9fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 79px);
  padding: 70px 64px 44px;
  background:
    linear-gradient(115deg, rgba(31, 109, 99, .09), transparent 34%),
    radial-gradient(circle at 90% 12%, rgba(233, 196, 106, .42), transparent 30%);
}

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

.eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  color: var(--green);
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

h1 {
  margin-bottom: 24px;
  font-size: 5.9rem;
  line-height: .92;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.55rem;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.lead {
  max-width: 650px;
  color: #344054;
  font-size: 1.24rem;
  line-height: 1.68;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--accent);
}

.button.secondary {
  color: var(--dark);
  background: #fff;
  border-color: var(--line);
}

.hero-photo {
  position: relative;
  margin: 0;
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-photo figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 14px 16px;
  color: var(--dark);
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -8px 64px 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(18, 25, 34, .08);
}

.info-strip a {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 24px;
  background: #fff;
}

.info-strip strong {
  overflow-wrap: anywhere;
  font-size: 1.08rem;
}

.section {
  padding: 96px 64px;
}

.services {
  background: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .85fr);
  gap: 44px;
  align-items: end;
}

.section-heading p:last-child,
.trust-copy p,
.process-list p,
.location p,
.contact-copy p,
.form-note {
  color: var(--muted);
  line-height: 1.65;
}

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

.service-grid article {
  min-height: 220px;
  padding: 28px;
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--accent);
}

.service-grid p {
  color: var(--muted);
  line-height: 1.62;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  color: #fff;
  background: var(--dark);
}

.trust .eyebrow {
  color: #9ed6cd;
}

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

.trust-copy p {
  color: rgba(255, 255, 255, .74);
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
}

.facts div {
  min-height: 160px;
  padding: 24px;
  background: rgba(255, 255, 255, .07);
}

.facts span {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .64);
}

.facts strong {
  display: block;
  font-size: 1.18rem;
  line-height: 1.32;
}

.process {
  background: #fff;
}

.section-heading.compact {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.process-list article {
  padding: 26px 0;
  border-top: 3px solid var(--warm);
}

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

.text-link {
  color: var(--green);
  font-weight: 900;
}

.map-frame {
  min-height: 380px;
  overflow: hidden;
  background: #eef2f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .72fr);
  gap: 56px;
  align-items: start;
  background: #eef2ef;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  font-weight: 900;
}

.contact-list li {
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(98, 109, 123, .22);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-size: .94rem;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cbd5df;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin-bottom: 0;
  font-size: .92rem;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 24px 64px;
  color: rgba(255, 255, 255, .76);
  background: var(--dark);
}

footer strong,
footer a {
  color: #fff;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr auto;
    padding: 13px 22px;
  }

  nav {
    display: none;
  }

  .hero,
  .section-heading,
  .section-heading.compact,
  .trust,
  .location,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 48px 22px 32px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .info-strip,
  .service-grid,
  .facts,
  .process-list {
    grid-template-columns: 1fr;
  }

  .info-strip {
    margin: 0 22px;
  }

  .section {
    padding: 78px 22px;
  }

  footer {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }
}

@media (max-width: 640px) {
  .brand small {
    display: none;
  }

  .phone-link {
    width: 46px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    position: relative;
  }

  .phone-link::after {
    content: "☎";
    position: absolute;
    color: #fff;
    font-size: 1.08rem;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-photo figcaption {
    position: static;
    margin-top: 10px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 290px;
  }

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