:root {
  --blue: #234d7f;
  --blue-deep: #16345a;
  --wine: #b16b2b;
  --wine-deep: #7f461d;
  --rose: #e6eef5;
  --sand: #eee4d3;
  --cream: #fbf7ef;
  --paper: #fffdfa;
  --mist: #f1f5f7;
  --ink: #202638;
  --muted: #5e6370;
  --line: #dcd9dc;
  --white: #ffffff;
  --shell: min(1180px, calc(100% - 48px));
  --shadow: 0 24px 66px rgba(35, 28, 48, 0.14);
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: 112px;
}

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;
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--blue-deep);
  font-weight: 690;
  letter-spacing: -0.038em;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 690px;
  font-size: clamp(2.8rem, 4.25vw, 3.55rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(2rem, 3.45vw, 3.2rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p,
li,
dd {
  overflow-wrap: anywhere;
}

.header-shell,
.hero-shell,
.section-shell,
.footer-shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 8px;
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid #cf8b40;
  outline-offset: 4px;
}

.operator-bar {
  padding: 7px 14px;
  color: #f2eff5;
  background: var(--wine-deep);
  font-size: 0.78rem;
  letter-spacing: 0.018em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 253, 250, 0.97);
  border-bottom: 1px solid rgba(37, 48, 111, 0.11);
  backdrop-filter: blur(12px);
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 82px;
}

.domain-mark {
  color: var(--wine);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.045em;
  text-decoration: none;
  white-space: nowrap;
}

.domain-mark strong {
  font-weight: 790;
}

.domain-mark span {
  color: var(--blue);
}

.main-nav {
  display: flex;
  gap: clamp(15px, 2vw, 29px);
  align-items: center;
  justify-content: flex-end;
  font-size: 0.88rem;
  font-weight: 650;
}

.main-nav a {
  color: #3c4359;
  text-decoration: none;
}

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

.main-nav .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--wine);
  border-radius: 24px;
}

.awz-logo {
  display: block;
  width: 110px;
  flex: none;
}

.awz-logo img {
  width: 100%;
  height: auto;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: var(--blue-deep);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.86rem;
  font-weight: 720;
  cursor: pointer;
}

.menu-lines {
  display: grid;
  gap: 3px;
  width: 18px;
}

.menu-lines i {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-lines i:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(50px, 6.5vw, 90px) 0 clamp(67px, 8vw, 112px);
  background:
    radial-gradient(circle at 92% 10%, rgba(135, 60, 76, 0.12), transparent 28%),
    linear-gradient(130deg, #fffdf9 0%, #faf4ed 55%, #f0f1f6 100%);
}

.hero::after {
  position: absolute;
  right: 8vw;
  bottom: -240px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(135, 60, 76, 0.2);
  border-radius: 50%;
  content: "";
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(46px, 6.2vw, 90px);
  align-items: center;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.eyebrow,
.section-kicker {
  color: var(--wine);
  font-size: 0.73rem;
  font-weight: 810;
  letter-spacing: 0.125em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  padding-bottom: 10px;
  margin-bottom: 21px;
  border-bottom: 3px solid var(--wine);
}

.hero-lead {
  max-width: 600px;
  margin-top: 27px;
  color: #484e5e;
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero-actions {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 23px;
  border: 2px solid transparent;
  border-radius: 28px;
  font-size: 0.96rem;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 13px 28px rgba(37, 48, 111, 0.22);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-light {
  color: var(--blue-deep);
  background: var(--white);
}

.button-outline {
  color: var(--blue-deep);
  background: transparent;
  border-color: rgba(37, 48, 111, 0.35);
}

.secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-top: 18px;
}

.secondary-actions a,
.text-link {
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  box-shadow: var(--shadow);
}

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

.image-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  color: var(--white);
  background: rgba(24, 32, 82, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 12px;
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.hero-image {
  grid-column: 2;
  grid-row: 1 / 3;
  aspect-ratio: 3 / 2;
  border-radius: 180px 18px 18px 18px;
}

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

.experience-section,
.support-section,
.real-estate-section,
.trust-section,
.contact-section {
  padding: clamp(76px, 9vw, 128px) 0;
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: 40px clamp(52px, 8vw, 120px);
  align-items: start;
}

.experience-heading::before,
.estate-heading::before {
  display: block;
  width: 64px;
  height: 4px;
  margin-bottom: 25px;
  background: var(--wine);
  content: "";
}

.experience-heading .section-kicker,
.activity-copy .section-kicker,
.support-copy .section-kicker,
.trust-copy .section-kicker,
.form-column > .section-kicker,
.personal-contact .section-kicker {
  margin-bottom: 14px;
}

.experience-copy {
  display: grid;
  gap: 22px;
  padding-top: 30px;
  color: #494f5e;
  font-size: 1.05rem;
}

.experience-values {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 22px;
  background: var(--line);
  border: 1px solid var(--line);
}

.experience-values article {
  padding: 31px 30px 34px;
  background: var(--paper);
}

.experience-values article > span {
  display: block;
  margin-bottom: 21px;
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 810;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.experience-values h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.experience-values p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.58;
}

.activity-section {
  padding: clamp(72px, 8.5vw, 118px) 0;
  background: var(--rose);
}

.activity-layout,
.support-layout {
  display: grid;
  grid-template-columns: minmax(370px, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(52px, 7vw, 98px);
  align-items: center;
}

.activity-image,
.support-image {
  aspect-ratio: 3 / 2;
  border-radius: 18px;
}

.activity-image img {
  object-position: 48% center;
}

.activity-copy > p:not(.section-kicker),
.support-copy > p:not(.section-kicker),
.trust-copy > p:not(.section-kicker) {
  margin-top: 24px;
  color: #4c5261;
}

.activity-steps {
  display: grid;
  gap: 0;
  padding: 0;
  margin-top: 31px;
  border-top: 1px solid rgba(98, 40, 54, 0.24);
  list-style: none;
}

.activity-steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(98, 40, 54, 0.24);
}

.activity-steps li > span {
  color: var(--wine);
  font-size: 0.77rem;
  font-weight: 820;
}

.activity-steps strong {
  color: var(--blue-deep);
  font-size: 0.91rem;
}

.activity-steps p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.88rem;
}

.support-layout {
  grid-template-columns: minmax(0, 1.04fr) minmax(370px, 0.96fr);
}

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

.support-list {
  display: grid;
  margin-top: 31px;
  border-top: 1px solid var(--line);
}

.support-list > div {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.support-list dt {
  color: var(--blue-deep);
  font-size: 0.9rem;
  font-weight: 760;
}

.support-list dd {
  color: var(--muted);
  font-size: 0.9rem;
}

.success-section {
  padding: 0 0 clamp(76px, 9vw, 126px);
  background: var(--paper);
}

.success-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr) auto;
  gap: clamp(28px, 4.5vw, 68px);
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background: linear-gradient(120deg, var(--wine-deep), var(--wine));
  border-radius: 18px 72px 18px 18px;
}

.success-card .section-kicker,
.success-card h2 {
  color: var(--white);
}

.success-card .section-kicker {
  margin-bottom: 12px;
  opacity: 0.75;
}

.success-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.success-card > p {
  font-size: 0.96rem;
}

.real-estate-section {
  background: var(--mist);
}

.estate-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 118px);
  align-items: start;
}

.estate-heading .section-kicker {
  margin-bottom: 14px;
}

.estate-paths {
  display: grid;
  gap: 0;
  border-top: 1px solid #cfd2dc;
}

.estate-paths article {
  position: relative;
  padding: 28px 0 30px 58px;
  border-bottom: 1px solid #cfd2dc;
}

.estate-paths article > span {
  position: absolute;
  top: 33px;
  left: 0;
  color: var(--wine);
  font-size: 0.78rem;
  font-weight: 820;
}

.estate-paths h3 {
  margin-bottom: 13px;
}

.estate-paths p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

.text-link i {
  font-style: normal;
}

.career-link-section {
  padding: clamp(58px, 7vw, 86px) 0;
  background: var(--sand);
}

.career-link-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.career-link-inner h2 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.career-link-inner p:not(.section-kicker) {
  max-width: 760px;
  color: #54515a;
}

.trust-section {
  color: var(--white);
  background: var(--blue-deep);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 7vw, 98px);
  align-items: end;
}

.trust-copy h2,
.trust-copy .section-kicker {
  color: var(--white);
}

.trust-copy > p:not(.section-kicker) {
  color: #ced2e6;
}

.trust-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.trust-values > div {
  padding: 26px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

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

.trust-values dt {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 730;
  letter-spacing: -0.04em;
  line-height: 1;
}

.trust-values dd {
  margin-top: 10px;
  color: #ced2e6;
  font-size: 0.79rem;
  line-height: 1.4;
}

.contact-section {
  background: var(--cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px);
  justify-content: center;
}

.form-column > h2 {
  margin-bottom: 35px;
}

form {
  display: grid;
  gap: 24px;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

legend,
.field label {
  display: block;
  margin-bottom: 9px;
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 730;
}

.intent-options {
  display: grid;
  grid-template-columns: 1.36fr 0.85fr 0.78fr;
  gap: 10px;
}

.intent-options label {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 11px 13px;
  color: #4b5161;
  background: var(--white);
  border: 1px solid #cfcbd0;
  border-radius: 25px;
  font-size: 0.83rem;
  font-weight: 680;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
}

.intent-options label[data-selected="true"] {
  color: var(--white);
  background: var(--wine);
  border-color: var(--wine);
  box-shadow: 0 8px 20px rgba(98, 40, 54, 0.18);
}

.intent-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.intent-options label:focus-within {
  outline: 3px solid #cf8b40;
  outline-offset: 3px;
}

input,
textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c9c6ca;
  border-radius: 11px;
  font-size: 1rem;
}

input {
  min-height: 52px;
  padding: 10px 14px;
}

textarea {
  min-height: 180px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

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

input:focus,
textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(135, 60, 76, 0.12);
  outline: none;
}

.personal-details {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid #d5cfc8;
  border-radius: 12px;
}

.personal-details summary {
  padding: 16px 18px;
  color: var(--blue-deep);
  font-size: 0.91rem;
  font-weight: 720;
  cursor: pointer;
}

.personal-details[open] summary {
  border-bottom: 1px solid #d5cfc8;
}

.personal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 21px 18px 23px;
}

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

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

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 11px;
  align-items: start;
  color: #4e5361;
  font-size: 0.85rem;
  line-height: 1.55;
}

.consent-row input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--wine);
}

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

.privacy-note {
  padding: 13px 16px;
  color: #443d46;
  background: var(--rose);
  border-left: 4px solid var(--wine);
  font-size: 0.88rem;
}

.submit-button {
  justify-self: start;
  border: 0;
}

.form-status {
  min-height: 1.6em;
  color: #792d3d;
  font-size: 0.88rem;
  font-weight: 650;
}

.personal-contact {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid #cec6bc;
}

.personal-contact h2 {
  max-width: 590px;
  font-size: clamp(1.7rem, 3vw, 2.42rem);
}

.contact-name {
  margin-top: 21px;
  color: #3d4352;
  font-weight: 730;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 38px;
  margin-top: 18px;
}

.contact-links a {
  color: var(--blue-deep);
  font-size: 1rem;
  font-weight: 760;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(37, 48, 111, 0.36);
  text-underline-offset: 4px;
}

.contact-links span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer {
  padding: 32px 0;
  color: #d8dbee;
  background: #111735;
  font-size: 0.8rem;
}

.footer-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-domain {
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 760;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: center;
}

.site-footer a {
  color: #eef0ff;
  text-underline-offset: 3px;
}

.site-footer p {
  color: #aeb4d0;
  text-align: right;
}

@media (max-width: 1080px) {
  .header-shell {
    gap: 18px;
  }

  .main-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    column-gap: 43px;
  }

  .success-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .success-card .button {
    grid-column: 2;
    justify-self: start;
  }
}

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

  .menu-button {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px 0 13px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(24, 32, 82, 0.12);
  }

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

  .main-nav a {
    padding: 11px 24px;
  }

  .main-nav .nav-cta {
    margin: 6px 24px 0;
    padding: 11px 14px;
    text-align: center;
  }

  .awz-logo {
    width: 90px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 34px, 700px);
  }

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

  .hero {
    padding-top: 43px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-copy,
  .hero-image,
  .hero-actions {
    grid-column: 1;
  }

  .hero-copy {
    grid-row: 1;
  }

  .hero-image {
    grid-row: 2;
    margin-top: 32px;
  }

  .hero-actions {
    grid-row: 3;
    margin-top: 25px;
  }

  .experience-layout,
  .activity-layout,
  .support-layout,
  .estate-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .experience-copy {
    padding-top: 0;
  }

  .activity-layout,
  .support-layout {
    gap: 42px;
  }

  .support-image {
    grid-row: 1;
  }

  .success-card {
    grid-template-columns: 1fr;
  }

  .success-card .button {
    grid-column: 1;
  }

  .career-link-inner {
    grid-template-columns: 1fr;
    gap: 27px;
  }

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

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

  .site-footer p {
    text-align: left;
  }
}

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

  h1 {
    font-size: clamp(2.02rem, 10vw, 2.48rem);
  }

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

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

  .header-shell {
    gap: 10px;
    min-height: 68px;
  }

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

  .menu-button {
    padding: 8px 9px;
  }

  .awz-logo {
    width: 73px;
  }

  .hero {
    padding: 35px 0 62px;
  }

  .eyebrow {
    padding-bottom: 8px;
    margin-bottom: 18px;
  }

  .hero-lead {
    margin-top: 21px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .hero-image {
    margin-top: 24px;
    border-radius: 82px 12px 12px 12px;
  }

  .hero-actions .button-primary {
    width: 100%;
  }

  .secondary-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .secondary-actions a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid #cacbd2;
    border-radius: 24px;
    font-size: 0.78rem;
    text-align: center;
    text-decoration: none;
  }

  .experience-section,
  .support-section,
  .real-estate-section,
  .trust-section,
  .contact-section,
  .activity-section {
    padding: 67px 0;
  }

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

  .experience-values article {
    padding: 24px 22px 26px;
  }

  .activity-steps li {
    grid-template-columns: 38px 1fr;
  }

  .support-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .success-section {
    padding: 0 0 67px;
  }

  .success-card {
    gap: 21px;
    padding: 30px 23px;
    border-radius: 13px 48px 13px 13px;
  }

  .success-card .button,
  .career-link-inner .button {
    width: 100%;
  }

  .estate-paths article {
    padding-left: 43px;
  }

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

  .trust-values > div {
    display: grid;
    grid-template-columns: 135px 1fr;
    align-items: baseline;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .trust-values dd {
    margin-top: 0;
  }

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

  .intent-options label {
    justify-content: flex-start;
    min-height: 50px;
    text-align: left;
  }

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

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

  .submit-button {
    width: 100%;
  }

  .contact-links {
    display: grid;
    gap: 15px;
  }
}

@media (max-width: 430px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .image-frame figcaption {
    right: 8px;
    bottom: 8px;
    padding: 4px 7px;
    font-size: 0.61rem;
  }
}

@media (max-width: 350px) {
  :root {
    --shell: calc(100% - 24px);
  }

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

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

  .awz-logo {
    width: 63px;
  }

  .hero {
    padding-top: 29px;
  }

  .hero-image {
    aspect-ratio: 16 / 9;
    margin-top: 19px;
    border-radius: 55px 10px 10px 10px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .secondary-actions {
    grid-template-columns: 1fr;
  }

  .trust-values > div {
    grid-template-columns: 118px 1fr;
  }
}

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

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


/* Domainbezogene Gestaltung: verkäuferin.bayern */
.regional-bayern .operator-bar { background: var(--blue-deep); }
.regional-bayern .hero-copy, .regional-bayern .hero-actions { grid-column: 2; }
.regional-bayern .hero-image { grid-column: 1; border-radius: 18px 18px 180px 18px; }
.regional-bayern .hero::after { right: auto; left: 6vw; border-color: rgba(35,77,127,.18); }
.regional-bayern .activity-image { order: 2; }
.regional-bayern .activity-copy { order: 1; }
.regional-bayern .success-card { border-radius: 72px 18px 18px 18px; }
@media (max-width: 820px) { .regional-bayern .hero-copy { grid-column: 1; grid-row: 1; } .regional-bayern .hero-image { grid-column: 1; grid-row: 2; } .regional-bayern .hero-actions { grid-column: 1; grid-row: 3; } .regional-bayern .activity-copy { order: 1; } .regional-bayern .activity-image { order: 2; } }
@media (max-width: 620px) { .regional-bayern .hero-image { border-radius: 12px 12px 82px 12px; } .regional-bayern .success-card { border-radius: 48px 13px 13px 13px; } }
@media (max-width: 350px) { .regional-bayern .hero-image { border-radius: 10px 10px 55px 10px; } }
