:root {
  --brand: #303b2b;
  --brand-deep: #263323;
  --accent: #add49b;
  --accent-muted: #a6b69b;
  --heading: #1a202c;
  --text: #475046;
  --white: #ffffff;
  --soft: #f6f7f4;
  --section-y: 88px;
  --section-y-lg: 96px;
  --section-y-mobile: 64px;
  --eyebrow-size: 13px;
  --eyebrow-weight: 800;
  --section-heading-size: clamp(2rem, 3vw, 3rem);
  --content-heading-size: clamp(1.45rem, 2vw, 2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

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

h1,
h2,
h3 {
  color: var(--heading);
  font-family: inherit;
}

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--heading);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.emergency-bar {
  color: var(--brand);
  background: var(--accent-muted);
  font-size: 13px;
  font-weight: 500;
}

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

.emergency-bar p {
  margin: 0;
}

.emergency-bar a {
  font-weight: 700;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.social-links a {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, opacity 160ms ease;
}

.social-links img {
  width: 100%;
  height: 100%;
  display: block;
  filter: brightness(0) invert(1);
}

.social-links a:hover,
.social-links a:focus-visible {
  opacity: 0.78;
  transform: translateY(-1px);
}

.main-header {
  background: var(--brand);
}

.main-header__inner {
  min-height: 238px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.brand {
  width: min(390px, 38vw);
  flex: 0 0 auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.primary-nav a {
  transition: color 160ms ease, background 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--accent);
}

.primary-nav a[aria-current="page"] {
  position: relative;
}

.primary-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -16px;
  height: 2px;
  background: currentColor;
}

.nav-quote {
  padding: 10px 24px;
  color: var(--white);
  background: var(--accent-muted);
  border-radius: 999px;
}

.primary-nav .nav-quote:hover,
.primary-nav .nav-quote:focus-visible {
  color: var(--brand);
  background: var(--accent);
}

.primary-nav .nav-quote[aria-current="page"] {
  color: var(--brand);
  background: var(--accent);
}

.primary-nav .nav-quote[aria-current="page"]::after {
  display: none;
}

.hero {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 96px 24px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: var(--brand);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(48, 59, 43, 0.36);
}

.hero__image,
.page-hero__image {
  position: absolute;

  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  margin-top: 28px;
}

.hero h1 {
  margin: 0 auto 30px;
  color: var(--white);
  font-size: clamp(2.4rem, 4vw, 4.05rem);
  line-height: 1.24;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.button {
  min-width: 198px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  padding: 10px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(48, 59, 43, 0.16);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.button--light {
  color: var(--brand);
  background: var(--white);
  border: 1px solid var(--white);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.button--dark {
  min-width: 160px;
  color: var(--white);
  background: var(--brand);
  border: 1px solid var(--brand);
  box-shadow: 0 3px 8px rgba(26, 32, 44, 0.14);
}

.button--dark:hover,
.button--dark:focus-visible {
  color: var(--brand);
  background: var(--white);
  border-color: var(--white);
}

.services-preview {
  padding: 80px 0;
  color: rgba(255, 255, 255, 0.88);
  background: var(--brand);
}

.services-preview__inner {
  width: min(100% - 48px, 940px);
  text-align: center;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-family: inherit;
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  line-height: 1.2;
  text-transform: uppercase;
}

.services-preview h2,
.service-band h2 {
  margin: 0 0 44px;
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.25;
  font-weight: 600;
}

.service-list {
  width: min(100%, 660px);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(235px, 280px));
  justify-content: center;
  gap: 28px 56px;
  list-style: none;
  text-align: left;
  font-size: 17px;
  font-weight: 500;
}

.service-list li {
  position: relative;
  padding-left: 24px;
}

.service-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.button--services {
  margin-top: 48px;
  min-width: 166px;
  color: var(--brand);
  background: var(--accent);
  border: 1px solid var(--accent);
}

.button--services:hover,
.button--services:focus-visible {
  color: var(--brand);
  background: var(--white);
  border-color: var(--white);
}

.project-gallery {
  padding: var(--section-y) 0;
  background: var(--white);
}

.section-heading {
  margin-bottom: 42px;
  text-align: center;
}

.section-heading p,
.quote-cta p {
  margin: 0 0 8px;
  color: var(--accent-muted);
  font-family: inherit;
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading h2,
.quote-cta h2 {
  margin: 0;
  color: var(--brand);
  font-family: inherit;
  font-size: var(--section-heading-size);
  line-height: 1.08;
  font-weight: 800;
}

.gallery-mosaic {
  width: min(100%, 1240px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.instagram-feed__action {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.instagram-feed__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.instagram-feed__link img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) saturate(100%) invert(19%) sepia(15%) saturate(696%) hue-rotate(64deg) brightness(94%) contrast(89%);
}

.instagram-feed__link:hover,
.instagram-feed__link:focus-visible {
  color: var(--accent-muted);
  transform: translateY(-1px);
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.gallery-item--tall {
  aspect-ratio: 402 / 601;
}

.gallery-item--wide {
  aspect-ratio: 404 / 268;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item img[src$="tree-health.webp"] {
  object-position: 46% 48%;
}

.gallery-item img[src$="chainsaw.webp"] {
  object-position: 50% 38%;
}

.gallery-item img[src$="tree-fertilization.webp"] {
  object-position: 68% 50%;
}

.gallery-item img[src$="post-01.webp"] {
  object-position: 54% 52%;
}

.gallery-item img[src$="post-02.webp"] {
  object-position: 52% 58%;
}

.gallery-item img[src$="post-03.webp"] {
  object-position: 45% 34%;
}

.gallery-item img[src$="post-04.webp"] {
  object-position: 55% 56%;
}

.gallery-item img[src$="post-05.webp"] {
  object-position: 52% 60%;
}

.gallery-item img[src$="post-06.webp"] {
  object-position: 55% 58%;
}

.gallery-item img[src$="post-07.webp"] {
  object-position: 58% 54%;
}

.testimonials-section {
  padding: var(--section-y) 0;
  background: var(--white);
  text-align: center;
}


.testimonials-grid {
  width: min(100%, 1120px);
  margin-inline: auto;
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 66px 78px;
}

.testimonial {
  position: relative;
  padding-top: 32px;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  left: 50%;
  color: var(--accent-muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 1;
  transform: translateX(-50%);
}

.testimonial blockquote {
  margin: 0;
}

.testimonial p {
  margin: 0;
  color: #4b5567;
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 500;
}

.testimonial footer {
  width: min(100%, 290px);
  margin: 22px auto 0;
  padding-top: 13px;
  display: grid;
  color: #8a8f8a;
  border-top: 1px solid #d9ded5;
  font-size: 14px;
  line-height: 1.25;
}

.testimonial strong {
  color: #444846;
  font-size: 17px;
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 80px 24px;
  overflow: hidden;
  color: var(--white);
  text-align: center;
  background: var(--brand);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(48, 59, 43, 0.28);
}

.page-hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.4rem);
  line-height: 1;
  font-weight: 800;
}

.page-hero--services {
  min-height: 330px;
}

.page-hero--about {
  min-height: 330px;
}

.service-band {
  padding: 64px 0;
  color: rgba(255, 255, 255, 0.9);
  background: var(--brand);
}

.service-band__inner {
  text-align: center;
}

.service-band h2 {
  margin-bottom: 34px;
}

.service-list--compact {
  width: min(100%, 660px);
  font-size: 15px;
  gap: 16px 56px;
}

.service-list--compact li::before {
  color: var(--accent);
}

.service-details {
  background: var(--white);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 0;
}

.service-detail--reverse .service-detail__media {
  order: 2;
}

.service-detail__media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.service-detail__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail__media img[src$="storm-emergency.webp"] {
  object-position: 48% 52%;
}

.service-detail__media img[src$="tree-health.webp"] {
  object-position: 42% 50%;
}

.service-detail__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 116px);
}

.service-detail__copy h2,
.contact-card h2 {
  margin: 0 0 18px;
  color: var(--heading);
  font-family: inherit;
  font-size: var(--content-heading-size);
  line-height: 1.18;
  font-weight: 700;
}

.service-detail__copy p,
.about-intro__content p {
  margin: 0;
  color: var(--heading);
  font-size: 15px;
  line-height: 1.7;
}

.service-detail__copy p + p,
.about-intro__content p + p {
  margin-top: 24px;
}

.about-intro {
  padding: var(--section-y-lg) 0;
  background: var(--white);
}

.about-intro__grid {
  width: min(100%, 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 84px);
}

.about-intro__image {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(26, 32, 44, 0.1);
}

.about-intro__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-intro__content {
  max-width: 670px;
}

.about-intro__content .section-kicker {
  color: var(--accent-muted);
}

.about-intro__content h2 {
  margin: 0 0 24px;
  color: var(--heading);
  font-family: inherit;
  font-size: var(--section-heading-size);
  line-height: 1.08;
  font-weight: 800;
}

.contact-section {
  padding: var(--section-y-lg) 0;
  background: var(--white);
}

.quote-intake {
  padding: 50px 0 76px;
  background: var(--white);
}

.quote-intake__grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: start;
}

.quote-intake__intro {
  padding-top: 4px;
}

.quote-intake__intro h1 {
  margin: 0 0 18px;
  color: var(--heading);
  font-size: clamp(1.65rem, 2.2vw, 2.25rem);
  line-height: 1.18;
  font-weight: 800;
}

.quote-intake__intro p {
  max-width: 330px;
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(56px, 8vw, 128px);
  align-items: start;
}

.contact-card h2 {
  margin-bottom: 36px;
  font-weight: 700;
}

.contact-list {
  display: grid;
  gap: 30px;
  margin: 0;
  color: var(--heading);
  font-style: normal;
  font-size: 18px;
}

.contact-list__item {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
}

.contact-list__item:first-child {
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(173, 212, 155, 0.24);
}

.contact-icon img {
  width: 23px;
  height: 23px;
  display: block;
}

.contact-list__item p {
  margin: 0;
}

.contact-list__item a:hover,
.contact-list__item a:focus-visible {
  color: var(--brand);
}

.contact-form {
  display: grid;
  gap: 22px;
  color: var(--heading);
  font-size: 16px;
  font-weight: 700;
}

.contact-form fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form legend {
  margin: 0 0 10px;
  padding: 0;
}

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

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

.address-fields__full {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.field-label {
  order: 2;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--heading);
  font: inherit;
  font-weight: 400;
  background: var(--white);
  border: 1px solid #c7d2df;
  border-radius: 2px;
}

.contact-form textarea {
  min-height: 142px;
  resize: vertical;
}

.quote-form {
  gap: 18px;
}

.quote-form textarea {
  min-height: 96px;
}

.quote-form textarea[name="additional-details"] {
  min-height: 116px;
}

.quote-options {
  display: grid;
  gap: 5px;
}

.quote-options legend {
  margin-bottom: 8px;
}

.quote-options label {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.quote-options input[type="checkbox"] {
  width: 14px;
  height: 14px;
  min-height: 0;
  flex: 0 0 auto;
  padding: 0;
  accent-color: var(--brand);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(173, 212, 155, 0.7);
  outline-offset: 2px;
  border-color: var(--brand);
}

.button--submit {
  min-width: 118px;
  width: fit-content;
  color: var(--white);
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 4px;
  cursor: pointer;
}

.button--submit:hover,
.button--submit:focus-visible {
  color: var(--brand);
  background: var(--accent);
  border-color: var(--accent);
}

.hidden-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  color: var(--white);
  background: var(--brand);
}

.thank-you-card {
  width: min(100%, 520px);
  text-align: center;
}

.thank-you-card img {
  width: 96px;
  margin: 0 auto 24px;
}

.thank-you-card h1 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  line-height: 1;
}

.thank-you-card p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
}

.quote-cta {
  padding: 80px 0;
  color: var(--white);
  text-align: center;
  background: var(--accent-muted);
}

.quote-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.quote-cta h2 {
  margin-bottom: 32px;
  color: var(--white);
}

.site-footer {
  color: rgba(255, 255, 255, 0.88);
  background: var(--brand);
}

.footer-grid {
  padding: 42px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.1fr;
  align-items: center;
  gap: 72px;
}

.footer-mark {
  width: 130px;
  justify-self: center;
}

.footer-mark img {
  width: 100%;
  height: auto;
}

.service-area {
  margin: 0;
  max-width: 390px;
  font-size: 15px;
  font-weight: 500;
}

.footer-contact {
  display: grid;
  gap: 5px;
  font-style: normal;
  font-size: 15px;
  font-weight: 500;
}

.footer-contact strong {
  color: var(--white);
  font-weight: 800;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--accent);
}

.footer-bottom {
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .main-header__inner {
    min-height: 190px;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 26px 0 30px;
  }

  .brand {
    width: min(380px, 78vw);
  }

  .primary-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
  }

  .hero {
    min-height: 520px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .service-area {
    margin-inline: auto;
  }

  .page-hero {
    min-height: 330px;
  }

  .about-intro__grid,
  .contact-grid,
  .quote-intake__grid {
    grid-template-columns: 1fr;
  }

  .about-intro__content h2 {
    text-align: left;
  }

  .service-detail,
  .service-detail--reverse {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-detail--reverse .service-detail__media {
    order: 0;
  }

  .service-detail__media img {
    min-height: 0;
  }

  .service-detail__media {
    aspect-ratio: 16 / 10;
  }

  .service-detail__copy {
    padding: 52px 32px 60px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
}

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

  .emergency-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .social-links {
    display: none;
  }

  .primary-nav {
    font-size: 14px;
  }

  .primary-nav a[aria-current="page"]::after {
    bottom: -7px;
  }

  .nav-quote {
    padding: 10px 16px;
  }

  .hero {
    min-height: 470px;
    padding: 72px 16px;
  }

  .hero__content {
    margin-top: 0;
  }

  .hero__actions {
    gap: 14px;
  }

  .button {
    min-width: min(100%, 220px);
  }

  .services-preview {
    padding: var(--section-y-mobile) 0;
  }

  .services-preview h2 {
    margin-bottom: 36px;
  }

  .service-list {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, 380px);
  }

  .project-gallery {
    padding: var(--section-y-mobile) 0;
  }

  .gallery-mosaic {
    grid-template-columns: 1fr;
  }

  .gallery-item--tall,
  .gallery-item--wide {
    aspect-ratio: 4 / 3;
  }

  .quote-cta {
    padding: var(--section-y-mobile) 0;
  }

  .testimonials-section {
    padding: var(--section-y-mobile) 0;
  }

  .testimonials-section h2 {
    margin-bottom: 0;
  }

  .testimonial p {
    font-size: 15px;
    line-height: 1.68;
  }

  .page-hero {
    min-height: 330px;
    padding: 64px 16px;
  }

  .page-hero--services {
    min-height: 330px;
  }

  .service-band {
    padding: 52px 0 56px;
  }

  .service-list--compact {
    font-size: 14px;
  }

  .about-intro,
  .contact-section,
  .quote-intake {
    padding: var(--section-y-mobile) 0;
  }

  .about-intro__grid,
  .contact-grid,
  .quote-intake__grid {
    gap: 36px;
  }

  .about-intro__content h2 {
    margin-bottom: 20px;
  }

  .service-detail__copy {
    padding: 42px 24px 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .address-fields {
    grid-template-columns: 1fr;
  }

  .contact-list {
    gap: 28px;
    font-size: 16px;
  }

  .contact-list__item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 16px;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
  }

  .contact-icon img {
    width: 20px;
    height: 20px;
  }
}
