/* ==========================================================================
   SEP Resource Solutions - site stylesheet
   Fonts: Founders Grotesk (matching seprs.co.uk). Animations: scroll reveal
   (data-reveal), hover lifts, hero entrance. Single consolidated palette.
   ========================================================================== */

@font-face {
  font-family: "Founders Grotesk";
  src: url("assets/fonts/FoundersGrotesk-Light-300.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("assets/fonts/FoundersGrotesk-Regular-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("assets/fonts/FoundersGrotesk-Medium-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Founders Grotesk";
  src: url("assets/fonts/FoundersGrotesk-Bold-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* One green system, used everywhere */
  --green-950: #04220f;
  --green-900: #062f18;
  --green-800: #0a4a25;
  --green-700: #0f6d2b;
  --green: #14b400;
  --green-hover: #0f9a00;
  --lime: #39ff14;
  --mint: #e6f8e0;
  --mint-2: #cfeec4;

  --ink: #0e1511;
  --text: #1c2822;
  --muted: #55625a;
  --paper: #ffffff;
  --tint: #f2f6f0;
  --line: #d9e2d6;
  --white: #ffffff;
  --black: #0b100d;

  --shadow-sm: 0 6px 18px rgba(6, 47, 24, 0.08);
  --shadow: 0 22px 50px rgba(6, 47, 24, 0.14);
  --shadow-lg: 0 34px 80px rgba(4, 34, 15, 0.28);
  --glow: 0 12px 30px rgba(20, 180, 0, 0.32);
  --radius: 10px;
  --radius-lg: 18px;
  --container: 1200px;
  --sans: "Founders Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body.modal-open,
body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

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

.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;
}

.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ---------- typography ---------- */
h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

h1 {
  font-size: clamp(46px, 6.4vw, 92px);
  letter-spacing: -0.03em;
  line-height: 0.94;
  max-width: 980px;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.98;
}

h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

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

.lead {
  font-size: clamp(19px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 3px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 3px;
  background: var(--green);
}

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

.empty-note {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.back-link {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--green-700);
  font-weight: 500;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--green);
}

/* ---------- scroll reveal (AOS-style) ---------- */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.8s var(--ease);
  transition-delay: calc(var(--delay, 0) * 1ms);
  will-change: opacity, transform;
}

[data-reveal="fade-up"] {
  transform: translate3d(0, 34px, 0);
}

[data-reveal="fade-down"] {
  transform: translate3d(0, -26px, 0);
}

[data-reveal="fade-left"] {
  transform: translate3d(40px, 0, 0);
}

[data-reveal="fade-right"] {
  transform: translate3d(-40px, 0, 0);
}

[data-reveal="zoom-in"] {
  transform: scale(0.86);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-delay="50"] { --delay: 50; }
[data-delay="60"] { --delay: 60; }
[data-delay="80"] { --delay: 80; }
[data-delay="90"] { --delay: 90; }
[data-delay="100"] { --delay: 100; }
[data-delay="120"] { --delay: 120; }
[data-delay="140"] { --delay: 140; }
[data-delay="150"] { --delay: 150; }
[data-delay="160"] { --delay: 160; }
[data-delay="180"] { --delay: 180; }
[data-delay="200"] { --delay: 200; }
[data-delay="240"] { --delay: 240; }
[data-delay="250"] { --delay: 250; }
[data-delay="270"] { --delay: 270; }
[data-delay="300"] { --delay: 300; }
[data-delay="360"] { --delay: 360; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--ink);
  border-bottom: 1px solid rgba(6, 47, 24, 0.08);
  transition: box-shadow 0.3s, min-height 0.3s;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 34px rgba(6, 47, 24, 0.1);
}

.brand img {
  width: 104px;
  height: auto;
  transition: transform 0.3s var(--ease);
}

.brand:hover img {
  transform: scale(1.04);
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 28px 0 24px;
  color: var(--text);
  transition: color 0.2s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--green-700);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  display: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(6, 47, 24, 0.16);
  border-radius: 10px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--green-900);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- buttons ---------- */
.pill-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 12px 14px 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.005em;
  white-space: nowrap;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

.pill-cta span,
.btn span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-700);
  font-size: 15px;
  transition: transform 0.25s var(--ease);
}

.btn:hover span,
.pill-cta:hover span {
  transform: translateX(3px);
}

.pill-cta,
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--glow);
}

.pill-cta:hover,
.btn-primary:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(20, 180, 0, 0.38);
}

.pill-cta {
  min-height: 46px;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(6, 47, 24, 0.28);
  color: var(--green-900);
}

.btn-secondary span {
  background: var(--green-900);
  color: var(--white);
}

.btn-secondary:hover {
  border-color: var(--green-900);
  background: var(--green-900);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary:hover span {
  background: var(--green);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.btn-ghost span {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--green-900);
  transform: translateY(-2px);
}

.btn-ghost:hover span {
  background: var(--green);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
}

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

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-full {
  width: 100%;
}

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

.centered-row {
  justify-content: center;
  margin-top: 44px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-700);
  font-weight: 700;
  text-decoration: none;
  background-image: linear-gradient(var(--green), var(--green));
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: 0 100%;
  transition: color 0.2s, background-size 0.3s var(--ease);
}

.text-link:hover {
  color: var(--green);
  background-size: 30% 2px;
}

/* ---------- pages ---------- */
.page {
  display: none;
}

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

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

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

.band-tint {
  background:
    radial-gradient(circle at 100% 0%, rgba(20, 180, 0, 0.12), transparent 42%),
    radial-gradient(circle at 0% 100%, rgba(20, 180, 0, 0.09), transparent 40%),
    var(--tint);
}

.band-dark {
  background:
    radial-gradient(circle at 85% 10%, rgba(57, 255, 20, 0.14), transparent 38%),
    radial-gradient(circle at 10% 90%, rgba(20, 180, 0, 0.18), transparent 42%),
    linear-gradient(160deg, var(--green-900), var(--green-950));
  color: var(--white);
}

.band-dark .section-head p,
.band-dark .narrow {
  color: rgba(255, 255, 255, 0.78);
}

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

.band-dark .eyebrow::before {
  background: var(--lime);
}

.band-dark em {
  color: var(--lime);
}

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

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

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

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

.section-head > p {
  max-width: 420px;
  margin: 0;
  font-size: 17px;
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 72px;
  background:
    radial-gradient(circle at 90% 20%, rgba(20, 180, 0, 0.16), transparent 40%),
    radial-gradient(circle at 10% 100%, rgba(20, 180, 0, 0.1), transparent 45%),
    var(--tint);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  color: var(--green-900);
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 19px;
}

.page-hero-dark {
  background:
    radial-gradient(circle at 85% 10%, rgba(57, 255, 20, 0.18), transparent 38%),
    radial-gradient(circle at 15% 95%, rgba(20, 180, 0, 0.22), transparent 42%),
    linear-gradient(160deg, var(--green-900), var(--green-950));
  color: var(--white);
  border-bottom: 0;
}

.page-hero-dark h1 {
  color: var(--white);
}

.page-hero-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero-dark .eyebrow {
  color: var(--lime);
}

.page-hero-dark .eyebrow::before {
  background: var(--lime);
}

/* ---------- hero (home + industry + internal) ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-position: center;
  background-size: cover;
  background-color: var(--green-950);
}

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

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(57, 255, 20, 0.16), transparent 35%),
    linear-gradient(90deg, rgba(4, 34, 15, 0.96), rgba(6, 47, 24, 0.78) 55%, rgba(6, 47, 24, 0.55));
}

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

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

.hero-center h1 {
  margin: 0 auto;
}

.hero-center p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px auto 0;
  font-size: 19px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-center .btn {
  margin-top: 30px;
}

.hero .eyebrow {
  color: var(--lime);
}

.hero .eyebrow::before {
  background: var(--lime);
}

/* Home hero */
.home-remake .hero-home {
  /* Shared rect for the art + hotspot cards. Anchored to the right edge and
     never wider than 86% of the hero, so the left-hand cards stay clear of the
     copy column and the right-hand cards are never clipped. Also capped so it
     never becomes taller than the hero (+40px bleed each side). */
  --hero-art-ratio: 3168 / 1344;
  --hero-art-w: min(86%, calc((100vh - var(--header-h) + 80px) * 2.357), 1980px);
  min-height: min(760px, calc(100vh - var(--header-h)));
  max-height: none;
  background: #1c221f;
}

.home-remake .hero-art-panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-remake .hero-art {
  position: absolute;
  top: 50%;
  right: 0;
  width: var(--hero-art-w);
  height: auto;
  aspect-ratio: var(--hero-art-ratio);
  translate: 0 -50%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.06);
  animation: hero-zoom 14s var(--ease) forwards;
  /* soften the picture's edges so the rect blends into the dark hero */
  -webkit-mask-image:
    linear-gradient(90deg, transparent, #000 16%),
    linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent, #000 16%),
    linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
  mask-composite: intersect;
}

@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

.home-remake .hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 22, 11, 0.9) 0%, rgba(6, 30, 16, 0.72) 30%, rgba(10, 30, 20, 0.22) 56%, rgba(10, 30, 20, 0) 84%),
    linear-gradient(180deg, rgba(4, 22, 11, 0.35), transparent 30%, transparent 70%, rgba(4, 22, 11, 0.55)),
    radial-gradient(circle at 14% 66%, rgba(20, 180, 0, 0.2), transparent 32%);
}

/* Mirrors the hero image's rect exactly (same width / ratio / anchoring as
   .hero-art) so the cards track the picture at any viewport width. */
.home-remake .hero-industry-hotspots {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 5;
  width: var(--hero-art-w);
  aspect-ratio: var(--hero-art-ratio);
  translate: 0 -50%;
  pointer-events: none;
}

.home-remake .hotspot {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 7px;
  width: 124px;
  min-height: 108px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(10, 18, 14, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #eef3ee;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
  pointer-events: auto;
  opacity: 0;
  animation: hotspot-in 0.7s var(--ease) forwards;
  animation-delay: calc(0.5s + var(--n, 0) * 0.12s);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.3s var(--ease);
}

.home-remake .hotspot-pharma { --n: 0; }
.home-remake .hotspot-nuclear { --n: 1; }
.home-remake .hotspot-food { --n: 2; }
.home-remake .hotspot-advanced { --n: 3; }
.home-remake .hotspot-automation { --n: 4; }
.home-remake .hotspot-power { --n: 5; }

@keyframes hotspot-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.home-remake .hotspot svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  color: var(--lime);
}

.home-remake .hotspot:hover,
.home-remake .hotspot:focus-visible {
  background: rgba(6, 47, 24, 0.96);
  border-color: var(--lime);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(57, 255, 20, 0.12);
  transform: translateY(-3px);
  outline: 0;
}

/* Positions are % of the art rect. The two right-hand cards are anchored
   from the right so they can never be pushed off the edge. */
.home-remake .hotspot-pharma { left: 43.75%; top: 25.4%; width: 138px; }
.home-remake .hotspot-nuclear { left: 73.55%; top: 10.4%; }
.home-remake .hotspot-food { right: max(1.45%, 20px); top: 30.3%; }
.home-remake .hotspot-advanced { left: 38.55%; top: 53.9%; }
.home-remake .hotspot-automation { left: 62.25%; top: 58.4%; }
.home-remake .hotspot-power { right: max(2.55%, 20px); top: 57.9%; }

.home-remake .hero-grid {
  width: min(var(--container), calc(100% - 48px));
  z-index: 4;
}

.home-remake .hero-copy {
  max-width: 500px;
  padding: 92px 0 84px;
}

.hero-copy > * {
  opacity: 0;
  animation: rise-in 0.9s var(--ease) forwards;
}

.hero-copy > :nth-child(1) { animation-delay: 0.05s; }
.hero-copy > :nth-child(2) { animation-delay: 0.15s; }
.hero-copy > :nth-child(3) { animation-delay: 0.3s; }
.hero-copy > :nth-child(4) { animation-delay: 0.42s; }
.hero-copy > :nth-child(5) { animation-delay: 0.56s; }

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.home-remake .hero-copy h1 {
  max-width: 500px;
  color: var(--white);
  font-size: clamp(46px, 4.5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.home-remake .hero-copy h1 em {
  color: var(--lime);
}

.home-remake .hero-copy p:not(.eyebrow) {
  max-width: 390px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
}

.hero-proof {
  display: flex;
  gap: 36px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: grid;
  gap: 2px;
  padding-left: 16px;
  border-left: 2px solid rgba(57, 255, 20, 0.7);
}

.hero-proof strong {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
}

.hero-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- home intro ---------- */
.home-intro .section-copy h2 {
  font-size: clamp(40px, 4.8vw, 68px);
}

.intro-text p:not(.lead) {
  color: var(--muted);
}

.intro-text .lead {
  padding-left: 22px;
  border-left: 4px solid var(--green);
  margin-bottom: 22px;
}

/* ---------- sectors ---------- */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sector-card {
  position: relative;
  display: block;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-950);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.sector-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.9s var(--ease), opacity 0.4s;
}

.sector-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 34, 15, 0.05) 20%, rgba(4, 34, 15, 0.92));
}

.sector-card::before {
  content: "\2192";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-6px);
  opacity: 0;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}

.sector-label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.sector-label strong {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.sector-label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 2px var(--lime);
}

.sector-card:hover img {
  transform: scale(1.07);
  opacity: 0.95;
}

.sector-card:hover::before {
  opacity: 1;
  transform: none;
}

/* ---------- vacancies / cards ---------- */
.candidate-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

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

.candidate-card {
  min-height: 270px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.vacancy-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  font: inherit;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.vacancy-card:hover,
.vacancy-card:focus-visible {
  border-color: var(--green);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  outline: 0;
}

.candidate-card header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.candidate-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.vacancy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.candidate-card footer strong {
  color: var(--green-900);
  font-size: 20px;
}

/* ---------- values ---------- */
.band-values {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(57, 255, 20, 0.2), transparent 36%),
    radial-gradient(circle at 5% 90%, rgba(20, 180, 0, 0.22), transparent 40%),
    linear-gradient(150deg, #073b1e, var(--green-950) 70%);
  color: var(--white);
}

.band-values::before {
  content: "SEPRS";
  position: absolute;
  right: -2vw;
  bottom: -6vw;
  z-index: 0;
  font-size: clamp(180px, 28vw, 420px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.035);
  pointer-events: none;
  user-select: none;
}

.band-values .container {
  position: relative;
  z-index: 1;
}

.values-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.values-head .eyebrow {
  color: var(--lime);
}

.values-head .eyebrow::before {
  background: var(--lime);
}

.values-head h2 {
  font-size: clamp(40px, 5vw, 72px);
}

.values-head h2 em {
  color: var(--lime);
}

.values-head p:not(.eyebrow) {
  margin-top: 22px;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.value-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 340px;
  padding: 30px 26px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.4s var(--ease);
}

.value-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--lime));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(57, 255, 20, 0.5);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-letter {
  display: block;
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--lime);
  text-shadow: 0 0 40px rgba(57, 255, 20, 0.35);
}

.value-card h3 {
  font-size: 26px;
  color: var(--white);
}

.value-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- team band (home) ---------- */
.team-band {
  background:
    radial-gradient(circle at 80% 50%, rgba(20, 180, 0, 0.12), transparent 40%),
    var(--paper);
}

.team-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: center;
}

.team-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.team-chip {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  font-weight: 500;
  color: var(--green-900);
  transition: transform 0.35s var(--ease);
}

.team-chip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 4px solid var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(57, 255, 20, 0.35), transparent 60%),
    linear-gradient(160deg, var(--green-800), var(--green-950));
  box-shadow: var(--shadow-sm), 0 0 0 2px rgba(20, 180, 0, 0.35);
  transition: box-shadow 0.35s var(--ease);
}

.team-chip:hover {
  transform: translateY(-6px);
}

.team-chip:hover img {
  box-shadow: var(--shadow), 0 0 0 3px var(--green);
}

.team-chip:nth-child(4n + 2) {
  margin-top: 28px;
}

.team-chip:nth-child(4n + 4) {
  margin-top: 28px;
}

/* ---------- team page ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.person-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.person-card:hover {
  transform: translateY(-5px);
  border-color: rgba(20, 180, 0, 0.5);
  box-shadow: var(--shadow);
}

.person-photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 260px;
  background:
    radial-gradient(circle at 50% 22%, rgba(20, 180, 0, 0.16), transparent 58%),
    linear-gradient(180deg, #f6faf4 0%, #e3efdd 100%);
}

/* Subtle grid so the cut-out photo sits on a visible, non-white surface. */
.person-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(6, 47, 24, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 47, 24, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 85%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 85%);
}

/* Green that rises up behind the person on hover. */
.person-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 0%, rgba(57, 255, 20, 0.55), transparent 55%),
    linear-gradient(180deg, var(--green) 0%, var(--green-700) 55%, var(--green-900) 100%);
  transform: translateY(101%);
  transition: transform 0.6s var(--ease);
  will-change: transform;
}

.person-card:hover .person-photo::after,
.person-card:focus-within .person-photo::after {
  transform: translateY(0);
}

.person-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 12px 18px rgba(6, 47, 24, 0.22));
  transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
}

.person-card:hover .person-photo img {
  transform: scale(1.04);
  filter: drop-shadow(0 16px 24px rgba(4, 34, 15, 0.45));
}

@media (prefers-reduced-motion: reduce) {
  .person-photo::after,
  .person-photo img {
    transition: none;
  }
}

.person-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 26px 26px 24px;
}

.person-body h3 {
  font-size: 26px;
}

.person-body small {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.person-body p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.person-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}

/* ---------- news ---------- */
.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 180, 0, 0.5);
  box-shadow: var(--shadow);
}

.news-media {
  overflow: hidden;
  background: var(--green-950);
}

.news-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.news-card:hover .news-media img {
  transform: scale(1.06);
}

.news-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
}

.news-card-body h3 {
  font-size: 23px;
}

.news-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.news-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.news-filters button {
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(6, 47, 24, 0.22);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.25s var(--ease);
}

.news-filters button:hover {
  border-color: var(--green);
  transform: translateY(-2px);
}

.news-filters button.is-active {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
}

.news-list {
  display: grid;
  gap: 32px;
}

.news-feature {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-950);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.news-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-feature-media {
  overflow: hidden;
  min-height: 380px;
}

.news-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.news-feature:hover .news-feature-media img {
  transform: scale(1.05);
}

.news-feature-body {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 48px;
  background:
    radial-gradient(circle at 100% 0%, rgba(57, 255, 20, 0.2), transparent 40%),
    linear-gradient(160deg, var(--green-900), var(--green-950));
}

.news-feature-body .news-meta {
  color: rgba(255, 255, 255, 0.7);
}

.news-feature-body h2 {
  font-size: clamp(30px, 3vw, 44px);
}

.news-feature-body p:not(.news-meta) {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.news-feature-body .btn {
  justify-self: start;
  margin-top: 8px;
}

.article-hero {
  padding: 84px 0 64px;
  background:
    radial-gradient(circle at 90% 20%, rgba(20, 180, 0, 0.16), transparent 40%),
    var(--tint);
  color: var(--green-900);
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(38px, 5vw, 72px);
  max-width: 960px;
}

.article-hero .lead {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
}

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

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

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

.article-body p {
  margin: 0;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

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

.article-sidebar a:hover {
  color: var(--green-700);
}

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

.article-sidebar time {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-sidebar strong {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ---------- CTA band ---------- */
.band-cta {
  padding: 0;
  background: var(--paper);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  max-width: none;
}

.cta-panel {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 380px;
  padding: 80px max(40px, calc((100vw - var(--container)) / 2)) 80px 64px;
  background:
    radial-gradient(circle at 100% 100%, rgba(57, 255, 20, 0.28), transparent 40%),
    linear-gradient(140deg, var(--green), var(--green-700));
  color: var(--white);
  transition: filter 0.3s;
}

.cta-panel:first-child {
  padding: 80px 64px 80px max(40px, calc((100vw - var(--container)) / 2));
}

.cta-panel .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.cta-panel .eyebrow::before {
  background: rgba(255, 255, 255, 0.86);
}

.cta-panel h2 {
  font-size: clamp(32px, 3.4vw, 50px);
}

.cta-panel p:not(.eyebrow) {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cta-panel .btn {
  justify-self: start;
  margin-top: 8px;
}

.cta-panel:hover {
  filter: brightness(1.05);
}

.cta-panel-alt {
  background:
    radial-gradient(circle at 0% 0%, rgba(57, 255, 20, 0.18), transparent 40%),
    linear-gradient(140deg, var(--green-900), var(--green-950));
}

.cta-panel-alt .eyebrow {
  color: var(--lime);
}

.cta-panel-alt .eyebrow::before {
  background: var(--lime);
}

/* ---------- jobs ---------- */
.jobs-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: start;
}

.filters {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.filters-toggle {
  display: none;
  width: 100%;
  margin-bottom: 18px;
  justify-content: space-between;
}

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

.filter-group h3 {
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-900);
}

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

.filter-group label:hover {
  color: var(--text);
}

.filter-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
}

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

.results-toolbar p {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.results-toolbar p em {
  color: var(--green);
}

.results-toolbar input,
.results-toolbar select,
.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);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 0;
  border-color: var(--green) !important;
  box-shadow: 0 0 0 4px rgba(20, 180, 0, 0.16);
}

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

.job-row {
  display: grid;
  grid-template-columns: 1fr 150px 120px;
  gap: 24px;
  align-items: center;
  min-height: 134px;
  width: 100%;
  padding: 26px 14px;
  margin: 0 -14px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  text-align: left;
  transition: background 0.25s, transform 0.3s var(--ease);
}

.job-row:hover {
  background: var(--mint);
  transform: translateX(4px);
}

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

.job-row h3 {
  font-size: 26px;
  transition: color 0.2s;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--mint);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag-soft {
  background: rgba(6, 47, 24, 0.06);
  color: var(--muted);
}

.job-meta {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.salary {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--green-900);
}

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

.consultant img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px rgba(20, 180, 0, 0.5);
}

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

.load-row .page__count {
  color: var(--muted);
  font-size: 14px;
}

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

.dark-signup {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px) auto;
  gap: 18px;
  align-items: end;
  padding: 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(57, 255, 20, 0.2), transparent 40%),
    linear-gradient(150deg, var(--green-900), var(--green-950));
  color: var(--white);
}

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

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

.dark-signup input {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.dark-signup input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.plain-panel {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.plain-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.plain-panel strong {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ---------- job detail ---------- */
.job-detail-hero {
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 90% 10%, rgba(20, 180, 0, 0.16), transparent 40%),
    var(--tint);
  color: var(--green-900);
  border-bottom: 1px solid var(--line);
}

.job-detail-hero h1 {
  max-width: 1120px;
  margin-top: 8px;
  font-size: clamp(40px, 5.6vw, 80px);
}

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

.job-facts span {
  display: block;
  padding-left: 16px;
  border-left: 3px solid var(--green);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.job-facts strong {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

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

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

.detail-block h2 {
  margin-bottom: 18px;
  font-size: 30px;
}

.detail-block p {
  color: var(--muted);
}

.detail-block ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted);
}

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

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

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

.detail-block .btn {
  margin-top: 8px;
}

.job-detail-side {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: grid;
  gap: 20px;
}

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

.glance-card {
  background: var(--tint);
}

.glance-card h3 {
  margin-bottom: 16px;
  color: var(--green-900);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.glance-card dl {
  margin: 0;
}

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

.glance-card dt {
  color: var(--muted);
}

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

.consultant-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.consultant-head img {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  background: linear-gradient(160deg, var(--green-800), var(--green-950));
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px rgba(20, 180, 0, 0.5);
}

.consultant-head h3 {
  font-size: 20px;
}

.consultant-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-line {
  display: block;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  color: var(--green-700);
  font-weight: 500;
  transition: color 0.2s;
}

.contact-line:hover {
  color: var(--green);
}

.apply-card {
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(57, 255, 20, 0.18), transparent 40%),
    linear-gradient(160deg, var(--green-900), var(--green-950));
  color: var(--white);
  border-color: transparent;
}

.apply-card .eyebrow {
  color: var(--lime);
}

.apply-card .eyebrow::before {
  background: var(--lime);
}

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

.apply-card input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.apply-card a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-align: center;
  font-size: 14px;
}

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

.related-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 200px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--text);
  text-align: left;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
}

.related-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.related-card span,
.related-card small {
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.related-card strong {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.related-card em {
  font-weight: 700;
}

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

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

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

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

.industry-panel img {
  width: 100%;
  height: 280px;
  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: 40px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(20, 180, 0, 0.4);
  color: var(--green-800);
  font-weight: 500;
  transition: background 0.2s, color 0.2s, transform 0.25s var(--ease);
}

.pill-cloud span:hover,
.role-pill-grid span:hover {
  background: var(--green-900);
  border-color: var(--green-900);
  color: var(--white);
  transform: translateY(-2px);
}

.role-pill-grid span {
  min-height: 48px;
  padding: 10px 20px;
  font-size: 17px;
}

/* ---------- enquire ---------- */
.enquire-shell {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--paper);
}

@media (min-width: 1100px) {
  .enquire-shell {
    grid-template-columns: minmax(420px, 0.42fr) minmax(0, 0.58fr);
    min-height: calc(100vh - var(--header-h));
  }

  .enquire-side {
    gap: 48px;
    padding: 96px 56px 72px max(40px, calc((100vw - var(--container)) / 2));
  }

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

.enquire-side {
  display: grid;
  align-content: start;
  gap: 40px;
  min-width: 0;
  padding: 64px max(20px, calc((100vw - var(--container)) / 2)) 56px;
  background:
    radial-gradient(circle at 90% 10%, rgba(57, 255, 20, 0.18), transparent 38%),
    radial-gradient(circle at 10% 90%, rgba(20, 180, 0, 0.22), transparent 42%),
    linear-gradient(160deg, var(--green-900), var(--green-950));
  color: var(--white);
  overflow: hidden;
}

.enquire-side .eyebrow {
  color: var(--lime);
}

.enquire-side .eyebrow::before {
  background: var(--lime);
}

.enquire-side h1 {
  max-width: 620px;
  font-size: clamp(42px, 6vw, 72px);
  overflow-wrap: normal;
}

.enquire-side h1 em {
  color: var(--lime);
}

.enquire-side p:not(.eyebrow) {
  max-width: 500px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.enquire-contact {
  display: grid;
  gap: 4px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.enquire-contact .contact-line {
  border: 0;
  padding: 4px 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}

.enquire-contact .contact-line:hover {
  color: var(--lime);
}

.enquire-switch {
  justify-self: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(380px, 100%);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.enquire-switch button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  transition: background 0.25s, color 0.25s;
}

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

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

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

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

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

.enquiry-form label,
.form-panel label {
  display: grid;
  gap: 8px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upload-box {
  position: relative;
  min-height: 170px;
  display: grid !important;
  place-items: center;
  gap: 10px;
  border: 2px dashed rgba(20, 180, 0, 0.5);
  border-radius: var(--radius-lg);
  background: var(--mint);
  color: var(--green-800);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.upload-box:hover {
  border-color: var(--green);
  background: #dcf5d3;
}

.upload-box input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-box span {
  max-width: 420px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  pointer-events: none;
}

.upload-box.compact {
  min-height: 110px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.upload-box.compact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 12px;
  color: var(--muted) !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  font-weight: 400 !important;
  font-size: 15px !important;
}

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

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

.form-panel {
  display: grid;
  gap: 18px;
  padding: 36px;
  box-shadow: var(--shadow);
}

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

/* ---------- join us ---------- */
.internal-filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 44px;
}

.internal-filters label {
  display: grid;
  gap: 10px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.internal-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.25s;
}

.internal-card:hover {
  transform: translateY(-5px);
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.internal-card h3 {
  font-size: 26px;
}

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

.internal-card .btn {
  justify-self: start;
  margin-top: auto;
}

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

.internal-application > div p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 18px;
}

/* ---------- footer ---------- */
.site-footer {
  padding: 84px 0 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(57, 255, 20, 0.12), transparent 40%),
    linear-gradient(180deg, var(--green-900), var(--green-950));
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.1fr;
  gap: 56px;
}

.footer-brand p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

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

.footer-grid h3 {
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.2s, transform 0.25s var(--ease);
}

.footer-grid a:hover {
  color: var(--lime);
  transform: translateX(4px);
}

.footer-social {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-weight: 500;
}

.footer-social:hover {
  transform: none !important;
  border-color: var(--lime);
}

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

/* ---------- modal / toast ---------- */
.modal {
  width: min(760px, calc(100% - 32px));
  max-height: calc(100vh - 48px);
  border: 0;
  border-radius: var(--radius-lg);
  padding: 0;
  color: var(--text);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
  animation: modal-in 0.35s var(--ease);
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal::backdrop {
  background: rgba(4, 34, 15, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-size: 24px;
  transition: background 0.2s, transform 0.25s var(--ease);
}

.modal-close:hover {
  background: var(--green);
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px;
}

.modal-body p {
  color: var(--muted);
}

.profile-head {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
}

.profile-head h2 {
  font-size: 32px;
  padding-right: 34px;
}

.profile-photo {
  width: 150px;
  height: 150px;
  min-height: 0;
  border-radius: 24px;
}

.profile-contact {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.profile-contact a {
  color: var(--green-700);
  font-weight: 500;
}

.profile-contact a:hover {
  color: var(--green);
}

.profile-fact {
  padding: 14px 18px;
  border-left: 3px solid var(--green);
  background: var(--tint);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.profile-fact strong {
  display: block;
  margin-bottom: 2px;
  color: var(--green-900);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  transform: translateY(calc(100% + 40px));
  max-width: 400px;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--green-900);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease);
}

.toast.is-success {
  background: var(--green);
}

.toast.is-error {
  background: #a12626;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1100px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-card {
    min-height: 300px;
  }

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

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

@media (max-width: 1180px) {
  /* Home hero below 1180px (small laptops, tablets, phones): there isn't room for
     the floating industry cards beside the copy, so the art becomes a backdrop
     and the hotspots become a tidy grid */
  .home-remake .hero-home {
    min-height: 0;
  }

  .home-remake .hero-art-panel {
    opacity: 0.55;
  }

  .home-remake .hero-art {
    position: static;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    translate: none;
    animation: none;
    transform: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .home-remake .hero-industry-hotspots {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    translate: none;
    transform: none;
    aspect-ratio: auto;
    min-width: 0;
    min-height: 0;
    order: 2;
    z-index: 4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto 40px;
  }

  .home-remake .hotspot {
    position: static;
    width: auto;
    height: auto;
    min-height: 60px;
    left: auto;
    right: auto;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .home-remake .hotspot br {
    display: none;
  }

  .home-remake .hero-home::before {
    background:
      linear-gradient(180deg, rgba(4, 22, 11, 0.9), rgba(6, 30, 16, 0.86)),
      radial-gradient(circle at 24% 74%, rgba(20, 180, 0, 0.22), transparent 32%);
  }

  .home-remake .hero-copy {
    padding: 72px 0 40px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-h: 72px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .site-header .pill-cta {
    order: 2;
    justify-self: end;
  }

  .site-nav {
    /* The sticky header's backdrop-filter makes it the containing block for
       this fixed panel, so `bottom: 0` would resolve against the header and
       collapse the menu to a few px. Size it against the viewport instead. */
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    z-index: 39;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 18px 20px 32px;
    background: var(--white);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.3s var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 700;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    background: var(--mint);
    color: var(--green-700);
  }

  .site-nav .nav-cta {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    background: var(--green);
    color: var(--white) !important;
    box-shadow: var(--glow);
  }

  .split,
  .jobs-layout,
  .jobs-cta,
  .industry-page,
  .article-layout,
  .job-detail-layout,
  .enquire-shell,
  .internal-application,
  .team-band-inner,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .cta-panel:first-child {
    padding: 64px max(24px, calc((100vw - var(--container)) / 2));
    min-height: 0;
  }

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

  .candidate-grid,
  .news-grid,
  .job-detail-main,
  .job-facts,
  .related-grid,
  .internal-filters,
  .internal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .news-feature {
    grid-template-columns: 1fr;
  }

  .news-feature-media {
    min-height: 260px;
    max-height: 340px;
  }

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

}

@media (max-width: 680px) {
  :root {
    --header-h: 64px;
  }

  body {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 36px);
  }

  .site-header {
    padding: 0 16px;
    gap: 10px;
  }

  .brand img {
    width: 88px;
  }

  .pill-cta {
    min-height: 40px;
    padding: 8px 10px 8px 16px;
    font-size: 14px;
  }

  .pill-cta span {
    width: 24px;
    height: 24px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .btn,
  .pill-cta {
    font-size: 15px;
  }

  .button-row .btn {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(38px, 11vw, 48px);
  }

  h2 {
    font-size: clamp(30px, 8.4vw, 38px);
  }

  .home-intro .section-copy h2,
  .values-head h2 {
    font-size: clamp(32px, 9.4vw, 44px);
  }

  .band {
    padding: 64px 0;
  }

  .band-values {
    padding: 72px 0;
  }

  .section-head {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
  }

  .section-head .btn {
    width: 100%;
    justify-content: space-between;
  }

  .page-hero {
    padding: 56px 0 44px;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .hero,
  .hero-industry,
  .hero-internal {
    min-height: 460px;
  }

  .hero-center p:not(.eyebrow) {
    font-size: 17px;
  }

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

  .home-remake .hero-copy h1 {
    font-size: clamp(42px, 12.4vw, 54px);
  }

  .home-remake .hero-copy p:not(.eyebrow) {
    font-size: 16px;
  }

  .hero-proof {
    gap: 18px;
    margin-top: 32px;
  }

  .hero-proof strong {
    font-size: 24px;
  }

  .hero-proof span {
    font-size: 11px;
  }

  .home-remake .hero-industry-hotspots {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 36px);
    gap: 8px;
    margin-bottom: 32px;
  }

  .home-remake .hotspot {
    min-height: 56px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .intro-text .lead {
    font-size: 18px;
  }

  .sector-grid,
  .candidate-grid,
  .news-grid,
  .job-detail-main,
  .job-facts,
  .related-grid,
  .internal-filters,
  .internal-grid,
  .values-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .sector-card {
    min-height: 200px;
  }

  .value-card {
    min-height: 0;
    grid-template-columns: 72px 1fr;
    grid-template-areas: "letter title" "letter text";
    align-items: start;
    gap: 6px 18px;
    padding: 22px 20px;
  }

  .value-letter {
    grid-area: letter;
    font-size: 64px;
    line-height: 0.9;
  }

  .value-card h3 {
    grid-area: title;
    font-size: 23px;
  }

  .value-card p {
    grid-area: text;
  }

  .team-strip {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .team-chip span {
    font-size: 13px;
  }

  .team-chip:nth-child(4n + 2),
  .team-chip:nth-child(4n + 4) {
    margin-top: 16px;
  }

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

  .person-photo {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .person-body {
    padding: 22px 20px;
  }

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

  .filters-toggle {
    display: inline-flex;
  }

  .filters .filter-group,
  .filters [data-clear-filters] {
    display: none;
  }

  .filters.is-open .filter-group {
    display: block;
  }

  .filters.is-open [data-clear-filters] {
    display: inline-flex;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .hero-proof li {
    padding-left: 10px;
  }

  .results-toolbar p {
    font-size: 26px;
  }

  .job-row {
    gap: 12px;
    min-height: 0;
    padding: 22px 12px;
    margin: 0 -12px;
  }

  .job-row:hover {
    transform: none;
  }

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

  .job-facts {
    gap: 16px;
  }

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

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

  .glance-card,
  .consultant-card,
  .apply-card,
  .plain-panel,
  .dark-signup {
    padding: 24px;
  }

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

  .news-media img {
    height: 190px;
  }

  .news-feature-body {
    padding: 28px 22px;
  }

  .news-filters {
    margin-bottom: 26px;
  }

  .news-filters button {
    min-height: 38px;
    padding: 6px 14px;
    font-size: 14px;
  }

  .article-hero {
    padding: 52px 0 40px;
  }

  .article-body {
    font-size: 17px;
  }

  .article-sidebar {
    padding: 22px;
  }

  .enquire-side,
  .enquire-panel {
    padding: 44px 18px;
  }

  .enquire-side {
    gap: 28px;
  }

  .enquire-side h1 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .enquire-side p:not(.eyebrow) {
    font-size: 16px;
  }

  .enquire-switch {
    width: 100%;
  }

  .enquire-switch button {
    font-size: 15px;
  }

  .enquiry-form {
    gap: 16px;
  }

  .upload-box {
    min-height: 130px;
    padding: 16px;
  }

  .upload-box.compact {
    min-height: 92px;
  }

  .form-panel {
    padding: 24px 20px;
  }

  .cta-panel,
  .cta-panel:first-child {
    padding: 52px 18px;
  }

  .cta-panel .btn {
    width: 100%;
    justify-content: space-between;
  }

  .site-footer {
    padding: 56px 0 24px;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-bottom {
    display: grid;
    gap: 6px;
    margin-top: 40px;
  }

  .modal-body {
    padding: 28px 22px;
  }

  .profile-head {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .profile-photo {
    width: 120px;
    height: 120px;
  }

  .profile-head h2 {
    font-size: 28px;
  }

  .toast {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

@media (max-width: 400px) {
  .home-remake .hero-industry-hotspots {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    flex-wrap: wrap;
  }

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

  .team-chip:nth-child(4n + 2),
  .team-chip:nth-child(4n + 4) {
    margin-top: 0;
  }

  .team-chip:nth-child(3n + 2) {
    margin-top: 16px;
  }
}
