:root {
  --green-950: #073219;
  --green-900: #0a3a1d;
  --green-800: #0f4727;
  --green-700: #0f7a00;
  --green-600: #14ad00;
  --ink: #0e0f0d;
  --text: #12301d;
  --muted: #5c655e;
  --cream: #f4f1e8;
  --paper: #fbfcf7;
  --line: #e3dece;
  --white: #ffffff;
  --black: #050706;
  --shadow: 0 18px 45px rgba(7, 50, 25, 0.12);
  --radius: 8px;
  --container: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: var(--green-950);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand img {
  width: 116px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
}

.site-nav a {
  opacity: 0.88;
  padding: 30px 0 26px;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green-600);
  opacity: 1;
  border-bottom-color: var(--green-600);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.pill-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
}

.pill-cta {
  background: var(--green-600);
  color: var(--white);
  white-space: nowrap;
}

.pill-cta span,
.btn span {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-700);
}

.btn-primary {
  background: var(--green-600);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-700);
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn-light {
  background: var(--white);
  color: var(--text);
}

.btn-full {
  width: 100%;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page {
  display: none;
}

.page.is-active {
  display: block;
}

.is-hidden {
  display: none !important;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.hero-home {
  min-height: calc(100vh - 84px);
  max-height: 760px;
  background-image: url("assets/img/home-hero.jpg");
}

.hero-team {
  min-height: 440px;
  background-image: url("assets/img/sep-pro-home-4.jpg");
}

.hero-industry,
.hero-contact,
.hero-internal {
  min-height: 500px;
  background-image: url("assets/img/sep-pro-home-4.jpg");
}

.hero-internal {
  padding: 48px 0;
}

.hero-internal h1 {
  font-size: clamp(44px, 5.4vw, 78px);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 50, 25, 0.94),
    rgba(7, 50, 25, 0.62) 55%,
    rgba(7, 50, 25, 0.3)
  );
}

.hero-grid,
.hero-center {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 720px;
  padding: 76px 0;
}

.hero-center {
  text-align: center;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
}

h1 {
  font-size: clamp(52px, 8vw, 112px);
  max-width: 980px;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(34px, 4.6vw, 62px);
}

h3 {
  font-size: 24px;
}

em {
  color: var(--green-600);
  font-style: italic;
}

.hero p:not(.eyebrow),
.subhero p {
  max-width: 620px;
  font-size: 17px;
}

.hero-center p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.sector-strip {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 46px;
  overflow: hidden;
  white-space: nowrap;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.sector-strip span {
  flex: 0 0 auto;
}

.sector-strip b {
  color: var(--green-600);
}

.band {
  padding: 96px 0;
  background: var(--paper);
}

.band-muted {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.section-copy {
  max-width: 610px;
}

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

.portrait-stack {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.main-portrait {
  width: min(420px, 78vw);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 50% 50% 42% 42%;
  background: var(--green-600);
  box-shadow: var(--shadow);
}

.mini-orbit {
  position: absolute;
  inset: 20px auto auto 30px;
  display: grid;
  gap: 18px;
}

.mini-orbit img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

.industries-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.industry-tabs {
  display: grid;
  gap: 12px;
  margin: 34px 0 24px;
}

.industry-tabs a,
.industry-tabs button {
  min-height: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  border: 1px solid var(--green-950);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
}

.industry-tabs a:hover,
.industry-tabs button.is-active {
  background: var(--green-950);
  color: var(--white);
}

.industry-tabs a.is-active {
  background: var(--green-950);
  color: var(--white);
}

.image-feature {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--green-950);
}

.image-feature.static {
  min-height: 420px;
}

.image-feature img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.image-feature::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.image-feature > div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  color: var(--white);
}

.wide-heading {
  max-width: 700px;
}

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

.principles article {
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid var(--line);
}

.principles article:last-child {
  border-right: 0;
}

.principles span,
.sector-cards span {
  display: block;
  margin-bottom: 34px;
  color: var(--green-600);
  font-weight: 800;
}

.principles h3 {
  font-size: 24px;
}

.principles p,
.section-head p,
.narrow {
  color: var(--muted);
}

.stats-band {
  padding: 64px 0;
  background: var(--green-950);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.stats-grid strong {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(46px, 7vw, 78px);
  font-weight: 400;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
  margin-bottom: 36px;
}

.section-head > div {
  max-width: 730px;
}

.section-head > p {
  max-width: 440px;
}

.team-preview,
.team-grid {
  display: grid;
  gap: 24px;
}

.team-preview {
  grid-template-columns: repeat(4, 1fr);
}

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

.person-card {
  overflow: hidden;
  border: 1px solid rgba(20, 173, 0, 0.35);
  border-radius: var(--radius);
  background: var(--white);
}

.team-grid .person-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 220px;
}

.person-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  background: #d7d9d1;
}

.team-grid .person-card img {
  height: 100%;
  aspect-ratio: auto;
}

.person-card div {
  padding: 20px;
}

.person-card h3 {
  font-size: 25px;
}

.person-card small {
  display: block;
  color: var(--green-600);
  font-weight: 800;
}

.person-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-700);
  font-weight: 800;
  text-decoration: underline;
}

.candidate-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.candidate-card,
.news-card,
.plain-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.candidate-card {
  min-height: 260px;
  padding: 24px;
}

.candidate-card header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.candidate-card h3 {
  margin: 16px 0 10px;
}

.candidate-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.candidate-card footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.testimonial-band {
  background: var(--cream);
}

.testimonial {
  text-align: center;
  max-width: 880px;
}

.testimonial blockquote {
  margin: 34px auto 0;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  text-align: left;
  box-shadow: var(--shadow);
}

.news-card {
  overflow: hidden;
}

.news-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.news-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.news-card div {
  padding: 22px;
}

.news-card time {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.news-card .news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.subhero {
  padding: 110px 0 86px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.subhero h1 {
  color: var(--green-950);
}

.jobs-layout {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 88px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 108px;
}

.segmented {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 36px;
}

.segmented button {
  border: 0;
  border-radius: 999px;
  padding: 10px 12px;
  background: var(--cream);
  color: var(--muted);
  font-weight: 800;
}

.segmented button.is-active {
  background: var(--green-950);
  color: var(--white);
}

.filter-group {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.filter-group h3 {
  margin-bottom: 18px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.filter-group label {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 34px;
  color: var(--muted);
}

.filter-group input {
  accent-color: var(--green-600);
}

.results-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 260px) 160px;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

.results-toolbar p {
  font-family: var(--serif);
  font-size: 27px;
  color: var(--green-700);
}

.results-toolbar input,
.results-toolbar select,
.contact-form input,
.contact-form textarea,
.form-panel input,
.form-panel textarea,
.form-panel select,
.enquiry-form input,
.enquiry-form textarea,
.enquiry-form select,
.apply-card input,
.internal-filters select,
.dark-signup input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 13px 14px;
  color: var(--text);
}

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

.job-row {
  display: grid;
  grid-template-columns: 1fr 150px 96px;
  gap: 24px;
  align-items: center;
  min-height: 134px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-align: left;
}

.job-row:hover h3 {
  color: var(--green-700);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 4px;
  background: #e7f6e3;
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.job-row h3 {
  font-size: 28px;
}

.job-meta {
  color: var(--green-700);
  font-size: 13px;
}

.salary {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green-950);
}

.consultant {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green-700);
}

.consultant img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.load-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.load-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0px 2px;
}

.load-row .page__count {
  padding: 10px 18px;
}

.jobs-cta {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  margin-top: 68px;
}

.dark-signup {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px) auto;
  gap: 18px;
  align-items: end;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
}

.dark-signup h2 {
  font-size: 34px;
}

.dark-signup p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.dark-signup input {
  background: #111512;
  color: var(--white);
  border-color: #303730;
}

.plain-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 38px;
}

.plain-panel strong {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.05;
  font-weight: 400;
}

.job-detail-hero {
  padding: 82px 0 68px;
  background: var(--paper);
  color: var(--green-950);
}

.job-detail-hero h1 {
  max-width: 1120px;
  margin-top: 22px;
  font-size: clamp(48px, 7vw, 92px);
}

.job-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-top: 38px;
  max-width: 820px;
}

.job-facts strong {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.job-facts span {
  font-family: var(--serif);
  font-size: 24px;
}

.job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 72px;
  align-items: start;
}

.job-detail-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 72px;
}

.detail-block {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.detail-block.wide {
  grid-column: 1 / -1;
}

.detail-block h2 {
  margin-bottom: 22px;
  font-size: 34px;
}

.detail-block ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.detail-block li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 28px;
}

.detail-block li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 900;
}

.check-list li::before {
  content: "\2713";
}

.job-detail-side {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 20px;
}

.glance-card,
.consultant-card,
.apply-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.glance-card {
  background: #f7f3ef;
}

.glance-card h3 {
  margin-bottom: 20px;
  color: var(--green-600);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.glance-card dl {
  margin: 0;
}

.glance-card div,
.glance-card dt,
.glance-card dd {
  margin: 0;
}

.glance-card dt,
.glance-card dd {
  display: inline-block;
  width: 49%;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.glance-card dd {
  text-align: right;
  font-weight: 800;
}

.consultant-card img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}

.apply-card {
  display: grid;
  gap: 12px;
  background: var(--green-950);
  color: var(--white);
}

.apply-card input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.apply-card a {
  color: var(--green-600);
  text-decoration: underline;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
}

.related-card {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  text-align: left;
}

.related-card span,
.related-card small {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 800;
}

.related-card strong {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 400;
}

.industry-overview-hero {
  background: var(--cream);
}

.industry-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.industry-card-link {
  overflow: hidden;
  display: grid;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}

.industry-card-link img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.industry-card-link div {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.industry-card-link span,
.industry-card-link small {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-card-link h3 {
  font-size: 29px;
}

.industry-card-link p {
  color: var(--muted);
}

.industry-page,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 72px;
  align-items: start;
}

.industry-copy {
  display: grid;
  gap: 24px;
}

.industry-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.industry-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.industry-panel img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.industry-panel > div {
  padding: 26px;
}

.pill-cloud,
.role-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-cloud span,
.role-pill-grid span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7f6e3;
  color: var(--green-700);
  font-weight: 800;
}

.role-pill-grid {
  margin-top: 28px;
}

.article-hero {
  padding: 92px 0 72px;
  background: var(--cream);
  color: var(--green-950);
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  margin: 18px 0;
  font-size: clamp(46px, 6.8vw, 92px);
}

.article-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.article-body {
  display: grid;
  gap: 24px;
  color: var(--muted);
  font-size: 18px;
}

.article-body img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-body .lead {
  color: var(--text);
  font-size: 22px;
}

.article-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.article-sidebar a {
  display: grid;
  gap: 6px;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
}

.article-sidebar a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.article-sidebar time {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 900;
}

.article-sidebar strong {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 400;
}

.enquire-shell {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 84px);
  background: var(--paper);
}

.enquire-side {
  display: grid;
  align-content: start;
  gap: 42px;
  min-width: 0;
  padding: 64px max(20px, calc((100vw - var(--container)) / 2)) 56px;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.enquire-side h1 {
  max-width: 680px;
  font-size: clamp(42px, 8vw, 68px);
  overflow-wrap: normal;
}

.enquire-side p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 19px;
}

.enquire-switch {
  justify-self: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(360px, 100%);
  padding: 7px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
}

.enquire-switch button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
}

.enquire-switch button.is-active {
  background: var(--green-600);
  color: var(--white);
}

.promise-list {
  display: grid;
  gap: 28px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.promise-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
}

.promise-list span {
  color: var(--muted);
}

.promise-list span::before {
  content: "\2192";
  margin-right: 16px;
}

.enquire-panel {
  min-width: 0;
  padding: 56px max(20px, calc((100vw - var(--container)) / 2));
}

.enquiry-form {
  display: grid;
  gap: 20px;
  max-width: 960px;
}

.enquiry-form h2 {
  margin-bottom: 6px;
}

.enquiry-form > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.upload-box {
  position: relative;
  min-height: 190px;
  display: grid !important;
  place-items: center;
  gap: 10px;
  border: 2px dashed currentColor;
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.upload-box input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-box span {
  color: inherit;
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
}

.upload-box.compact {
  min-height: 122px;
  color: rgba(255, 255, 255, 0.72);
}

.upload-box.compact span {
  font-size: 14px;
}

.consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 12px;
  text-transform: none !important;
  font-weight: 500 !important;
}

.consent input {
  width: auto;
}

.internal-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-bottom: 48px;
}

.internal-filters label {
  display: grid;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.internal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.internal-card {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.internal-card h3 {
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 800;
}

.internal-application {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

@media (min-width: 1180px) {
  .enquire-shell {
    grid-template-columns: minmax(430px, 0.42fr) minmax(0, 0.58fr);
  }

  .enquire-side {
    gap: 56px;
    padding: 104px 64px 72px max(40px, calc((100vw - var(--container)) / 2));
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .enquire-side h1 {
    font-size: clamp(54px, 4.3vw, 76px);
  }

  .enquire-panel {
    padding: 104px max(40px, calc((100vw - var(--container)) / 2)) 72px 64px;
  }
}

.image-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.image-duo img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  border-radius: 44% 0 44% 0;
}

.image-duo img:nth-child(2) {
  margin-top: 110px;
}

.centered {
  text-align: center;
  margin-bottom: 28px;
}

.accordion {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--green-950);
  border-radius: var(--radius);
  background: var(--white);
}

.accordion-item button {
  width: 100%;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0 20px;
  text-align: left;
}

.accordion-item.is-open button {
  background: var(--green-950);
  color: var(--white);
}

.accordion-item p {
  display: none;
  margin: 0;
  padding: 18px 20px 22px;
  color: var(--muted);
}

.accordion-item.is-open p {
  display: block;
}

.accordion-item .value-letter {
  display: inline-block;
  min-width: 1.4em;
  color: var(--green-600);
  font-style: normal;
  font-weight: 900;
  font-size: 1.35em;
  line-height: 1;
}

.accordion-item.is-open .value-letter {
  color: var(--white);
}

.location-strip,
.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  border: 1px solid rgba(20, 173, 0, 0.35);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card img {
  height: 100%;
  min-height: 260px;
  width: 100%;
  object-fit: cover;
  filter: sepia(0.2) hue-rotate(70deg) saturate(0.8);
}

.contact-card > div {
  padding: 34px;
}

.contact-card h2,
.contact-card h3 {
  color: var(--green-950);
}

.industry-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 54px;
}

.sector-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.sector-cards article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.candidates-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: start;
}

.form-panel,
.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-panel {
  padding: 32px;
}

.form-panel label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.news-wide {
  grid-template-columns: repeat(3, 1fr);
}

.black-cta {
  padding: 68px 0;
  background: var(--black);
  color: var(--white);
}

.black-cta .section-head {
  margin-bottom: 0;
}

.site-footer {
  padding: 70px 0 26px;
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 70px;
}

.footer-grid img {
  width: 120px;
  margin-bottom: 24px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--green-600);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 8px 0;
}

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

.modal {
  width: min(720px, calc(100% - 32px));
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  color: var(--text);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.56);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--green-950);
  color: var(--white);
  font-size: 24px;
}

.modal-body {
  padding: 40px;
}

.modal-body h2 {
  padding-right: 34px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  transform: translateY(140%);
  max-width: 360px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--green-950);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.toast.is-visible {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--green-950);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .pill-cta {
    justify-self: end;
  }

  .split,
  .industries-layout,
  .jobs-layout,
  .jobs-cta,
  .location-strip,
  .contact-layout,
  .industry-detail,
  .industry-page,
  .article-layout,
  .candidates-layout,
  .job-detail-layout,
  .enquire-shell,
  .internal-application {
    grid-template-columns: 1fr;
  }

  .filters,
  .job-detail-side,
  .article-sidebar {
    position: static;
  }

  .principles,
  .stats-grid,
  .team-preview,
  .candidate-grid,
  .news-grid,
  .sector-cards,
  .job-detail-main,
  .job-facts,
  .related-grid,
  .industry-directory,
  .internal-filters,
  .internal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dark-signup {
    grid-template-columns: 1fr;
  }

  .enquire-side,
  .enquire-panel {
    padding: 72px 28px;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .site-header {
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    min-height: 72px;
    top: 0;
    padding: 0 14px;
    gap: 12px;
    width: 100vw;
    max-width: 100vw;
  }

  .brand img {
    width: 96px;
  }

  .site-nav {
    top: 72px;
  }

  .pill-cta {
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
    gap: 0;
  }

  .pill-cta span {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .hero,
  .hero-home {
    min-height: 600px;
    max-height: none;
  }

  .hero-copy {
    padding: 52px 0;
  }

  h1 {
    font-size: 42px;
  }

  .hero-industry h1,
  .subhero h1,
  .article-hero h1 {
    font-size: 36px;
  }

  .hero-center h1,
  .subhero h1,
  .article-hero h1,
  .industry-copy h2 {
    max-width: 330px;
  }

  .hero-center h1,
  .subhero h1,
  .article-hero h1,
  .hero-center p:not(.eyebrow),
  .subhero p,
  .article-hero p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-center p:not(.eyebrow),
  .subhero p,
  .article-hero p:not(.eyebrow),
  .industry-copy p:not(.eyebrow) {
    max-width: 330px;
  }

  h2 {
    font-size: 34px;
  }

  .band {
    padding: 64px 0;
  }

  .sector-strip {
    gap: 26px;
  }

  .portrait-stack {
    min-height: 340px;
  }

  .mini-orbit {
    display: none;
  }

  .principles,
  .stats-grid,
  .team-preview,
  .team-grid,
  .candidate-grid,
  .news-grid,
  .sector-cards,
  .job-detail-main,
  .job-facts,
  .related-grid,
  .industry-directory,
  .internal-filters,
  .internal-grid {
    grid-template-columns: 1fr;
  }

  .principles article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .team-grid .person-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .results-toolbar,
  .job-row {
    grid-template-columns: 1fr;
  }

  .job-row {
    gap: 10px;
  }

  .image-duo {
    grid-template-columns: 1fr;
  }

  .image-duo img,
  .image-duo img:nth-child(2) {
    height: 280px;
    margin-top: 0;
  }

  .form-row,
  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .job-detail-hero {
    padding: 52px 0;
  }

  .job-facts {
    gap: 14px;
  }

  .job-facts span {
    font-size: 20px;
  }

  .industry-card-link {
    min-height: auto;
  }

  .industry-card-link img,
  .industry-panel img,
  .news-card img {
    height: 190px;
  }

  .article-hero {
    padding: 56px 0 48px;
  }

  .article-body,
  .article-body .lead,
  .industry-copy p:not(.eyebrow) {
    font-size: 17px;
  }

  .article-sidebar {
    padding: 22px;
  }

  .enquire-side,
  .enquire-panel {
    padding: 48px 16px;
  }

  .enquire-switch {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .enquire-switch button {
    border-radius: var(--radius);
  }

  .footer-grid {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .hero-center {
    text-align: left;
  }

  .hero-center p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-center h1,
  .subhero h1,
  .article-hero h1,
  .hero-center p:not(.eyebrow),
  .subhero p,
  .article-hero p:not(.eyebrow) {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-industry h1,
  .subhero h1,
  .article-hero h1 {
    font-size: 34px;
  }

  .subhero,
  .article-hero {
    padding: 54px 0 46px;
  }
}
