:root {
  color-scheme: light;
  --bg: #eef4f2;
  --paper: #ffffff;
  --text: #1c2522;
  --muted: #56635f;
  --line: #c9d6d2;
  --green: #214f45;
  --green-2: #173931;
  --rust: #b45f2a;
  --steel: #d9e5e1;
  --dark: #17201d;
  --shadow: 0 22px 60px rgba(28, 37, 34, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 72px;
  border-bottom: 1px solid rgba(201, 214, 210, .88);
  background: rgba(238, 244, 242, .92);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 950;
}

.brand strong,
.brand small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-weight: 850;
}

nav {
  display: flex;
  gap: 28px;
  color: #4c5955;
  font-size: .95rem;
  font-weight: 850;
}

nav a,
.phone-link {
  text-decoration: none;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-weight: 950;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, .9fr);
  gap: 56px;
  align-items: center;
  padding: 70px 72px 46px;
}

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

.local-line,
.section-title span,
.trust-copy span,
.contact-info span {
  display: block;
  margin: 0 0 16px;
  color: var(--rust);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: 5.15rem;
  line-height: .95;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.1rem;
  line-height: 1.02;
}

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

.hero-copy p {
  max-width: 650px;
  color: #4f5f5a;
  font-size: 1.18rem;
  line-height: 1.72;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--green-2);
}

.button.secondary {
  border-color: var(--line);
  background: var(--paper);
  color: var(--text);
}

.button.dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .24);
}

.hero-photo {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--steel);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.hero-photo figcaption {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.hero-photo span,
.contact-strip span,
dt {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-photo strong {
  color: var(--text);
  font-size: 1.15rem;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 72px 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-strip a,
.contact-strip div {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 24px 26px;
  border-right: 1px solid var(--line);
  text-decoration: none;
}

.contact-strip div {
  border-right: 0;
}

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

.section {
  padding: 88px 72px;
}

.services {
  background: var(--paper);
}

.section-title {
  max-width: 820px;
  margin-bottom: 36px;
}

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

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

.service-grid p,
.trust-copy p,
.trust-list p,
.form-note {
  color: var(--muted);
  line-height: 1.68;
}

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

.trust-copy span,
.contact-info span {
  color: #e2a36c;
}

.trust-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, .72);
  font-size: 1.05rem;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.trust-list strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.05rem;
}

.trust-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(330px, .72fr);
  gap: 58px;
  align-items: start;
  background: #22322e;
  color: #fff;
}

.contact-info {
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

dl {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .64);
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.12rem;
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 28px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--text);
}

label {
  display: grid;
  gap: 8px;
  color: #36443f;
  font-weight: 850;
}

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

input:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(33, 79, 69, .16);
}

textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 72px;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--muted);
  font-size: .95rem;
}

.footer a {
  color: var(--green);
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-photo img {
    height: 420px;
  }

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

@media (max-width: 760px) {
  .topbar {
    min-height: 68px;
    padding: 10px 16px;
  }

  nav,
  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 178px;
  }

  .phone-link {
    width: 48px;
    min-width: 48px;
    padding: 0;
    font-size: 0;
  }

  .phone-link::before {
    content: "Tel";
    font-size: .86rem;
  }

  .hero {
    padding: 42px 16px 22px;
    gap: 28px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.1rem;
  }

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

  .hero-actions {
    display: grid;
  }

  .hero-photo img {
    height: 310px;
  }

  .contact-strip {
    grid-template-columns: 1fr;
    margin: 0 16px 44px;
  }

  .contact-strip a,
  .contact-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 22px;
  }

  .contact-strip div {
    border-bottom: 0;
  }

  .section {
    padding: 62px 16px;
  }

  .service-grid article,
  .contact-info,
  .contact-form {
    padding: 22px;
  }

  .footer {
    display: grid;
    padding: 24px 16px;
  }
}
