/* ==========================================================================
   Cartvale Talent — Stylesheet
   A refined, editorial recruitment consultancy aesthetic.
   Navy + gold. Serif display, grotesque body. Gold used as hairline only.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --navy:        #0F172A;
  --navy-700:    #16223C;
  --navy-600:    #1E2C49;
  --navy-line:   #243352;
  --gold:        #D4AF37;
  --gold-deep:   #B8932B;
  --white:       #FFFFFF;
  --grey:        #F8FAFC;
  --grey-200:    #EEF2F7;
  --border:      #E3E8EF;
  --border-dark: #D7DDE7;
  --ink:         #111827;
  --ink-2:       #475569;
  --ink-3:       #64748B;
  --light:       #F8FAFC;
  --light-dim:   #9FB0C9;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 14px;
  --radius-sm: 10px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.04), 0 1px 1px rgba(15,23,42,.03);
  --shadow:    0 12px 30px -12px rgba(15,23,42,.16), 0 4px 10px -6px rgba(15,23,42,.08);
  --shadow-lg: 0 30px 60px -24px rgba(15,23,42,.30);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(2.5rem, 1.4rem + 4.6vw, 4.45rem); font-weight: 450; }
h2 { font-size: clamp(1.95rem, 1.2rem + 2.7vw, 3rem); }
h3 { font-size: clamp(1.35rem, 1.05rem + 1.1vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 600; }
.serif-em { font-family: var(--serif); font-style: italic; font-weight: 450; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 920px; }
section { position: relative; }
.section { padding-block: clamp(4.5rem, 3rem + 7vw, 8rem); }
.section--tight { padding-block: clamp(3.5rem, 2.5rem + 4vw, 5.5rem); }
.bg-grey { background: var(--grey); }
.bg-navy { background: var(--navy); color: var(--light); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }
.bg-navy p { color: var(--light-dim); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--sans); font-size: .76rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 1.25rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }
.bg-navy .eyebrow { color: var(--gold); }
.eyebrow--center { justify-content: center; }

.lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.32rem); line-height: 1.6; color: var(--ink-2); }
.bg-navy .lead { color: #C6D2E4; }

.section-head { max-width: 660px; }
.section-head--center { max-width: 720px; margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--navy); --fg: var(--white); --bd: var(--navy);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid var(--bd);
  padding: .92rem 1.7rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: .96rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  position: relative; will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn:hover { box-shadow: 0 10px 24px -10px rgba(15,23,42,.5); border-color: var(--gold); transform: translateY(-2px); }
.btn:hover svg { transform: translateX(4px); }
.btn--gold { --bg: var(--gold); --fg: var(--navy); --bd: var(--gold); }
.btn--gold:hover { --bg: var(--gold-deep); --bd: var(--gold-deep); box-shadow: 0 10px 24px -10px rgba(212,175,55,.55); }
.btn--ghost { --bg: transparent; --fg: var(--navy); --bd: var(--border-dark); }
.btn--ghost:hover { --bd: var(--gold); --fg: var(--navy); box-shadow: none; }
.bg-navy .btn--ghost, .btn--ghost-light { --bg: transparent; --fg: var(--white); --bd: rgba(255,255,255,.28); }
.bg-navy .btn--ghost:hover, .btn--ghost-light:hover { --bd: var(--gold); --fg: var(--gold); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

.textlink {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--navy); font-size: .96rem;
  padding-bottom: 2px; border-bottom: 1.5px solid transparent;
  transition: border-color .3s, gap .3s var(--ease), color .3s;
}
.textlink svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.textlink:hover { border-color: var(--gold); gap: .8rem; }
.textlink:hover svg { transform: translateX(3px); }
.bg-navy .textlink { color: var(--white); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s, background .3s;
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--border), 0 8px 24px -18px rgba(15,23,42,.25); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 2rem; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; display: block; }
.brand .logo-light { display: none; }

.nav-links { display: flex; align-items: center; gap: 2.1rem; }
.nav-links a {
  font-weight: 500; font-size: .96rem; color: var(--ink-2);
  position: relative; padding: .35rem 0; transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--navy); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .btn { padding: .68rem 1.35rem; font-size: .9rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--border);
  border-radius: 10px; background: var(--white); position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 19px; height: 1.8px;
  background: var(--navy); transform: translate(-50%,-50%); transition: .3s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%,-7px); }
.nav-toggle span::after  { transform: translate(-50%,5px); }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translate(-50%,-50%) rotate(45deg); }
.nav-open .nav-toggle span::after  { transform: translate(-50%,-50%) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .nav-cta .btn { display: none; }
  .mobile-menu {
    position: fixed; inset: 78px 0 auto 0; background: var(--white);
    border-bottom: 1px solid var(--border);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: .3s var(--ease); padding: 1.4rem var(--gutter) 2rem; z-index: 55;
    box-shadow: var(--shadow);
  }
  .nav-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .mobile-menu a { display: block; padding: .9rem 0; font-weight: 500; font-size: 1.1rem; border-bottom: 1px solid var(--border); color: var(--navy); }
  .mobile-menu a:last-of-type { border-bottom: 0; }
  .mobile-menu .btn { width: 100%; margin-top: 1.1rem; }
}
@media (min-width: 921px) { .mobile-menu { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--navy);
  color: var(--light);
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 3rem + 9vw, 9rem);
}
.hero::before { /* soft radial light */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 82% -10%, rgba(212,175,55,.16), transparent 46%),
              radial-gradient(80% 60% at 0% 100%, rgba(56,80,130,.30), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 4vw, 5rem); align-items: center;
}
.hero h1 { color: var(--white); }
.hero h1 .serif-em { color: var(--gold); }
.hero .lead { margin-top: 1.6rem; max-width: 36ch; }
.hero .btn-row { margin-top: 2.4rem; }
.hero-meta { margin-top: 2.8rem; display: flex; gap: 2.4rem; flex-wrap: wrap; }
.hero-meta .stat .n { font-family: var(--serif); font-size: 2rem; color: var(--white); line-height: 1; }
.hero-meta .stat .l { font-size: .82rem; letter-spacing: .04em; color: var(--light-dim); margin-top: .45rem; }
.hero-meta .stat { border-left: 1px solid var(--navy-line); padding-left: 1.2rem; }

/* connection motif art */
.hero-art { position: relative; aspect-ratio: 1/1; min-height: 280px; }
.hero-art svg { width: 100%; height: 100%; overflow: visible; }
.node { fill: var(--gold); }
.node-ring { fill: none; stroke: var(--gold); opacity: .4; }
.link-line { stroke: rgba(159,176,201,.34); stroke-width: 1; fill: none; }
.link-line--gold { stroke: rgba(212,175,55,.55); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .hero .lead { max-width: 50ch; }
}

/* thin gold rule that sits under hero */
.hero-rule { height: 3px; background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 22%, transparent 22%); }

/* ==========================================================================
   Who we help — split cards
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.split-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(1.8rem, 1.2rem + 1.6vw, 2.8rem); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.split-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gold);
  transform: scaleY(0); transform-origin: top; transition: transform .45s var(--ease);
}
.split-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-dark); }
.split-card:hover::after { transform: scaleY(1); }
.split-card .tag { font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.split-card h3 { margin: .9rem 0 .8rem; }
.split-card p { margin-bottom: 1.6rem; }
.split-card .textlink { margin-top: auto; align-self: flex-start; }
@media (max-width: 760px) { .split { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services grid
   ========================================================================== */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: clamp(1.6rem, 1.1rem + 1.2vw, 2.3rem);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-dark); }
.card .ic {
  width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grey); border: 1px solid var(--border); margin-bottom: 1.4rem;
  transition: background .35s, border-color .35s;
}
.card:hover .ic { background: var(--navy); border-color: var(--navy); }
.card .ic svg { width: 24px; height: 24px; stroke: var(--navy); transition: stroke .35s; }
.card:hover .ic svg { stroke: var(--gold); }
.card h3 { font-size: 1.32rem; margin-bottom: .6rem; }
.card p { font-size: .98rem; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ==========================================================================
   Industries
   ========================================================================== */
.industries { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem,4vw,4.5rem); align-items: start; }
.ind-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); }
.ind-list li {
  display: flex; align-items: center; gap: .9rem; padding: 1.05rem .2rem;
  border-bottom: 1px solid var(--border); font-weight: 500; color: var(--ink);
  transition: color .3s, padding-left .3s var(--ease);
}
.ind-list li .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.ind-list li:hover { color: var(--navy); padding-left: .6rem; }
@media (max-width: 760px) { .industries { grid-template-columns: 1fr; } .ind-list { grid-template-columns: 1fr; } }

/* ==========================================================================
   Why us — feature rows
   ========================================================================== */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.why-item { background: var(--white); padding: clamp(2.4rem,1.8rem+1.6vw,3.2rem) clamp(1.9rem,1.3rem+1.4vw,2.6rem); transition: background .35s; }
.why-item:hover { background: var(--grey); }
.why-item .num { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-deep); display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.15rem; font-style: italic; }
.why-item .num::before { content: ""; width: 22px; height: 1px; background: var(--gold); }
.why-item h3 { font-size: 1.3rem; line-height: 1.2; margin-bottom: .7rem; }
.why-item p { font-size: .98rem; line-height: 1.7; }
@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Process — numbered timeline
   ========================================================================== */
.process { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.step { padding: 2rem 1.6rem 2rem 0; position: relative; }
.step::before { content: ""; position: absolute; left: 0; top: 14px; right: 1.6rem; height: 1px; background: var(--navy-line); }
.bg-navy .step::before { background: var(--navy-line); }
.step .n { font-family: var(--serif); font-size: 2.6rem; color: var(--gold); line-height: 1; position: relative; }
.step .dot { position: absolute; left: 0; top: 8px; width: 11px; height: 11px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(212,175,55,.16); }
.step h3 { font-size: 1.25rem; margin: 1.3rem 0 .55rem; color: var(--white); }
.step p { font-size: .95rem; }
.step:last-child::before { display: none; }
@media (max-width: 860px) { .process { grid-template-columns: 1fr 1fr; gap: 1rem 1.6rem; } .step::before { display: none; } }
@media (max-width: 480px) { .process { grid-template-columns: 1fr; } }

/* ==========================================================================
   Vacancies placeholder
   ========================================================================== */
.vacancy-empty {
  border: 1px dashed var(--border-dark); border-radius: var(--radius);
  padding: clamp(2.5rem,2rem+3vw,4.5rem); text-align: center; background: var(--white);
}
.vacancy-empty .pulse { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); margin: 0 auto 1.4rem; position: relative; }
.vacancy-empty .pulse::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 1px solid var(--gold); animation: ring 2.4s var(--ease) infinite; }
@keyframes ring { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(1.7); opacity: 0; } }
.vacancy-empty h3 { margin-bottom: .7rem; }
.vacancy-empty p { max-width: 46ch; margin: 0 auto 1.8rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 120% at 100% 0%, rgba(212,175,55,.16), transparent 50%);
}
.cta-band .wrap { position: relative; z-index: 2; text-align: center; }
.cta-band h2 { max-width: 18ch; margin: 0 auto 1.2rem; color: var(--white); }
.cta-band p { max-width: 56ch; margin: 0 auto 2.2rem; }
.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--white); border-radius: var(--radius);
  padding: clamp(1.8rem,1.2rem+2vw,3rem); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: .5rem; }
.field .req { color: var(--gold-deep); }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--grey); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: .85rem 1rem; transition: border-color .25s, background .25s, box-shadow .25s;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 4px rgba(212,175,55,.14);
}
.field input::placeholder, .field textarea::placeholder { color: #94A3B8; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* segmented radio (I am a: Employer / Candidate) */
.segment { display: inline-flex; background: var(--grey); border: 1.5px solid var(--border); border-radius: 999px; padding: 4px; gap: 4px; }
.segment label { margin: 0; cursor: pointer; }
.segment input { position: absolute; opacity: 0; width: 0; height: 0; }
.segment span { display: inline-block; padding: .55rem 1.2rem; border-radius: 999px; font-size: .92rem; font-weight: 600; color: var(--ink-2); transition: .25s; }
.segment input:checked + span { background: var(--navy); color: var(--white); }
.segment input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }

/* file upload */
.file-drop { position: relative; }
.file-drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.file-drop .face {
  display: flex; align-items: center; gap: .9rem; padding: 1rem 1.1rem;
  border: 1.5px dashed var(--border-dark); border-radius: var(--radius-sm); background: var(--grey);
  color: var(--ink-2); font-size: .95rem; transition: border-color .25s, background .25s;
}
.file-drop:hover .face, .file-drop.has-file .face { border-color: var(--gold); background: var(--white); }
.file-drop .face svg { width: 20px; height: 20px; stroke: var(--gold-deep); flex-shrink: 0; }
.honey { position: absolute; left: -9999px; }

.form-success {
  display: none; align-items: flex-start; gap: .9rem;
  background: var(--navy); color: var(--light); border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.form-success.show { display: flex; }
.form-success svg { width: 24px; height: 24px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.form-success strong { color: var(--white); display: block; margin-bottom: .2rem; }
.form-success p { color: var(--light-dim); font-size: .95rem; }

/* contact split */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,4vw,4rem); align-items: start; }
.contact-info .ci-item { display: flex; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--border); }
.contact-info .ci-item:last-child { border-bottom: 0; }
.contact-info .ci-ic { width: 42px; height: 42px; border-radius: 10px; background: var(--grey); border: 1px solid var(--border); display: grid; place-items: center; flex-shrink: 0; }
.contact-info .ci-ic svg { width: 19px; height: 19px; stroke: var(--gold-deep); }
.contact-info h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .25rem; font-weight: 600; }
.contact-info .ci-item a, .contact-info .ci-item p { color: var(--ink); font-weight: 500; font-size: 1.05rem; }
.contact-info .ci-item a:hover { color: var(--gold-deep); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Page header (interior pages)
   ========================================================================== */
.page-hero { background: var(--navy); color: var(--light); padding-block: clamp(4rem,3rem+5vw,6.5rem); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 80% at 90% 0%, rgba(212,175,55,.12), transparent 50%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); max-width: 18ch; }
.page-hero .lead { margin-top: 1.4rem; max-width: 56ch; }
.breadcrumb { font-size: .85rem; color: var(--light-dim); margin-bottom: 1.6rem; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--navy-line); margin: 0 .5rem; }

/* prose */
.prose p { margin-bottom: 1.3rem; font-size: 1.08rem; line-height: 1.75; }
.prose p:last-child { margin-bottom: 0; }
.pull {
  font-family: var(--serif); font-size: clamp(1.4rem,1.1rem+1.4vw,2rem); line-height: 1.3;
  color: var(--ink); border-left: 3px solid var(--gold); padding-left: 1.6rem; margin: 2.5rem 0;
}
.pull .serif-em { color: var(--gold-deep); }

/* role types chips */
.chips { display: flex; flex-wrap: wrap; gap: .7rem; }
.chip { border: 1px solid var(--border-dark); border-radius: 999px; padding: .55rem 1.15rem; font-size: .92rem; font-weight: 500; color: var(--ink-2); background: var(--white); transition: .25s; }
.chip:hover { border-color: var(--gold); color: var(--navy); }

/* fee model placeholder */
.fee-note { display: flex; gap: 1rem; align-items: flex-start; background: var(--grey); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--radius-sm); padding: 1.5rem 1.7rem; }
.fee-note svg { width: 22px; height: 22px; stroke: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }
.fee-note p { font-size: .98rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: var(--light-dim); padding-block: clamp(3.5rem,2.5rem+3vw,5rem) 2.2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--navy-line); }
.footer-brand img { height: 46px; margin-bottom: 1.3rem; display: block; }
.footer-brand p { font-size: .96rem; max-width: 32ch; color: var(--light-dim); }
.footer-col h5 { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--light); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col a { display: block; padding: .42rem 0; color: var(--light-dim); font-size: .96rem; transition: color .25s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1.2rem; padding-top: 2rem; flex-wrap: wrap; font-size: .86rem; }
.footer-bottom a:hover { color: var(--gold); }
.social { display: flex; gap: .7rem; }
.social a { width: 38px; height: 38px; border: 1px solid var(--navy-line); border-radius: 9px; display: grid; place-items: center; transition: .25s; }
.social a:hover { border-color: var(--gold); background: rgba(212,175,55,.08); }
.social svg { width: 17px; height: 17px; stroke: var(--light-dim); transition: stroke .25s; }
.social a:hover svg { stroke: var(--gold); }
@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* misc */
.divider-gold { width: 54px; height: 2px; background: var(--gold); margin: 1.4rem 0; }
.center { text-align: center; }
.mt-lg { margin-top: clamp(2.5rem,2rem+2vw,3.5rem); }
.mb-0 { margin-bottom: 0; }
.muted-note { font-size: .85rem; color: var(--ink-3); }
.bg-navy .muted-note { color: var(--light-dim); }