:root {
  /* Deep field green carries the brand; harvest amber is the call to action.
     Both come from the work itself — vivid without looking like a tech startup. */
  --green-950: #0f4231;
  --green-900: #14523c;
  --green-800: #186349;
  --green-700: #1a7050;
  --green-600: #1f8560;
  --green-500: #27a473;
  --green-tint: #ecf5f0;
  --lime: #c2e85c;

  --amber: #e8913a;
  --amber-600: #cf7420;
  --amber-soft: #fdeed9;
  --amber-ink: #8a4c12;

  --ink: #10201a;
  --ink-soft: #2c433a;
  --ink-softer: #5c7369;
  --paper: #f7f8f5;
  --paper-raised: #ffffff;
  --line: #e1e7e0;

  --accent: var(--amber);
  --accent-ink: var(--amber-ink);
  --accent-soft: var(--amber-soft);

  --ok: #12855a;
  --ok-soft: #ddf3e8;
  --wait: #cf7420;
  --wait-soft: #fdeed9;
  --done: #6b7a80;
  --done-soft: #e9edee;

  --shadow-sm: 0 1px 2px rgba(11, 50, 38, 0.06), 0 1px 1px rgba(11, 50, 38, 0.04);
  --shadow-md: 0 10px 30px rgba(11, 50, 38, 0.10), 0 2px 8px rgba(11, 50, 38, 0.06);
  --shadow-lg: 0 28px 70px rgba(7, 35, 26, 0.28);
  --radius: 18px;
  --radius-sm: 11px;
  --maxw: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
}
.logo .dot { color: var(--accent); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 14.5px;
  transition: color .15s;
}
.main-nav a:hover { color: var(--ink); }
.header-right { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-switch button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-softer);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.lang-switch button.active {
  background: var(--ink);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-600); }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 145, 58, .34);
}
.btn-accent:hover { background: var(--amber-600); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink-softer); }

/* Ghost buttons sitting on the dark hero need light edges instead. */
.hero .btn-ghost,
.section-dark .btn-ghost {
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.hero .btn-ghost:hover,
.section-dark .btn-ghost:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .06);
}
.btn-sm { padding: 9px 16px; font-size: 13.5px; }
.btn-block { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px; height: 40px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper-raised);
  cursor: pointer;
}
.burger span {
  display: block;
  height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.8px) rotate(-45deg); }
@media (min-width: 641px) { .burger { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: var(--paper-raised);
  padding: 8px 24px 16px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 0;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15.5px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: none; }
@media (min-width: 641px) { .mobile-nav { display: none !important; } }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
  background: var(--green-900);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -180px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(35, 160, 111, .38) 0%, transparent 68%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  left: -140px; bottom: -260px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(182, 224, 74, .16) 0%, transparent 70%);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 44px;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.hero-media { position: relative; }
.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  max-height: 420px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.hero-badge {
  position: absolute;
  right: -14px;
  bottom: -18px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
@media (max-width: 900px) { .hero-badge { right: 12px; bottom: 12px; } }
.hero-badge-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-600);
  line-height: 1;
}
.hero-badge-text { font-size: 13px; color: var(--ink-softer); font-weight: 500; line-height: 1.3; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero .kicker {
  background: rgba(182, 224, 74, .14);
  color: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(182, 224, 74, .3);
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.032em;
  margin: 0 0 22px;
  max-width: 15ch;
  font-weight: 800;
  color: #fff;
}
.hero p.lead {
  font-size: 18.5px;
  color: rgba(255, 255, 255, .78);
  max-width: 52ch;
  margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
/* Translucent boxes on the green disappeared into it. The facts read far better as plain
   text with a lime mark — more confident, and it gives the catalogue its height back. */
/* Equal columns left a hole on the right, because the three lines are different lengths.
   Spacing them edge to edge instead keeps the row balanced whatever the translation. */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 30px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}
.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15.5px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex: 0 1 auto;
}
@media (max-width: 720px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 14px; }
}
.stat-card .ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--green-900);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 800;
}

/* ---------- Sector tiles ---------- */
.sectors { padding: 0 0 64px; }
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .sector-grid { grid-template-columns: repeat(2, 1fr); } }
.sector {
  position: relative;
  border: none;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.sector:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.sector img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .2s;
  opacity: .82;
}
.sector:hover img { transform: scale(1.05); opacity: .95; }
.sector::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7, 35, 26, 0.88) 0%, rgba(7, 35, 26, 0.15) 58%, transparent 100%);
}
.sector-label {
  position: absolute;
  left: 18px; right: 18px; bottom: 15px;
  z-index: 2;
  color: #fff;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.01em;
  text-align: left;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.sector-label::after {
  content: "";
  display: block;
  width: 26px; height: 3px;
  margin-top: 8px;
  border-radius: 2px;
  background: var(--lime);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.sector:hover .sector-label::after,
.sector.is-active .sector-label::after { transform: scaleX(1); }
.sector.is-active { outline: 3px solid var(--lime); outline-offset: 2px; }

/* ---------- Section shell ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 10px 0 14px;
  font-weight: 800;
}
.section-head p { color: var(--ink-softer); font-size: 17px; margin: 0; }

.section-alt { background: var(--paper-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* A dark band mid-page gives the layout rhythm and keeps it from reading as one long sheet. */
.section-dark {
  background: var(--green-950);
  color: #fff;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, .75); }
.section-dark .kicker {
  background: rgba(182, 224, 74, .14);
  color: var(--lime);
  box-shadow: inset 0 0 0 1px rgba(182, 224, 74, .3);
}

/* ---------- Filters ----------
   A labelled panel, so it reads as "these are the controls" instead of a row of
   unexplained boxes sitting next to the search field. */
.filter-panel {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}
.filter-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.filter-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-600);
}
.filter-reset {
  margin-left: auto;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 5px 13px;
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-softer);
  cursor: pointer;
}
.filter-reset:hover { border-color: var(--ink-softer); color: var(--ink); }

.filter-group { margin-bottom: 18px; }
.filter-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-softer);
  margin-bottom: 9px;
}

.filter-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 14px;
}
.filter-field { display: flex; flex-direction: column; gap: 6px; }
.filter-field > span {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-softer);
}
.filter-field select, .filter-field input[type="search"] {
  appearance: none;
  border: 1.5px solid #d7e3dc;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14.5px;
  color: var(--ink);
  font-family: inherit;
  width: 100%;
}
.filter-field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%235c7369' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 11px;
  padding-right: 34px;
}
.filter-field select:hover, .filter-field input:hover { border-color: var(--green-500); }
.filter-field select:focus, .filter-field input:focus { outline: 2px solid var(--green-600); outline-offset: 1px; }
.filter-field-search { grid-column: span 2; }
@media (max-width: 560px) { .filter-field-search { grid-column: auto; } }

.filter-count { font-size: 14px; color: var(--ink-softer); margin: 0 0 22px; }
.filter-count strong { color: var(--ink); font-weight: 700; }

/* ---------- Category chips ---------- */
.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.cat-chip {
  border: 1px solid var(--line);
  background: var(--paper-raised);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 9px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.cat-chip:hover { border-color: var(--green-500); color: var(--ink); }
.cat-chip.is-active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Candidate grid ----------
   The candidates are the product, so the card leads with a large photo of the person
   and the facts an employer decides on, not a compact list row. */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 24px;
}
.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  cursor: pointer;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--green-500);
}
.card.is-selected { opacity: .6; order: 99; }
.card.is-selected:hover { transform: none; box-shadow: var(--shadow-sm); }

.card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--green-800);
  overflow: hidden;
}
.card-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform .45s ease;
}
.card:hover .card-photo img { transform: scale(1.04); }
.card-photo-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--green-600), var(--green-800));
  color: rgba(255, 255, 255, .92);
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.card-photo .status-pill {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(7, 35, 26, .18);
}

.card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.card-age { color: var(--ink-softer); font-weight: 600; }

/* Two candidates can share a name and an age — the reference is what an employer quotes. */
.card-ref {
  float: right;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-softer);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 7px;
  margin-top: 2px;
}
.profile-ref {
  display: inline-block;
  margin-left: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-600);
  background: var(--green-tint);
  border-radius: 6px;
  padding: 2px 8px;
}
.booking-target {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-tint);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 20px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.booking-target img {
  width: 52px; height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.booking-target strong { font-size: 15.5px; color: var(--ink); display: block; }
.booking-ref { font-weight: 700; color: var(--green-600); margin-top: 2px; }

.card-facts {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  font-size: 13.5px;
}
.card-facts dt { color: var(--ink-softer); }
.card-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-top { display: flex; gap: 14px; align-items: flex-start; }
.avatar {
  width: 60px; height: 60px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--green-600), var(--green-800));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.card-id { flex: 1; min-width: 0; }
.card-name {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.card-title {
  font-size: 13.5px;
  color: var(--green-600);
  font-weight: 600;
  margin-top: -6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal-header .card-title, .modal-subtitle { white-space: normal; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.status-pill .dot { width: 7px; height: 7px; border-radius: 50%; }
.status-available { background: var(--ok-soft); color: var(--ok); }
.status-available .dot { background: var(--ok); }
.status-reserved { background: var(--wait-soft); color: var(--accent-ink); }
.status-reserved .dot { background: var(--wait); }
.status-selected { background: var(--done-soft); color: var(--done); }
.status-selected .dot { background: var(--done); }

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-soft);
}
.card-meta span:not(.status-pill):not(.dot) {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* The status is the one chip that carries colour, so it reads first in the row. */
.card-meta .status-pill { order: -1; }
.card-langs { display: flex; gap: 14px; font-size: 12.5px; color: var(--ink-softer); }
.lang-bar { display: flex; align-items: center; gap: 6px; }
.lang-bar .track { width: 54px; height: 5px; border-radius: 4px; background: var(--line); overflow: hidden; }
.lang-bar .fill { height: 100%; background: var(--ink-soft); }

.card-actions { display: flex; gap: 8px; margin-top: auto; }
.card-actions .btn { flex: 1; }

.load-more-wrap { display: flex; justify-content: center; margin-top: 28px; }
.load-more-wrap .btn { padding: 14px 32px; font-size: 15px; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-softer);
  font-size: 15px;
  grid-column: 1 / -1;
}

/* ---------- Video ---------- */
.video-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) { .video-grid { grid-template-columns: 1fr; } }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--green-800);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
}
.video-frame:hover img { opacity: .7; transform: scale(1.02); }
.video-frame:hover .video-play { background: var(--lime); color: var(--green-950); border-color: var(--lime); }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.video-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
  transition: opacity .25s, transform .4s;
}
.video-play {
  position: relative;
  z-index: 2;
  width: 74px; height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  padding-left: 5px;
}
#video h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 10px 0 12px;
}
#video p {
  font-size: 16.5px;
  max-width: 44ch;
  margin: 0 0 22px;
}
.video-play { transition: background .2s, color .2s, border-color .2s; }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-600), var(--lime));
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 17px;
  margin-bottom: 18px;
}
.step h3 { font-size: 19px; margin: 0 0 8px; font-weight: 700; letter-spacing: -.01em; }
.step p { margin: 0; color: var(--ink-softer); font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-links { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.contact-link {
  display: flex; align-items: center; gap: 12px;
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color .15s;
}
.contact-link:hover { border-color: var(--ink-softer); }
.contact-link .ico {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--green-tint); color: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
#contact { background: var(--green-tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* The enquiry form is the point of the page, so it gets a card that actually stands out
   from the section behind it rather than white-on-white. */
.form-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green-600), var(--lime));
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%;
  border: 1.5px solid #d7e3dc;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 14.5px;
  font-family: inherit;
  background: #fff;
  resize: vertical;
  transition: border-color .15s;
}
.field input:hover, .field textarea:hover { border-color: var(--green-500); }
.field input:focus, .field textarea:focus { outline: 2px solid var(--ink-softer); outline-offset: 1px; }
.form-note { font-size: 12.5px; color: var(--ink-softer); margin-top: 12px; text-align: center; }
.form-success {
  display: none;
  background: var(--ok-soft);
  color: var(--ok);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}
.form-success.show { display: block; }

.form-error {
  display: none;
  background: #fbe7e4;
  color: #b3402f;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 14px;
}
.form-error.show { display: block; }

/* Honeypot: hidden from people, visible to form-filling bots. Never display:none —
   some bots skip those — and kept out of the tab order and the accessibility tree. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.avatar-photo { object-fit: cover; }
.avatar-lg { width: 68px; height: 68px; font-size: 24px; }
.modal-title { margin: 0 0 4px; font-size: 20px; font-weight: 800; }
.modal-subtitle { margin-bottom: 20px; }
.contact-title { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.02em; font-weight: 800; margin: 10px 0 12px; }
.contact-sub { color: var(--ink-softer); font-size: 16px; max-width: 44ch; margin: 0; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 32px 0;
  font-size: 13.5px;
  color: var(--ink-softer);
}
.footer-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(16, 29, 44, 0.55);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
  z-index: 100;
}
.modal-overlay.show { display: flex; }
.modal {
  background: var(--paper-raised);
  border-radius: 22px;
  max-width: 880px;
  width: 100%;
  padding: 34px;
  box-shadow: var(--shadow-lg);
  position: relative;
  margin: auto;
}
#actionModalContent { max-width: 520px; }

/* ---------- Candidate profile ---------- */
.profile-top {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 26px;
  padding-right: 44px;
}
@media (max-width: 620px) {
  .profile-top { grid-template-columns: 1fr; gap: 18px; padding-right: 0; }
}
.profile-photo {
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--green-800);
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-photo .card-photo-empty { font-size: 62px; }
.profile-intro h3 {
  margin: 12px 0 6px;
  font-size: clamp(26px, 3.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.profile-role {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-600);
}
.profile-where { font-size: 14.5px; color: var(--ink-softer); margin-top: 4px; }

/* The facts an employer decides on, before any prose. */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 14px 12px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 28px;
}
.highlight-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-softer);
  margin-bottom: 5px;
}
.highlight-value {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.meter {
  display: block;
  height: 5px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden;
  margin-top: 7px;
}
.meter-fill { display: block; height: 100%; background: var(--green-600); }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-size: 16px;
  color: var(--ink-softer);
  display: flex; align-items: center; justify-content: center;
}
.modal-header { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; padding-right: 40px; }
.modal-header .avatar { width: 68px; height: 68px; font-size: 24px; }
.modal-header h3 { margin: 0; font-size: 21px; font-weight: 800; }
.modal-header .card-title { margin-top: 4px; }
.modal-section { margin-bottom: 26px; }
.modal-section:last-child { margin-bottom: 0; }
.modal-section h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--green-600); font-weight: 700; margin: 0 0 10px;
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.modal-section p { margin: 0; font-size: 15.5px; color: var(--ink-soft); line-height: 1.65; }
.modal-section ul { margin: 0; padding-left: 20px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.modal-section li { margin-bottom: 8px; }
.modal-target p {
  background: var(--amber-soft);
  color: var(--amber-ink);
  font-weight: 600;
  padding: 14px 16px;
  border-radius: 12px;
}
.modal-fields {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
.modal-fields div { font-size: 13.5px; }
.modal-fields .k { color: var(--ink-softer); font-weight: 600; margin-bottom: 2px; }
.modal-fields .v { color: var(--ink); }
.modal-actions {
  display: flex;
  gap: 12px;
  margin: 30px -34px -34px;
  padding: 20px 34px;
  background: var(--paper-raised);
  border-top: 1px solid var(--line);
  border-radius: 0 0 22px 22px;
  position: sticky;
  bottom: -34px;
}
.modal-actions .btn { flex: 1; padding: 15px 24px; font-size: 15.5px; }
@media (max-width: 620px) {
  .modal { padding: 22px; }
  .modal-actions { margin: 24px -22px -22px; padding: 16px 22px; bottom: -22px; flex-direction: column; }
  /* Two columns stay scannable on a phone; one column turns the block into a long list. */
  .highlights { grid-template-columns: repeat(2, 1fr); padding: 16px; }
}

@media (max-width: 640px) {
  .site-header .wrap { height: 64px; padding: 0 16px; }
  .main-nav { display: none; }
  .wrap { padding: 0 16px; }
  section { padding: 56px 0; }
  .hero { padding: 40px 0 44px; }
  .filter-count { width: 100%; margin-left: 0; order: 10; }
  .logo { font-size: 16.5px; }
  .header-right { gap: 8px; }
  .lang-switch { padding: 2px; }
  .lang-switch button { padding: 5px 9px; font-size: 12px; }
  .hero-stats { margin-top: 32px; }
  .hero h1 { letter-spacing: -0.025em; }
}
