:root {
  --green: #006c3a;
  --green-dark: #004c2a;
  --green-light: #eaf7f0;
  --yellow: #f7c400;
  --ink: #101510;
  --muted: #58625d;
  --line: #dfe6e2;
  --white: #ffffff;
  --shadow: 0 22px 54px rgba(16, 57, 36, .15);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.topbar__inner {
  min-height: 138px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 44px;
}

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

.brand img {
  width: 92px;
  height: 78px;
  object-fit: cover;
  object-position: 31% 50%;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  color: var(--green);
  font: 800 clamp(32px, 3.25vw, 46px)/.92 Montserrat, sans-serif;
  letter-spacing: 0;
}

.brand__text small {
  margin-top: 12px;
  font: 700 17px/1 Montserrat, sans-serif;
  letter-spacing: 6px;
}

.topbar__trust {
  display: grid;
  text-align: center;
  gap: 6px;
}

.topbar__trust strong {
  font-size: 16px;
}

.topbar__trust span {
  font-size: 14px;
}

.topbar__trust i {
  margin-left: 6px;
  color: var(--green);
}

.call-pill {
  min-width: 260px;
  min-height: 86px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(0, 108, 58, .45);
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 20px rgba(0, 108, 58, .08);
  transition: .2s ease;
}

.call-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(0, 108, 58, .16);
}

.call-pill > i {
  font-size: 38px;
}

.call-pill span {
  display: grid;
  line-height: 1.15;
}

.call-pill small {
  font-size: 13px;
  font-weight: 700;
}

.call-pill strong {
  font-size: 20px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 724px;
  background-color: #f8f5ef;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.78) 27%, rgba(255,255,255,0) 49%, rgba(255,255,255,.34) 100%),
    url("assets/bg-home.png");
  background-position:
    center top,
    calc(50% + 88px) top;
  background-size:
    cover,
    auto 790px;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.85));
  pointer-events: none;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 44% 40%, rgba(255,255,255,0) 0 43%, rgba(255,255,255,.08) 80%),
    linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.04));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 2;
  min-height: 724px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 414px);
  align-items: end;
  gap: 26px;
  padding-top: 130px;
}

.hero__content {
  align-self: center;
  grid-column: 1;
  min-width: 0;
  padding: 30px 0 42px;
}

.rating-chip {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--green-dark);
  background: rgba(237, 247, 241, .92);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .2px;
}

.rating-chip i,
.stars {
  color: #f5bd00;
}

.hero h1 {
  margin: 0;
  max-width: 600px;
  font: 800 clamp(48px, 5vw, 68px)/1.12 Montserrat, sans-serif;
  letter-spacing: 0;
}

.hero h1 span {
  color: var(--green);
}

.hero__subtitle {
  max-width: 500px;
  margin: 22px 0 26px;
  font-size: 22px;
  line-height: 1.45;
}

.trust-row {
  display: flex;
  align-items: stretch;
  margin: 36px 0 42px;
}

.trust-item {
  min-width: 120px;
  padding: 0 22px;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  border-right: 1px solid rgba(16, 21, 16, .16);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 76, 42, .14);
  font-size: 26px;
}

.trust-item strong {
  font-size: 13px;
  line-height: 1.3;
}

.hero-call {
  width: fit-content;
  min-width: 430px;
  min-height: 74px;
  padding: 16px 29px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #03884d);
  box-shadow: 0 12px 28px rgba(0, 108, 58, .24);
  font-size: 22px;
  font-weight: 800;
  transition: .2s ease;
}

.hero-call:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.availability {
  margin: 15px 0 0 42px;
  font-size: 17px;
}

.availability i {
  margin-right: 8px;
  color: var(--green);
  transform: rotate(90deg);
}

.hero__person {
  display: none;
}

.owner-photo-wrap {
  position: relative;
  width: 420px;
  max-width: none;
  height: 720px;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
}

.owner-photo-wrap::after {
  display: none;
}

.owner-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.14));
  transform: scale(1.28);
  transform-origin: bottom center;
}

.estimate-card {
  width: 100%;
  max-width: 414px;
  min-width: 0;
  grid-column: 2;
  justify-self: end;
  align-self: center;
  margin-bottom: 0;
  padding: 0 24px 23px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 10px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.estimate-card__ribbon {
  position: relative;
  width: calc(100% - 32px);
  margin: 31px auto 0;
  padding: 14px 18px;
  border-radius: 8px 8px 2px 2px;
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), #05864b);
  text-align: center;
  font: 800 20px/1.15 Montserrat, sans-serif;
  transform: translateY(-1px);
}

.estimate-card__ribbon::before,
.estimate-card__ribbon::after {
  content: "";
  position: absolute;
  bottom: -11px;
  width: 22px;
  height: 22px;
  background: #005d33;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.estimate-card__ribbon::before {
  left: 0;
}

.estimate-card__ribbon::after {
  right: 0;
}

.estimate-card > p {
  margin: 15px -24px 24px;
  padding: 23px 24px 0;
  border-top: 1px solid rgba(0,0,0,.08);
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.field {
  position: relative;
  display: block;
  margin-bottom: 17px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 64px;
  padding: 0 48px 0 15px;
  border: 1px solid #d8ddda;
  border-radius: 8px;
  outline: none;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 84px;
  padding-top: 14px;
  resize: vertical;
}

.field select {
  appearance: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 108, 58, .1);
}

.field > i {
  position: absolute;
  top: 50%;
  right: 17px;
  transform: translateY(-50%);
  color: #909994;
  pointer-events: none;
}

.field--textarea > i {
  top: 21px;
}

.submit-button {
  width: 100%;
  min-height: 68px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #09894e);
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 108, 58, .18);
  transition: .2s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.privacy-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: 19px 0 0 !important;
  color: #4b5650;
  font-size: 14px;
}

.privacy-note i {
  color: var(--green);
}

.form-message {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 60px 0;
}

.section h2 {
  margin: 0 0 34px;
  color: var(--green);
  text-align: center;
  font: 800 clamp(28px, 3vw, 38px)/1.2 Montserrat, sans-serif;
}

.reviews {
  background: linear-gradient(180deg, #fff, #f6fbf8);
}

.reviews-cta {
  display: none;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.review-card {
  min-height: 190px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.review-card:last-child {
  border-right: 0;
}

.review-source {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.google-g {
  font: 800 28px/1 Arial, sans-serif;
  color: #4285f4;
}

.review-source .fa-facebook {
  color: #1877f2;
  font-size: 28px;
}

.stars {
  letter-spacing: 2px;
  font-size: 18px;
}

.review-card p {
  min-height: 92px;
  margin: 0 0 12px;
  font-size: 15px;
}

.review-card strong {
  font-size: 14px;
}

.secondary-button {
  min-height: 46px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(0,108,58,.24);
  border-radius: 999px;
  color: var(--green-dark);
  background: #fff;
  font-weight: 700;
}

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

.services {
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e9e7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(18, 60, 39, .08);
  transition: .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 17px 34px rgba(18, 60, 39, .14);
}

.service-card > img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.service-card__icon {
  position: absolute;
  top: 125px;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  transform: translateX(-50%);
  font-size: 20px;
}

.service-card__body {
  min-height: 190px;
  padding: 40px 24px 26px;
  text-align: center;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 18px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.urgent-bar {
  color: #fff;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(135deg, #005d33, #007941 70%, #006337);
}

.urgent-bar__grid {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 1fr);
  align-items: center;
  gap: 0;
}

.urgent-main {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-right: 30px;
  border-right: 1px solid rgba(255,255,255,.25);
}

.urgent-phone-icon {
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 5px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 30px;
}

.urgent-main h2 {
  margin: 0 0 4px;
  color: var(--yellow);
  font-size: 22px;
}

.urgent-main p {
  margin: 0;
  font-size: 14px;
}

.urgent-main a {
  display: inline-block;
  margin-top: 5px;
  font-size: 30px;
  font-weight: 800;
}

.benefit {
  min-height: 115px;
  padding: 15px 25px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.benefit:last-child {
  border-right: 0;
}

.benefit > i {
  flex: 0 0 auto;
  margin-top: 4px;
  font-size: 26px;
}

.benefit div {
  display: grid;
  gap: 8px;
}

.benefit strong {
  font-size: 15px;
}

.benefit span {
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.platforms {
  padding: 26px 0;
  background: #fff;
}

.platforms__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(26px, 5vw, 58px);
  flex-wrap: wrap;
}

.platforms__inner > span {
  color: #7b847f;
}

.platforms__inner strong {
  font-size: 27px;
}

.platform-google { color: #4285f4; }
.platform-facebook { color: #1877f2; text-transform: lowercase; }
.platform-instagram { color: #111; font-family: cursive; }
footer {
  padding: 17px 20px;
  color: #fff;
  background: var(--green-dark);
  text-align: center;
  font-size: 12px;
}

footer p {
  margin: 0;
}

footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mobile-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  min-height: 54px;
  padding: 12px 20px;
  display: none;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(0,0,0,.25);
  font-weight: 800;
}

@media (max-width: 920px) {
  .topbar__inner {
    grid-template-columns: 1fr auto;
  }

  .topbar__trust {
    display: none;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .85fr);
    padding-bottom: 48px;
  }

  .hero__person {
    display: none;
  }

  .owner-photo-wrap {
    height: 535px;
  }

  .estimate-card {
    grid-column: 2;
  }

  .hero__content {
    grid-column: 1;
  }

  .urgent-bar__grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .benefit:last-child {
    display: none;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), 680px);
  }

  .topbar__inner {
    min-height: 84px;
  }

  .brand img {
    width: 70px;
    height: 52px;
  }

  .brand__text strong {
    font-size: 24px;
  }

  .brand__text small {
    margin-top: 5px;
    font-size: 10px;
    letter-spacing: 3.3px;
  }

  .call-pill {
    min-width: 0;
    padding: 12px 15px;
  }

  .call-pill span {
    display: none;
  }

  .call-pill > i {
    font-size: 24px;
  }

  .hero {
    min-height: auto;
    background-position: center top;
  }

  .hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    min-width: 0;
    padding: 118px 0 54px;
  }

  .hero__content,
  .estimate-card {
    grid-column: 1;
    min-width: 0;
  }

  .hero__content {
    text-align: center;
    padding: 0;
  }

  .rating-chip,
  .hero-call {
    margin-left: auto;
    margin-right: auto;
  }

  .hero h1 {
    max-width: 100%;
    letter-spacing: 0;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-row {
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
  }

  .hero__person {
    position: relative;
    left: auto;
    bottom: auto;
    grid-row: 2;
    width: min(100%, 330px);
    height: 410px;
    margin: -10px auto -58px;
    opacity: 1;
    z-index: 1;
  }

  .owner-photo-wrap {
    height: 410px;
    max-width: 300px;
  }

  .estimate-card {
    position: relative;
    z-index: 3;
    grid-row: 3;
    grid-column: 1;
    justify-self: center;
    max-width: 500px;
  }

  .review-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card:nth-child(2) {
    border-right: 0;
  }

  .review-card:nth-child(-n+2) {
    margin-bottom: 32px;
  }

  .urgent-bar__grid {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .urgent-main,
  .benefit {
    border-right: 0;
  }

  .benefit {
    min-height: auto;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,.14);
  }

  .benefit:last-child {
    display: flex;
  }

  .mobile-call {
    display: flex;
  }
}

@media (max-width: 560px) {
  .topbar__inner {
    gap: 10px;
  }

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

  .brand__text small {
    letter-spacing: 2.1px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.1;
  }

  .hero__subtitle {
    font-size: 15px;
    max-width: 300px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .trust-item:nth-child(3) {
    display: none;
  }

  .trust-item {
    min-width: 0;
    padding: 0 4px;
  }

  .trust-icon {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .trust-item strong {
    font-size: 8px;
  }

  .hero-call {
    min-width: 0;
    width: 100%;
    min-height: 64px;
    padding-inline: 14px;
    font-size: 15px;
    white-space: normal;
  }

  .availability {
    max-width: 100%;
    margin-left: 0;
    font-size: 14px;
  }

  .owner-photo-wrap {
    max-width: 260px;
  }

  .estimate-card {
    padding: 22px 16px 18px;
  }

  .estimate-card__ribbon {
    width: calc(100% - 16px);
    font-size: 15px;
  }

  .submit-button {
    font-size: 16px;
  }

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

  .review-card {
    min-height: auto;
    padding: 0 0 24px;
    margin-bottom: 24px !important;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-card:last-child {
    border-bottom: 0;
  }

  .review-card p {
    min-height: auto;
  }

  .urgent-main {
    align-items: flex-start;
  }

  .urgent-phone-icon {
    width: 65px;
    height: 65px;
  }

  .urgent-main a {
    font-size: 23px;
  }

  .mobile-call {
    display: none;
  }
}
