:root {
  --ivory: #fffaf2;
  --paper: #ffffff;
  --sage: #e8f0e6;
  --sage-deep: #cfddca;
  --sky: #eef4f5;
  --berry: #8a3f5d;
  --berry-dark: #6f2f49;
  --forest: #244d45;
  --forest-dark: #183a34;
  --ink: #293d39;
  --muted: #5d6f6a;
  --line: #d9e0d9;
  --focus: #d7892d;
  --shadow: 0 18px 48px rgba(36, 77, 69, 0.12);
  --radius: 24px;
  --font: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.08rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body,
input,
textarea,
button {
  font-family: var(--font);
}

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

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  color: var(--forest-dark);
  line-height: 1.08;
  letter-spacing: -0.026em;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.7rem, 4.15vw, 3.35rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2rem, 3.2vw, 2.55rem);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--forest-dark);
  color: #fff;
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.operator-bar {
  min-height: 31px;
  display: grid;
  place-items: center;
  padding: 0.35rem 1rem;
  background: var(--sage);
  color: #3f5b54;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.97);
}

.header-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 92px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto 96px;
  align-items: center;
  gap: 1.4rem;
}

.domain-mark {
  max-width: 310px;
  color: var(--forest-dark);
  font-size: 1.15rem;
  font-weight: 820;
  line-height: 1.08;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.domain-mark span {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.7vw, 1.65rem);
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #38564f;
  font-size: 0.91rem;
  font-weight: 730;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--berry-dark);
}

.awz-logo {
  justify-self: end;
  width: 90px;
  height: 60px;
  display: grid;
  place-items: center;
}

.awz-logo img {
  width: 90px;
  height: 60px;
  object-fit: contain;
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  padding: 11px;
  border: 1px solid #bfcac3;
  border-radius: 13px;
  background: var(--paper);
  cursor: pointer;
}

.menu-button span {
  height: 2px;
  display: block;
  margin-block: 5px;
  border-radius: 2px;
  background: var(--forest);
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #dfe7de;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 0.26rem 0.55rem;
  border-radius: 999px;
  background: rgba(24, 58, 52, 0.9);
  color: #fff;
  font-size: 0.69rem;
  font-weight: 750;
  line-height: 1.2;
}

.banner-image {
  height: 178px;
  margin-top: 1.4rem;
  margin-inline: auto;
  border-radius: 13px 30px 13px 30px;
}

.banner-image img {
  object-position: 50% 57%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2.2rem, 5vw, 5.4rem);
  padding-block: clamp(3.4rem, 6vw, 5.6rem);
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--berry-dark);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-intro {
  font-size: 1.16rem;
}

.hero-copy p:last-child {
  margin-bottom: 0;
}

.hero-image {
  height: 340px;
  border-radius: 30px 12px 30px 12px;
}

.hero-image img {
  object-position: 51% 48%;
}

.path-section {
  padding-block: clamp(3.8rem, 6vw, 5.8rem);
  background: linear-gradient(115deg, #f7e8e7 0%, #f8eee5 100%);
  border-block: 1px solid #ead8d1;
}

.path-heading {
  max-width: 660px;
  margin-bottom: 2rem;
}

.path-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1rem;
}

.path-link {
  min-height: 168px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 0.9rem;
  padding: 1.45rem;
  border: 1px solid #dfd7cf;
  border-radius: 20px 8px 20px 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(63, 73, 67, 0.06);
}

.path-link:hover {
  border-color: var(--berry);
  transform: translateY(-2px);
}

.path-primary {
  background: var(--berry-dark);
  color: #fff;
  border-color: var(--berry-dark);
}

.path-number {
  color: var(--berry);
  font-size: 0.78rem;
  font-weight: 850;
}

.path-primary .path-number,
.path-primary strong,
.path-primary small {
  color: #fff;
}

.path-link strong,
.path-link small {
  display: block;
}

.path-link strong {
  margin-bottom: 0.65rem;
  color: var(--forest-dark);
  font-size: 1.08rem;
  line-height: 1.25;
}

.path-link small {
  color: #5c6b67;
  font-size: 0.9rem;
  line-height: 1.5;
}

.path-arrow {
  align-self: end;
  color: var(--berry);
  font-size: 1.25rem;
  font-weight: 800;
}

.path-primary .path-arrow {
  color: #fff;
}

.owner-section {
  padding-block: clamp(4.5rem, 8vw, 7.4rem);
}

.owner-heading {
  max-width: 770px;
}

.owner-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding-block: 1.2rem 1.8rem;
  border-top: 1px solid var(--line);
}

.owner-columns p {
  margin-bottom: 0;
}

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.25rem;
  border: 2px solid transparent;
  border-radius: 12px 4px 12px 4px;
  font-size: 0.97rem;
  font-weight: 790;
  text-align: center;
  text-decoration: none;
}

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

.primary-button:hover {
  background: #582039;
}

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

.secondary-button:hover {
  background: var(--forest-dark);
}

.building-section {
  padding-block: clamp(4.2rem, 7vw, 6.5rem);
  background: var(--sage);
  border-block: 1px solid var(--sage-deep);
}

.building-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.4rem);
}

.building-image {
  height: 430px;
  border-radius: 12px 32px 12px 32px;
}

.building-image img {
  object-position: 50% 52%;
}

.building-copy > p:not(.eyebrow) {
  margin-bottom: 1.5rem;
}

.feature-list {
  margin-bottom: 0;
  border-top: 1px solid #bdcdbb;
}

.feature-list div {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 1.2rem;
  padding-block: 1rem;
  border-bottom: 1px solid #bdcdbb;
}

.feature-list dt {
  color: var(--forest-dark);
  font-weight: 800;
}

.feature-list dd {
  margin: 0;
  color: #4f625c;
}

.buyer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.4rem);
  padding-block: clamp(4.5rem, 8vw, 7rem);
}

.buyer-image {
  height: 410px;
  border-radius: 30px 12px 30px 12px;
}

.buyer-image img {
  object-position: 50% 48%;
}

.buyer-copy .button {
  margin-top: 0.45rem;
}

.trust-section {
  padding-block: clamp(3.5rem, 6vw, 5rem);
  background: var(--sky);
  border-block: 1px solid #d7e2e3;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: end;
  gap: 3rem;
}

.trust-copy p:last-child {
  margin-bottom: 0;
}

.trust-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid #d5dfdf;
  border-radius: 18px 7px 18px 7px;
  background: #fff;
}

.trust-values div {
  padding: 1.3rem 1rem;
  border-right: 1px solid #d5dfdf;
}

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

.trust-values dt {
  color: var(--forest-dark);
  font-size: 1.35rem;
  font-weight: 850;
}

.trust-values dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.contact-section {
  padding-block: clamp(4.4rem, 8vw, 7rem);
  background: linear-gradient(180deg, #fffaf2 0%, #f6e9e4 100%);
}

.contact-shell {
  max-width: 860px;
}

.contact-form {
  padding: clamp(1.3rem, 4vw, 2.7rem);
  border: 1px solid #eaded8;
  border-radius: 26px 10px 0 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin-bottom: 1.5rem;
}

.intent-fieldset {
  padding: 0;
  border: 0;
}

.intent-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.4rem;
}

.intent-options label {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem;
  border: 1px solid #cfd9d4;
  border-radius: 12px 4px 12px 4px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 740;
  line-height: 1.3;
}

.intent-options label[data-selected="true"] {
  border-color: var(--forest);
  background: var(--sage);
  box-shadow: inset 0 0 0 1px var(--forest);
}

.intent-options input,
.consent-row input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--berry-dark);
}

.field-row {
  margin-bottom: 1.05rem;
}

.field-row label {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--forest-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  min-height: 51px;
  padding: 0.78rem 0.9rem;
  border: 1px solid #c8d2cd;
  border-radius: 10px 4px 10px 4px;
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

input:hover,
textarea:hover {
  border-color: #809890;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #a52f40;
  box-shadow: 0 0 0 2px rgba(165, 47, 64, 0.15);
}

.personal-details {
  margin-block: 0.4rem 1.35rem;
  border-block: 1px solid #d9e0dc;
}

.personal-details summary {
  min-height: 51px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--forest-dark);
  font-size: 0.92rem;
  font-weight: 800;
  list-style: none;
}

.personal-details summary::-webkit-details-marker {
  display: none;
}

.personal-details[open] summary span {
  transform: rotate(45deg);
}

.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
  padding-top: 0.6rem;
}

.full-field {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  color: #52645f;
  font-size: 0.86rem;
  line-height: 1.5;
}

.consent-row input {
  margin-top: 0.1rem;
}

.consent-row a {
  color: var(--forest-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-underline-offset: 0.18em;
}

.submit-button {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 1.1rem;
  border: 0;
  border-radius: 12px 4px 12px 4px;
  background: var(--berry-dark);
  color: #fff;
  font-size: 1rem;
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(111, 47, 73, 0.2);
}

.submit-button:hover {
  background: #582039;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.privacy-note {
  margin: 0.8rem 0 0;
  color: #5e6e69;
  font-size: 0.82rem;
  text-align: center;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.35rem 0 0;
  color: var(--forest-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}

.personal-contact {
  padding: clamp(1.6rem, 4vw, 2.7rem);
  border: 1px solid #c8d8ce;
  border-top: 0;
  border-radius: 0 0 26px 10px;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.personal-contact h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.contact-name {
  margin-bottom: 1.15rem;
  font-weight: 750;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-links p {
  margin-bottom: 0;
}

.contact-links span,
.contact-links a {
  display: block;
}

.contact-links span {
  margin-bottom: 0.2rem;
  color: var(--berry-dark);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-links a {
  color: var(--forest-dark);
  font-weight: 820;
  overflow-wrap: anywhere;
  text-underline-offset: 0.2em;
}

.site-footer {
  padding-block: 1.5rem;
  background: var(--forest-dark);
  color: #edf4f1;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  color: #dce9e4;
  font-size: 0.82rem;
}

.footer-inner p {
  margin-bottom: 0;
  overflow-wrap: anywhere;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.1rem;
}

.footer-inner a {
  color: #fff;
  text-underline-offset: 0.2em;
}

@media (max-width: 1020px) {
  .header-shell {
    grid-template-columns: minmax(180px, 1fr) auto 82px;
    gap: 1rem;
  }

  .main-nav {
    gap: 0.9rem;
  }

  .main-nav a {
    font-size: 0.83rem;
  }

  .hero,
  .building-layout,
  .buyer-section {
    gap: 2.6rem;
  }

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

  .owner-columns p:last-child {
    grid-column: 1 / -1;
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .header-shell {
    position: relative;
    grid-template-columns: minmax(0, 1fr) 48px 82px;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    top: calc(100% - 7px);
    right: 82px;
    left: 0;
    display: none;
    padding: 0.75rem;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    padding-inline: 0.7rem;
    border-radius: 8px;
    white-space: normal;
  }

  .main-nav a:hover {
    background: var(--sage);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .hero-image {
    height: 310px;
  }

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

  .path-link {
    min-height: 112px;
    align-items: center;
  }

  .building-layout,
  .buyer-section {
    grid-template-columns: 1fr;
  }

  .building-image {
    order: 2;
    height: 390px;
  }

  .buyer-copy {
    order: 1;
  }

  .buyer-image {
    order: 2;
    height: 390px;
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 1.02rem;
  }

  .banner-image {
    height: 160px;
  }

  .owner-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .owner-columns p:last-child {
    grid-column: auto;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .header-shell {
    width: min(100% - 28px, 1180px);
  }

  .operator-bar {
    min-height: 34px;
    font-size: 0.69rem;
  }

  .header-shell {
    min-height: 79px;
    grid-template-columns: minmax(0, 1fr) 46px 72px;
    gap: 0.65rem;
  }

  .domain-mark {
    max-width: 158px;
    font-size: 0.92rem;
  }

  .menu-button {
    width: 46px;
    height: 46px;
  }

  .awz-logo,
  .awz-logo img {
    width: 70px;
    height: 47px;
  }

  .main-nav {
    right: 0;
  }

  .banner-image {
    height: 122px;
    margin-top: 1rem;
    border-radius: 10px 20px 10px 20px;
  }

  .banner-image img {
    object-position: 52% 56%;
  }

  .image-frame figcaption {
    right: 8px;
    bottom: 8px;
    font-size: 0.62rem;
  }

  .hero {
    padding-block: 2.7rem 3.4rem;
  }

  h1 {
    max-width: 14ch;
    font-size: clamp(2.15rem, 10vw, 2.38rem);
  }

  h2 {
    font-size: clamp(1.72rem, 8vw, 2rem);
  }

  .hero-intro {
    font-size: 1.06rem;
  }

  .hero-image {
    height: 238px;
    border-radius: 20px 8px 20px 8px;
  }

  .hero-image img {
    object-position: 50% 48%;
  }

  .path-section,
  .owner-section,
  .building-section,
  .buyer-section,
  .trust-section,
  .contact-section {
    padding-block: 3.6rem;
  }

  .path-link {
    min-height: 0;
    padding: 1.2rem;
    grid-template-columns: auto 1fr;
  }

  .path-arrow {
    display: none;
  }

  .building-image,
  .buyer-image {
    height: 250px;
  }

  .building-image img {
    object-position: 53% 50%;
  }

  .buyer-image img {
    object-position: 51% 47%;
  }

  .trust-values {
    grid-template-columns: 1fr;
  }

  .trust-values div {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: baseline;
    gap: 0.8rem;
    padding: 1rem;
    border-right: 0;
    border-bottom: 1px solid #d5dfdf;
  }

  .trust-values div:last-child {
    border-bottom: 0;
  }

  .intent-options,
  .personal-grid,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .intent-options label {
    min-height: 54px;
  }

  .full-field {
    grid-column: auto;
  }

  .contact-form {
    border-radius: 20px 8px 0 0;
  }

  .personal-contact {
    border-radius: 0 0 20px 8px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .section-shell,
  .header-shell {
    width: min(100% - 24px, 1180px);
  }

  .domain-mark {
    max-width: 137px;
    font-size: 0.86rem;
  }

  .hero-image {
    height: 222px;
  }

  .button {
    width: 100%;
  }

  .building-image,
  .buyer-image {
    height: 225px;
  }

  .contact-form,
  .personal-contact {
    padding: 1.2rem;
  }

  .submit-button {
    font-size: 0.94rem;
  }
}

@media (max-width: 350px) {
  body {
    font-size: 1rem;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) 44px 64px;
    gap: 0.45rem;
  }

  .domain-mark {
    max-width: 118px;
    font-size: 0.8rem;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .awz-logo,
  .awz-logo img {
    width: 63px;
    height: 42px;
  }

  h1 {
    font-size: 2rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .path-link {
    padding: 1.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
