/* ==========================================================================
   Jobs Kreate — design system
   v1 · 2026-05-22 · Phase 1 (style tile)
   Typeface direction: Fraunces (display) + Source Sans 3 (UI/body), self-hosted.
   Brand colour #0078C1 sampled from the logo + favicon.
   ========================================================================== */

/* --- Self-hosted fonts (no Google CDN call) -------------------------------- */

/* Source Sans 3 — body, UI, forms, nav, footer, legal */
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/sourcesans3.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/sourcesans3-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/sourcesans3-italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/sourcesans3-italic-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Fraunces — hero + section headlines + key editorial moments only */
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/fraunces.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/fraunces-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/fraunces-italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
  src: url("../fonts/fraunces-italic-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --- Design tokens --------------------------------------------------------- */
:root {
  /* Brand + palette (anchored on #0078C1) */
  --brand:        #0078c1;   /* logo blue — primary identity + primary CTA   */
  --brand-600:    #0067a6;   /* hover / pressed / links                      */
  --brand-700:    #00527f;   /* deep — text on light, emphasis               */
  --navy:         #07293f;   /* premium dark surface (hero band / footer)    */
  --ink:          #16202a;   /* body text                                    */
  --muted:        #5b6573;   /* secondary text                               */
  --line:         #e5e9ef;   /* hairline borders                             */
  --bg:           #f7f9fb;   /* page background                              */
  --surface:      #ffffff;   /* cards / raised surfaces                      */
  --surface-2:    #eef3f8;   /* tinted blocks / tags                         */
  --on-dark:      #ffffff;
  --on-dark-muted: rgba(255, 255, 255, 0.72);
  --focus-ring:   rgba(0, 120, 193, 0.28);

  /* Type families */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Source Sans 3", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono:    ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* Type scale — modular ~1.25, fluid on the large end */
  --fs-caption: 0.8125rem;                                  /* 13px */
  --fs-small:   0.9375rem;                                  /* 15px */
  --fs-body:    1.0625rem;                                  /* 17px */
  --fs-lead:    1.25rem;                                    /* 20px */
  --fs-h4:      1.375rem;                                   /* 22px */
  --fs-h3:      clamp(1.5rem, 1.34rem + 0.8vw, 1.875rem);
  --fs-h2:      clamp(2rem, 1.6rem + 2vw, 2.75rem);
  --fs-h1:      clamp(2.5rem, 1.9rem + 3vw, 3.75rem);
  --fs-display: clamp(3rem, 2rem + 6vw, 5.5rem);

  /* Spacing — 8-point base */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.5rem;  --space-6: 2rem;
  --space-7: 3rem;     --space-8: 4rem;    --space-9: 6rem;

  /* Radius / shadow / layout / motion */
  --radius:      4px;
  --radius-lg:   12px;
  --shadow-sm:   0 1px 2px rgba(16, 32, 42, 0.06);
  --shadow-md:   0 14px 40px -18px rgba(16, 32, 42, 0.28);
  --container:   1200px;
  --ease:        cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur:         180ms;
}

/* --- Reset / base ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-600); text-underline-offset: 2px; }
a:hover { color: var(--brand-700); }
::selection { background: rgba(0, 120, 193, 0.16); }

/* --- Headings -------------------------------------------------------------- */
/* Fraunces = hero + h1/h2 (page-level display moments). */
.display, h1, h2 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.08;
  letter-spacing: -0.018em;
}
.display {
  font-size: var(--fs-display);
  font-weight: 380;
  line-height: 1.02;
  letter-spacing: -0.022em;
}
h1 { font-size: var(--fs-h1); font-weight: 420; }
h2 { font-size: var(--fs-h2); font-weight: 460; line-height: 1.12; }

/* Source Sans 3 = sub-headings, card titles, UI labels. */
h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: var(--fs-h4); font-weight: 600; }

p { margin: 0 0 1rem; max-width: 68ch; }
.lead { font-size: var(--fs-lead); color: var(--muted); line-height: 1.55; }
.small { font-size: var(--fs-small); }
.caption { font-size: var(--fs-caption); color: var(--muted); }
em, i { font-style: italic; }
strong, b { font-weight: 600; }

/* --- Eyebrow / tag --------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-700);
  margin: 0 0 0.75rem;
}
.tag {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--brand-700);
  background: var(--surface-2);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
}
.tag--solid { color: #fff; background: var(--brand); }

/* --- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  padding: 0.8rem 1.4rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg, .btn .ico { width: 1.05em; height: 1.05em; flex: none; }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-600); color: #fff; }

.btn--secondary {
  background: var(--surface);
  color: var(--brand-700);
  border-color: var(--brand);
}
.btn--secondary:hover { background: var(--surface-2); color: var(--brand-700); }

.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--surface-2); }

.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.45; cursor: not-allowed; transform: none;
}

/* --- Form fields ----------------------------------------------------------- */
.field { display: block; max-width: 26rem; }
.field > label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.field .hint { color: var(--muted); font-weight: 400; }
.input, .field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.85rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.input::placeholder { color: #9aa4b0; }
.input:focus, .field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--focus-ring);
}

/* --- Cards ----------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Vacancy card */
.vacancy-card .v-head {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.vacancy-card .v-logo {
  width: 2.5rem; height: 2.5rem; flex: none;
  border-radius: 8px; border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 500;
  color: var(--brand-700); background: var(--surface-2);
}
.vacancy-card h3 { margin: 0 0 0.25rem; }
.vacancy-card .v-meta {
  display: flex; flex-wrap: wrap; gap: 0.35rem 1rem;
  font-size: var(--fs-small); color: var(--muted);
  margin: 0.6rem 0 1rem;
}
.vacancy-card .v-meta span { display: inline-flex; align-items: center; gap: 0.35rem; }
.vacancy-card .v-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-top: 1.1rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

/* Newsroom card */
.news-card .n-media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--surface-2), #dfe8f1);
  border-radius: 8px;
  margin: -0.25rem 0 1.1rem;
  display: grid; place-items: center;
  color: var(--brand-700);
  font-family: var(--font-display);
  font-size: var(--fs-small);
  letter-spacing: 0.04em;
}
.news-card .n-meta {
  display: flex; gap: 0.75rem; align-items: center;
  font-size: var(--fs-caption); color: var(--muted);
  margin-bottom: 0.6rem;
}
.news-card h3 { margin: 0 0 0.5rem; }
.news-card .read {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 600; font-size: var(--fs-small);
  color: var(--brand-600); text-decoration: none; margin-top: 0.4rem;
}
.news-card .read:hover { gap: 0.55rem; color: var(--brand-700); }

/* ==========================================================================
   Layout primitives + site chrome (header, footer) + contact page
   Phase 2.1 (Contact). Light surfaces only — navy deferred until the
   reversed-logo SVG exists.
   ========================================================================== */

.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: var(--space-8) 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* --- Header ---------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner { display: flex; align-items: center; gap: 1.5rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 48px; width: auto; display: block; }

.site-nav { display: flex; align-items: center; gap: 1.75rem; margin-left: auto; }
.site-nav ul { list-style: none; display: flex; align-items: center; gap: 1.5rem; margin: 0; padding: 0; }
.site-nav a {
  font-size: 0.975rem; font-weight: 500; color: var(--ink); text-decoration: none;
  padding: 0.4rem 0; position: relative; transition: color var(--dur) var(--ease);
}
.site-nav a:hover { color: var(--brand-600); }
.site-nav a[aria-current="page"] { color: var(--brand-700); }
.site-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--brand);
}
/* Outrank `.site-nav a` (0,1,1), which otherwise forces the CTA to nav-link
   padding (0.4rem 0) and --ink text. Keep the button's own frame + white text. */
.site-nav a.nav-cta { padding: 0.72rem 1.5rem; color: #fff; }
.site-nav a.nav-cta:hover { color: #fff; }

.nav-toggle {
  display: none; margin-left: auto; width: 44px; height: 44px; padding: 0 10px;
  border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); }
.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); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed; inset: 72px 0 auto 0; margin: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 1.5rem 0.5rem; }
  .site-nav li { border-bottom: 1px solid var(--line); }
  .site-nav a { display: block; padding: 0.9rem 0; }
  .site-nav a[aria-current="page"]::after { display: none; }
  .nav-cta { margin: 1rem 1.5rem 1.25rem; justify-content: center; }
  body.nav-open { overflow: hidden; }
}

/* --- Footer ---------------------------------------------------------------- */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, 0.62); }
.footer-grid {
  display: grid; grid-template-columns: 1.7fr 0.9fr 1.45fr 1.05fr; gap: 2.5rem;
  padding-top: var(--space-7); padding-bottom: var(--space-6);
}
.footer-brand img { height: 44px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand p { color: rgba(255, 255, 255, 0.62); font-size: var(--fs-small); max-width: 34ch; margin: 0 0 0.75rem; }
.footer-brand .caption { color: rgba(255, 255, 255, 0.42); }
.footer-col h4 { font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 1rem; color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a, .footer-contact a { color: rgba(255, 255, 255, 0.78); text-decoration: none; font-size: var(--fs-small); }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact { font-size: var(--fs-small); color: rgba(255, 255, 255, 0.62); font-style: normal; }
.footer-contact p { margin: 0 0 0.7rem; max-width: 32ch; }
.footer-contact .pending { color: rgba(255, 255, 255, 0.4); font-style: italic; }
.social { display: flex; gap: 0.5rem; flex-wrap: nowrap; }
.social a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.16); color: #fff;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.social a:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 1.25rem; padding-bottom: 1.5rem;
  font-size: var(--fs-caption); color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.5); }
.footer-bottom a:hover { color: #fff; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* --- Reveal on scroll (restrained: opacity + small translate) -------------- */
[data-reveal] {
  opacity: 0; transform: translateY(12px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* --- Contact page ---------------------------------------------------------- */
/* Full-bleed photo hero with navy gradient overlay (logo stays on the light
   header above, so no reversed-logo dependency). */
.hero-photo {
  position: relative; display: flex; align-items: flex-end;
  min-height: 600px; background: var(--navy); color: #fff; overflow: hidden;
}
.hero-photo .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(270deg, rgba(6,29,45,0.92) 0%, rgba(6,29,45,0.66) 40%, rgba(6,29,45,0.16) 74%, rgba(6,29,45,0.04) 100%),
    linear-gradient(0deg, rgba(6,29,45,0.5) 0%, rgba(6,29,45,0) 46%);
}
.hero-photo .container { position: relative; z-index: 1; width: 100%; padding-top: var(--space-9); padding-bottom: var(--space-8); }
.hero-photo .eyebrow { color: #b9def5; }
.hero-photo h1, .hero-photo .lead, .hero-photo .eyebrow { text-shadow: 0 2px 20px rgba(6, 29, 45, 0.45); }
.hero-photo h1 { color: #fff; font-size: clamp(3rem, 1.9rem + 5.4vw, 5.25rem); max-width: 11ch; margin: 0.35rem 0 1.05rem; }
.hero-photo .lead { color: rgba(255, 255, 255, 0.88); max-width: 46ch; margin-bottom: 1.9rem; }
.hero-photo .hero-copy { max-width: 540px; margin-left: auto; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Archive / listing photo hero — Vacancies, sectors, News hub, pillars.
   Same full-bleed photo + navy wash as the marketing heroes, a touch shorter,
   with breadcrumb + copy right-aligned over the dark side of the gradient so
   every top-level page shares one hero treatment (replaces the flat .page-hero). */
.hero-photo--archive { min-height: 420px; }
.hero-photo--archive .container { padding-top: var(--space-7); padding-bottom: var(--space-7); }
.hero-photo--archive .breadcrumb,
.hero-photo--archive .hero-copy { max-width: 600px; margin-left: auto; }
.hero-photo--archive h1 { font-size: clamp(2.25rem, 1.6rem + 2.4vw, 3.5rem); max-width: none; }
/* Breadcrumb sits above the copy, white over the photo. */
.hero-photo .breadcrumb { position: relative; z-index: 1; text-shadow: 0 1px 10px rgba(6, 29, 45, 0.5); }
.hero-photo .breadcrumb a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.hero-photo .breadcrumb a:hover { color: #fff; }
.hero-photo .breadcrumb li[aria-current] { color: rgba(255, 255, 255, 0.6); }
.btn--on-dark { background: rgba(255, 255, 255, 0.08); color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.btn--on-dark:hover { background: rgba(255, 255, 255, 0.16); color: #fff; border-color: rgba(255, 255, 255, 0.8); }

/* Visit-us section (map + address) — fills the space before the footer */
.visit .grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 3rem; align-items: center; }
.visit address { font-style: normal; color: var(--ink); font-size: var(--fs-lead); line-height: 1.55; margin: 0.4rem 0 1.6rem; max-width: 24ch; }

.map-frame {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--surface-2);
}
.map-frame iframe {
  display: block; width: 100%; height: 430px; border: 0;
  filter: grayscale(0.12) contrast(1.02);
}
.map-caption {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding: 0.95rem 1.15rem; background: var(--surface); border-top: 1px solid var(--line);
  font-size: var(--fs-small);
}
.map-caption .addr { color: var(--ink); max-width: 44ch; }
.map-caption a { white-space: nowrap; font-weight: 600; text-decoration: none; color: var(--brand-600); }
.map-caption a:hover { color: var(--brand-700); }

/* Channels band (tinted, balanced 4-up — never an orphan row) */
.channels { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.channels .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.channel .ic {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 0.95rem;
  display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); color: var(--brand);
}
.channel .ic svg { width: 20px; height: 20px; fill: currentColor; }
.channel.is-primary .ic { background: var(--brand); color: #fff; border-color: var(--brand); }
.channel .label {
  font-size: var(--fs-caption); font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 0.35rem;
}
.channel .value { font-size: var(--fs-lead); font-weight: 600; color: var(--ink); text-decoration: none; display: inline-block; }
a.value:hover { color: var(--brand-600); }
.channel .sub { font-size: var(--fs-small); color: var(--muted); margin: 0.3rem 0 0; }
.channel .pending { color: #9aa4b0; font-weight: 400; font-style: italic; font-size: var(--fs-body); }
.licence-note { color: var(--muted); font-size: var(--fs-small); padding-top: var(--space-6); max-width: 60ch; }

@media (max-width: 860px) {
  .hero-photo { min-height: 480px; }
  .visit .grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .map-frame iframe { height: 320px; }
  .channels .grid { grid-template-columns: 1fr 1fr; gap: 1.75rem 2rem; }
}
@media (max-width: 520px) { .channels .grid { grid-template-columns: 1fr; } }

/* --- Section heading block ------------------------------------------------- */
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.section-head h2 { margin: 0.25rem 0 0.6rem; }
.section-head .lead { margin: 0; }
.section--tint { background: var(--surface-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* Contact methods (WhatsApp / Call / Email, with descriptions) */
.methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.method { padding: var(--space-5); }
.method .ic { width: 42px; height: 42px; border-radius: 11px; margin-bottom: 1rem; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); color: var(--brand); }
.method.is-primary .ic { background: var(--brand); color: #fff; border-color: var(--brand); }
.method .ic svg { width: 20px; height: 20px; fill: currentColor; }
.method h3 { margin: 0 0 0.25rem; }
.method .value { font-size: var(--fs-lead); font-weight: 600; color: var(--brand-700); text-decoration: none; display: inline-block; margin-bottom: 0.5rem; }
a.value:hover { color: var(--brand-600); }
.method p { font-size: var(--fs-small); color: var(--muted); margin: 0; }

/* Audience split (job seekers / employers) */
.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.audience-card { padding: var(--space-6); display: flex; flex-direction: column; }
.audience-card .eyebrow { margin-bottom: 0.5rem; }
.audience-card h3 { margin: 0 0 0.6rem; }
.audience-card p { color: var(--muted); margin: 0 0 1.5rem; flex: 1; }
.audience-card .actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Business hours */
.hours-list { list-style: none; margin: 0; padding: 0; max-width: 420px; }
.hours-list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: 0.85rem 0; border-bottom: 1px solid var(--line); font-size: var(--fs-body); }
.hours-list li:last-child { border-bottom: 0; }
.hours-list .day { color: var(--ink); font-weight: 600; }
.hours-list .time { color: var(--muted); }
.hours-list .closed { color: var(--brand-700); }

/* Employer enquiry form */
.enquiry { max-width: 820px; }
.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem 1.5rem; margin-top: 0.5rem; }
.enquiry-form .field { max-width: none; }
.enquiry-form .field.col-2 { grid-column: 1 / -1; }
.enquiry-form label .req { color: var(--brand); }
.enquiry-form textarea { min-height: 120px; resize: vertical; font-family: inherit; }
.enquiry-form input[type="file"] { padding: 0.55rem 0.6rem; background: var(--surface-2); cursor: pointer; }
.enquiry-form input[type="file"]::file-selector-button {
  font-family: var(--font-sans); font-weight: 600; font-size: 0.85rem; color: var(--brand-700);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.4rem 0.8rem; margin-right: 0.8rem; cursor: pointer;
}
.field .help { font-size: var(--fs-caption); color: var(--muted); margin: 0.35rem 0 0; }
.consent { grid-column: 1 / -1; display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-small); color: var(--muted); }
.consent input { width: 1.1rem; height: 1.1rem; margin-top: 0.15rem; flex: none; accent-color: var(--brand); }
.enquiry-submit { grid-column: 1 / -1; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: 0.25rem; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { grid-column: 1 / -1; font-size: var(--fs-small); }
.form-status.is-error { color: #b3261e; }
.form-success {
  border: 1px solid var(--line); border-left: 3px solid var(--brand);
  background: var(--surface-2); border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}
.form-success h3 { margin: 0 0 0.4rem; }
.form-success p { margin: 0; color: var(--muted); }

/* Company information band — centred statement over a light photo wash */
.company-info {
  text-align: center; color: var(--muted);
  background-color: var(--surface-2);
  background-image: linear-gradient(rgba(247, 249, 251, 0.85), rgba(247, 249, 251, 0.9)), url("../img/about-bg.jpg");
  background-size: cover; background-position: center;
}
.company-inner { max-width: 860px; margin: 0 auto; }
.company-info h2 { color: var(--ink); }
.company-info p { margin-left: auto; margin-right: auto; }
.company-info .legal { font-size: var(--fs-small); margin-top: 1rem; white-space: nowrap; }
@media (max-width: 700px) { .company-info .legal { white-space: normal; } }

@media (max-width: 860px) {
  .methods { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .enquiry-form { grid-template-columns: 1fr; }
}

/* --- Motion preference ----------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .card:hover { transform: none; }
}

/* --- Contact Form 7 compatibility (Employer Enquiry) ----------------------- */
/* The employer form is now a CF7 form; our .enquiry-form grid wraps CF7's
   controls. Make CF7's per-control span fill its cell and keep the validation
   tips, consent checkbox and response message on-brand. */
.enquiry .wpcf7 { margin: 0; }
.wpcf7-form .hidden-fields-container { border: 0; margin: 0; padding: 0; min-width: 0; }
.enquiry-form .wpcf7-form-control-wrap { display: block; }

.wpcf7-not-valid-tip { display: block; margin-top: 0.35rem; font-size: var(--fs-caption); color: #b3261e; }
.wpcf7-form-control.wpcf7-not-valid { border-color: #b3261e; box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.14); }

.consent { display: block; }
.consent .wpcf7-list-item { margin: 0; }
.consent .wpcf7-list-item label { display: flex; gap: 0.7rem; align-items: flex-start; margin: 0; font-size: var(--fs-small); color: var(--muted); font-weight: 400; }
.consent .wpcf7-list-item input[type="checkbox"] { width: 1.1rem; height: 1.1rem; margin: 0.15rem 0 0; flex: none; accent-color: var(--brand); }

.enquiry-submit .wpcf7-spinner { margin-left: 0.75rem; }
.wpcf7-response-output {
  margin: 1.25rem 0 0; padding: 0.95rem 1.15rem;
  border: 1px solid var(--line); border-left: 3px solid var(--brand);
  border-radius: var(--radius-lg); background: var(--surface-2);
  font-size: var(--fs-small); color: var(--ink);
}
.wpcf7-response-output.wpcf7-validation-errors,
.wpcf7-response-output.wpcf7-spam-blocked { border-left-color: #b3261e; color: #8a1f17; background: #fdeceb; }

/* ==========================================================================
   Homepage (front-page) — Phase 2.2
   Reuses the design system; only homepage-specific components live here.
   ========================================================================== */

/* --- Hero (home/about variant: longer headline + trust line) --------------- */
.hero-photo--home .hero-copy,
.hero-photo--about .hero-copy,
.hero-photo--services .hero-copy { max-width: 640px; }
.hero-photo--home h1,
.hero-photo--about h1,
.hero-photo--services h1 {
  max-width: 15ch;
  font-size: clamp(2.5rem, 1.6rem + 4.2vw, 4.5rem);
}
.hero-trust {
  margin: 1.4rem 0 0;
  max-width: none;
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.68);
  text-shadow: 0 2px 20px rgba(6, 29, 45, 0.45);
}

/* --- Centred section head -------------------------------------------------- */
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .lead,
.section-head--center p { margin-left: auto; margin-right: auto; }

/* Sub-label inside a section (e.g. "How we support employers") */
.sub-label {
  font-size: var(--fs-small); font-weight: 700; letter-spacing: 0.04em;
  color: var(--ink); margin: 2.25rem 0 1.4rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* Keep the audience-card "micro" line from inheriting the description's flex:1 */
.audience-card .actions { margin-top: auto; }
.audience-card .micro { flex: none; margin: 1rem 0 0; }
.trust-note { font-size: var(--fs-small); color: var(--muted); max-width: 78ch; margin: 1.6rem 0 0; }
.micro { font-size: var(--fs-caption); color: var(--muted); margin: 1rem 0 0; }

/* --- Credentials strip ----------------------------------------------------- */
.creds-band .section-head { margin-bottom: 2rem; }
.h-strip { font-size: var(--fs-h3); font-weight: 500; max-width: 30ch; margin: 0 auto; }
.creds {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.9rem;
}
.creds li {
  flex: 1 1 200px; max-width: 260px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.2rem 1.1rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.c-label {
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--brand-700);
}
.c-value { font-size: var(--fs-small); color: var(--ink); line-height: 1.45; }

/* --- Intro / brand split --------------------------------------------------- */
.intro-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.intro-head h2 { margin: 0.25rem 0 0; }
.intro-body p:first-child { margin-top: 0; }
.intro-body .btn { margin-top: 0.75rem; }
@media (max-width: 860px) { .intro-split { grid-template-columns: 1fr; gap: 1.25rem; } }

/* --- Industries directory -------------------------------------------------- */
.industries { border-top: 1px solid var(--line); }
.industry {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem 2rem;
  align-items: start; padding: 1.85rem 0; border-bottom: 1px solid var(--line);
}
.industry .idx {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 380;
  color: var(--brand); line-height: 1; padding-top: 0.2rem;
}
.industry .i-body h3 { margin: 0 0 0.4rem; }
.industry .i-body p { margin: 0; color: var(--muted); max-width: 62ch; }
.industry .i-links { display: flex; flex-direction: column; align-items: flex-end; text-align: right; gap: 0.5rem; }
.industry .i-links a {
  font-weight: 600; font-size: var(--fs-small); color: var(--brand-600);
  text-decoration: none; white-space: nowrap;
}
.industry .i-links a:hover { color: var(--brand-700); }
@media (max-width: 760px) {
  .industry { grid-template-columns: auto 1fr; gap: 0.5rem 1rem; }
  .industry .i-links { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; align-items: flex-start; text-align: left; gap: 0.3rem 1.5rem; margin-top: 0.6rem; }
}

/* --- Candidate pathways (cards) -------------------------------------------- */
.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.path-card h3 { font-size: var(--fs-h4); }
.path-card p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .path-grid { grid-template-columns: 1fr; } }

/* --- Feature grid (employer support + why-choose) -------------------------- */
.feature-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem 1.75rem; }
.feature { flex: 1 1 300px; max-width: 360px; }
.feature h3 { font-size: var(--fs-h4); margin: 0 0 0.4rem; }
.feature p { color: var(--muted); margin: 0; font-size: var(--fs-small); }
.feature--num .mk {
  display: inline-grid; place-items: center; width: 2.25rem; height: 2.25rem;
  border-radius: 50%; background: var(--surface-2); color: var(--brand-700);
  font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; margin-bottom: 0.9rem;
}
.feature--check { padding-left: 1.1rem; border-left: 2px solid var(--brand); }

/* Dark photo feature band (mid-page tonal break) — mirrors the hero overlay */
.feature-band { position: relative; background: var(--navy); color: #fff; overflow: hidden; }
.feature-band .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature-band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6, 29, 45, 0.82) 0%, rgba(6, 29, 45, 0.9) 100%);
}
.feature-band .container { position: relative; z-index: 1; }
.feature-band .eyebrow { color: #b9def5; }
.feature-band h2 { color: #fff; text-shadow: 0 2px 24px rgba(6, 29, 45, 0.45); }
.feature-band .feature h3 { color: #fff; }
.feature-band .feature p { color: rgba(255, 255, 255, 0.78); }
.feature-band .feature--check { border-left-color: #5cb3e6; }
.feature-band .lead { color: rgba(255, 255, 255, 0.82); }

/* ==========================================================================
   About Us page — Phase 2.3
   ========================================================================== */

/* Vision · Mission · Promise */
.vmp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.vmp-card .eyebrow { margin-bottom: 0.6rem; }
.vmp-text { font-family: var(--font-display); font-weight: 380; font-size: var(--fs-h4); line-height: 1.4; color: var(--ink); margin: 0; max-width: none; }
.promise { max-width: 760px; margin: 2.5rem auto 0; text-align: center; }
.promise h2 { margin: 0.4rem 0 1rem; }
.promise p { color: var(--muted); margin: 0 auto 1rem; }
@media (max-width: 760px) { .vmp-grid { grid-template-columns: 1fr; } }

/* What we stand for (value cards) */
.values { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
.value {
  flex: 1 1 280px; max-width: 340px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-5); box-shadow: var(--shadow-sm);
}
.value .ic {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 1rem;
  display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--line); color: var(--brand);
}
.value .ic svg { width: 22px; height: 22px; fill: currentColor; }
.value h3 { font-size: var(--fs-h4); margin: 0 0 0.4rem; }
.value p { color: var(--muted); margin: 0; font-size: var(--fs-small); }

/* Meet our team */
.team-banner {
  max-width: 900px; margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.team-banner img { display: block; width: 100%; height: auto; }

.team-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
.team-card {
  flex: 1 1 220px; max-width: 250px; text-align: center; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-card .portrait {
  display: block; width: 100%; aspect-ratio: 1 / 1;
  object-fit: cover; object-position: 50% 10%;
}
.team-card .tc-body { padding: var(--space-4) var(--space-4) var(--space-5); }
.team-card h3 { font-size: var(--fs-h4); margin: 0 0 0.2rem; }
.team-card .role { color: var(--muted); font-size: var(--fs-small); margin: 0; }

/* Sector list on the dark band */
.sector-list {
  list-style: none; margin: 0 auto 2rem; padding: 0; max-width: 820px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem 1.5rem;
}
.sector-list li {
  color: #fff; font-weight: 600; font-size: var(--fs-small);
  padding: 0.75rem 0.25rem; border-top: 1px solid rgba(255, 255, 255, 0.16);
}
@media (max-width: 760px) { .sector-list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .sector-list { grid-template-columns: 1fr; } }

/* FAQ (native details accordion) */
.faq { max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.15rem 0; font-weight: 600; font-size: var(--fs-lead); color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; font-family: var(--font-sans); font-weight: 400; font-size: 1.5rem;
  line-height: 1; color: var(--brand); transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary:hover { color: var(--brand-700); }
.faq-a { padding: 0 0 1.25rem; }
.faq-a p { color: var(--muted); margin: 0; max-width: 70ch; }

/* --- How we work (process timeline) ---------------------------------------- */
.process { list-style: none; margin: 0 auto; padding: 0; max-width: 760px; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; padding-bottom: 2rem; position: relative; }
.step:last-child { padding-bottom: 0; }
.step .num {
  display: grid; place-items: center; width: 2.6rem; height: 2.6rem;
  border-radius: 50%; background: var(--brand); color: #fff; position: relative; z-index: 1;
  font-family: var(--font-display); font-weight: 500; font-size: 1.15rem;
}
.step::before {
  content: ""; position: absolute; left: 1.3rem; top: 2.6rem; bottom: 0;
  width: 2px; background: var(--line); transform: translateX(-1px);
}
.step:last-child::before { display: none; }
.step-body h3 { margin: 0.3rem 0 0.4rem; }
.step-body p { margin: 0; color: var(--muted); }

/* --- Latest vacancies + news grid ------------------------------------------ */
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 0.5rem; }
@media (max-width: 860px) { .card-grid-3 { grid-template-columns: 1fr; } }
.vacancy-card .v-logo { font-size: 0.95rem; }
.vacancy-card h3 a { text-decoration: none; color: var(--ink); }
.vacancy-card h3 a:hover { color: var(--brand-700); }

/* News card media as link + real featured image */
.news-card a.n-media { text-decoration: none; }
.news-card .n-media.has-img { padding: 0; background: none; aspect-ratio: 16 / 9; }
.news-card .n-media.has-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.news-card h3 a { text-decoration: none; color: var(--ink); }
.news-card h3 a:hover { color: var(--brand-700); }

/* --- Internal preview (staging only) --------------------------------------- */
.preview-note {
  font-size: var(--fs-small); color: var(--muted);
  background: rgba(0, 120, 193, 0.05); border: 1px dashed var(--brand);
  border-radius: var(--radius); padding: 0.85rem 1.1rem; margin: 0 0 1.5rem; max-width: 80ch;
}
.is-sample { position: relative; }
.card.is-sample, .testimonial.is-sample { border-style: dashed; }
.sample-badge {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-700); background: var(--surface-2);
  border: 1px dashed var(--brand); border-radius: 999px; padding: 0.25rem 0.6rem;
}
.news-card .read { cursor: default; }
.news-card a.read { cursor: pointer; }

/* --- Candidate reviews (testimonial) --------------------------------------- */
.testimonial {
  max-width: 760px; margin: 0; position: relative;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  margin: 0 0 1rem; font-family: var(--font-display); font-weight: 380;
  font-size: var(--fs-h3); line-height: 1.3; letter-spacing: -0.01em; color: var(--ink);
}
.testimonial figcaption { font-size: var(--fs-small); font-weight: 600; color: var(--muted); }

/* Three real Google-review testimonials, side by side */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); align-items: start; }
.testimonial-grid .testimonial { max-width: none; padding: var(--space-5); height: 100%; }
.testimonial-grid .testimonial blockquote { font-size: 1.1875rem; line-height: 1.45; margin: 0 0 1.2rem; }
.testimonial figcaption .t-name { display: block; font-weight: 700; color: var(--ink); }
.testimonial figcaption .t-meta { display: block; margin-top: 0.15rem; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; gap: var(--space-4); } }

/* --- Selected industry reach (partners) ------------------------------------ */
.partners { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.partner-tile {
  flex: 1 1 160px; max-width: 200px; height: 76px;
  display: grid; place-items: center;
  background: var(--surface); border: 1px dashed var(--line); border-radius: var(--radius);
  color: var(--muted); font-size: var(--fs-caption); letter-spacing: 0.04em;
}
.partners.is-sample .partner-tile { border-color: var(--brand); color: var(--brand-700); }

/* Real cruise-line logo strip — monochrome navy marks, recruit-for trust signal */
.partner-strip-label {
  text-align: center; max-width: 1000px; margin: 0 auto 1.7rem;
  font-size: var(--fs-small); font-weight: 600;
  letter-spacing: 0.04em; color: var(--muted);
}
.partner-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem 1.5rem; max-width: 980px; margin: 0 auto;
  align-items: center; justify-items: center;
}
.partner-strip img {
  max-height: 34px; max-width: 142px; width: auto; height: auto; display: block;
  opacity: 0.58; transition: opacity 0.25s ease;
}
.partner-strip img:hover { opacity: 0.92; }
@media (max-width: 760px) {
  .partner-strip { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.2rem; }
}
@media (max-width: 440px) {
  .partner-strip { grid-template-columns: repeat(2, 1fr); }
  .partner-strip img { max-height: 30px; }
}

/* --- Responsible recruitment statement ------------------------------------- */
.responsible { max-width: 820px; margin: 0 auto; border-left: 3px solid var(--brand); padding-left: var(--space-6); }
.responsible h2 { margin: 0.25rem 0 0.75rem; }
.responsible p { color: var(--muted); }
.responsible .btn { margin-top: 0.5rem; }
@media (max-width: 600px) { .responsible { padding-left: var(--space-4); } }

/* --- Final CTA band (light photo wash, then navy footer) ------------------- */
.final-cta {
  text-align: center;
  background-color: var(--surface-2);
  background-image: linear-gradient(rgba(247, 249, 251, 0.86), rgba(247, 249, 251, 0.92)), url("../img/about-bg.jpg");
  background-size: cover; background-position: center;
}
.final-cta-head { max-width: 760px; margin: 0 auto 2.5rem; }
.final-cta-head h2 { margin: 0 0 0.6rem; }
.final-cta-head .lead { margin: 0 auto; }
.final-cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 860px; margin: 0 auto; }
.cta-col {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.cta-col .eyebrow { margin: 0; }
.cta-col p { color: var(--muted); margin: 0 0 0.75rem; max-width: 34ch; }
.cta-col .btn { margin-top: auto; }
.contact-line {
  list-style: none; margin: 2.25rem 0 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.75rem;
  font-size: var(--fs-small); color: var(--muted);
}
.contact-line a { color: var(--brand-600); text-decoration: none; font-weight: 600; }
.contact-line a:hover { color: var(--brand-700); }
@media (max-width: 600px) { .final-cta-grid { grid-template-columns: 1fr; } }

/* --- Homepage motion: stagger the audience/feature cards a touch ------------ */
@media (prefers-reduced-motion: reduce) {
  .industry, .feature, .card.is-sample { transition: none !important; }
}

/* ==========================================================================
   Our Services page — Phase 2.4
   The deep service catalogue (Home/About link in here). Reuses the system;
   only the service-catalogue + engagement-model components are new.
   ========================================================================== */

/* Heavier hero wash — the fine-dining photo is bright (white linen + lit
   orchid) under the text zone, so the default overlay leaves white text
   low-contrast. Keep the skyline readable on the left, darken the right. */
.hero-photo--services::after {
  background:
    linear-gradient(270deg, rgba(6,29,45,0.94) 0%, rgba(6,29,45,0.88) 38%, rgba(6,29,45,0.62) 66%, rgba(6,29,45,0.28) 88%, rgba(6,29,45,0.12) 100%),
    linear-gradient(0deg, rgba(6,29,45,0.55) 0%, rgba(6,29,45,0) 55%);
}

/* Anchor targets clear the sticky header */
#employers, #candidates, #industries { scroll-margin-top: 88px; }

/* Employer service catalogue — centred wrap (5 cards, like the About values) */
.svc-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.25rem; }
.svc-card { flex: 1 1 320px; max-width: 360px; }
.svc-card .ic {
  width: 42px; height: 42px; border-radius: 11px; margin-bottom: 1rem;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--line); color: var(--brand);
}
.svc-card .ic svg { width: 22px; height: 22px; fill: currentColor; }
.svc-card h3 { font-size: var(--fs-h4); margin: 0 0 0.4rem; }
.svc-card > p:not(.micro) { color: var(--muted); margin: 0; font-size: var(--fs-small); }
/* "What's included" / "Support may include" / "Best suited for" label —
   carries the hairline divider above its list. */
.incl-label {
  display: block; margin: 1.1rem 0 0.55rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: var(--fs-caption); font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
}
.svc-incl { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.svc-incl li {
  position: relative; padding-left: 1.6rem;
  font-size: var(--fs-small); color: var(--ink); line-height: 1.4; max-width: none;
}
.svc-incl li::before {
  content: "\2713"; position: absolute; left: 0; top: 0.05em;
  color: var(--brand); font-weight: 700; font-size: 0.9rem;
}

/* Engagement models (3-up, on the default surface) */
.model-card h3 { font-size: var(--fs-h4); margin: 0 0 0.4rem; }
.model-card p { color: var(--muted); margin: 0; }

/* ==========================================================================
   Vacancies system — CPT archive, industry / cruise-line taxonomies, single
   Industry-first job listings. Reuses .vacancy-card / .card-grid-3 / .tag /
   the staging sample components; only the page chrome + detail layout is new.
   ========================================================================== */

/* Navy masthead (no photo) — list/utility pages get a solid brand header
   rather than a sourced photo hero. */
.page-hero {
  background: var(--navy); color: #fff;
  padding: calc(var(--space-8) + 1rem) 0 var(--space-8);
}
.page-hero .hero-copy { max-width: 720px; }
.page-hero .eyebrow { color: #b9def5; }
.page-hero h1 { color: #fff; margin: 0.25rem 0 0.9rem; }
.page-hero .lead { color: rgba(255, 255, 255, 0.82); max-width: 64ch; margin: 0; }
.page-hero--role { padding-bottom: var(--space-7); }

/* Article hero — align the breadcrumb + title to the same centered reading
   column as the body (.article-wrap, 760px), so the title shares one left edge
   with the article instead of hugging the full-width band with empty space on
   the right. Only the single-article template uses this; listing heroes (whose
   bodies are full-width grids) keep the standard left-aligned hero copy. */
.page-hero--article .breadcrumb,
.page-hero--article .hero-copy { max-width: 760px; margin-left: auto; margin-right: auto; }

/* Breadcrumb trail */
.breadcrumb { margin: 0 0 1.25rem; }
.breadcrumb ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem;
  font-size: var(--fs-small);
}
.breadcrumb li { display: inline-flex; align-items: center; }
.breadcrumb li + li::before { content: "\203A"; margin-right: 0.5rem; opacity: 0.5; }
.page-hero .breadcrumb a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero .breadcrumb li[aria-current] { color: rgba(255, 255, 255, 0.6); }

/* Industry filter chips */
.ind-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 2rem; }
.ind-chips--sub { margin-top: -1rem; align-items: center; }
.chip-label { font-size: var(--fs-small); font-weight: 600; color: var(--muted); margin-right: 0.25rem; }
.chip {
  display: inline-block; font-size: var(--fs-small); font-weight: 600;
  color: var(--brand-700); background: var(--surface); text-decoration: none;
  border: 1px solid var(--line); border-radius: 999px; padding: 0.45rem 0.95rem;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--brand-700); background: var(--surface-2); }
.chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Logo tile variant — disclosed company logo instead of a monogram.
   Cap by max-dimensions with auto sizing so the whole logo always fits the
   tile (object-fit alone let tall logos overflow + get cropped). */
.vacancy-card .v-logo--img { background: #fff; padding: 4px; overflow: hidden; display: grid; place-items: center; }
.vacancy-card .v-logo--img img { max-width: 32px; max-height: 32px; width: auto; height: auto; }

/* Empty state (production, no open roles) */
.empty-state {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-6); color: var(--muted); max-width: 60ch;
}

/* Pagination (the_posts_pagination) */
.pagination { margin-top: var(--space-6); }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pagination .page-numbers {
  display: inline-grid; place-items: center; min-width: 2.5rem; height: 2.5rem; padding: 0 0.6rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  color: var(--brand-700); text-decoration: none; font-weight: 600; font-size: var(--fs-small);
}
.pagination .page-numbers:hover { border-color: var(--brand); }
.pagination .page-numbers.current { background: var(--brand); border-color: var(--brand); color: #fff; }
.pagination .page-numbers.dots { border-color: transparent; background: transparent; }

/* --- Cruise-line term page header (logo + one light description) ----------- */
.cruise-line-head { display: flex; align-items: center; gap: 1.5rem; }
.cl-logo {
  flex: none; width: 160px; height: 84px;
  display: grid; place-items: center; overflow: hidden;
  background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.cl-logo img { max-width: 140px; max-height: 64px; width: auto; height: auto; }
.cl-logo--mono {
  font-family: var(--font-display); font-weight: 500; font-size: 1.6rem;
  color: var(--brand-700); background: var(--surface-2);
}
.cruise-line-head .eyebrow { color: #b9def5; margin-bottom: 0.5rem; }
.cruise-line-head h1 { margin: 0 0 0.6rem; }
.cruise-line-head .lead { margin: 0 0 0.5rem; }
.cl-link a { color: #b9def5; font-weight: 600; text-decoration: none; }
.cl-link a:hover { color: #fff; }

/* --- Single vacancy -------------------------------------------------------- */
.role-employer { font-size: var(--fs-lead); color: rgba(255, 255, 255, 0.9); margin: 0.25rem 0 1rem; }
.role-meta {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.1rem;
  margin: 0; padding: 0; font-size: var(--fs-small); color: rgba(255, 255, 255, 0.78);
}
.role-meta .tag { background: rgba(255, 255, 255, 0.14); color: #fff; }

.vac-detail { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.vac-content .entry-content > :first-child { margin-top: 0; }

/* Employer block on a disclosed role (light company description, shown once) */
.employer-block {
  margin-top: var(--space-6); padding: var(--space-6);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.eb-head { display: flex; align-items: center; gap: 1.1rem; margin-bottom: 1rem; }
.eb-head .cl-logo { width: 120px; height: 60px; }
.eb-head .cl-logo img { max-width: 104px; max-height: 44px; }
.eb-head .eyebrow { margin: 0 0 0.2rem; }
.eb-head .h-strip { margin: 0; text-align: left; }
.employer-block p { color: var(--muted); margin: 0 0 0.75rem; }
.eb-links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; }
.eb-links a { font-weight: 600; text-decoration: none; }

/* Apply card (sticky aside) */
.vac-apply { position: sticky; top: 96px; }
.apply-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow-sm);
}
.apply-card .h-strip { text-align: left; margin: 0 0 0.6rem; }
.apply-card p { color: var(--muted); font-size: var(--fs-small); }
.apply-actions { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.1rem 0; }
.apply-actions .btn { width: 100%; }
.apply-card .caption { margin: 0; }

@media (max-width: 860px) {
  .vac-detail { grid-template-columns: 1fr; gap: 2rem; }
  .vac-apply { position: static; }
  .cruise-line-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

/* Eligibility (nationality) cues */
.vacancy-card .v-elig { margin: 0.55rem 0 0; color: var(--brand-700); font-weight: 600; }
.role-meta .role-elig { color: #fff; font-weight: 600; }
.apply-elig { font-size: var(--fs-small); color: var(--ink); margin: 0 0 0.5rem; }

/* Salary (confidential-employer roles only) */
.vacancy-card .v-salary { margin: 0.55rem 0 0; font-weight: 700; color: var(--ink); }
.role-meta .role-salary { color: #fff; font-weight: 700; }
.apply-salary, .apply-benefits { font-size: var(--fs-small); color: var(--ink); margin: 0 0 0.5rem; }

/* Vacancy JD body — summary lead + "You'll bring" / "What's provided" lists */
.vac-content .entry-content > p:first-child { font-size: var(--fs-lead); color: var(--ink); line-height: 1.55; }
.vac-content .entry-content h3 { font-size: var(--fs-h4); margin: 1.7rem 0 0.6rem; }
.vac-content .entry-content ul { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: 0.5rem; }
.vac-content .entry-content ul li {
  position: relative; padding-left: 1.6rem; color: var(--ink); max-width: 62ch; line-height: 1.45;
}
.vac-content .entry-content ul li::before {
  content: "\2713"; position: absolute; left: 0; top: 0.05em;
  color: var(--brand); font-weight: 700;
}

/* -------------------------------------------------------------------------- *
   Long-form content — legal/privacy pages (page.php) + News & Insights
   articles (single.php). Scoped to a bare .entry-content so it never clashes
   with the vacancy JD styling (.vac-content .entry-content is more specific
   and still wins for vacancies).
 * -------------------------------------------------------------------------- */
.entry-content { color: var(--ink); line-height: 1.75; }
.entry-content > :first-child { margin-top: 0; }
.entry-content > :last-child { margin-bottom: 0; }
.entry-content p { margin: 0 0 1.15rem; max-width: 68ch; }
.entry-content h2 { font-size: var(--fs-h3); margin: 2.4rem 0 0.8rem; }
.entry-content h3 { font-size: var(--fs-h4); margin: 1.9rem 0 0.6rem; }
.entry-content h4 { font-size: var(--fs-lead); margin: 1.6rem 0 0.5rem; }
.entry-content ul, .entry-content ol { margin: 0 0 1.2rem; padding-left: 1.4rem; max-width: 66ch; }
.entry-content li { margin: 0 0 0.5rem; padding-left: 0.25rem; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li::marker { color: var(--brand); }
.entry-content a { color: var(--brand-600); text-underline-offset: 2px; }
.entry-content a:hover { color: var(--brand-700); }
.entry-content strong { font-weight: 700; color: var(--ink); }
.entry-content blockquote {
  margin: 1.5rem 0; padding: 0.25rem 0 0.25rem 1.25rem;
  border-left: 3px solid var(--brand); color: var(--muted); font-style: italic;
}
.entry-content hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin: 0 0 1.5rem; font-size: var(--fs-small); }
.entry-content th, .entry-content td { text-align: left; padding: 0.55rem 0.75rem; border-bottom: 1px solid var(--line); }
.entry-content th { font-weight: 700; }
.entry-content img { max-width: 100%; height: auto; border-radius: 8px; }

/* Single article (a News & Insights post) */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article-head .article-byline { color: rgba(255, 255, 255, 0.72); font-size: var(--fs-small); margin: 0.6rem 0 0; }
.article-feature { margin: 0 0 2rem; }
.article-feature img { width: 100%; height: auto; border-radius: var(--radius-lg); display: block; }
.article-content > p:first-of-type { font-size: var(--fs-lead); color: var(--ink); line-height: 1.6; }
.article-foot { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.article-foot .read { font-weight: 600; text-decoration: none; }
.article-foot .read:hover { color: var(--brand-700); }

/* News & Insights hub — pillar section headers (heading + "View all" link) */
.section-head--row { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.25rem 2rem; flex-wrap: wrap; max-width: none; }
.section-head--row > div { max-width: 64ch; }
.section-head--row .lead { margin-top: 0.4rem; margin-bottom: 0; }
.view-all { white-space: nowrap; font-weight: 600; text-decoration: none; color: var(--brand-600); }
.view-all:hover { color: var(--brand-700); }
@media (max-width: 640px) { .section-head--row { align-items: flex-start; } }

/* Article hero — title sized to land at ~3 lines, and a photo-hero variant
   (used when the post has a featured image): full-bleed photo + navy wash with
   the breadcrumb + title in the same centered 760px column as the body. */
.page-hero--article h1,
.hero-photo--article h1 { font-size: clamp(2rem, 1.4rem + 2.2vw, 3.25rem); max-width: none; }

.hero-photo--article { align-items: center; min-height: 420px; }
.hero-photo--article .container { padding-top: var(--space-7); padding-bottom: var(--space-7); }
.hero-photo--article::after {
  background: linear-gradient(180deg, rgba(6,29,45,0.66) 0%, rgba(6,29,45,0.5) 50%, rgba(6,29,45,0.72) 100%);
}
.hero-photo--article .breadcrumb,
.hero-photo--article .hero-copy { max-width: 760px; margin-left: auto; margin-right: auto; }
.hero-photo--article .article-byline { color: rgba(255, 255, 255, 0.82); text-shadow: 0 1px 10px rgba(6, 29, 45, 0.5); }
.hero-photo--article .breadcrumb { text-shadow: 0 1px 10px rgba(6, 29, 45, 0.5); }
.hero-photo--article .breadcrumb a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.hero-photo--article .breadcrumb a:hover { color: #fff; }
.hero-photo--article .breadcrumb li[aria-current] { color: rgba(255, 255, 255, 0.6); }

/* Split hero — text column left, photo column right (desktop); stacked
   (mobile). Auto-applied via single.php when the featured image is portrait,
   so vertical-source event posts don't get crushed by a landscape hero crop. */
@media (min-width: 880px) {
  .hero-photo--split {
    display: grid; grid-template-columns: 1.1fr 1fr;
    align-items: stretch; min-height: 560px;
    background: var(--navy);
  }
  .hero-photo--split::after { display: none; }
  .hero-photo--split .bg {
    position: relative; inset: auto;
    grid-column: 2; grid-row: 1;
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
  }
  .hero-photo--split .container {
    grid-column: 1; grid-row: 1;
    align-self: center;
    padding: var(--space-8) var(--space-5);
  }
  .hero-photo--split .breadcrumb,
  .hero-photo--split .hero-copy { max-width: 56ch; margin-left: 0; margin-right: 0; }
  .hero-photo--split h1,
  .hero-photo--split .breadcrumb,
  .hero-photo--split .article-byline { text-shadow: none; }
}
@media (max-width: 879px) {
  .hero-photo--split { background: var(--navy); display: block; min-height: 0; }
  .hero-photo--split::after { display: none; }
  .hero-photo--split .bg {
    position: relative; inset: auto; display: block;
    width: 100%; height: auto; aspect-ratio: 4 / 5;
    object-fit: cover; object-position: center 30%;
  }
  .hero-photo--split .container { padding-top: var(--space-6); padding-bottom: var(--space-7); }
}

/* Event gallery — wall grid of real-event photos placed at the end of a
   long photo-rich event recap. 3 columns desktop, 2 tablet, 1 mobile;
   square-ish tiles via aspect-ratio + object-fit; subtle shadow on each tile.
   Spans wider than the 760px reading column so the wall feels like a real
   gallery (not a list inside the article body). */
.event-gallery {
  max-width: 1100px; margin: 2.5rem auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.event-gallery img {
  display: block; width: 100%; height: 100%;
  aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(7, 41, 63, 0.08);
}
@media (max-width: 880px) {
  .event-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .event-gallery { grid-template-columns: 1fr; }
}

/* Inline vertical figures inside an article — cap at ~540px wide so a
   tall iPhone-portrait shot reads as a deliberate editorial image instead
   of dominating the 760px reading column. */
.entry-content figure.is-portrait { max-width: 540px; margin: 1.6rem auto; }
.entry-content figure.is-portrait img { display: block; width: 100%; height: auto; border-radius: 12px; }
.entry-content figure.is-portrait figcaption {
  margin-top: 0.6rem; font-size: var(--fs-small); color: var(--muted); text-align: center;
}

/* Footer anti-scam notice + legal links row */
.footer-notice {
  font-size: var(--fs-caption); color: rgba(255, 255, 255, 0.45);
  line-height: 1.6; max-width: 96ch; margin: 0 0 1.25rem;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 0.4rem 1.15rem; }

/* Employer-enquiry sensitive-data note + candidate privacy caption */
.enquiry-form .form-note {
  grid-column: 1 / -1; margin: 0;
  font-size: var(--fs-small); color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 0.7rem 0.9rem;
}
.apply-card .apply-privacy { margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--line); }
