:root {
  --cobalt: #253a64;
  --cobalt-deep: #182846;
  --ochre: #cb8930;
  --ochre-dark: #9b6119;
  --olive: #69735d;
  --ice: #eef2f4;
  --warm-white: #faf8f2;
  --paper: #ffffff;
  --ink: #25313e;
  --muted: #596572;
  --line: #cfd7dc;
  --error: #9d2727;
  --shadow: 0 22px 54px rgba(24, 40, 70, 0.12);
  --shell: min(1180px, calc(100% - 48px));
  --radius: 3px;
}

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

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

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

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: -100px;
  left: 18px;
  padding: 12px 18px;
  color: #fff;
  background: var(--cobalt-deep);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  top: 18px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.operator-bar {
  padding: 7px 24px;
  color: #fff;
  background: var(--cobalt-deep);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(37, 58, 100, 0.16);
  background: rgba(250, 248, 242, 0.96);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(215px, 1fr) auto minmax(118px, 0.45fr);
  align-items: center;
  min-height: 82px;
  gap: 24px;
}

.domain-mark {
  min-width: 0;
  color: var(--cobalt-deep);
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.1;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.domain-mark::after {
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 7px;
  background: var(--ochre);
  content: "";
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
}

.main-navigation a {
  position: relative;
  padding: 10px 0;
  color: #384553;
  font-size: 16px;
  font-weight: 660;
  text-decoration: none;
}

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

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

.awz-logo {
  justify-self: end;
  width: 104px;
  height: auto;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid #aeb9c0;
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cobalt-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(37, 58, 100, 0.045) 1px, transparent 1px) 0 0 / 82px 82px,
    var(--warm-white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(480px, 1.17fr);
  min-height: 635px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 600px;
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 76px 58px 76px 0;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--ochre-dark);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: 0.105em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f2bd6b;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--cobalt-deep);
  font-weight: 730;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  max-width: 640px;
  margin-bottom: 25px;
  font-size: clamp(44px, 4.3vw, 55px);
}

h1 span {
  color: var(--ochre-dark);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3.2vw, 39px);
}

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

p {
  margin-top: 0;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 30px;
  color: #43515d;
  font-size: 19px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 740;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 170ms ease, background-color 170ms ease, box-shadow 170ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--cobalt);
  box-shadow: 6px 6px 0 var(--ochre);
}

.button-primary:hover {
  background: var(--cobalt-deep);
  box-shadow: 4px 4px 0 var(--ochre);
}

.button-secondary {
  border-color: var(--cobalt);
  color: var(--cobalt);
  background: transparent;
}

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

.secondary-routes {
  display: flex;
  margin-top: 30px;
  border-top: 1px solid var(--line);
}

.secondary-routes a {
  display: flex;
  flex-direction: column;
  padding: 14px 24px 0 0;
  color: var(--cobalt-deep);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.secondary-routes a + a {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.secondary-routes small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #dfe5e7;
}

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

.image-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(18, 31, 49, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.018em;
  line-height: 1.2;
}

.hero-media {
  min-height: 635px;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media img {
  object-position: 36% center;
}

.hero-band {
  position: absolute;
  right: calc(50% - 42px);
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 44px repeat(3, 12px);
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: #fff;
  background: var(--cobalt-deep);
}

.hero-band span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-band i {
  width: 12px;
  height: 12px;
  border: 2px solid var(--ochre);
  border-radius: 50%;
}

.hero-band i:nth-child(3) {
  background: var(--ochre);
}

.success-section {
  color: #fff;
  background: var(--cobalt);
}

.success-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: start;
  gap: 64px;
  padding-block: 46px;
}

.success-layout h2 {
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(27px, 2.7vw, 34px);
}

.success-layout p {
  max-width: 815px;
  margin-bottom: 0;
  color: #e8edf5;
}

.success-label {
  display: flex;
  flex-direction: column;
  padding-left: 18px;
  border-left: 5px solid var(--ochre);
  line-height: 1.25;
}

.success-label span {
  color: #dce3ee;
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.success-label strong {
  margin-top: 7px;
  font-size: 18px;
}

.translation-section {
  padding: 104px 0 112px;
  background: #fff;
}

.translation-intro {
  display: grid;
  grid-template-columns: 0.62fr 1.05fr 1.15fr;
  align-items: start;
  gap: 48px;
}

.translation-intro h2,
.translation-intro p {
  margin-bottom: 0;
}

.translation-intro > p:last-child {
  padding-top: 6px;
  color: var(--muted);
}

.translation-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 66px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.translation-list article {
  min-width: 0;
  padding: 28px 24px 30px;
}

.translation-list article + article {
  border-left: 1px solid var(--line);
}

.translation-list article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border: 1px solid var(--ochre);
  color: var(--ochre-dark);
  font-size: 13px;
  font-weight: 800;
}

.translation-list h3 {
  font-size: 21px;
}

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

.contact-work {
  color: #fff;
  background: var(--cobalt-deep);
}

.contact-work-layout {
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  width: min(1340px, 100%);
  margin-inline: auto;
}

.work-media {
  min-height: 720px;
}

.work-media img {
  object-position: 50% center;
}

.work-copy {
  align-self: center;
  max-width: 575px;
  padding: 72px clamp(32px, 5vw, 82px);
}

.work-copy h2,
.work-copy h3 {
  color: #fff;
}

.work-copy > p:not(.eyebrow) {
  color: #dce4ed;
}

.work-list {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.work-list li {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.work-list span {
  color: #f2bd6b;
  font-size: 15px;
  font-weight: 760;
}

.work-list p {
  margin: 0;
  color: #e8edf4;
  font-size: 16px;
}

.responsibility-section {
  padding: 112px 0;
  background: var(--ice);
}

.responsibility-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.responsibility-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.responsibility-copy aside {
  margin-top: 38px;
  padding: 22px 24px 6px;
  border-left: 5px solid var(--ochre);
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 40, 70, 0.07);
}

.responsibility-copy aside strong {
  display: block;
  margin-bottom: 7px;
  color: var(--cobalt-deep);
  font-size: 18px;
}

.responsibility-copy aside p {
  color: var(--muted);
  font-size: 16px;
}

.responsibility-media {
  height: 590px;
  border: 14px solid #fff;
  box-shadow: var(--shadow);
}

.responsibility-media img {
  object-position: 50% center;
}

.support-section {
  padding: 112px 0;
  background: var(--warm-white);
}

.support-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
}

.support-media {
  height: 570px;
  box-shadow: var(--shadow);
}

.support-media img {
  object-position: 52% center;
}

.support-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.support-lines {
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.support-lines p {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: #3d4955;
  font-size: 16px;
}

.support-lines span {
  color: var(--ochre-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.real-estate-section {
  padding: 104px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.real-estate-heading {
  display: grid;
  grid-template-columns: 0.58fr 1fr 0.9fr;
  align-items: start;
  gap: 42px;
}

.real-estate-heading h2,
.real-estate-heading p {
  margin-bottom: 0;
}

.real-estate-heading > p:last-child {
  color: var(--muted);
}

.real-estate-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 58px;
  border: 1px solid var(--line);
}

.real-estate-options article {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: start;
  padding: 38px;
}

.real-estate-options article + article {
  border-left: 1px solid var(--line);
  background: var(--ice);
}

.real-estate-options p:not(.card-kicker) {
  color: var(--muted);
}

.real-estate-options .button {
  justify-self: start;
}

.card-kicker {
  margin-bottom: 10px;
  color: var(--ochre-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-section {
  padding: 58px 0;
  color: #fff;
  background: var(--olive);
}

.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  align-items: center;
  gap: 50px;
}

.trust-layout h2 {
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 36px);
}

.trust-layout > p {
  margin-bottom: 0;
  color: #f2f4ed;
}

.trust-number {
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.trust-number strong {
  font-size: clamp(23px, 2.5vw, 31px);
  line-height: 1.2;
}

.trust-number span {
  margin-top: 5px;
  color: #eef1e8;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-section {
  padding: 112px 0;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(37, 58, 100, 0.065) 50%, transparent 50.1%) 0 0 / 86px 86px,
    var(--ice);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: clamp(48px, 7vw, 94px);
}

.form-heading {
  position: sticky;
  top: 130px;
  padding-top: 20px;
}

.form-heading p:last-child {
  color: var(--muted);
}

.contact-form {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border-top: 7px solid var(--ochre);
  background: #fff;
  box-shadow: var(--shadow);
}

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

.concern-fieldset {
  min-width: 0;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

.concern-fieldset legend {
  margin-bottom: 11px;
  color: var(--cobalt-deep);
  font-size: 16px;
  font-weight: 740;
}

.concern-options {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 8px;
}

.concern-options label {
  position: relative;
  min-width: 0;
  cursor: pointer;
}

.concern-options input {
  position: absolute;
  opacity: 0;
}

.concern-options span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 78px;
  padding: 12px 15px;
  border: 2px solid #c6cfd5;
  color: #384553;
  background: #fff;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.25;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease;
}

.concern-options small {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concern-options input:checked + span {
  border-color: var(--cobalt);
  color: #fff;
  background: var(--cobalt);
}

.concern-options input:checked + span small {
  color: #f4c680;
}

.concern-options input:focus-visible + span {
  outline: 3px solid #e7a747;
  outline-offset: 3px;
}

.field {
  min-width: 0;
  margin-bottom: 23px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--cobalt-deep);
  font-size: 16px;
  font-weight: 720;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  min-width: 0;
  border: 1px solid #aab6be;
  border-radius: 0;
  color: var(--ink);
  background: #fff;
}

.field input {
  min-height: 52px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 164px;
  padding: 12px 13px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(37, 58, 100, 0.13);
}

.field [aria-invalid="true"],
.consent input[aria-invalid="true"] {
  border-color: var(--error);
}

.optional-details {
  margin: 5px 0 27px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.optional-details summary {
  position: relative;
  padding: 17px 42px 17px 0;
  color: var(--cobalt-deep);
  font-size: 16px;
  font-weight: 730;
  cursor: pointer;
  list-style: none;
}

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

.optional-details summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  width: 22px;
  height: 22px;
  color: var(--ochre-dark);
  content: "+";
  font-size: 24px;
  line-height: 18px;
  text-align: center;
  transform: translateY(-50%);
}

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

.optional-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  padding-top: 18px;
}

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

.consent {
  display: grid;
  grid-template-columns: 23px 1fr;
  align-items: start;
  gap: 12px;
  margin: 0 0 26px;
  color: #475461;
  font-size: 15px;
  cursor: pointer;
}

.consent input {
  width: 22px;
  height: 22px;
  margin: 2px 0 0;
  accent-color: var(--cobalt);
}

.consent a {
  color: var(--cobalt-deep);
  font-weight: 700;
}

.submit-button {
  width: 100%;
  border: 0;
}

.confidentiality {
  margin: 23px 0 0;
  padding-left: 17px;
  border-left: 3px solid var(--olive);
  color: #4a5864;
  font-size: 15px;
}

.form-status {
  min-height: 0;
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 670;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  padding: 13px 15px;
  border-left: 4px solid var(--error);
  color: #762020;
  background: #fff1f1;
}

.error-summary {
  margin: 0 0 25px;
  padding: 16px 18px;
  border-left: 5px solid var(--error);
  color: #6e1e1e;
  background: #fff1f1;
}

.error-summary[hidden] {
  display: none;
}

.error-summary strong {
  display: block;
  margin-bottom: 8px;
}

.error-summary ul {
  margin: 0;
  padding-left: 22px;
}

.error-summary a {
  color: #6e1e1e;
  font-weight: 670;
}

.personal-contact {
  padding: 64px 0;
  color: #fff;
  background: var(--cobalt-deep);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.contact-layout h2 {
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(29px, 3.1vw, 38px);
}

.contact-layout p:not(.eyebrow) {
  margin-bottom: 0;
  color: #dce4ed;
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-links a {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 18px;
  font-weight: 720;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-links a:last-child {
  grid-column: 1 / -1;
}

.contact-links span {
  margin-bottom: 4px;
  color: #f2bd6b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer {
  padding: 27px 0;
  color: #d7dfe8;
  background: #101b30;
  font-size: 14px;
}

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

.footer-inner p {
  margin: 0;
}

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

.footer-inner a {
  color: #fff;
}

@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: minmax(195px, 1fr) auto 100px;
    gap: 17px;
  }

  .main-navigation {
    gap: 14px;
  }

  .main-navigation a {
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  }

  .hero-copy {
    padding-right: 38px;
  }

  .translation-intro,
  .real-estate-heading {
    grid-template-columns: 0.48fr 1fr 0.92fr;
    gap: 30px;
  }

  .translation-list article {
    padding-inline: 17px;
  }

  .work-copy {
    padding-inline: 42px;
  }

  .work-list li {
    grid-template-columns: 125px 1fr;
  }
}

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

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

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

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 48px 84px;
    min-height: 70px;
    gap: 12px;
  }

  .domain-mark {
    font-size: clamp(17px, 4.5vw, 22px);
  }

  .domain-mark::after {
    width: 38px;
    margin-top: 5px;
  }

  .awz-logo {
    width: 82px;
  }

  .menu-button {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    padding: 8px 16px 14px;
    border-bottom: 1px solid var(--line);
    background: var(--warm-white);
    box-shadow: 0 16px 28px rgba(24, 40, 70, 0.12);
  }

  .main-navigation[data-open="true"] {
    display: grid;
  }

  .main-navigation a {
    padding: 11px 8px;
    border-bottom: 1px solid rgba(37, 58, 100, 0.13);
  }

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

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 52px 0 58px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > .hero-lead,
  .hero-copy > .button,
  .hero-copy > .secondary-routes,
  .hero-media {
    width: var(--shell);
    margin-inline: auto;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero-copy > h1 {
    order: 2;
    font-size: clamp(34px, 8.5vw, 42px);
  }

  .hero-copy > .hero-lead {
    order: 3;
    font-size: 18px;
  }

  .hero-media {
    order: 4;
    height: min(67vw, 510px);
    min-height: 320px;
    margin-top: 7px;
    clip-path: none;
  }

  .hero-copy > .button {
    order: 5;
    margin-top: 27px;
  }

  .hero-copy > .secondary-routes {
    order: 6;
  }

  .hero-band {
    display: none;
  }

  .success-layout,
  .translation-intro,
  .contact-work-layout,
  .responsibility-layout,
  .support-layout,
  .real-estate-heading,
  .trust-layout,
  .form-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .success-layout {
    gap: 25px;
    padding-block: 40px;
  }

  .translation-section,
  .responsibility-section,
  .support-section,
  .real-estate-section,
  .form-section {
    padding-block: 80px;
  }

  .translation-intro {
    gap: 18px;
  }

  .translation-list {
    grid-template-columns: 1fr 1fr;
    margin-top: 46px;
  }

  .translation-list article + article {
    border-left: 0;
  }

  .translation-list article:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .translation-list article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .contact-work-layout {
    width: 100%;
  }

  .work-media {
    min-height: 0;
    height: 68vw;
    max-height: 570px;
  }

  .work-copy {
    max-width: none;
    width: var(--shell);
    margin-inline: auto;
    padding: 62px 0 72px;
  }

  .responsibility-layout,
  .support-layout {
    gap: 45px;
  }

  .responsibility-media,
  .support-media {
    height: min(72vw, 510px);
  }

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

  .support-media {
    grid-row: 2;
  }

  .real-estate-heading {
    gap: 17px;
  }

  .real-estate-options {
    grid-template-columns: 1fr;
    margin-top: 43px;
  }

  .real-estate-options article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-layout {
    gap: 27px;
  }

  .trust-number {
    padding-top: 20px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    border-left: 0;
  }

  .form-layout {
    gap: 35px;
  }

  .form-heading {
    position: static;
    padding-top: 0;
  }

  .contact-layout {
    gap: 38px;
  }
}

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

  body {
    font-size: 17px;
    line-height: 1.61;
  }

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

  .header-inner {
    grid-template-columns: minmax(0, 1fr) 44px 70px;
    min-height: 64px;
    gap: 8px;
  }

  .domain-mark {
    font-size: clamp(16px, 4.85vw, 20px);
  }

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

  .awz-logo {
    width: 68px;
  }

  .hero-grid {
    padding-top: 42px;
  }

  .hero-copy > h1 {
    margin-bottom: 19px;
    font-size: clamp(32px, 9.8vw, 37px);
  }

  .hero-copy > .hero-lead {
    font-size: 17px;
  }

  .hero-media {
    height: 44vw;
    min-height: 168px;
  }

  .button {
    width: 100%;
    min-height: 55px;
    padding-inline: 17px;
    font-size: 17px;
  }

  .secondary-routes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .secondary-routes a {
    min-width: 0;
    padding-right: 12px;
    font-size: 14px;
  }

  .secondary-routes a + a {
    padding-left: 12px;
  }

  h2 {
    font-size: clamp(27px, 8vw, 31px);
  }

  h3 {
    font-size: 21px;
  }

  .translation-section,
  .responsibility-section,
  .support-section,
  .real-estate-section,
  .form-section {
    padding-block: 65px;
  }

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

  .translation-list article,
  .translation-list article:nth-child(even),
  .translation-list article:nth-child(n + 3) {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 17px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .translation-list article:first-child {
    border-top: 0;
  }

  .translation-list article > span {
    margin-bottom: 0;
  }

  .work-media {
    height: 72vw;
    min-height: 245px;
  }

  .work-copy {
    padding-block: 56px 64px;
  }

  .work-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .responsibility-media,
  .support-media {
    height: 76vw;
    min-height: 250px;
  }

  .responsibility-media {
    border-width: 7px;
  }

  .real-estate-options article {
    padding: 27px 22px;
  }

  .contact-form {
    padding: 27px 18px 31px;
  }

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

  .concern-options span {
    min-height: 63px;
  }

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

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

  .personal-contact {
    padding-block: 55px;
  }

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

  .contact-links a,
  .contact-links a:last-child {
    grid-column: auto;
  }

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

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

@media (max-width: 340px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) 42px 60px;
    gap: 6px;
  }

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

  .awz-logo {
    width: 59px;
  }

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

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

  .secondary-routes a + a {
    margin-top: 10px;
    padding-left: 0;
    border-left: 0;
  }
}

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

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

@media print {
  .operator-bar,
  .site-header,
  .menu-button,
  .button,
  .secondary-routes,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .image-frame {
    break-inside: avoid;
  }
}
