:root {
  --blue: #19577a;
  --blue-dark: #153b51;
  --green: #244a43;
  --brick: #a7472e;
  --brick-dark: #85321f;
  --cream: #faf8f2;
  --wood: #e7d7bf;
  --mist: #e7f0f4;
  --ink: #243741;
  --muted: #536873;
  --line: #c8d3d8;
  --white: #fff;
  --shadow: 0 18px 42px rgba(31, 55, 67, .14);
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 102px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 18px/1.62 "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  overflow-wrap: anywhere;
}
body, button, input, textarea { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; }
p, h1, h2, h3 { margin-top: 0; }
h1, h2, h3 {
  color: var(--blue-dark);
  line-height: 1.08;
  letter-spacing: -.034em;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}
h1 { margin-bottom: 24px; font-size: clamp(2.8rem, 4.55vw, 3.65rem); max-width: 13ch; }
h2 { margin-bottom: 22px; font-size: clamp(2rem, 3.35vw, 2.58rem); max-width: 18ch; }
h3 { margin-bottom: 10px; font-size: 1.27rem; }
.word-lock { white-space: nowrap; }
.shell { width: var(--shell); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: -90px;
  left: 10px;
  padding: 10px 15px;
  color: var(--white);
  background: var(--brick-dark);
  border-radius: 4px;
}
.skip-link:focus { top: 10px; }
:focus-visible { outline: 3px solid #f2a438; outline-offset: 4px; }

.operator-bar {
  padding: 7px 20px;
  color: var(--white);
  background: var(--green);
  font-size: .76rem;
  font-weight: 800;
  text-align: center;
}
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(36,55,65,.14);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(205px, 1fr) auto 92px;
  align-items: center;
  gap: 30px;
}
.domain-mark {
  color: var(--blue-dark);
  font-size: 1.34rem;
  font-weight: 850;
  letter-spacing: -.035em;
  text-decoration: none;
}
.main-navigation { display: flex; gap: 25px; align-items: center; }
.main-navigation a { color: #385361; font-size: .89rem; font-weight: 750; text-decoration: none; }
.main-navigation a:hover { color: var(--brick-dark); }
.awz-logo { width: 86px; height: 50px; object-fit: contain; }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--blue-dark);
  border: 1px solid #aebdc4;
  border-radius: 5px;
  background: var(--white);
  cursor: pointer;
}
.menu-button span { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; background: var(--cream); overflow: hidden; }
.hero-grid {
  width: min(1440px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(390px, .82fr) minmax(0, 1.18fr);
  min-height: 650px;
}
.hero-copy {
  align-self: center;
  padding: 70px clamp(34px, 6vw, 100px) 64px max(24px, calc((100vw - 1180px) / 2));
}
.eyebrow {
  margin-bottom: 15px;
  color: var(--brick-dark);
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow-light { color: #d9e9e6; }
.hero-lead { max-width: 53ch; margin-bottom: 28px; color: #3e5662; font-size: 1.03rem; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-size: .96rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--brick); box-shadow: 0 11px 24px rgba(167,71,46,.23); }
.button-primary:hover { background: var(--brick-dark); }
.button-secondary { color: var(--blue-dark); border-color: #8fa6b1; background: transparent; }
.button-secondary:hover { border-color: var(--brick); }
.secondary-routes { display: flex; gap: 22px; margin-top: 25px; }
.secondary-routes a {
  padding: 8px 0 5px;
  border-bottom: 2px solid var(--wood);
  color: var(--blue-dark);
  font-size: .85rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}
.secondary-routes small {
  display: block;
  margin-bottom: 2px;
  color: var(--green);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.image-frame { position: relative; margin: 0; overflow: hidden; background: var(--mist); box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame figcaption {
  position: absolute;
  right: 11px;
  bottom: 11px;
  max-width: calc(100% - 22px);
  padding: 5px 9px;
  color: var(--white);
  background: rgba(21,59,81,.91);
  border-radius: 3px;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.25;
}
.hero-media { min-height: 650px; box-shadow: none; }
.hero-media img { object-position: 49% 50%; }
.material-bars {
  position: absolute;
  left: 0;
  bottom: 0;
  display: grid;
  width: 40%;
  height: 12px;
  grid-template-columns: 1.3fr .75fr .45fr;
}
.material-bars i:nth-child(1) { background: var(--blue); }
.material-bars i:nth-child(2) { background: var(--wood); }
.material-bars i:nth-child(3) { background: var(--brick); }

.basis-note { padding: 28px 0; background: var(--wood); }
.basis-inner { display: grid; grid-template-columns: 130px minmax(210px,.62fr) minmax(0,1.38fr); gap: 28px; align-items: center; }
.basis-inner > span { color: var(--brick-dark); font-size: .72rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.basis-inner h2 { margin: 0; font-size: 1.42rem; }
.basis-inner p { margin: 0; color: #4f5f63; font-size: .92rem; }

.experience-section { padding: 104px 0; }
.experience-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 46px 78px; }
.experience-copy p:last-child { margin-bottom: 0; }
.skills-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-top: 20px;
  border-top: 5px solid var(--blue);
  background: var(--cream);
}
.skills-rail article { position: relative; padding: 30px; }
.skills-rail article + article { border-left: 1px solid var(--line); }
.skills-rail span { display: block; margin-bottom: 22px; color: var(--brick-dark); font-size: .72rem; font-weight: 900; }
.skills-rail p { margin: 0; color: var(--muted); font-size: .91rem; }

.work-section { padding: 96px 0; color: #dfeaec; background: var(--green); }
.work-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 0; align-items: stretch; }
.work-media { min-height: 600px; box-shadow: none; }
.work-media img { object-position: 54% 50%; }
.work-copy { padding: 50px 0 35px 58px; }
.work-copy h2 { color: var(--white); }
.work-copy > p:not(.eyebrow) { color: #cfe0dc; }
.work-list { margin: 28px 0 0; padding: 0; list-style: none; counter-reset: task; }
.work-list li {
  display: grid;
  grid-template-columns: minmax(145px,.7fr) 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.22);
}
.work-list strong { color: var(--white); font-size: .91rem; }
.work-list span { color: #cfe0dc; font-size: .86rem; }

.transition-section { padding: 104px 0; background: var(--cream); }
.transition-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 62px; }
.transition-callout { margin-top: 29px; padding: 22px 24px; border-left: 5px solid var(--brick); background: var(--white); }
.transition-callout strong { display: block; margin-bottom: 6px; color: var(--blue-dark); }
.transition-callout p { margin: 0; font-size: .91rem; }
.organisation-media { aspect-ratio: 1.45; border-radius: 50px 4px 4px 4px; }
.organisation-media img { object-position: 47% 50%; }

.support-section { padding: 104px 0; }
.support-grid { display: grid; grid-template-columns: 1.07fr .93fr; gap: 66px; align-items: center; }
.exchange-media { aspect-ratio: 1.55; border-radius: 4px 4px 52px 4px; }
.exchange-media img { object-position: 53% 50%; }
.support-copy ul { margin: 27px 0 0; padding: 0; list-style: none; }
.support-copy li { position: relative; padding: 14px 0 14px 32px; border-top: 1px solid var(--line); }
.support-copy li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 14px; height: 7px; border-left: 3px solid var(--blue); border-bottom: 3px solid var(--blue); transform: rotate(-45deg); }

.property-section { padding: 92px 0; background: var(--mist); }
.property-layout { display: grid; grid-template-columns: .78fr 1fr 1fr; gap: 22px; }
.property-heading { padding: 12px 30px 0 0; }
.property-heading > p:last-child { color: var(--muted); }
.property-section article { padding: 30px; border: 1px solid #c3d2d9; background: var(--white); }
.property-section article > span { display: block; margin-bottom: 17px; color: var(--brick-dark); font-size: .69rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.property-section article p { color: var(--muted); font-size: .9rem; }
.property-section .button { min-height: 46px; padding: 10px 15px; font-size: .86rem; }

.trust-section { padding: 42px 0; color: #d9e4e8; background: var(--blue); }
.trust-grid { display: grid; grid-template-columns: 1fr 1.1fr auto; gap: 45px; align-items: center; }
.trust-grid h2 { margin: 0; color: var(--white); font-size: 1.52rem; }
.trust-grid p { margin: 0; }
.trust-number { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.29); }
.trust-number strong, .trust-number span { display: block; }
.trust-number strong { color: var(--white); font-size: 1.2rem; }
.trust-number span { font-size: .78rem; }

.form-section { padding: 104px 0; background: var(--cream); }
.form-grid { display: grid; grid-template-columns: .62fr 1.38fr; gap: 68px; align-items: start; }
.form-heading { position: sticky; top: 128px; }
.contact-form { padding: 34px; border-top: 6px solid var(--blue); background: var(--white); box-shadow: var(--shadow); }
.error-summary { margin-bottom: 24px; padding: 16px 18px; color: #6c2215; border: 2px solid var(--brick); background: #fff0eb; }
.error-summary[hidden] { display: none; }
.error-summary strong { display: block; }
.error-summary ul { margin: 8px 0 0; padding-left: 22px; }
.error-summary a { font-weight: 800; }
.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 { margin: 0 0 25px; padding: 0; border: 0; }
.concern-fieldset legend { margin-bottom: 10px; color: var(--blue-dark); font-weight: 800; }
.concern-options { display: grid; grid-template-columns: 1.36fr 1fr 1fr; gap: 8px; }
.concern-options label { cursor: pointer; }
.concern-options input { position: absolute; opacity: 0; }
.concern-options span {
  display: flex;
  min-height: 76px;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 12px 14px;
  color: #405560;
  border: 2px solid #c5d1d7;
  background: var(--white);
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.25;
}
.concern-options small { margin-bottom: 4px; color: var(--green); font-size: .61rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.concern-options input:checked + span { color: var(--white); border-color: var(--brick); background: var(--brick); }
.concern-options input:checked + span small { color: #fff0e8; }
.concern-options input:focus-visible + span { outline: 3px solid #f2a438; outline-offset: 3px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--blue-dark); font-size: .87rem; font-weight: 800; }
.field input, .field textarea { width: 100%; padding: 12px 13px; color: var(--ink); border: 1px solid #94a8b2; border-radius: 3px; background: var(--white); }
.field textarea { min-height: 150px; resize: vertical; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border: 3px solid var(--brick-dark); }
.optional-details { margin: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.optional-details summary { padding: 16px 2px; color: var(--blue-dark); font-weight: 800; cursor: pointer; }
.optional-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; padding-top: 8px; }
.field-wide { grid-column: 1 / -1; }
.consent { display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: start; margin: 22px 0; font-size: .86rem; }
.consent input { width: 20px; height: 20px; margin: 3px 0 0; }
.consent a { color: var(--brick-dark); font-weight: 800; }
.submit-button { border: 0; cursor: pointer; }
.form-status, .confidentiality { margin: 15px 0 0; font-size: .83rem; }
.form-status:empty { display: none; }
.form-status[data-state="error"] { padding: 13px 15px; color: #6f2818; border-left: 4px solid var(--brick); background: #fff0eb; font-weight: 750; }
.confidentiality { color: var(--muted); }

.personal-contact { padding: 65px 0; color: #d8e5e2; background: var(--green); }
.contact-grid { display: grid; grid-template-columns: 1fr auto; gap: 62px; align-items: center; }
.contact-grid h2 { margin-bottom: 10px; color: var(--white); }
.contact-grid p { margin-bottom: 0; }
.contact-links { display: grid; min-width: 300px; gap: 10px; }
.contact-links a { padding: 13px 16px; color: var(--white); border: 1px solid rgba(255,255,255,.27); border-radius: 3px; text-decoration: none; }
.contact-links span { display: block; color: #bfd0cc; font-size: .61rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.site-footer { padding: 25px 0; color: #5c6f78; background: #efebe2; font-size: .77rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; }
.footer-inner p { margin: 0; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-inner a { font-weight: 750; }

@media (max-width: 1060px) {
  :root { --shell: min(100% - 40px, 970px); }
  .header-inner { gap: 20px; }
  .main-navigation { gap: 16px; }
  .hero-grid { grid-template-columns: minmax(360px,.82fr) minmax(0,1.18fr); }
  .hero-copy { padding-right: 36px; }
  .work-copy { padding-left: 38px; }
  .transition-grid, .support-grid { gap: 40px; }
  .property-layout { grid-template-columns: 1fr 1fr; }
  .property-heading { grid-column: 1 / -1; max-width: 690px; }
}

@media (max-width: 820px) {
  :root { --shell: calc(100% - 32px); }
  html { scroll-padding-top: 86px; }
  .header-inner { min-height: 76px; grid-template-columns: minmax(0,1fr) 48px 76px; gap: 13px; }
  .domain-mark { min-width: 0; font-size: 1.18rem; }
  .awz-logo { width: 70px; height: 48px; }
  .menu-button { display: block; }
  .main-navigation {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 10px;
    border: 1px solid #b6c4cb;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .main-navigation[data-open="true"] { display: grid; }
  .main-navigation a { padding: 12px 10px; border-bottom: 1px solid #e0e6e9; }

  .hero-grid {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
  }
  .hero-copy { display: contents; }
  .hero-copy .eyebrow, .hero-copy h1, .hero-copy .hero-lead, .hero-copy > .button, .secondary-routes { margin-inline: 16px; }
  .hero-copy .eyebrow { order: 1; margin-top: 45px; }
  .hero-copy h1 { order: 2; }
  .hero-copy .hero-lead { order: 3; }
  .hero-media { order: 4; min-height: 0; aspect-ratio: 1.58; margin-top: 14px; }
  .hero-copy > .button { order: 5; margin-top: 26px; justify-self: start; }
  .secondary-routes { order: 6; margin-top: 18px; margin-bottom: 50px; }
  .material-bars { width: 100%; }
  h1 { max-width: 16ch; font-size: clamp(2.05rem, 8.7vw, 2.5rem); }
  .hero-lead { font-size: 1rem; }

  .basis-inner { grid-template-columns: 110px 1fr; gap: 12px 20px; }
  .basis-inner p { grid-column: 1 / -1; }
  .experience-section, .work-section, .transition-section, .support-section, .property-section, .form-section { padding: 78px 0; }
  .experience-grid, .work-layout, .transition-grid, .support-grid, .trust-grid, .form-grid, .contact-grid { grid-template-columns: 1fr; }
  .skills-rail { grid-template-columns: 1fr; }
  .skills-rail article + article { border-left: 0; border-top: 1px solid var(--line); }
  .work-media { min-height: 0; aspect-ratio: 1.45; }
  .work-copy { padding: 38px 0 0; }
  .organisation-media { aspect-ratio: 1.42; }
  .support-grid .exchange-media { order: 2; }
  .support-grid .support-copy { order: 1; }
  .exchange-media { aspect-ratio: 1.45; }
  .property-layout { grid-template-columns: 1fr; }
  .property-heading { grid-column: auto; padding-right: 0; }
  .trust-grid { gap: 20px; }
  .trust-number { padding: 18px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.28); }
  .form-grid { gap: 27px; }
  .form-heading { position: static; }
  .contact-form { padding: 27px 22px; }
  .contact-grid { gap: 29px; }
  .contact-links { min-width: 0; }
}

@media (max-width: 520px) {
  :root { --shell: calc(100% - 24px); }
  body { font-size: 17px; }
  .operator-bar { padding-inline: 10px; font-size: .69rem; }
  .header-inner { grid-template-columns: minmax(0,1fr) 46px 66px; gap: 9px; }
  .domain-mark { font-size: 1.03rem; }
  .menu-button { width: 46px; height: 46px; }
  .awz-logo { width: 62px; height: 44px; }
  .hero-copy .eyebrow, .hero-copy h1, .hero-copy .hero-lead, .hero-copy > .button, .secondary-routes { margin-inline: 12px; }
  .hero-media { aspect-ratio: 1.28; }
  .hero-media img { object-position: 55% 50%; }
  .hero-copy > .button { width: calc(100% - 24px); }
  .secondary-routes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .secondary-routes a { min-height: 58px; padding: 8px; border: 1px solid #a9b7bd; background: rgba(255,255,255,.7); }
  .basis-inner { grid-template-columns: 1fr; }
  .basis-inner p { grid-column: auto; }
  .basis-inner > span { margin-bottom: -5px; }
  h2 { font-size: 1.72rem; }
  .skills-rail article { padding: 24px 20px; }
  .work-media { aspect-ratio: 1.17; }
  .work-media img { object-position: 43% 50%; }
  .work-list li { grid-template-columns: 1fr; gap: 4px; }
  .organisation-media, .exchange-media { aspect-ratio: 1.2; }
  .organisation-media img { object-position: 43% 50%; }
  .exchange-media img { object-position: 62% 50%; }
  .property-section article { padding: 24px 20px; }
  .concern-options { grid-template-columns: 1fr; }
  .concern-options span { min-height: 62px; }
  .optional-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .contact-form { padding: 24px 16px; }
  .submit-button { width: 100%; }
  .footer-inner { flex-direction: column; }
  .footer-inner nav { gap: 14px 18px; }
}

@media (max-width: 350px) {
  :root { --shell: calc(100% - 20px); }
  .operator-bar { font-size: .64rem; }
  .header-inner { grid-template-columns: minmax(0,1fr) 44px 58px; gap: 6px; }
  .domain-mark { font-size: .91rem; }
  .awz-logo { width: 55px; }
  h1 { font-size: 1.88rem; }
  h1 .word-lock { font-size: .91em; }
  .secondary-routes { grid-template-columns: 1fr; }
  .hero-media { aspect-ratio: 1.12; }
  .contact-form { padding-inline: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
