/* ==========================================================================
   Jadewave design system v3 — light corporate style
   Palette: white / jade #0EA573 (+ jade→teal gradients) / ink / sage greys
   Type: Space Grotesk
   Language: big rounded panels, circle-arrow buttons, outline pill tags,
   photo-led sections, ticker marquee, counters, FAQ accordion, reveals.
   ========================================================================== */

:root {
	/* Primary palette: jade / emerald with teal gradient accents.
	   Var names kept from v2 (--blue = primary) to avoid global churn. */
	--blue: #0ea573;
	--blue-bright: #10c58a;
	--blue-deep: #0a6b4c;
	--grad: linear-gradient(115deg, #0ea573 0%, #2dd4bf 100%);
	--grad-deep: linear-gradient(130deg, #0b8e64 0%, #0f766e 100%);
	--ink: #0f1613;
	--ink-2: #172119;
	--slate: #43554c;
	--grey: #e3eae5;
	--grey-soft: #f2f6f3;
	--muted: #5c6b62;
	--star: #f5b53f;
	--radius-panel: 40px;
	--radius-card: 24px;
	--radius-sm: 14px;
	--shadow: 0 18px 44px -16px rgba(22, 22, 22, 0.18);
	--shadow-sm: 0 8px 22px -10px rgba(22, 22, 22, 0.14);
	--font: "Space Grotesk", system-ui, sans-serif;
	--header-h: 96px;
	--gutter: clamp(16px, 2.5vw, 32px);
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

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

body {
	margin: 0;
	font-family: var(--font);
	font-size: 1.0425rem;
	line-height: 1.62;
	color: var(--ink);
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
	font-family: var(--font);
	line-height: 1.08;
	margin: 0 0 0.55em;
	letter-spacing: -0.025em;
	font-weight: 700;
	text-wrap: balance;
}

h1 { font-size: clamp(2.7rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-bright); }
ul { padding: 0; margin: 0; list-style: none; }
svg { width: 1.15em; height: 1.15em; flex: none; }

.container { width: min(1240px, calc(100% - 2 * var(--gutter))); margin-inline: auto; }

.sr-only {
	position: absolute; width: 1px; height: 1px;
	clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip-link {
	position: absolute; left: -999px; top: 0; z-index: 999;
	background: var(--ink); color: #fff; padding: 0.6rem 1rem;
}
.skip-link:focus { left: 0; }
::selection { background: rgba(14, 165, 115, 0.22); }

/* ---------- Pills & circle-arrow buttons ---------- */

.pill-tag, .eyebrow {
	display: inline-block;
	font-weight: 500; font-size: 0.86rem;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--blue);
	border: 1.5px solid var(--blue);
	border-radius: 999px;
	padding: 0.42rem 1.15rem;
	margin-bottom: 1.3rem;
}
.pill-tag.light { color: #fff; border-color: rgba(255, 255, 255, 0.75); }
.page-hero .eyebrow { color: #fff; border-color: rgba(255, 255, 255, 0.65); }

.circle-btn {
	display: inline-flex; align-items: center; gap: 0.9rem;
	font-family: var(--font); font-weight: 600; font-size: 0.95rem;
	letter-spacing: 0.06em; text-transform: uppercase;
	color: var(--ink); cursor: pointer; border: 0; background: none;
	padding: 0;
}
.circle-btn .cb-circle {
	width: 54px; height: 54px; border-radius: 50%;
	display: grid; place-items: center; flex: none;
	background: var(--blue); color: #fff;
	transition: transform 0.25s ease, background 0.25s ease;
}
.circle-btn .cb-circle svg { width: 1.35em; height: 1.35em; }
.circle-btn:hover .cb-circle { transform: translateX(6px); background: var(--blue-bright); }
.circle-btn.light { color: #fff; }
.circle-btn.light .cb-circle { background: #fff; color: var(--blue); }
.circle-btn.light:hover .cb-circle { background: var(--grey); }

.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
	padding: 0.85rem 1.7rem;
	border-radius: 999px;
	font-family: var(--font); font-weight: 600; font-size: 0.97rem;
	border: 1.5px solid transparent; cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gradient, .btn-blue {
	background: var(--blue); color: #fff;
	box-shadow: 0 12px 28px -10px rgba(14, 165, 115, 0.5);
}
.btn-gradient:hover, .btn-blue:hover { background: var(--blue-bright); color: #fff; }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { color: var(--blue); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { color: #fff; background: #000; }
.btn-ghost { color: var(--ink); }
.btn-lg { padding: 1rem 2rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.text-link {
	display: inline-flex; align-items: center; gap: 0.45rem;
	font-weight: 600; font-size: 0.95rem;
	color: var(--blue);
}
.text-link:hover { color: var(--blue-bright); }
.text-link svg { width: 1em; height: 1em; }

/* ---------- Header ---------- */

.site-header {
	position: fixed; inset: 0 0 auto; z-index: 100;
	transition: background 0.3s ease, box-shadow 0.3s ease;
	color: #fff;
}
.site-header.scrolled,
body:not(.jw-home) .site-header {
	background: #fff;
	box-shadow: 0 6px 24px -12px rgba(22, 22, 22, 0.18);
	color: var(--ink);
}
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
	body.admin-bar .site-nav { top: 46px; }
}

.header-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 2rem; height: var(--header-h);
}

.brand-lockup { display: inline-flex; }
.brand-block {
	background: var(--grad-deep);
	color: #fff; text-align: center;
	padding: 0.85rem 1.3rem 0.75rem;
	line-height: 1;
	display: inline-flex; flex-direction: column; gap: 0.3rem;
}
.brand-block .bb-name {
	font-weight: 700; font-size: 1.5rem; letter-spacing: 0.01em;
}
.brand-block .bb-sub {
	font-weight: 400; font-size: 0.58rem; letter-spacing: 0.42em;
	color: rgba(255, 255, 255, 0.85);
	text-transform: uppercase;
}
.custom-logo { max-height: 56px; width: auto; }

/* MENU trigger */
.nav-toggle {
	display: flex; align-items: center; gap: 0.8rem;
	background: none; border: 0; cursor: pointer; z-index: 102;
	color: inherit;
	font-family: var(--font); font-weight: 600; font-size: 0.95rem;
	letter-spacing: 0.1em;
}
.nav-toggle-label { text-transform: uppercase; }
.nav-toggle-bars { display: flex; flex-direction: column; gap: 6px; width: 34px; }
.nav-toggle-bar {
	height: 2.5px; background: currentColor; border-radius: 2px;
	transition: transform 0.28s ease, opacity 0.28s ease, width 0.28s ease;
}
.nav-toggle-bar:nth-child(1) { width: 100%; }
.nav-toggle-bar:nth-child(2) { width: 72%; align-self: flex-end; }
.nav-toggle-bar:nth-child(3) { width: 100%; }
.nav-toggle[aria-expanded="true"] { color: var(--ink); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* Off-canvas menu (all viewports) */
.site-nav {
	position: fixed; inset: 0; z-index: 101;
	display: flex; flex-direction: column; justify-content: center; align-items: center;
	gap: 2.6rem;
	background: #fff;
	opacity: 0; pointer-events: none;
	transition: opacity 0.32s ease;
}
.site-nav.open { opacity: 1; pointer-events: auto; }
.nav-menu { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; counter-reset: navi; }
.nav-menu li { counter-increment: navi; }
.nav-menu a {
	position: relative;
	display: inline-block;
	font-size: clamp(1.9rem, 4.6vw, 3rem);
	font-weight: 700; letter-spacing: -0.02em;
	color: var(--ink);
	padding: 0.12em 0.5em;
	transition: color 0.2s ease, transform 0.2s ease;
}
.nav-menu a::before {
	content: "0" counter(navi);
	position: absolute; left: -0.9em; top: 0.45em;
	font-size: 0.34em; font-weight: 500; color: var(--blue);
	letter-spacing: 0.1em;
}
.nav-menu a:hover { color: var(--blue); transform: translateX(8px); }
.nav-ctas { display: flex; gap: 0.8rem; }
.nav-ctas .btn-ghost { border: 1.5px solid var(--ink); }
.nav-ctas .btn-gradient { background: var(--blue); color: #fff; }

/* ---------- Hero ---------- */

.hero {
	position: relative; overflow: hidden;
	min-height: 100svh;
	display: flex; flex-direction: column; justify-content: center;
	color: #fff;
	border-radius: 0 0 var(--radius-panel) var(--radius-panel);
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img {
	width: 100%; height: 100%; object-fit: cover;
	animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
	from { transform: scale(1) translate(0, 0); }
	to { transform: scale(1.12) translate(-1.5%, 1.5%); }
}
.hero-media::after {
	content: ""; position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10, 14, 24, 0.45) 0%, rgba(10, 14, 24, 0.35) 55%, rgba(10, 14, 24, 0.55) 100%);
}

.hero-inner {
	position: relative; text-align: center;
	padding: calc(var(--header-h) + 3rem) 0 5rem;
	display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero h1 { max-width: 15ch; margin-inline: auto; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35); }
.hero-lead {
	font-size: clamp(1rem, 1.6vw, 1.18rem);
	max-width: 52ch; margin-inline: auto;
	color: rgba(255, 255, 255, 0.92);
}
.hero-tagline { font-weight: 700; font-size: clamp(1rem, 1.6vw, 1.15rem); margin-bottom: 1.6rem; }
.hero .circle-btn { margin-top: 0.8rem; }
.hero .circle-btn:hover { color: #fff; }

.hero .circle-btn .cb-circle { background: var(--blue); color: #fff; }
.hero .circle-btn:hover .cb-circle { background: var(--blue-bright); }

.scroll-cue {
	position: absolute; left: 50%; bottom: 2rem; transform: translateX(-50%);
	width: 30px; height: 48px; border: 2px solid rgba(255, 255, 255, 0.8);
	border-radius: 999px;
}
.scroll-cue::after {
	content: ""; position: absolute; left: 50%; top: 9px;
	width: 4px; height: 9px; border-radius: 4px;
	background: #fff; transform: translateX(-50%);
	animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
	0% { opacity: 1; transform: translate(-50%, 0); }
	70% { opacity: 0; transform: translate(-50%, 14px); }
	100% { opacity: 0; }
}

/* ---------- Sections ---------- */

.section { padding: clamp(4.5rem, 10vh, 7.5rem) 0; }
.section-head-row {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 2rem; flex-wrap: wrap;
	margin-bottom: clamp(2.2rem, 5vh, 3.6rem);
}
.section-heading { max-width: 700px; }
.section-heading .lead { font-size: 1.1rem; color: var(--muted); }
.section-heading em { font-style: normal; color: var(--blue); }

/* ---------- Welcome split ---------- */

.welcome-grid {
	display: grid; grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.welcome-copy h2 { margin-bottom: 1.2rem; }
.welcome-copy p { color: var(--slate); margin-bottom: 1.1em; }
.welcome-copy p strong { color: var(--ink); }
.welcome-copy .circle-btn { margin-top: 1.4rem; }
.welcome-photo { border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow); }
.welcome-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.4; }

/* ---------- Jobs ---------- */

.jobs-layout {
	display: grid; grid-template-columns: 1fr 320px;
	gap: clamp(1.6rem, 3vw, 2.8rem); align-items: start;
}
.job-grid { display: grid; gap: 1.2rem; }
.job-grid.archive { grid-template-columns: 1fr 1fr; }
.job-cell { display: contents; }
.job-cell.hidden { display: none; }

.job-card {
	background: var(--grad-deep);
	color: #fff;
	border-radius: var(--radius-card);
	padding: 1.7rem 1.8rem;
	display: flex; flex-direction: column; gap: 0.7rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.job-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 44px -16px rgba(14, 165, 115, 0.5);
	background: var(--blue-bright);
}
.job-card h3 { margin: 0; font-size: 1.45rem; letter-spacing: -0.01em; }
.job-card h3 a { color: #fff; }
.job-card h3 a:hover { color: rgba(255, 255, 255, 0.85); }
.job-salary {
	display: flex; align-items: center; gap: 0.55rem;
	font-size: 1rem; color: rgba(255, 255, 255, 0.95);
}
.job-salary svg { width: 1.3em; height: 1.3em; }
.job-excerpt {
	color: rgba(255, 255, 255, 0.85); font-size: 0.94rem; margin: 0;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.job-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 0.3rem; }
.job-pill {
	font-size: 0.78rem; font-weight: 600;
	letter-spacing: 0.06em; text-transform: uppercase;
	border: 1.5px solid rgba(255, 255, 255, 0.75);
	color: #fff; border-radius: 10px;
	padding: 0.42rem 0.85rem;
}
.job-link {
	display: inline-flex; align-items: center; gap: 0.45rem;
	font-weight: 600; font-size: 0.92rem;
	letter-spacing: 0.05em; text-transform: uppercase;
	color: #fff; margin-top: 0.4rem;
}
.job-link svg { transition: transform 0.2s ease; }
.job-link:hover { color: #fff; }
.job-link:hover svg { transform: translateX(4px); }

/* Filter sidebar */
.job-filters { display: flex; flex-direction: column; gap: 0.7rem; }
.job-filters-label {
	font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em;
	text-transform: uppercase; color: var(--muted);
	margin-bottom: 0.2rem;
}
.filter-chip {
	display: flex; align-items: center; justify-content: space-between;
	border: 1.5px solid var(--grey); background: #fff;
	color: var(--ink); border-radius: var(--radius-sm);
	font-family: var(--font); font-weight: 500; font-size: 0.97rem;
	padding: 0.85rem 1.2rem; cursor: pointer;
	transition: all 0.2s ease; text-align: left;
}
.filter-chip::after { content: "↓"; color: var(--blue); font-weight: 700; }
.filter-chip:hover { border-color: var(--blue); }
.filter-chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.filter-chip.active::after { content: "✓"; color: #fff; }

/* ---------- Sector cards ---------- */

.sector-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.sector-card {
	background: #fff;
	border: 1.5px solid var(--grey);
	border-radius: var(--radius-card);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.sector-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.sector-photo { aspect-ratio: 16 / 11; overflow: hidden; }
.sector-photo img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform 0.5s ease;
}
.sector-card:hover .sector-photo img { transform: scale(1.06); }
.sector-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.sector-card h3 { margin: 0; font-size: 1.16rem; }
.sector-card p { color: var(--muted); font-size: 0.93rem; margin: 0; flex: 1; }
.sector-card .text-link { text-transform: uppercase; font-size: 0.85rem; letter-spacing: 0.05em; }

/* ---------- Feedback / quotes ---------- */

.feedback-grid {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center;
}
.quote-box blockquote {
	margin: 0 0 1.2rem; font-size: 1.08rem; color: var(--slate);
}
.quote-attr { font-weight: 700; font-size: 1.25rem; color: var(--blue); margin-bottom: 1.6rem; }
.quote-nav { display: flex; gap: 0.7rem; }
.quote-btn {
	width: 52px; height: 52px; border-radius: 50%;
	border: 1.5px solid var(--grey); background: #fff;
	font-size: 1.2rem; color: var(--ink); cursor: pointer;
	transition: all 0.2s ease;
}
.quote-btn:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.feedback-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.feedback-photo {
	position: relative; border-radius: var(--radius-card); overflow: hidden;
	aspect-ratio: 1 / 0.86;
}
.feedback-photo img { width: 100%; height: 100%; object-fit: cover; }
.feedback-photo .fp-arrow {
	position: absolute; right: 0.9rem; bottom: 0.9rem;
	width: 44px; height: 44px; border-radius: 50%;
	background: rgba(255, 255, 255, 0.92); color: var(--ink);
	display: grid; place-items: center;
}

/* ---------- Big CTA panels ---------- */

.panel {
	width: min(1400px, calc(100% - 2 * var(--gutter)));
	margin-inline: auto;
	border-radius: var(--radius-panel);
	overflow: hidden;
}
.cta-panel {
	display: grid; grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(2rem, 4vw, 4rem); align-items: center;
	padding: clamp(2rem, 4vw, 3.5rem);
}
.cta-panel.blue { background: var(--grad); color: #fff; }
.cta-panel.grey { background: var(--grey); color: var(--ink); }
.cta-photo { border-radius: var(--radius-card); overflow: hidden; }
.cta-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10.5; }
.cta-copy { text-align: center; padding: 1rem clamp(0.5rem, 2vw, 2rem); }
.cta-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.cta-copy p { max-width: 44ch; margin-inline: auto; }
.cta-panel.blue .cta-copy p { color: rgba(255, 255, 255, 0.88); }
.cta-panel.grey .cta-copy p { color: var(--slate); }
.cta-copy .circle-btn { margin-top: 1.3rem; }
.cta-panel + .cta-panel, .panel + .panel { margin-top: clamp(1.6rem, 3vh, 2.5rem); }

/* ---------- Blog panel ---------- */

.blog-panel {
	background: var(--ink-2); color: #fff;
	padding: clamp(2.5rem, 5vw, 4rem);
}
.blog-panel .section-head-row { margin-bottom: 2rem; }
.blog-panel h2 { color: #fff; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.post-card {
	background: #fff; color: var(--ink);
	border-radius: var(--radius-card);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.post-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px -18px rgba(0, 0, 0, 0.4); }
.post-card-body { padding: 1.6rem 1.6rem 1.2rem; flex: 1; }
.post-card h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--blue); }
.post-card time { font-size: 0.88rem; color: var(--muted); }
.post-thumb { aspect-ratio: 16 / 9; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
	position: relative; overflow: hidden;
	background: var(--ink);
	color: #fff;
	padding: calc(var(--header-h) + clamp(3rem, 7vh, 5rem)) 0 clamp(3rem, 7vh, 4.5rem);
	border-radius: 0 0 var(--radius-panel) var(--radius-panel);
}
.page-hero.tall { padding-bottom: clamp(6rem, 14vh, 9rem); }
.page-hero h1 { max-width: 17ch; }
.page-hero .lead { max-width: 52ch; color: rgba(255, 255, 255, 0.82); font-size: 1.1rem; }
.page-hero .hero-ctas { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.6rem; }
.page-hero em { font-style: normal; color: var(--blue-bright); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1.3rem; margin-top: 1.3rem; }
.hero-meta li {
	display: flex; align-items: center; gap: 0.45rem;
	color: rgba(255, 255, 255, 0.85); font-size: 0.98rem;
}
.hero-meta svg { color: var(--blue-bright); }

/* ---------- Forms ---------- */

.form-layout {
	display: grid; grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.form-side h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 1.6rem; }

.benefit-list { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 2rem; }
.benefit-list li { display: flex; gap: 1rem; }
.benefit-list svg {
	width: 46px; height: 46px; padding: 11px; flex: none;
	border-radius: 14px; background: rgba(14, 165, 115, 0.12); color: var(--blue);
}
.benefit-list strong { display: block; font-size: 1.02rem; }
.benefit-list span { color: var(--muted); font-size: 0.93rem; }

.form-card, .apply-card {
	background: #fff;
	border: 1.5px solid var(--grey);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow);
	padding: clamp(1.6rem, 3vw, 2.4rem);
}
.form-card h3, .apply-card h3 { font-size: 1.4rem; }

.jw-form p { margin: 0 0 1.05rem; }
.jw-form label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.jw-form input, .jw-form textarea, .jw-form select {
	width: 100%; margin-top: 0.4rem;
	padding: 0.8rem 1rem;
	border: 1.5px solid var(--grey); border-radius: var(--radius-sm);
	font: inherit; font-size: 0.97rem; color: var(--ink);
	background: var(--grey-soft);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.jw-form input:focus, .jw-form textarea:focus {
	outline: none; border-color: var(--blue); background: #fff;
	box-shadow: 0 0 0 4px rgba(14, 165, 115, 0.16);
}
.jw-form input[type="file"] { padding: 0.6rem; border-style: dashed; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row p { margin: 0 0 1.05rem; }
.jw-hp { position: absolute !important; left: -9999px !important; }
.form-small { font-size: 0.82rem; color: var(--muted); margin-top: 0.9rem; }

.form-notice {
	border-radius: var(--radius-sm); padding: 0.9rem 1.1rem;
	font-size: 0.95rem; font-weight: 500; margin-bottom: 1.2rem;
}
.form-notice.success { background: #e8f3ec; color: #16693a; border: 1.5px solid #bfe2cc; }
.form-notice.error { background: #fdeeee; color: #a33; border: 1.5px solid #f3caca; }

.phone-callout {
	display: flex; flex-direction: column; gap: 0.3rem;
	background: var(--grey-soft); border: 1.5px solid var(--grey);
	border-radius: var(--radius-card); padding: 1.4rem 1.6rem;
}
.phone-callout span { font-size: 0.9rem; color: var(--muted); }
.phone-callout a {
	display: inline-flex; align-items: center; gap: 0.5rem;
	font-weight: 700; font-size: 1.4rem; color: var(--ink);
}
.phone-callout a:hover { color: var(--blue); }

.contact-cards { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-cards li {
	display: flex; gap: 1.1rem;
	background: #fff; border: 1.5px solid var(--grey);
	border-radius: var(--radius-card); padding: 1.5rem 1.6rem;
}
.contact-cards .why-icon {
	width: 48px; height: 48px; border-radius: 14px; flex: none;
	display: grid; place-items: center;
	background: rgba(14, 165, 115, 0.12); color: var(--blue);
}
.contact-cards strong { display: block; margin-bottom: 0.15rem; }
.contact-cards a { display: block; font-weight: 600; color: var(--ink); }
.contact-cards a:hover { color: var(--blue); }
.contact-cards div span { display: block; font-size: 0.88rem; color: var(--muted); }

/* ---------- Job single ---------- */

.job-single {
	display: grid; grid-template-columns: 1.4fr 1fr;
	gap: clamp(2rem, 4vw, 3.5rem); align-items: start;
}
.job-apply { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.apply-alt { font-size: 0.9rem; color: var(--muted); margin: 1rem 0 0; text-align: center; }
.apply-alt a { font-weight: 700; color: var(--ink); }
.back-link { font-weight: 600; color: var(--muted); }
.back-link:hover { color: var(--ink); }

/* ---------- Content entry ---------- */

.entry h2 { font-size: 1.7rem; margin-top: 1.6em; }
.entry h3 { margin-top: 1.4em; }
.entry p { color: var(--slate); }
.entry ul { margin: 0 0 1.2em; }
.entry ul li { padding-left: 1.7em; position: relative; margin-bottom: 0.55em; color: var(--slate); }
.entry ul li::before {
	content: "→"; position: absolute; left: 0; top: 0;
	color: var(--blue); font-weight: 700;
}
.entry.narrow { max-width: 780px; }
.entry-thumb { border-radius: var(--radius-card); overflow: hidden; margin-bottom: 2rem; }

/* ---------- About ---------- */

.about-grid {
	display: grid; grid-template-columns: 1.2fr 0.8fr;
	gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.about-values { display: flex; flex-direction: column; gap: 1.2rem; }
.value-card {
	background: #fff; border: 1.5px solid var(--grey);
	border-radius: var(--radius-card); padding: 1.6rem 1.7rem;
}
.value-card .why-icon {
	width: 48px; height: 48px; border-radius: 14px;
	display: grid; place-items: center;
	background: rgba(14, 165, 115, 0.12); color: var(--blue);
	margin-bottom: 0.9rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.value-card p { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* why-cards reused on about/home fallback */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.why-card {
	background: #fff; border: 1.5px solid var(--grey);
	border-radius: var(--radius-card); padding: 1.7rem 1.6rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.why-card h3 { font-size: 1.1rem; }
.why-card p { font-size: 0.93rem; color: var(--muted); margin: 0; }
.why-icon {
	width: 48px; height: 48px; border-radius: 14px; flex: none;
	display: grid; place-items: center;
	background: rgba(14, 165, 115, 0.12); color: var(--blue);
	margin-bottom: 1rem;
}

/* ---------- Pagination & misc ---------- */

.pagination { margin-top: 2.5rem; text-align: center; }
.pagination .nav-links { display: inline-flex; gap: 0.5rem; }
.pagination .page-numbers {
	display: inline-grid; place-items: center;
	min-width: 46px; height: 46px; padding: 0 0.8rem;
	border-radius: var(--radius-sm); border: 1.5px solid var(--grey);
	font-weight: 600; color: var(--muted);
}
.pagination .page-numbers.current { background: var(--blue); border-color: var(--blue); color: #fff; }
.empty-note { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.4rem; }

/* ---------- Footer ---------- */

.site-footer {
	position: relative;
	background: var(--ink);
	color: rgba(255, 255, 255, 0.8);
	margin-top: clamp(3rem, 7vh, 5rem);
	border-radius: var(--radius-panel) var(--radius-panel) 0 0;
	padding: clamp(3rem, 7vh, 4.5rem) 0 2rem;
}
.footer-top { text-align: center; margin-bottom: 2.6rem; }
.footer-top .brand-lockup { margin-inline: auto; }
.footer-menu {
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: clamp(1.2rem, 3vw, 2.6rem);
	margin-top: 1.8rem;
}
.footer-menu a { color: #fff; font-weight: 500; font-size: 1rem; }
.footer-menu a:hover { color: var(--blue-bright); }

.footer-reviews {
	background: var(--ink-2);
	border-radius: var(--radius-card);
	padding: clamp(1.8rem, 3.5vw, 2.8rem);
	margin-bottom: 2.4rem;
}
.footer-reviews h4 {
	text-align: center; color: #fff;
	font-size: 1.4rem; margin-bottom: 1.6rem;
}
.review-track {
	display: grid; grid-auto-flow: column;
	grid-auto-columns: calc((100% - 2.2rem) / 3);
	gap: 1.1rem; overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	padding-bottom: 0.4rem;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card {
	background: var(--slate);
	border-radius: 16px;
	padding: 1.4rem 1.5rem;
	scroll-snap-align: start;
	display: flex; flex-direction: column; gap: 0.7rem;
	margin: 0;
}
.review-stars { display: flex; gap: 0.15rem; color: var(--star); }
.review-stars svg { width: 1.05em; height: 1.05em; fill: currentColor; stroke: none; }
.review-card blockquote {
	margin: 0; font-size: 0.92rem; color: rgba(255, 255, 255, 0.9); flex: 1;
	display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.review-card figcaption strong { display: block; color: #fff; font-size: 0.95rem; }
.review-card figcaption span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.6); }
.review-nav { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.4rem; }
.review-nav .quote-btn { background: transparent; border-color: rgba(255, 255, 255, 0.3); color: #fff; }
.review-nav .quote-btn:hover { background: var(--blue); border-color: var(--blue); }

.footer-legal {
	display: flex; flex-wrap: wrap; justify-content: space-between;
	gap: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding-top: 1.6rem;
	font-size: 0.85rem; color: rgba(255, 255, 255, 0.6);
}
.footer-legal p { margin: 0 0 0.2rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.75); }
.footer-legal a:hover { color: #fff; }

/* ---------- Reveal animations ---------- */

.reveal {
	opacity: 0; transform: translateY(30px);
	transition: opacity 0.75s ease var(--d, 0ms), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
	.reveal { opacity: 1; transform: none; }
	html { scroll-behavior: auto; }
	.hero-media img { animation: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
	.sector-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
	.jobs-layout { grid-template-columns: 1fr; }
	.job-filters { flex-direction: row; flex-wrap: wrap; }
	.job-filters-label { width: 100%; }
	.feedback-grid, .welcome-grid { grid-template-columns: 1fr; }
	.review-track { grid-auto-columns: calc((100% - 1.1rem) / 2); }
	.post-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
	:root { --header-h: 78px; }
	.brand-block { padding: 0.65rem 1rem 0.6rem; }
	.brand-block .bb-name { font-size: 1.2rem; }
	.nav-toggle-label { display: none; }

	.stats-row { grid-template-columns: repeat(2, 1fr); }
	.cta-panel { grid-template-columns: 1fr; }
	.cta-panel.grey .cta-photo { order: -1; }
	.job-grid.archive, .post-grid, .sector-grid, .why-grid { grid-template-columns: 1fr; }
	.form-layout, .about-grid, .job-single { grid-template-columns: 1fr; }
	.job-apply { position: static; }
	.field-row { grid-template-columns: 1fr; gap: 0; }
	.feedback-photos { grid-template-columns: 1fr 1fr; }
	.review-track { grid-auto-columns: 92%; }
	.footer-legal { flex-direction: column; }
	.hero { border-radius: 0 0 24px 24px; }
}

/* ==========================================================================
   v3 additions — new sections & animations
   ========================================================================== */

/* ---------- Hero intro animation ---------- */

.hero-rise { display: block; opacity: 0; transform: translateY(40px); animation: heroRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.hero-rise.d1 { animation-delay: 0.15s; }
.hero-rise.d2 { animation-delay: 0.3s; }
.hero-rise.d3 { animation-delay: 0.5s; }
.hero-rise.d4 { animation-delay: 0.7s; }
@keyframes heroRise { to { opacity: 1; transform: none; } }

/* ---------- Directional reveals ---------- */

.reveal-left { opacity: 0; transform: translateX(-44px); transition: opacity 0.8s ease var(--d, 0ms), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms); }
.reveal-right { opacity: 0; transform: translateX(44px); transition: opacity 0.8s ease var(--d, 0ms), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.8s ease var(--d, 0ms), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms); }
.reveal-left.in, .reveal-right.in, .reveal-scale.in { opacity: 1; transform: none; }

/* ---------- Role ticker marquee ---------- */

.ticker {
	background: var(--ink); color: rgba(255, 255, 255, 0.85);
	overflow: hidden; padding: 1.05rem 0;
	white-space: nowrap;
	margin-top: clamp(1.4rem, 3vh, 2.2rem);
	border-radius: 18px;
	width: min(1400px, calc(100% - 2 * var(--gutter)));
	margin-inline: auto;
}
.ticker-track {
	display: inline-flex; align-items: center; gap: 1.7rem;
	animation: ticker 38s linear infinite;
	font-weight: 500; font-size: 0.95rem;
	letter-spacing: 0.04em; text-transform: uppercase;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track i {
	font-style: normal; font-size: 0.65rem;
	background: var(--grad);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: transparent;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Stats band ---------- */

.stats-panel {
	background: var(--grad);
	color: #fff;
	padding: clamp(2.2rem, 4.5vw, 3.4rem);
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.stat { text-align: center; }
.stat strong {
	display: block; font-size: clamp(2.2rem, 4.5vw, 3.6rem);
	font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
}
.stat span { font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); }

/* ---------- Process steps ---------- */

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; counter-reset: step; }
.process-step {
	position: relative; overflow: hidden;
	background: var(--grey-soft);
	border: 1.5px solid var(--grey);
	border-radius: var(--radius-card);
	padding: 2.1rem 1.8rem 1.9rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.process-step::after {
	content: ""; position: absolute; inset: auto 0 0 0; height: 5px;
	background: var(--grad);
	transform: scaleX(0); transform-origin: left;
	transition: transform 0.35s ease;
}
.process-step:hover::after { transform: scaleX(1); }
.step-num {
	display: inline-block;
	font-size: 2.8rem; font-weight: 700; line-height: 1;
	background: var(--grad);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent; color: transparent;
	margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.22rem; }
.process-step p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ---------- FAQ accordion ---------- */

.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item {
	border: 1.5px solid var(--grey);
	border-radius: var(--radius-sm);
	background: #fff;
	margin-bottom: 0.9rem;
	overflow: hidden;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-q {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	width: 100%; text-align: left;
	background: none; border: 0; cursor: pointer;
	font-family: var(--font); font-weight: 600; font-size: 1.06rem;
	color: var(--ink);
	padding: 1.15rem 1.4rem;
}
.faq-q .faq-icon {
	width: 34px; height: 34px; border-radius: 50%; flex: none;
	display: grid; place-items: center;
	background: rgba(14, 165, 115, 0.12); color: var(--blue);
	font-size: 1.25rem; font-weight: 500; line-height: 1;
	transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq-a {
	max-height: 0; overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-a-inner { padding: 0 1.4rem 1.3rem; color: var(--slate); font-size: 0.97rem; }

/* ---------- Feedback photo float ---------- */

.feedback-photo { transition: transform 0.3s ease; }
.feedback-photo:hover { transform: translateY(-6px); }
.feedback-photo:nth-child(2), .feedback-photo:nth-child(4) { transform: translateY(14px); }
.feedback-photo:nth-child(2):hover, .feedback-photo:nth-child(4):hover { transform: translateY(8px); }

/* ---------- v3 responsive ---------- */

@media (max-width: 1024px) {
	.process-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
	.stats-row { grid-template-columns: repeat(2, 1fr); }
	.ticker-track { animation-duration: 26s; }
}
@media (prefers-reduced-motion: reduce) {
	.ticker-track { animation: none; }
	.hero-rise { animation: none; opacity: 1; transform: none; }
	.reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
}

/* ==========================================================================
   v3.1 — mobile polish
   ========================================================================== */

/* Safety net: never allow sideways scroll from any stray element. */
html, body { overflow-x: clip; }

/* Off-canvas menu must scroll on short screens instead of clipping. */
.site-nav { overflow-y: auto; padding: calc(var(--header-h) + 1rem) 1.5rem 2.5rem; }

@media (max-width: 1024px) {
	/* Sector filters are useless below the job list — show them first. */
	.jobs-layout .job-filters { order: -1; }
}

@media (max-width: 768px) {
	.section { padding: 3.6rem 0; }
	:root { --radius-panel: 26px; }
	.panel { border-radius: 26px; }
	.ticker { border-radius: 14px; margin-top: 1.2rem; padding: 0.85rem 0; }
	.stats-panel { padding: 2rem 1.4rem; }
	.stat strong { font-size: clamp(2rem, 9vw, 2.6rem); }
	.section-head-row { margin-bottom: 1.8rem; }
	.cta-panel { padding: 1.6rem; }
	.faq-q { font-size: 0.98rem; padding: 1rem 1.1rem; }
	.faq-a-inner { padding: 0 1.1rem 1.1rem; }
	.nav-menu { gap: 0.2rem; }
	.nav-menu a { font-size: clamp(1.6rem, 7.5vw, 2.2rem); }
	.site-nav { gap: 1.8rem; }
	.welcome-photo img { aspect-ratio: 4 / 3; }
}

@media (max-width: 480px) {
	h1 { font-size: clamp(2.15rem, 11vw, 2.7rem); }
	.hero-lead { font-size: 0.98rem; }
	.hero-inner { padding-bottom: 4.5rem; }
	.brand-block { padding: 0.55rem 0.85rem 0.5rem; }
	.brand-block .bb-name { font-size: 1.05rem; }
	.brand-block .bb-sub { font-size: 0.5rem; letter-spacing: 0.34em; }
	.circle-btn { font-size: 0.88rem; }
	.circle-btn .cb-circle { width: 48px; height: 48px; }
	.job-card { padding: 1.4rem 1.3rem; }
	.job-card h3 { font-size: 1.25rem; }
	.feedback-photos { gap: 0.8rem; }
	.feedback-photo:nth-child(2), .feedback-photo:nth-child(4) { transform: none; }
	.quote-attr { font-size: 1.1rem; }
	.footer-menu { gap: 0.9rem 1.4rem; }
	.pill-tag, .eyebrow { font-size: 0.78rem; padding: 0.36rem 0.95rem; }
}

/* Short viewports: the scroll cue can collide with the hero CTA. */
@media (max-height: 700px) {
	.scroll-cue { display: none; }
	.hero-inner { padding-top: calc(var(--header-h) + 1.6rem); padding-bottom: 3rem; }
}
