:root {
  --petrol: #17656b;
  --petrol-dark: #104a50;
  --sky: #dceff1;
  --sky-soft: #eff8f8;
  --coral: #d86f59;
  --coral-dark: #a94634;
  --sand: #f0d89c;
  --cream: #fffaf0;
  --paper: #ffffff;
  --ink: #203236;
  --muted: #5b6b6e;
  --line: #d6e2df;
  --focus: #9e3c29;
  --shadow: 0 20px 55px rgba(24, 61, 65, 0.11);
  --radius-large: 26px;
  --radius-medium: 17px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 84% 6%, rgba(216, 111, 89, 0.09), transparent 28rem),
    linear-gradient(180deg, var(--cream) 0, #fff 38rem);
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--petrol-dark);
  border-radius: 9px;
  transform: translateY(-150%);
}

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

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

.operator-bar {
  min-height: 32px;
  padding: 5px 20px;
  color: #375156;
  background: var(--sky-soft);
  border-bottom: 1px solid #dae9e8;
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(214, 226, 223, 0.92);
  backdrop-filter: blur(12px);
}

.header-shell {
  display: grid;
  grid-template-columns: minmax(170px, auto) 1fr auto;
  align-items: center;
  min-height: 74px;
  gap: 28px;
}

.domain-mark {
  color: var(--petrol-dark);
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.05;
  text-decoration: none;
}

.domain-mark span::after {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 7px;
  content: "";
  background: var(--coral);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

.main-nav a {
  position: relative;
  color: #31494d;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 170ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.awz-logo {
  display: flex;
  align-items: center;
  min-width: 82px;
  min-height: 52px;
}

.awz-logo img {
  width: 82px;
  height: auto;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  color: var(--petrol-dark);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 3px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--sky);
}

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

.image-frame figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  padding: 3px 8px;
  color: #fff;
  background: rgba(15, 48, 52, 0.83);
  border-radius: 5px;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.banner-image {
  height: 126px;
  margin-top: 18px;
  border-radius: var(--radius-medium);
}

.banner-image img {
  object-position: center 49%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 52px;
  padding-top: 34px;
  padding-bottom: 48px;
}

.hero-copy {
  padding: 6px 0 10px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--petrol-dark);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(43px, 4.05vw, 54px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 3.1vw, 40px);
}

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

p {
  margin-top: 0;
  margin-bottom: 18px;
}

.hero-intro {
  color: #304b4f;
  font-size: 20px;
  line-height: 1.55;
}

.hero-image {
  height: 342px;
  border-radius: var(--radius-large) var(--radius-large) 64px var(--radius-large);
  box-shadow: var(--shadow);
}

.hero-image img {
  object-position: center 42%;
}

.path-section {
  padding: 57px 0;
  background: var(--sky-soft);
  border-block: 1px solid #dcebea;
}

.path-layout {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  align-items: start;
  gap: 58px;
}

.path-heading {
  position: sticky;
  top: 110px;
}

.path-heading h2 {
  max-width: 350px;
}

.path-links {
  border-top: 1px solid #bcd6d4;
}

.path-link {
  display: grid;
  grid-template-columns: 48px 1fr 30px;
  align-items: center;
  min-height: 104px;
  padding: 21px 18px 21px 6px;
  gap: 18px;
  color: var(--ink);
  border-bottom: 1px solid #bcd6d4;
  text-decoration: none;
  transition: background-color 170ms ease, padding-left 170ms ease;
}

.path-link:hover,
.path-link:focus-visible {
  padding-left: 15px;
  background: rgba(255, 255, 255, 0.72);
}

.path-primary {
  background: #fff;
}

.path-quiet {
  color: #485f63;
}

.path-number {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

.path-link strong {
  color: var(--petrol-dark);
  font-size: 20px;
  line-height: 1.3;
}

.path-link small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.path-arrow {
  color: var(--coral-dark);
  font-size: 25px;
  transition: transform 170ms ease;
}

.path-link:hover .path-arrow,
.path-link:focus-visible .path-arrow {
  transform: translateX(5px);
}

.buyer-section,
.owner-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 68px;
  padding-top: 90px;
  padding-bottom: 90px;
}

.buyer-copy,
.owner-copy {
  max-width: 540px;
}

.buyer-copy p:not(.eyebrow),
.owner-copy p:not(.eyebrow) {
  color: #465c60;
}

.buyer-image,
.owner-image {
  height: 390px;
  border-radius: 62px var(--radius-large) var(--radius-large) var(--radius-large);
  box-shadow: var(--shadow);
}

.buyer-image img {
  object-position: center center;
}

.owner-image {
  border-radius: var(--radius-large) 62px var(--radius-large) var(--radius-large);
}

.owner-image img {
  object-position: center 42%;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  margin-top: 8px;
  padding: 12px 22px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  transition: transform 170ms ease, background-color 170ms ease, color 170ms ease;
}

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

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

.primary-button:hover,
.primary-button:focus-visible {
  background: #873323;
}

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

.secondary-button:hover,
.secondary-button:focus-visible {
  background: var(--petrol-dark);
}

.home-types {
  position: relative;
  padding: 82px 0 88px;
  background: var(--cream);
  border-block: 1px solid #eee2c7;
}

.home-types::before {
  position: absolute;
  top: 0;
  left: max(20px, calc((100% - var(--shell)) / 2));
  width: min(170px, 30vw);
  height: 7px;
  content: "";
  background: linear-gradient(90deg, var(--coral), var(--sand));
  border-radius: 0 0 8px 8px;
}

.types-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  column-gap: 60px;
}

.types-heading .eyebrow {
  grid-column: 1;
}

.types-heading h2 {
  grid-column: 1;
  max-width: 430px;
}

.types-heading > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  max-width: 490px;
  color: var(--muted);
  font-size: 20px;
}

.type-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  border-top: 1px solid #d6c7a5;
  border-bottom: 1px solid #d6c7a5;
}

.type-list article {
  min-height: 225px;
  padding: 30px 30px 24px;
}

.type-list article + article {
  border-left: 1px solid #d6c7a5;
}

.type-list article > span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--petrol-dark);
  background: var(--sand);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.type-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.owner-section {
  padding-top: 96px;
  padding-bottom: 82px;
}

.change-section {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: start;
  margin-bottom: 94px;
  padding: 42px 50px;
  gap: 30px;
  background: var(--sky);
  border: 1px solid #c5dcdd;
  border-radius: var(--radius-large);
}

.change-section h2 {
  max-width: 730px;
}

.change-section p:last-child {
  max-width: 850px;
  margin-bottom: 0;
}

.change-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: #fff;
  background: var(--coral-dark);
  border-radius: 50%;
  font-size: 31px;
}

.trust-section {
  padding: 62px 0;
  color: #fff;
  background: var(--petrol-dark);
}

.trust-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 56px;
}

.trust-copy .eyebrow {
  color: #ffd7c9;
}

.trust-copy h2 {
  margin-bottom: 14px;
  color: #fff;
}

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

.trust-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-medium);
}

.trust-values div {
  padding: 23px 18px;
  text-align: center;
}

.trust-values div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-values dt {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.trust-values dd {
  margin: 7px 0 0;
  color: #d4e7e7;
  font-size: 13px;
  line-height: 1.35;
}

.contact-section {
  padding: 92px 0 100px;
  background: linear-gradient(180deg, var(--sky-soft), #fff 76%);
}

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

.contact-form {
  padding: 50px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.contact-form h2 {
  margin-bottom: 30px;
}

.intent-fieldset {
  min-width: 0;
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.intent-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.intent-options label {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 13px 14px;
  gap: 10px;
  color: #324b50;
  background: #fff;
  border: 1px solid #bfd2d1;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.intent-options label[data-selected="true"] {
  color: #fff;
  background: var(--petrol-dark);
  border-color: var(--petrol-dark);
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 2px var(--petrol-dark);
}

.intent-options input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin: 0;
  accent-color: var(--coral-dark);
}

.field-row {
  margin-bottom: 22px;
}

.field-row label {
  display: block;
  margin-bottom: 7px;
  color: #273f43;
  font-size: 15px;
  font-weight: 750;
}

.field-row input,
.field-row textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #aebfbe;
  border-radius: 10px;
}

.field-row textarea {
  min-height: 158px;
  resize: vertical;
}

.field-row input:hover,
.field-row textarea:hover {
  border-color: var(--petrol);
}

.field-row input:focus,
.field-row textarea:focus {
  border-color: var(--petrol-dark);
  outline: 3px solid rgba(216, 111, 89, 0.28);
}

.field-row [aria-invalid="true"] {
  border-color: #a12525;
  box-shadow: 0 0 0 2px rgba(161, 37, 37, 0.12);
}

.personal-details {
  margin: 8px 0 28px;
  border-block: 1px solid var(--line);
}

.personal-details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 58px;
  padding: 8px 2px;
  color: var(--petrol-dark);
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

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

.personal-details summary span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--petrol);
  border-radius: 50%;
  font-size: 20px;
  transition: transform 170ms ease;
}

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

.personal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 22px;
  gap: 0 18px;
}

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

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.consent-row {
  display: grid;
  grid-template-columns: 21px 1fr;
  align-items: start;
  margin: 0 0 26px;
  gap: 11px;
  color: #40565a;
  font-size: 15px;
  line-height: 1.5;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--petrol-dark);
}

.consent-row a {
  color: var(--petrol-dark);
  font-weight: 750;
  text-underline-offset: 3px;
}

.submit-button {
  width: 100%;
  min-height: 56px;
  padding: 13px 20px;
  color: #fff;
  background: var(--coral-dark);
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  transition: background-color 170ms ease, transform 170ms ease;
}

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

.submit-button:disabled {
  color: #425153;
  background: #d9dfdf;
  cursor: wait;
}

.privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin: 8px 0 0;
  color: #344f53;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.form-status:empty {
  min-height: 0;
  margin: 0;
}

.personal-contact {
  margin-top: 28px;
  padding: 42px 48px;
  color: #fff;
  background: var(--petrol-dark);
  border-radius: var(--radius-large);
}

.personal-contact .eyebrow {
  color: #ffd7c9;
}

.personal-contact h2 {
  margin-bottom: 18px;
  color: #fff;
}

.contact-name {
  margin-bottom: 23px;
  color: #fff;
  font-size: 20px;
  font-weight: 750;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-links p {
  margin: 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 12px;
}

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

.contact-links span {
  margin-bottom: 3px;
  color: #cfe5e5;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-links a {
  color: #fff;
  font-size: 17px;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer {
  padding: 28px 0;
  color: #d9e6e6;
  background: #0d373b;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 20px;
}

.footer-inner a {
  color: #fff;
  text-underline-offset: 4px;
}

.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;
}

@media (max-width: 1020px) {
  .header-shell {
    grid-template-columns: 1fr auto auto;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 12px;
    gap: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0 0 17px 17px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    min-height: 48px;
    padding: 12px 9px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 27px;
  }

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

  .hero-image {
    height: 340px;
  }

  .path-layout {
    grid-template-columns: 0.55fr 1.45fr;
    gap: 35px;
  }

  .buyer-section,
  .owner-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .buyer-section .buyer-copy {
    order: 1;
  }

  .buyer-section .buyer-image {
    order: 2;
  }

  .owner-section .owner-image {
    order: 2;
  }

  .owner-section .owner-copy {
    order: 1;
  }

  .buyer-copy,
  .owner-copy {
    max-width: 760px;
  }

  .buyer-image,
  .owner-image {
    height: 360px;
  }

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

@media (max-width: 900px) {
  .types-heading {
    display: block;
  }

  .types-heading > p:last-child {
    max-width: 680px;
  }

  .type-list {
    grid-template-columns: 1fr;
  }

  .type-list article {
    display: grid;
    grid-template-columns: 48px 170px 1fr;
    align-items: start;
    min-height: 0;
    padding: 25px 12px;
    gap: 15px;
  }

  .type-list article + article {
    border-top: 1px solid #d6c7a5;
    border-left: 0;
  }

  .type-list article > span,
  .type-list h3,
  .type-list p {
    margin: 0;
  }

  .trust-values dt {
    font-size: 22px;
  }
}

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

  .path-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .path-heading {
    position: static;
  }

  .path-heading h2 {
    max-width: 600px;
  }

  .intent-options {
    grid-template-columns: 1fr;
  }

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

  .change-section {
    grid-template-columns: 65px 1fr;
    padding: 36px;
    gap: 22px;
  }

  .change-mark {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 620px) {
  :root {
    --radius-large: 20px;
  }

  html {
    scroll-padding-top: 80px;
  }

  .section-shell,
  .header-shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .operator-bar {
    padding-inline: 14px;
    font-size: 12px;
  }

  .header-shell {
    min-height: 66px;
    gap: 12px;
  }

  .domain-mark {
    font-size: 20px;
  }

  .domain-mark span::after {
    width: 7px;
    height: 7px;
    margin-left: 5px;
  }

  .awz-logo {
    min-width: 64px;
  }

  .awz-logo img {
    width: 65px;
  }

  .main-nav {
    right: 14px;
    left: 14px;
  }

  .banner-image {
    width: calc(100% - 20px);
    height: 92px;
    margin-top: 10px;
    border-radius: 13px;
  }

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

  .hero {
    padding-top: 27px;
    padding-bottom: 39px;
    gap: 22px;
  }

  h1 {
    margin-bottom: 17px;
    font-size: clamp(32px, 9.2vw, 38px);
  }

  h2 {
    font-size: clamp(28px, 7.8vw, 32px);
  }

  .hero-intro {
    font-size: 18px;
  }

  .hero-image {
    height: 230px;
    border-radius: 20px 20px 42px 20px;
  }

  .hero-image img {
    object-position: 49% 42%;
  }

  .image-frame figcaption {
    right: 7px;
    bottom: 7px;
    font-size: 10px;
  }

  .path-section {
    padding: 44px 0;
  }

  .path-link {
    grid-template-columns: 35px 1fr 24px;
    min-height: 95px;
    padding-right: 6px;
    gap: 10px;
  }

  .path-link:hover,
  .path-link:focus-visible {
    padding-left: 6px;
  }

  .path-link strong {
    font-size: 18px;
  }

  .path-link small {
    font-size: 14px;
  }

  .buyer-section,
  .owner-section {
    gap: 28px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .buyer-image,
  .owner-image {
    height: 245px;
    border-radius: 20px 42px 20px 20px;
  }

  .buyer-image img {
    object-position: center 46%;
  }

  .owner-image img {
    object-position: 47% 42%;
  }

  .home-types {
    padding: 62px 0;
  }

  .types-heading > p:last-child {
    font-size: 18px;
  }

  .type-list {
    margin-top: 28px;
  }

  .type-list article {
    grid-template-columns: 44px 1fr;
    padding: 23px 2px;
  }

  .type-list article > span {
    grid-row: 1 / span 2;
  }

  .type-list p {
    grid-column: 2;
  }

  .change-section {
    display: block;
    margin-bottom: 65px;
    padding: 29px 25px;
  }

  .change-mark {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    font-size: 25px;
  }

  .trust-section {
    padding: 52px 0;
  }

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

  .trust-values div {
    display: grid;
    grid-template-columns: 115px 1fr;
    align-items: center;
    padding: 17px;
    text-align: left;
  }

  .trust-values div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

  .trust-values dd {
    margin: 0;
  }

  .contact-section {
    padding: 60px 0 68px;
  }

  .contact-form,
  .personal-contact {
    padding: 30px 21px;
  }

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

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

  .submit-button {
    min-height: 58px;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner nav {
    justify-content: flex-start;
    margin-top: 14px;
  }
}

@media (max-width: 430px) {
  .domain-mark {
    max-width: 145px;
  }

  .banner-image {
    height: 84px;
  }

  .hero-image {
    height: 215px;
  }

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

  .button {
    width: 100%;
  }

  .contact-links a {
    font-size: 16px;
  }
}

@media (max-width: 350px) {
  .section-shell,
  .header-shell {
    width: min(calc(100% - 22px), var(--shell));
  }

  .operator-bar {
    font-size: 11px;
  }

  .header-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
  }

  .domain-mark {
    max-width: 128px;
    font-size: 18px;
  }

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

  .awz-logo,
  .awz-logo img {
    width: 58px;
    min-width: 58px;
  }

  h1 {
    font-size: 31px;
  }

  h2 {
    font-size: 27px;
  }

  .hero-image {
    height: 204px;
  }

  .path-link {
    grid-template-columns: 30px 1fr 18px;
    gap: 8px;
  }

  .buyer-image,
  .owner-image {
    height: 210px;
  }

  .contact-form,
  .personal-contact {
    padding-inline: 17px;
  }

  .personal-details summary {
    font-size: 15px;
  }
}

@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;
  }
}
