:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5a665f;
  --line: #dbe2dd;
  --paper: #f7f5ef;
  --panel: #ffffff;
  --accent: #0e6f4d;
  --accent-dark: #0a5139;
  --gold: #d99f31;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image {
  background: url("hero-property.png") center / cover no-repeat;
  transform: scale(1.02);
}

.hero__shade {
  background: linear-gradient(90deg, rgba(15, 25, 20, .82), rgba(15, 25, 20, .48) 48%, rgba(15, 25, 20, .22));
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
}

.hero__copy {
  color: #fff;
  max-width: 690px;
}

.brand-logo {
  display: block;
  width: min(285px, 72%);
  margin: 0 0 22px;
  border: 1px solid rgba(217, 159, 49, .42);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .35);
  opacity: .98;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: .96;
  letter-spacing: 0;
}

.lede {
  max-width: 610px;
  margin: 22px 0 0;
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.proof span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 700;
  font-size: .92rem;
}

.lead-form {
  background: var(--panel);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.form-header {
  margin-bottom: 20px;
}

.form-header p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.form-header span,
.privacy {
  color: var(--muted);
  font-size: .92rem;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  font-size: .9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(14, 111, 77, .18);
  border-color: var(--accent);
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-form button {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 14px 18px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.lead-form button:hover {
  background: var(--accent-dark);
}

.privacy {
  margin: 12px 0 0;
  line-height: 1.4;
}

.process {
  background: #fff;
}

.process__inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.process article,
.fit {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.process strong {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e7f1ec;
  color: var(--accent-dark);
}

.process h2,
.fit h2 {
  margin: 15px 0 8px;
  font-size: 1.35rem;
}

.process p,
.fit li {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.fit {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 52px 0 66px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
}

.fit ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  list-style: none;
}

.fit li {
  padding-left: 20px;
  position: relative;
}

.fit li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

dialog {
  width: min(620px, calc(100% - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
}

dialog::backdrop {
  background: rgba(0, 0, 0, .48);
}

.dialog-card {
  padding: 24px;
  position: relative;
}

.dialog-card h2 {
  margin: 0 0 8px;
}

.dialog-card p {
  color: var(--muted);
  line-height: 1.5;
}

.close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.confirmation-card {
  padding: 42px 30px 30px;
  text-align: center;
}

.confirmation-card p {
  margin: 0;
}

.google-sink {
  display: none;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__shade {
    background: linear-gradient(180deg, rgba(15, 25, 20, .82), rgba(15, 25, 20, .5));
  }

  .hero__content,
  .fit {
    grid-template-columns: 1fr;
  }

  .hero__content {
    gap: 30px;
    padding-top: 42px;
  }

  .lead-form {
    max-width: 560px;
  }

  .brand-logo {
    width: min(260px, 70%);
  }

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

@media (max-width: 620px) {
  h1 {
    font-size: 2.55rem;
  }

  .field-grid,
  .fit ul {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 18px;
  }
}
