:root {
  --ink: #263640;
  --ink-soft: #53636b;
  --blue: #2f6578;
  --blue-dark: #17485b;
  --blue-pale: #e8f1f3;
  --green: #45695b;
  --green-pale: #eaf0eb;
  --copper: #a6593a;
  --copper-dark: #82432e;
  --linen: #f7f4ed;
  --sand: #eee6d8;
  --paper: #fffefa;
  --white: #ffffff;
  --line: #d7dedb;
  --focus: #d66b2f;
  --max-width: 1180px;
  --shadow: 0 18px 44px rgba(28, 52, 61, 0.1);
  --shadow-soft: 0 10px 28px rgba(28, 52, 61, 0.07);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
summary {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  margin-bottom: 0.8rem;
  color: var(--blue-dark);
  line-height: 1.08;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.75rem, 4.35vw, 3.35rem);
}

h2 {
  font-size: clamp(2rem, 3.15vw, 2.5rem);
}

h3 {
  font-size: 1.22rem;
}

p:last-child,
ul:last-child,
ol:last-child,
dl:last-child {
  margin-bottom: 0;
}

figure {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: 6px;
  transform: translateY(-160%);
}

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

.operator-bar {
  min-height: 31px;
  display: grid;
  place-items: center;
  padding: 0.34rem 1rem;
  color: #344d54;
  background: var(--green-pale);
  font-size: 0.77rem;
  font-weight: 650;
  text-align: center;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 254, 250, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: minmax(230px, auto) 1fr auto;
  align-items: center;
  gap: 2rem;
}

.domain-mark {
  width: max-content;
  color: var(--blue-dark);
  font-size: 1.3rem;
  font-weight: 790;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.035em;
}

.domain-mark strong {
  color: var(--copper);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.main-nav a {
  position: relative;
  padding-block: 0.45rem;
  color: #334a54;
  font-size: 0.92rem;
  font-weight: 690;
  text-decoration: none;
}

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

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

.awz-logo {
  width: 92px;
  display: block;
}

.awz-logo img {
  height: auto;
  object-fit: contain;
}

.menu-button {
  width: 48px;
  height: 48px;
  display: none;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
  cursor: pointer;
}

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

.image-frame {
  position: relative;
  overflow: hidden;
  background: #dfe7e5;
  border: 1px solid rgba(38, 54, 64, 0.13);
  box-shadow: var(--shadow-soft);
}

.image-frame figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  z-index: 2;
  margin: 0;
  padding: 0.27rem 0.5rem;
  color: var(--white);
  background: rgba(18, 39, 47, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.15;
}

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

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  padding-block: 4.5rem 5.2rem;
}

.hero-copy {
  position: relative;
  padding-left: 1.25rem;
}

.hero-copy::before {
  position: absolute;
  top: 0.2rem;
  bottom: 0.2rem;
  left: 0;
  width: 4px;
  background: linear-gradient(var(--copper), var(--green));
  content: "";
  border-radius: 4px;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--copper-dark);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.135em;
  text-transform: uppercase;
}

.hero-intro {
  color: #354c56;
  font-size: clamp(1.08rem, 1.65vw, 1.25rem);
  line-height: 1.58;
}

.hero-copy p:not(.eyebrow) {
  max-width: 45rem;
}

.hero-image {
  height: 350px;
  border-radius: 11px;
}

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

.path-section {
  padding-block: 4.6rem;
  background: var(--blue-pale);
  border-block: 1px solid #d4e2e5;
}

.path-heading {
  max-width: 790px;
  margin-bottom: 2.2rem;
}

.path-grid {
  display: grid;
  grid-template-columns: 1.28fr 1fr 1fr;
  background: var(--white);
  border: 1px solid #ccdcdf;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.path-card {
  position: relative;
  min-height: 224px;
  display: flex;
  flex-direction: column;
  padding: 1.65rem;
  color: var(--ink);
  background: var(--white);
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

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

.path-card:hover,
.path-card:focus-visible {
  background: #f2f7f7;
}

.path-card.primary-path {
  color: var(--white);
  background: var(--blue-dark);
}

.path-card.primary-path:hover,
.path-card.primary-path:focus-visible {
  background: #103c4d;
}

.path-label {
  margin-bottom: 1.2rem;
  color: var(--copper-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-path .path-label {
  color: #f3cab8;
}

.path-card strong {
  margin-bottom: 0.55rem;
  color: var(--blue-dark);
  font-size: 1.22rem;
  line-height: 1.22;
}

.primary-path strong {
  color: var(--white);
}

.path-card > span:not(.path-label) {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.48;
}

.primary-path > span:not(.path-label) {
  color: #dce8ec;
}

.path-card i {
  margin-top: auto;
  align-self: flex-end;
  color: var(--copper);
  font-size: 1.35rem;
  font-style: normal;
}

.primary-path i {
  color: #f4c7b2;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6.5rem);
  padding-block: 6rem;
}

.seller-section .editorial-copy {
  grid-column: 2;
}

.seller-section .section-image {
  grid-column: 1;
  grid-row: 1;
}

.editorial-copy p {
  color: var(--ink-soft);
}

.detail-list {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 1.4rem;
}

.detail-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--copper);
  content: "";
  border-radius: 50%;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.5rem;
  color: var(--blue-dark);
  font-weight: 780;
  text-decoration-color: var(--copper);
  text-underline-offset: 0.28em;
}

.section-image {
  height: 450px;
  border-radius: 11px;
}

.owner-image img {
  object-position: 50% 45%;
}

.team-image img {
  object-position: 50% 40%;
}

.quality-section {
  padding-block: 5.3rem;
  color: #e7f0f0;
  background: var(--blue-dark);
}

.quality-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 7vw, 6rem);
}

.quality-heading h2,
.quality-heading p:not(.eyebrow),
.quality-list h3,
.quality-list p {
  color: inherit;
}

.quality-heading .eyebrow {
  color: #f4c5af;
}

.quality-heading p:not(.eyebrow) {
  color: #c9dadd;
}

.quality-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quality-list li {
  display: grid;
  grid-template-columns: 58px minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 1.1rem;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.quality-list li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.quality-list span {
  color: #f4c5af;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.quality-list h3,
.quality-list p {
  margin-bottom: 0;
}

.quality-list p {
  color: #c9dadd;
  font-size: 0.94rem;
  line-height: 1.55;
}

.buyer-section {
  padding-block: 5.4rem;
  background: var(--sand);
}

.buyer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.buyer-copy {
  padding-left: 1.6rem;
  border-left: 3px solid var(--copper);
}

.button,
.submit-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  color: var(--white);
  background: var(--blue-dark);
  border: 0;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.secondary-button {
  margin-top: 0.55rem;
  background: var(--blue-dark);
}

.button:hover,
.button:focus-visible {
  background: #103c4d;
}

.work-section {
  padding-block: 6.2rem;
}

.trust-section {
  padding-block: 4.7rem;
  background: var(--green-pale);
  border-block: 1px solid #d5e0d9;
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.trust-copy p:not(.eyebrow) {
  color: var(--ink-soft);
}

.trust-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
}

.trust-values div {
  min-height: 135px;
  display: grid;
  align-content: center;
  padding: 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #cfddd4;
  border-radius: 8px;
}

.trust-values dt {
  color: var(--blue-dark);
  font-size: 1.48rem;
  font-weight: 820;
  line-height: 1.1;
}

.trust-values dd {
  margin: 0.48rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.35;
}

.contact-section {
  padding-block: 6rem;
  background: var(--linen);
}

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

.contact-form {
  padding: clamp(1.3rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  box-shadow: var(--shadow);
}

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

.intent-fieldset {
  margin: 0 0 1.6rem;
  padding: 0;
  border: 0;
}

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

.intent-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.intent-options label {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem;
  color: var(--ink);
  background: #f8f8f4;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

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

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

.field-group {
  margin-bottom: 1.1rem;
}

.field-group label {
  display: block;
  margin-bottom: 0.38rem;
  color: #304650;
  font-size: 0.83rem;
  font-weight: 750;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.85rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bcc9c7;
  border-radius: 6px;
  font: inherit;
}

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

input::placeholder,
textarea::placeholder {
  color: #6a777b;
  opacity: 1;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #a3392f;
  box-shadow: 0 0 0 2px rgba(163, 57, 47, 0.12);
}

.personal-details {
  margin-block: 0.5rem 1.35rem;
  border-block: 1px solid var(--line);
}

.personal-details summary {
  position: relative;
  padding: 1rem 2.2rem 1rem 0;
  color: var(--blue-dark);
  font-size: 0.91rem;
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

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

.personal-details summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  transform: translateY(-50%);
}

.personal-details[open] summary::after {
  content: "−";
}

.optional-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1rem;
  padding-top: 0.5rem;
}

.optional-wide {
  grid-column: 1 / -1;
}

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

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 0.72rem;
  margin-bottom: 1.25rem;
  color: #4d5d63;
  font-size: 0.86rem;
  line-height: 1.5;
}

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

.consent-row a {
  color: var(--blue-dark);
  font-weight: 740;
}

.submit-button {
  width: 100%;
  background: var(--copper-dark);
  box-shadow: 0 10px 24px rgba(130, 67, 46, 0.18);
}

.submit-button:hover,
.submit-button:focus-visible {
  background: #6d3626;
}

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

.privacy-note {
  margin: 0.8rem 0 0;
  color: #596a70;
  font-size: 0.79rem;
  text-align: center;
}

.form-status {
  min-height: 1.5em;
  margin: 0.55rem 0 0;
  color: var(--blue-dark);
  font-size: 0.87rem;
  font-weight: 700;
  text-align: center;
}

.personal-contact {
  padding: clamp(1.35rem, 4vw, 2.6rem) clamp(1.3rem, 4vw, 3rem);
  background: var(--blue-pale);
  border: 1px solid #cddde0;
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow);
}

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

.contact-name {
  margin-bottom: 1.2rem;
  font-weight: 780;
}

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

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

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

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

.site-footer {
  padding-block: 1.5rem;
  color: #e4edef;
  background: #123c4d;
}

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

.footer-inner p {
  margin-bottom: 0;
  font-size: 0.78rem;
}

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

.footer-inner a {
  color: inherit;
  font-size: 0.78rem;
  text-underline-offset: 0.2em;
}

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

@media (max-width: 1020px) {
  .hero,
  .editorial-section,
  .quality-inner,
  .buyer-inner,
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2.2rem;
  }

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

  .hero-image {
    width: 100%;
    height: 330px;
  }

  .seller-section .editorial-copy,
  .seller-section .section-image {
    grid-column: 1;
  }

  .seller-section .editorial-copy {
    grid-row: 1;
  }

  .seller-section .section-image {
    grid-row: 2;
  }

  .editorial-section {
    gap: 2.6rem;
  }

  .section-image {
    height: 430px;
  }

  .quality-heading {
    max-width: 760px;
  }

  .buyer-copy {
    max-width: 760px;
    padding-left: 1.2rem;
  }

  .trust-values {
    max-width: 760px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
  }

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

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 9px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.65rem 0.75rem;
    border-radius: 6px;
  }

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

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

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

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

  .quiet-path {
    grid-column: 1 / -1;
    min-height: 175px;
    border-top: 1px solid var(--line);
  }
}

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

  .banner-image {
    height: 166px;
  }

  .hero-image {
    height: 300px;
  }

  .quality-list li {
    grid-template-columns: 46px minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

  .trust-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 82px;
  }

  body {
    font-size: 16.5px;
  }

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

  .header-inner {
    min-height: 72px;
  }

  .operator-bar {
    font-size: 0.69rem;
  }

  .domain-mark {
    font-size: 1.03rem;
  }

  .awz-logo {
    width: 82px;
  }

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

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

  .banner-image {
    height: 132px;
    margin-top: 14px;
    border-radius: 8px;
  }

  .hero {
    padding-block: 2.6rem 3.7rem;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-copy::before {
    display: none;
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(2.05rem, 10.2vw, 2.375rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8.5vw, 2.05rem);
  }

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

  .hero-image {
    width: 100%;
    height: clamp(190px, 60vw, 240px);
    border-radius: 9px;
  }

  .section-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 9px;
  }

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

  .path-section,
  .quality-section,
  .buyer-section,
  .trust-section,
  .contact-section {
    padding-block: 3.7rem;
  }

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

  .path-card,
  .quiet-path {
    min-height: 0;
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .path-card:first-child {
    border-top: 0;
  }

  .path-card i {
    margin-top: 1rem;
  }

  .editorial-section,
  .work-section {
    padding-block: 4.3rem;
  }

  .quality-list li {
    grid-template-columns: 38px 1fr;
    gap: 0.65rem 0.8rem;
  }

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

  .buyer-copy {
    padding-left: 1rem;
  }

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

  .trust-values div {
    min-height: 94px;
  }

  .optional-wide {
    grid-column: auto;
  }

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

  .button {
    width: 100%;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 430px) {
  .domain-mark {
    max-width: 144px;
    line-height: 1.06;
  }

  .awz-logo {
    width: 72px;
  }

  .banner-image {
    height: 122px;
  }

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

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

  .header-inner {
    gap: 0.55rem;
  }

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

  .awz-logo {
    width: 65px;
  }

  h1 {
    font-size: 2rem;
  }

  .eyebrow {
    font-size: 0.68rem;
  }

  .path-card {
    padding: 1.25rem;
  }
}

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