:root {
  --wine: #7a2638;
  --wine-dark: #5d1d2a;
  --slate: #28475b;
  --slate-dark: #203642;
  --teal: #4f7775;
  --cream: #fbf6ee;
  --rose: #ebd7d5;
  --mist: #edf3f2;
  --ink: #263943;
  --muted: #566b75;
  --line: #c9d4d4;
  --white: #fff;
  --shadow: 0 22px 52px rgba(38, 57, 67, .15);
  --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(--slate-dark);
  line-height: 1.08;
  letter-spacing: -.035em;
  hyphens: auto;
  overflow-wrap: normal;
  word-break: normal;
}
h1 { max-width: 12ch; margin-bottom: 24px; font-size: clamp(2.8rem, 4.6vw, 3.65rem); }
h2 { max-width: 18ch; margin-bottom: 22px; font-size: clamp(2rem, 3.3vw, 2.55rem); }
h3 { margin-bottom: 10px; font-size: 1.25rem; }
.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(--wine-dark);
  border-radius: 3px;
}
.skip-link:focus { top: 10px; }
:focus-visible { outline: 3px solid #f0a638; outline-offset: 4px; }

.operator-bar {
  padding: 7px 20px;
  color: var(--white);
  background: var(--wine-dark);
  font-size: .76rem;
  font-weight: 800;
  text-align: center;
}
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(38,57,67,.15);
  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(--wine-dark);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -.035em;
  text-decoration: none;
}
.main-navigation { display: flex; gap: 25px; align-items: center; }
.main-navigation a { color: #415b68; font-size: .88rem; font-weight: 750; text-decoration: none; }
.main-navigation a:hover { color: var(--wine); }
.awz-logo { width: 86px; height: 50px; object-fit: contain; }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  color: var(--slate-dark);
  border: 1px solid #aebdc2;
  border-radius: 3px;
  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%);
  min-height: 650px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(390px, .8fr) minmax(0, 1.2fr);
}
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 66px clamp(34px, 5vw, 86px) 66px max(24px, calc((100vw - 1180px) / 2));
}
.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -40px;
  right: -62px;
  width: 150px;
  height: 230px;
  border: 20px solid rgba(235,215,213,.72);
}
.eyebrow {
  margin-bottom: 15px;
  color: var(--wine);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow-light { color: #d7e8e6; }
.hero-lead { max-width: 52ch; margin-bottom: 29px; color: #405964; 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: 3px;
  font-size: .95rem;
  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(--wine); box-shadow: 0 12px 25px rgba(122,38,56,.24); }
.button-primary:hover { background: var(--wine-dark); }
.button-secondary { color: var(--slate-dark); border-color: #8ba2aa; background: transparent; }
.button-secondary:hover { border-color: var(--wine); }
.secondary-routes { display: flex; gap: 22px; margin-top: 25px; }
.secondary-routes a {
  padding: 8px 0 5px;
  border-bottom: 2px solid var(--rose);
  color: var(--slate-dark);
  font-size: .84rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
}
.secondary-routes small {
  display: block;
  margin-bottom: 2px;
  color: var(--teal);
  font-size: .61rem;
  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(32,54,66,.92);
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.25;
}
.hero-media { min-height: 650px; box-shadow: none; }
.hero-media img { object-position: 47% 50%; }
.facade-rhythm {
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
  display: grid;
  width: 43%;
  height: 13px;
  grid-template-columns: 1fr .55fr .35fr .7fr .28fr;
  gap: 3px;
}
.facade-rhythm span:nth-child(odd) { background: var(--wine); }
.facade-rhythm span:nth-child(even) { background: var(--teal); }

.basis-note { padding: 30px 0; background: var(--rose); }
.basis-inner { display: grid; grid-template-columns: 150px minmax(220px,.62fr) minmax(0,1.38fr); gap: 28px; align-items: center; }
.basis-kicker { margin: 0; color: var(--wine-dark); font-size: .7rem; font-weight: 900; letter-spacing: .09em; line-height: 1.4; text-transform: uppercase; }
.basis-inner h2 { margin: 0; font-size: 1.43rem; }
.basis-inner > p:last-child { margin: 0; color: #4e5f65; font-size: .91rem; }

.experience-section { padding: 104px 0; }
.experience-layout { display: grid; grid-template-columns: 110px .78fr 1.22fr; gap: 48px; align-items: start; }
.district-marker {
  width: 88px;
  min-height: 164px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px 12px;
  color: var(--white);
  background: var(--wine);
}
.district-marker strong { font-size: 2.4rem; line-height: 1; }
.district-marker span { writing-mode: vertical-rl; font-size: .67rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.experience-copy p:last-child { margin-bottom: 0; }
.skills-line {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  margin-top: 11px;
  border-top: 5px solid var(--slate);
  background: var(--cream);
}
.skills-line article { padding: 27px 22px; }
.skills-line article + article { border-left: 1px solid var(--line); }
.skills-line span { display: block; margin-bottom: 18px; color: var(--wine); font-size: .68rem; font-weight: 900; }
.skills-line h3 { font-size: 1.08rem; }
.skills-line p { margin: 0; color: var(--muted); font-size: .84rem; }

.work-section { padding: 100px 0; color: #dce9e8; background: var(--slate-dark); }
.work-layout { display: grid; grid-template-columns: .88fr 1.12fr; gap: 60px; align-items: center; }
.work-copy h2 { color: var(--white); }
.work-copy > p:not(.eyebrow) { color: #cedde1; }
.work-list { margin: 28px 0 0; padding: 0; list-style: none; }
.work-list li { display: grid; grid-template-columns: 42px 1fr; gap: 13px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.2); }
.work-list li > span { color: #d7a2ad; font-size: .73rem; font-weight: 900; }
.work-list strong { display: block; color: var(--white); font-size: .92rem; }
.work-list p { margin: 3px 0 0; color: #c6d6da; font-size: .85rem; }
.work-media { min-height: 600px; border-radius: 90px 0 0 0; box-shadow: none; }
.work-media img { object-position: 51% 50%; }

.organisation-section { padding: 106px 0; background: var(--cream); }
.organisation-layout { display: grid; grid-template-columns: 1.06fr .94fr; gap: 68px; align-items: center; }
.organisation-media { aspect-ratio: 1.46; border-radius: 0 0 72px 0; }
.organisation-media img { object-position: 43% 50%; }
.entry-note { margin-top: 29px; padding: 22px 24px; border-left: 5px solid var(--wine); background: var(--white); }
.entry-note strong { display: block; margin-bottom: 6px; color: var(--slate-dark); }
.entry-note p { margin: 0; font-size: .9rem; }

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

.property-section { padding: 94px 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-top: 5px solid var(--teal); background: var(--white); box-shadow: 0 10px 25px rgba(38,57,67,.07); }
.property-section article + article { border-top-color: var(--slate); }
.property-section article > span { display: block; margin-bottom: 17px; color: var(--wine); font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.property-section article p { color: var(--muted); font-size: .89rem; }
.property-section .button { min-height: 46px; padding: 10px 15px; font-size: .85rem; }

.trust-section { padding: 44px 0; color: #dce7e8; background: var(--teal); }
.trust-layout { display: grid; grid-template-columns: 1fr 1.08fr auto; gap: 45px; align-items: center; }
.trust-layout h2 { margin: 0; color: var(--white); font-size: 1.5rem; }
.trust-layout p { margin: 0; }
.trust-number { padding-left: 34px; border-left: 1px solid rgba(255,255,255,.32); }
.trust-number strong, .trust-number span { display: block; }
.trust-number strong { color: var(--white); font-size: 1.19rem; }
.trust-number span { font-size: .77rem; }

.form-section { padding: 106px 0; background: var(--cream); }
.form-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 68px; align-items: start; }
.form-heading { position: sticky; top: 128px; }
.form-heading > p:last-child { max-width: 31ch; color: var(--muted); }
.contact-form { padding: 34px; border-top: 6px solid var(--wine); background: var(--white); box-shadow: var(--shadow); }
.error-summary { margin-bottom: 24px; padding: 16px 18px; color: #681e2e; border: 2px solid var(--wine); background: #fff0f2; }
.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(--slate-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: #405660; border: 2px solid #c5d1d4; background: var(--white); font-size: .81rem; font-weight: 750; line-height: 1.25; }
.concern-options small { margin-bottom: 4px; color: var(--teal); font-size: .6rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.concern-options input:checked + span { color: var(--white); border-color: var(--wine); background: var(--wine); }
.concern-options input:checked + span small { color: #f9dbe1; }
.concern-options input:focus-visible + span { outline: 3px solid #f0a638; outline-offset: 3px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--slate-dark); font-size: .87rem; font-weight: 800; }
.field input, .field textarea { width: 100%; padding: 12px 13px; color: var(--ink); border: 1px solid #94a8af; border-radius: 2px; background: var(--white); }
.field textarea { min-height: 150px; resize: vertical; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border: 3px solid var(--wine-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(--slate-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(--wine); 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: #681e2e; border-left: 4px solid var(--wine); background: #fff0f2; font-weight: 750; }
.confidentiality { color: var(--muted); }

.personal-contact { padding: 67px 0; color: #dbe7e8; background: var(--slate-dark); }
.contact-layout { display: grid; grid-template-columns: 1fr auto; gap: 62px; align-items: center; }
.contact-layout h2 { margin-bottom: 10px; color: var(--white); }
.contact-layout 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,.28); border-radius: 2px; text-decoration: none; }
.contact-links span { display: block; color: #bcd0d3; font-size: .61rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }

.site-footer { padding: 25px 0; color: #5a6d76; background: #eee8e1; 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: 19px; }
  .main-navigation { gap: 15px; }
  .hero-grid { grid-template-columns: minmax(360px,.82fr) minmax(0,1.18fr); }
  .hero-copy { padding-right: 34px; }
  .experience-layout { grid-template-columns: 88px .82fr 1.18fr; gap: 34px; }
  .work-layout, .organisation-layout, .support-layout { gap: 42px; }
  .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.17rem; }
  .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 #b6c4c8; background: var(--white); box-shadow: var(--shadow); }
  .main-navigation[data-open="true"] { display: grid; }
  .main-navigation a { padding: 12px 10px; border-bottom: 1px solid #e0e6e8; }

  .hero-grid { width: 100%; min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { display: contents; }
  .hero-copy::before { display: none; }
  .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: 51px; }
  .facade-rhythm { 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: 130px 1fr; gap: 12px 20px; }
  .basis-inner > p:last-child { grid-column: 1 / -1; }
  .experience-section, .work-section, .organisation-section, .support-section, .property-section, .form-section { padding: 78px 0; }
  .experience-layout { grid-template-columns: 74px 1fr; gap: 28px; }
  .experience-copy { grid-column: 2; }
  .district-marker { grid-row: 1 / span 2; width: 64px; min-height: 210px; }
  .skills-line { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; }
  .skills-line article:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .skills-line article:nth-child(4) { border-top: 1px solid var(--line); }
  .work-layout, .organisation-layout, .support-layout, .trust-layout, .form-layout, .contact-layout { grid-template-columns: 1fr; }
  .work-media { min-height: 0; aspect-ratio: 1.45; border-radius: 54px 0 0 0; }
  .organisation-media { aspect-ratio: 1.43; }
  .support-layout .support-copy { order: 1; }
  .support-layout .exchange-media { order: 2; }
  .exchange-media { aspect-ratio: 1.47; }
  .property-layout { grid-template-columns: 1fr; }
  .property-heading { grid-column: auto; padding-right: 0; }
  .trust-layout { gap: 20px; }
  .trust-number { padding: 18px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.3); }
  .form-layout { gap: 27px; }
  .form-heading { position: static; }
  .form-heading > p:last-child { max-width: 44ch; }
  .contact-form { padding: 27px 22px; }
  .contact-layout { 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.02rem; }
  .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: 51% 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 #a9b7bb; background: rgba(255,255,255,.72); }
  .basis-inner { grid-template-columns: 1fr; }
  .basis-inner > p:last-child { grid-column: auto; }
  h2 { font-size: 1.72rem; }
  .experience-layout { grid-template-columns: 1fr; }
  .district-marker { display: none; }
  .experience-copy { grid-column: auto; }
  .skills-line { grid-template-columns: 1fr; }
  .skills-line article + article { border-left: 0; border-top: 1px solid var(--line); }
  .work-media { aspect-ratio: 1.18; }
  .work-media img { object-position: 52% 50%; }
  .organisation-media, .exchange-media { aspect-ratio: 1.2; }
  .organisation-media img { object-position: 42% 50%; }
  .exchange-media img { object-position: 48% 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: .9rem; }
  .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;
  }
}
