:root {
  --navy: #102a43;
  --navy-deep: #0a1d30;
  --teal: #0f766e;
  --teal-bright: #168c80;
  --mist: #e9f3f0;
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #17212b;
  --muted: #5b6873;
  --line: #cdd8d7;
  --copper: #b85f42;
  --shadow: 0 24px 60px rgba(14, 42, 60, 0.13);
  --radius: 26px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  background: var(--navy-deep);
  color: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(16, 42, 67, 0.12);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto 120px;
  align-items: center;
  gap: 34px;
}

.brand {
  width: max-content;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}

.brand-domain {
  color: var(--navy);
  font-weight: 780;
  letter-spacing: -0.025em;
}

.brand-purpose {
  margin-top: 6px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 26px;
}

.navigation a {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.navigation a:not(.nav-cta):hover {
  color: var(--teal);
}

.navigation .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
}

.awz-mark {
  justify-self: end;
  width: 92px;
}

.awz-mark img {
  width: 92px;
  height: 58px;
  object-fit: contain;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 92px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  top: -320px;
  left: -250px;
  border: 1px solid rgba(15, 118, 110, 0.19);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(15, 118, 110, 0.035), 0 0 0 180px rgba(15, 118, 110, 0.02);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--navy-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.07;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(3rem, 5.5vw, 5.55rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.hero-lead {
  max-width: 650px;
  margin: 0 0 32px;
  color: #354653;
  font-size: 1.15rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 12px 30px rgba(15, 118, 110, 0.22);
}

.button-primary:hover {
  background: #0b665f;
}

.text-link {
  color: var(--navy);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(15, 118, 110, 0.45);
  text-underline-offset: 5px;
}

.hero-note {
  margin-top: 42px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-note span {
  padding: 7px 12px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  width: min(100%, 550px);
  justify-self: end;
  margin: 0;
  padding: 0 0 28px 28px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 38px 28px 0 0;
  background: var(--teal);
  border-radius: var(--radius);
}

.hero-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-visual figcaption {
  position: absolute;
  right: -24px;
  bottom: 4px;
  max-width: 270px;
  padding: 17px 20px;
  color: var(--white);
  background: var(--navy-deep);
  border-left: 4px solid var(--copper);
  box-shadow: 0 16px 30px rgba(10, 29, 48, 0.22);
  font-size: 0.88rem;
  line-height: 1.45;
}

.caption-kicker {
  display: block;
  margin-bottom: 3px;
  color: #87d9d0;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intro {
  padding: 94px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.intro-grid {
  display: grid;
  grid-template-columns: 80px minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: 50px;
  align-items: start;
}

.section-index {
  margin: 0;
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.intro h2,
.principles h2 {
  color: var(--white);
}

.intro .eyebrow,
.principles .eyebrow {
  color: #7dd4ca;
}

.intro-text p {
  margin: 0 0 20px;
  color: #d9e1e7;
}

.intro-text p:first-child {
  font-size: 1.13rem;
}

.paths {
  padding: 104px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.path-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.path {
  min-height: 360px;
  padding: 36px 34px 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

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

.path-number {
  margin: 0 0 62px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.path h3 {
  margin-bottom: 18px;
}

.path > p:not(.path-number) {
  margin: 0 0 26px;
  color: var(--muted);
}

.path a {
  margin-top: auto;
  color: var(--teal);
  font-weight: 760;
  text-decoration: none;
}

.path a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.sector {
  padding: 104px 0;
  background: var(--mist);
}

.sector-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 78px;
}

.sector-visual {
  position: relative;
  width: min(100%, 520px);
  justify-self: start;
  margin: 0;
}

.sector-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -18px;
  right: -18px;
  width: 110px;
  height: 110px;
  border-top: 3px solid var(--copper);
  border-right: 3px solid var(--copper);
}

.sector-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-label {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 22px;
  padding: 9px 14px;
  color: var(--white);
  background: rgba(10, 29, 48, 0.88);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
}

.sector-copy > p:not(.eyebrow, .section-index) {
  color: #43525c;
}

.sector-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #bbcfcb;
}

.sector-list li {
  padding: 15px 0;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  border-bottom: 1px solid #bbcfcb;
  color: var(--navy);
  font-weight: 700;
}

.sector-list span {
  color: var(--teal);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.principles {
  padding: 102px 0;
  color: var(--white);
  background: var(--navy-deep);
}

.principles-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 0.8fr));
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.principle-lead,
.principle {
  padding: 34px;
}

.principle-lead {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.principle-lead h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.principle {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.principle:last-child {
  border-right: 0;
}

.principle h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.25rem;
}

.principle p {
  margin: 0;
  color: #cfd9e1;
  font-size: 0.93rem;
}

.principle-accent {
  background: var(--teal);
}

.principle-accent p {
  color: var(--white);
}

.contact-section {
  padding: 110px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: 74px;
}

.contact-intro {
  position: sticky;
  top: 130px;
}

.contact-intro > p:not(.eyebrow, .section-index) {
  max-width: 430px;
  color: var(--muted);
}

.contact-prompt {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-prompt span {
  padding: 7px 11px;
  color: var(--navy);
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.contact-form {
  padding: 40px;
  background: var(--white);
  border: 1px solid #d9dfdf;
  border-top: 5px solid var(--teal);
  box-shadow: var(--shadow);
}

.contact-form fieldset {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
}

.contact-form legend,
.contact-form label > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 760;
}

.contact-form legend {
  margin-bottom: 13px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  min-height: 58px;
  margin: 0 !important;
  padding: 12px 14px;
  display: flex !important;
  align-items: center;
  color: var(--navy);
  background: #f6f8f7;
  border: 1px solid #d4dedd;
  font-size: 0.84rem !important;
  font-weight: 680 !important;
  line-height: 1.35;
  transition: border-color 150ms ease, background-color 150ms ease;
}

.choice-grid input:checked + span {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid #e4906f;
  outline-offset: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.personal-details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.personal-details summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
}

.personal-details .form-row {
  grid-template-columns: 1fr;
  margin-top: 20px;
}

.direct-contact .confidential {
  grid-column: 2;
  margin: 0;
  color: rgba(255, 255, 255, .76);
}

.form-row-three {
  grid-template-columns: 0.7fr 1fr 1fr;
}

.contact-form > label,
.form-row > label {
  display: block;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #bfcacb;
  border-radius: 5px;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 9px 12px;
}

.contact-form textarea {
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
  outline: 0;
}

.contact-form .consent {
  margin: 2px 0 26px;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #4b5962;
  font-size: 0.84rem;
  line-height: 1.55;
}

.consent input {
  width: 19px;
  min-height: 19px;
  margin: 2px 0 0;
  accent-color: var(--teal);
}

.consent a {
  color: var(--teal);
  font-weight: 700;
  text-underline-offset: 3px;
}

.button-submit {
  width: 100%;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px;
}

.button-submit:hover {
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.2);
}

.form-status {
  min-height: 1.7em;
  margin: 13px 0 0;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 680;
}

.direct-contact {
  color: var(--white);
  background: var(--teal);
}

.direct-contact-inner {
  min-height: 300px;
  padding-block: 58px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.direct-contact .eyebrow {
  color: #d1fff7;
}

.direct-contact h2 {
  margin-bottom: 0;
  color: var(--white);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-details a {
  padding: 20px 10px 17px 0;
  display: flex;
  flex-direction: column;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.08rem;
  font-weight: 740;
  text-decoration: none;
}

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

.contact-details a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.contact-details span {
  margin-bottom: 3px;
  color: #d1fff7;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  padding: 34px 0;
  color: #cbd6df;
  background: #071624;
  font-size: 0.84rem;
}

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

.footer-inner p {
  margin: 0;
}

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

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer a {
  color: var(--white);
  text-underline-offset: 4px;
}

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

  .navigation {
    gap: 16px;
  }

  .navigation a {
    font-size: 0.82rem;
  }

  .hero-grid,
  .sector-grid {
    gap: 42px;
  }

  .hero-visual figcaption {
    right: 0;
  }

  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principle-lead,
  .principle:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .contact-grid {
    gap: 42px;
  }
}

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

  .header-inner {
    min-height: 76px;
    grid-template-columns: 1fr auto 78px;
  }

  .menu-button {
    padding: 9px 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 760;
  }

  .menu-lines,
  .menu-lines::before,
  .menu-lines::after {
    width: 16px;
    height: 2px;
    display: block;
    background: currentColor;
    content: "";
  }

  .menu-lines {
    position: relative;
  }

  .menu-lines::before {
    position: absolute;
    top: -5px;
  }

  .menu-lines::after {
    position: absolute;
    top: 5px;
  }

  .navigation {
    position: fixed;
    inset: 76px 0 auto;
    padding: 28px 24px 34px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 38px rgba(10, 29, 48, 0.14);
  }

  .navigation.open {
    display: flex;
  }

  .navigation a {
    padding: 12px 10px;
    font-size: 1rem;
  }

  .navigation .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .awz-mark,
  .awz-mark img {
    width: 76px;
  }

  .hero {
    padding: 52px 0 76px;
  }

  .hero-grid,
  .sector-grid,
  .contact-grid,
  .direct-contact-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    display: contents;
  }

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

  .hero-copy h1 {
    order: 2;
  }

  .hero-visual {
    order: 3;
    margin: 0 0 32px;
  }

  .hero-lead {
    order: 4;
  }

  .hero-actions {
    order: 5;
  }

  .hero-note {
    order: 6;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-visual {
    width: min(100%, 560px);
    justify-self: center;
  }

  .intro-grid {
    grid-template-columns: 52px 1fr;
  }

  .intro-text {
    grid-column: 2;
  }

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

  .path {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .path:last-child {
    border-bottom: 0;
  }

  .path-number {
    margin-bottom: 30px;
  }

  .contact-intro {
    position: static;
  }

  .direct-contact-inner {
    gap: 28px;
  }
}

@media (max-width: 820px) {
  .direct-contact .confidential { grid-column: 1; }
}

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

  body {
    font-size: 16px;
  }

  .header-inner {
    grid-template-columns: 1fr auto 54px;
    gap: 8px;
  }

  .brand-purpose {
    display: none;
  }

  .awz-mark,
  .awz-mark img {
    width: 52px;
  }

  .hero::before {
    width: 400px;
    height: 400px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 4rem);
    overflow-wrap: anywhere;
    hyphens: auto;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-grid,
  .hero-grid > *,
  .hero-copy,
  .hero-lead,
  .hero-copy .eyebrow {
    min-width: 0;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
  }

  .hero-visual {
    padding: 0 0 18px 14px;
  }

  .hero-visual figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 20px);
    max-width: none;
    margin: -25px 0 0 auto;
  }

  .intro,
  .paths,
  .sector,
  .principles,
  .contact-section {
    padding: 74px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro-text {
    grid-column: auto;
  }

  .path {
    padding-inline: 10px;
  }

  .sector-visual::after {
    display: none;
  }

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

  .principle-lead,
  .principle {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .principle:last-child {
    border-bottom: 0;
  }

  .contact-form {
    padding: 26px 18px;
  }

  .choice-grid,
  .form-row,
  .form-row-three,
  .contact-details {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
