:root {
  --ink: #0d1511;
  --green: #2f8064;
  --green-dark: #216049;
  --green-light: #dff1e9;
  --mint: #edf6f1;
  --paper: #f4f7f4;
  --white: #ffffff;
  --line: #cad6d0;
  --muted: #5d6862;
  --max: 1180px;
  --shadow: 0 24px 70px rgba(13, 21, 17, 0.12);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -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;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  transition: top 0.2s ease;
}

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

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(13, 21, 17, 0.08);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(13, 21, 17, 0.08);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  flex: 0 0 auto;
  width: 210px;
  height: 58px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.main-nav > a:not(.button) {
  position: relative;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.main-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.file-drop:focus-within,
a:focus-visible,
button:focus-visible {
  outline: 3px solid #84d8b9;
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  background: var(--green);
}

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

.button-light:hover {
  color: var(--white);
  background: var(--ink);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.button-outline-light:hover {
  color: var(--ink);
  background: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow-dark {
  color: var(--green-dark);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  color: var(--white);
  background: var(--green);
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -175px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.03), 0 0 0 160px rgba(255, 255, 255, 0.025);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 80%);
}

.hero-layout {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 72px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-copy h1,
.section-heading h2,
.split-heading h2,
.candidate-copy h2,
.form-intro h2,
.about-copy h2,
.enquiry-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero-copy h1 em {
  display: inline-block;
  color: var(--green-light);
  font-style: normal;
  font-weight: 400;
}

.hero-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-trust div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust strong {
  font-size: 15px;
}

.hero-trust span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-board {
  position: relative;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.3deg);
}

.hero-board::before {
  content: "";
  position: absolute;
  inset: 10px -10px -10px 10px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.board-top,
.board-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
}

.board-top {
  border-bottom: 1px solid var(--line);
}

.board-top p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3daf74;
  box-shadow: 0 0 0 5px rgba(61, 175, 116, 0.15);
}

.role-list {
  padding: 6px 24px;
}

.role-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 75px;
  border-bottom: 1px solid var(--line);
}

.role-row:last-child {
  border: 0;
}

.role-row > span {
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.role-row strong {
  font-size: 18px;
}

.role-row small {
  color: var(--muted);
  font-size: 11px;
}

.board-footer {
  justify-content: flex-start;
  flex-wrap: wrap;
  color: var(--white);
  background: var(--ink);
}

.board-footer span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-footer span:not(:last-child)::after {
  content: "•";
  margin-left: 12px;
  color: #6bc3a2;
}

.ticker {
  position: relative;
  overflow: hidden;
  height: 58px;
  color: var(--ink);
  background: var(--green-light);
  border-bottom: 1px solid #b6d6c8;
}

.ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: ticker 32s linear infinite;
}

.ticker span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ticker i {
  width: 8px;
  height: 8px;
  display: block;
  background: var(--green);
  transform: rotate(45deg);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.audience {
  background: var(--white);
}

.section-heading {
  max-width: 820px;
}

.section-heading h2,
.split-heading h2,
.candidate-copy h2,
.form-intro h2,
.about-copy h2,
.enquiry-copy h2,
.contact h2 {
  font-size: clamp(40px, 5vw, 66px);
}

.section-heading > p:last-child {
  max-width: 700px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.benefit-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--paper);
  border: 1px solid #e0e8e3;
}

.benefit-card.featured {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.card-number {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.featured .card-number {
  color: var(--green-light);
}

.benefit-card h3 {
  margin: auto 0 14px;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
}

.benefit-card.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.employer-cta {
  margin-top: 20px;
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
  background: var(--ink);
}

.employer-cta h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.035em;
}

.employer-cta .eyebrow {
  margin-bottom: 10px;
}

.sectors {
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 90px;
}

.split-heading > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
}

.sector-list {
  margin-top: 68px;
  border-top: 1px solid var(--line);
}

.sector-item {
  display: grid;
  grid-template-columns: 74px 1fr 58px;
  align-items: center;
  gap: 26px;
  min-height: 160px;
  border-bottom: 1px solid var(--line);
  transition: background 0.22s ease, padding 0.22s ease;
}

.sector-item:hover {
  padding-inline: 20px;
  background: var(--white);
}

.sector-index {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.sector-item h3 {
  margin: 0 0 7px;
  font-size: 30px;
  letter-spacing: -0.035em;
}

.sector-item p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.sector-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.candidate-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.candidate-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -160px;
  bottom: -250px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}

.candidate-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 100px;
}

.candidate-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.check-list li span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--green-dark);
  background: var(--green-light);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.candidate-steps {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.steps-title {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.candidate-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.candidate-steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.candidate-steps li:last-child {
  border-bottom: 0;
}

.candidate-steps li > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
}

.candidate-steps strong,
.candidate-steps small {
  display: block;
}

.candidate-steps strong {
  font-size: 18px;
}

.candidate-steps small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.application {
  background: var(--white);
}

.application-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: start;
  gap: 90px;
}

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

.form-intro > p:not(.eyebrow) {
  margin-top: 25px;
  color: var(--muted);
  font-size: 18px;
}

.privacy-note {
  margin-top: 34px;
  padding: 24px;
  background: var(--mint);
  border-left: 4px solid var(--green);
}

.privacy-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.application-form {
  padding: 42px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.form-grid,
.field-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 18px;
}

.field {
  display: flex;
  flex-direction: column;
}

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

.field label {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
}

.field label span {
  color: var(--green);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #b9c8c0;
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}

.field input,
.field select {
  min-height: 54px;
  padding: 0 16px;
}

.field textarea {
  padding: 15px 16px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7d8983;
}

.upload-field > label:first-child {
  margin-bottom: 8px;
}

.file-drop {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  background: var(--white);
  border: 1px dashed #8ca99c;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.file-drop:hover,
.file-drop.dragging {
  background: var(--mint);
  border-color: var(--green);
}

.file-drop input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  color: var(--white) !important;
  background: var(--green);
  border-radius: 50%;
  font-size: 20px;
}

.file-drop strong {
  font-size: 15px;
}

.file-drop small {
  margin-top: 5px;
  color: var(--muted);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

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

.consent a {
  color: var(--green-dark);
  font-weight: 800;
}

.consent b {
  color: var(--green);
}

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

.form-message {
  display: none;
  margin: 0 0 18px;
  padding: 12px 14px;
  color: #7d1e1e;
  background: #fff0f0;
  border-left: 3px solid #b72b2b;
}

.form-message.show {
  display: block;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

.about {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 100px;
}

.about-mark {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green);
}

.about-mark::before,
.about-mark::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 70%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.about-mark::after {
  width: 48%;
  height: 48%;
}

.about-mark span {
  position: relative;
  z-index: 1;
  font-size: clamp(70px, 10vw, 135px);
  font-weight: 900;
  letter-spacing: -0.1em;
}

.about-mark span:last-child {
  color: var(--green-light);
}

.about-copy .large-copy {
  margin: 30px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.5;
}

.about-copy > p:last-of-type {
  color: var(--muted);
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.company-facts div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.company-facts strong {
  font-size: 14px;
}

.company-facts span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.employer-enquiry {
  color: var(--white);
  background: var(--ink);
}

.enquiry-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.enquiry-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.enquiry-copy p:not(.eyebrow) {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
}

.enquiry-copy > a {
  display: inline-block;
  margin-top: 25px;
  color: #9ddfc5;
  font-weight: 800;
}

.employer-form {
  padding: 40px;
  background: #17201c;
  border: 1px solid #34443c;
}

.employer-form .field {
  margin-bottom: 22px;
}

.employer-form .field-pair {
  gap: 18px;
}

.employer-form .field label {
  color: rgba(255, 255, 255, 0.82);
}

.employer-form .field input,
.employer-form .field textarea {
  color: var(--white);
  background: #0f1713;
  border-color: #48574f;
}

.employer-form .field input::placeholder,
.employer-form .field textarea::placeholder {
  color: #849189;
}

.consent-light {
  color: rgba(255, 255, 255, 0.64);
}

.contact {
  background: var(--green-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 0.65fr 0.65fr;
  gap: 50px;
  align-items: end;
}

.contact-card {
  min-height: 150px;
  padding: 26px 0 0;
  border-top: 2px solid var(--ink);
}

.contact-card > span {
  display: block;
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-card address {
  font-style: normal;
  font-weight: 700;
}

.site-footer {
  padding: 75px 0 28px;
  color: var(--white);
  background: #080d0a;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-bottom: 60px;
}

.footer-brand {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.footer-top > div:first-child p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #8fcfb7;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 12px;
}

.status-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  max-width: 420px;
  padding: 16px 20px;
  color: var(--white);
  background: var(--green-dark);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.status-toast.error {
  background: #7a2323;
}

.status-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.button) {
    font-size: 13px;
  }

  .hero-layout {
    gap: 42px;
  }

  .candidate-layout,
  .application-layout,
  .about-layout,
  .enquiry-layout {
    gap: 55px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 88px 0;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 58px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
  }

  .menu-line {
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease;
  }

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

  .menu-toggle[aria-expanded="true"] .menu-line:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 90px 38px 40px;
    color: var(--white);
    background: var(--green-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    font-size: 26px;
  }

  .main-nav .button {
    margin-top: 12px;
    color: var(--ink);
    background: var(--white);
  }

  .menu-toggle[aria-expanded="true"] {
    position: fixed;
    top: 20px;
    right: 24px;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 90px;
  }

  .hero-board {
    max-width: 620px;
  }

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

  .benefit-card {
    min-height: 250px;
  }

  .split-heading,
  .candidate-layout,
  .application-layout,
  .about-layout,
  .enquiry-layout,
  .contact-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 28px;
  }

  .candidate-layout,
  .application-layout,
  .about-layout,
  .enquiry-layout {
    gap: 60px;
  }

  .form-intro,
  .enquiry-copy {
    position: static;
  }

  .about-mark {
    max-width: 540px;
  }

  .contact-layout {
    align-items: start;
  }

  .footer-top {
    gap: 48px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 100%;
    height: 100%;
  }

  .brand {
    width: 176px;
    height: 50px;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-layout {
    padding-top: 64px;
    padding-bottom: 70px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-trust {
    gap: 20px 28px;
  }

  .hero-board {
    transform: none;
  }

  .role-row {
    grid-template-columns: 32px 1fr;
  }

  .role-row small {
    display: none;
  }

  .board-footer {
    gap: 10px;
  }

  .benefit-card {
    min-height: 230px;
    padding: 26px;
  }

  .employer-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 30px 26px;
  }

  .sector-item {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 24px 0;
  }

  .sector-item h3 {
    font-size: 24px;
  }

  .sector-mark {
    display: none;
  }

  .candidate-steps,
  .application-form,
  .employer-form {
    padding: 26px 20px;
  }

  .form-grid,
  .field-pair {
    grid-template-columns: 1fr;
  }

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

  .company-facts {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .status-toast {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
