/* ============================================================
   BUILT RIGHT RECRUITMENT — Healthcare Recruitment (one-page)
   Brand: Built Right Studio luxury aesthetic — gold + charcoal +
   warm taupe, Playfair Display headings + Poppins body.
   Light-dominant ("more white than black") with dark accent bands.
   Derived from /css/styles.css (the established brand stylesheet).
   ============================================================ */

:root {
  /* Brand palette (from the main site) */
  --gold:        #af8a0f;
  --gold-dark:   #8f7011;
  --gold-light:  #d8b441;
  --gold-soft:   #f3ead0;
  --charcoal:    #121212;
  --slate:       #1f1f1f;
  --slate-2:     #2a2a2a;
  --taupe:       #c9b8a7;
  --taupe-dark:  #785b3e;

  /* Light-first surfaces */
  --bg:          #ffffff;
  --bg-warm:     #f8f6f1;   /* warm off-white */
  --bg-cool:     #f4f5f7;
  --line:        #e7e3da;
  --line-strong: #d8d2c6;

  /* Text */
  --ink:         #16140f;   /* near-black warm */
  --ink-soft:    #4b4740;
  --muted:       #837d72;
  --on-dark:     #f4f1ea;
  --on-dark-mut: rgba(244, 241, 234, 0.66);

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Match the main site's radius scale: cards 12px, buttons 4px. */
  --radius: 12px;       /* cards / panels — main --radius-lg */
  --radius-sm: 8px;     /* inputs / small controls */
  --radius-lg: 16px;    /* large form panels */
  --btn-radius: 4px;    /* buttons — main --radius-sm */
  --shadow: 0 18px 50px rgba(24, 20, 12, 0.10);
  --shadow-sm: 0 6px 20px rgba(24, 20, 12, 0.08);
  --shadow-gold: 0 14px 38px rgba(175, 138, 15, 0.28);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
h2.section-title { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); margin-bottom: 18px; }
/* Two-tone headings — highlight a word in gold (matches main site) */
h1 .hl, h2 .hl, h3 .hl { color: var(--gold-dark); }
.talent .section-title .hl, .final-cta h2 .hl { color: var(--gold-light); }
.eyebrow {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 16px;
}
.lead { font-size: clamp(1.02rem, 0.95rem + 0.4vw, 1.2rem); color: var(--ink-soft); }
.muted { color: var(--muted); }

.container { width: min(100% - 44px, var(--maxw)); margin-inline: auto; }
section { padding: clamp(64px, 8vw, 120px) 0; position: relative; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

/* ---- Buttons (brand: uppercase, gold, shimmer) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--btn-radius); cursor: pointer;
  font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase; border: 2px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transition: left .6s var(--ease);
}
.btn:hover::before { left: 100%; }
.btn-primary { background: var(--gold); color: #1a1407; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
/* Gold-outline (brand .btn-outline): transparent fill, gold border + text,
   fills gold on hover. */
.btn-ghost { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #1a1407; border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
/* White border + text at rest, but keeps the gold-fill hover. */
.btn-outline-light { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-light:hover { background: var(--gold); color: #1a1407; border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn-light:hover { background: var(--gold-light); border-color: var(--gold-light); color: #1a1407; transform: translateY(-3px); }
/* White outline: transparent fill, white border + text, fills white on hover */
.btn-outline-white { background: transparent; color: #fff; border-color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--charcoal); border-color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 18px 38px; font-size: 0.86rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; inset-inline: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent; transition: all .6s var(--ease);
}
.nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(14px); border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(24,20,12,.06); }
/* At the very top the bar is see-through over the dark hero → light text + white logo */
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.85); }
.nav:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav:not(.scrolled) .brand-word b { color: #fff; }
.nav:not(.scrolled) .brand-word span { color: var(--gold-light); }
.nav:not(.scrolled) .nav-toggle span { background: #fff; }
.nav:not(.scrolled) .brand img { filter: brightness(0) invert(1); }
.nav-inner { display: flex; align-items: center; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 38px; width: auto; transition: filter .6s var(--ease); }
.brand-word b, .brand-word span { transition: color .6s var(--ease); }
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word b { font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: .01em; color: var(--ink); }
.brand-word span { font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-dark); margin-top: 3px; }
.nav-links { display: flex; gap: 30px; margin-left: auto; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color .6s var(--ease); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ============================================================
   VIDEO HERO (full screen, top of page)
   ============================================================ */
.video-hero { position: relative; height: 100vh; min-height: 580px; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; background: #000; }
.vh-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.vh-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.40) 38%, rgba(0,0,0,.80) 100%); }
.vh-content { position: relative; z-index: 2; max-width: 900px; padding: 90px 24px 0; color: #fff; }
.vh-content .eyebrow { color: var(--gold-light); }
.vh-content h1 { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.4rem); color: #fff; margin-bottom: 26px; line-height: 1.1; }
.vh-content h1 .hl { color: var(--gold-light); }
.vh-content p { font-size: clamp(1.05rem, 1rem + .5vw, 1.35rem); color: rgba(255,255,255,.82); margin: 0 auto 34px; max-width: 680px; }
.vh-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.vh-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: rgba(255,255,255,.7); font-size: 0.68rem; letter-spacing: .18em; text-transform: uppercase; transition: color .25s; }
.vh-scroll:hover { color: var(--gold-light); }
.vh-scroll svg { width: 22px; height: 22px; animation: vhbob 1.8s var(--ease) infinite; }
@keyframes vhbob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ============================================================
   DUAL HERO — split screen (now a section below the video hero)
   ============================================================ */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; padding-top: 76px; background: #000; }
.hero-half { position: relative; display: flex; align-items: center; padding: clamp(40px, 6vw, 96px) clamp(28px, 5vw, 80px); overflow: hidden; }
.hero-half .inner { position: relative; z-index: 2; max-width: 520px; margin-inline: auto; text-align: center; }
.hero-clients { background: #000; color: var(--on-dark); }
.hero-candidates { background: #000; color: var(--on-dark); }
.hero-half::after { /* large faded brand mark / glow */
  content: ''; position: absolute; width: 520px; height: 520px; border-radius: 50%;
  filter: blur(20px); opacity: .5; z-index: 1; transition: transform 1.2s var(--ease);
}
.hero-clients::after { display: none; } /* pure black, no shading */
.hero-candidates::after { display: none; } /* pure black, no shading */
.hero:hover .hero-clients::after { transform: scale(1.12) translateY(10px); }
.hero:hover .hero-candidates::after { transform: scale(1.12) translateY(-10px); }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; }
.hero-clients .hero-tag { background: rgba(216,180,65,.16); color: var(--gold-light); border: 1px solid rgba(216,180,65,.32); }
.hero-candidates .hero-tag { background: rgba(216,180,65,.14); color: var(--gold-light); border: 1px solid rgba(216,180,65,.30); }
.hero-half h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.1rem); margin-bottom: 18px; }
.hero-clients h1, .hero-candidates h1 { color: #fff; }
.hero-half p { font-size: 1.06rem; margin-bottom: 30px; }
.hero-clients p { color: var(--on-dark-mut); }
.hero-candidates p { color: var(--gold-light); }
.hero-visual { display: flex; gap: 10px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.hero-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 0.8rem; padding: 9px 16px; border-radius: 999px; transition: border-color .25s, background .25s; }
.hero-chip .ic { font-size: 0.92rem; line-height: 1; }
/* Clients side — muted white chips */
.hero-clients .hero-chip { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); color: var(--on-dark-mut); }
.hero-clients .hero-chip .ic { color: var(--on-dark-mut); }
/* Candidates side — gold-outline chips with gold icon (matches main site) */
.hero-candidates .hero-chip { background: rgba(216,180,65,.10); border: 1px solid rgba(216,180,65,.40); color: var(--on-dark); }
.hero-candidates .hero-chip:hover { border-color: var(--gold-light); background: rgba(216,180,65,.18); }
.hero-candidates .hero-chip .ic { color: var(--gold-light); }
.hero-divider { /* center seam */
  position: absolute; left: 50%; top: 76px; bottom: 0; width: 1px; transform: translateX(-50%);
  background: linear-gradient(var(--gold), transparent); opacity: .5; z-index: 5; pointer-events: none;
}
.hero-seal { position: absolute; left: 50%; top: 52%; transform: translate(-50%,-50%); z-index: 6;
  width: 76px; height: 76px; border-radius: 50%; background: var(--gold); color: #1a1407;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  box-shadow: 0 0 0 8px #6f560d, 0 14px 34px rgba(175,138,15,.6); }

/* ============================================================
   ABOUT + STATS
   ============================================================ */
.about { background: var(--bg); }
/* Four individual black stat cards */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 54px; }
.stat-card { background: #121212; border: 1px solid rgba(216,180,65,.16); border-radius: var(--radius); padding: 30px 26px; text-align: center; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(216,180,65,.42); }
.stat-ico { width: 52px; height: 52px; border-radius: 14px; background: rgba(216,180,65,.14); color: var(--gold-light); display: grid; place-items: center; margin: 0 auto 16px; }
.stat-ico svg { width: 26px; height: 26px; }
.stat-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: #fff; }
.stat-card p { font-size: 0.86rem; color: var(--on-dark-mut); }

/* ============================================================
   Generic cards
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: stretch; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-strong); }

/* Brand panelling: a 2px gold accent line across the top that reveals on
   hover — the signature treatment from the main site's .card. */
.stat-card, .card, .opp-card, .why-card, .form-card, .testi-card, .talent-card { position: relative; overflow: hidden; }
.stat-card::before, .card::before, .opp-card::before, .why-card::before, .form-card::before, .testi-card::before, .talent-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent); opacity: 0; transition: opacity .3s var(--ease); z-index: 2;
}
.stat-card:hover::before, .card:hover::before, .opp-card:hover::before, .why-card:hover::before,
.form-card:hover::before, .testi-card:hover::before, .talent-card:hover::before { opacity: 1; }
/* talent cards sit on dark — brighten the accent to gold-light */
.talent-card::before { background: linear-gradient(90deg, var(--gold-light), transparent); }

.pain-list, .deliver-list, .benefit-list { list-style: none; display: grid; gap: 12px; }
.pain-list li, .deliver-list li, .benefit-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.98rem; color: var(--ink-soft); }
.pain-list li .x, .deliver-list li .tick, .benefit-list li .tick { flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; display: grid; place-items: center; font-size: 0.85rem; margin-top: 1px; }
.pain-list li .x { background: #f7e9e6; color: #b1502f; }
.deliver-list li .tick, .benefit-list li .tick { background: var(--gold-soft); color: var(--gold-dark); font-weight: 700; }

/* CLIENT section — warm band */
.clients { background: var(--bg-warm); }
.clients .card { background: #fff; }

/* CANDIDATE section */
.candidates { background: var(--bg); }
/* Black opportunity cards (match the stat cards); top/bottom spacing equal */
.opp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 0 0 80px; }
.opp-card { background: #121212; border: 1px solid rgba(216,180,65,.16); border-radius: var(--radius); padding: 26px 20px; text-align: center; font-weight: 600; color: #fff; cursor: pointer; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.opp-card:hover { transform: translateY(-5px); border-color: rgba(216,180,65,.42); box-shadow: var(--shadow); }
.opp-card span { display: block; font-size: 0.74rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-top: 6px; }

/* ============================================================
   Lead / candidate forms
   ============================================================ */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.dark-band .form-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); box-shadow: none; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.78rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--bg-cool); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(175,138,15,.15); background: #fff; }
.field input[type="file"] { padding: 11px; background: #fff; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 12px; }
.form-success { display: none; padding: 16px 18px; border-radius: var(--radius-sm); background: var(--gold-soft); border: 1px solid var(--gold); color: var(--taupe-dark); font-size: 0.92rem; margin-bottom: 16px; }
.form-success.show { display: block; }
.form-error { display: none; padding: 14px 18px; border-radius: var(--radius-sm); background: #fbece9; border: 1px solid #e0b4a8; color: #a4452a; font-size: 0.92rem; margin-bottom: 16px; }
.form-error.show { display: block; }
/* Honeypot — visually hidden, off-screen, not focusable */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* ============================================================
   Featured talent cards
   ============================================================ */
.talent { background: #000; color: var(--on-dark); }
.talent .section-title { color: #fff; }
.talent .lead { color: var(--on-dark-mut); }
.talent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.talent-card { background: linear-gradient(165deg, #2d2d30 0%, #1c1c1f 55%, #161618 100%); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 32px 30px; text-align: center; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.talent-card:hover { transform: translateY(-8px); border-color: rgba(216,180,65,.5); box-shadow: var(--shadow-gold); }
.talent-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--taupe-dark)); display: grid; place-items: center; color: #1a1407; margin: 0 auto 18px; }
.talent-avatar svg { width: 30px; height: 30px; }
.talent-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 4px; }
.talent-role { color: var(--gold-light); font-size: 0.82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.talent-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.talent-tags span { font-size: 0.78rem; padding: 6px 12px; border-radius: 999px; background: rgba(216,180,65,.1); border: 1px solid rgba(216,180,65,.24); color: var(--on-dark-mut); }

/* ============================================================
   Process timeline
   ============================================================ */
.process { background: var(--bg-warm); }
.timeline-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); margin-top: 50px; }
.timeline-col h3 { font-size: 1.4rem; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.timeline-col h3 .badge { font-family: var(--font-body); font-size: 0.7rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: var(--gold-soft); color: var(--gold-dark); }
/* Modern step cards — number on top, centered, gold arrow between steps */
.steps { list-style: none; display: flex; flex-direction: column; gap: 0; }
.steps li {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: #121212; border: 1px solid rgba(216,180,65,.16); border-radius: var(--radius);
  padding: 26px 24px; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
}
.steps li:hover { transform: translateY(-4px); border-color: rgba(216,180,65,.42); box-shadow: var(--shadow); }
.steps li:not(:last-child) { margin-bottom: 46px; }
.steps li .num {
  font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; line-height: 1;
  color: var(--gold-light); margin-bottom: 8px;
}
.steps li h4 { font-family: var(--font-body); font-weight: 600; font-size: 1.08rem; margin: 0 0 4px; color: #fff; }
.steps li p { font-size: 0.9rem; color: var(--on-dark-mut); margin: 0; }
/* gold down-arrow connector beneath each step (except the last) */
.steps li:not(:last-child)::after {
  content: ''; position: absolute; left: 50%; bottom: -32px;
  width: 13px; height: 13px; border-right: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

/* ============================================================
   Why choose — 3 columns
   ============================================================ */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 50px; }
.why-card { padding: 36px 30px; border-radius: var(--radius); border: 1px solid rgba(216,180,65,.16); background: #121212; text-align: center; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(216,180,65,.42); }
.why-ico { width: 64px; height: 64px; border-radius: 18px; background: rgba(216,180,65,.14); color: var(--gold-light); display: grid; place-items: center; margin: 0 auto 20px; }
.why-ico svg { width: 30px; height: 30px; }
.why-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #fff; }
.why-card p { color: var(--on-dark-mut); font-size: 0.95rem; }

/* ============================================================
   Testimonials
   ============================================================ */
.testi { background: var(--bg-warm); }
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.testi-card { background: #121212; border: 1px solid rgba(216,180,65,.16); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s, border-color .4s; }
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(216,180,65,.42); }
.testi-card .quote { font-family: var(--font-head); font-size: 3.4rem; line-height: 1; color: var(--gold-light); opacity: .4; position: absolute; top: 16px; right: 24px; }
.testi-card p { font-size: 1.06rem; color: var(--on-dark); font-style: italic; margin-bottom: 22px; position: relative; z-index: 1; }
.testi-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-by .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--taupe-dark)); display: grid; place-items: center; color: #1a1407; font-weight: 700; }
.testi-by b { display: block; font-size: 0.95rem; color: #fff; }
.testi-by span { font-size: 0.82rem; color: var(--on-dark-mut); }

/* ============================================================
   Final CTA — dark band
   ============================================================ */
.final-cta { background: #000; color: var(--on-dark); text-align: center; }
.final-cta h2 { color: #fff; font-size: clamp(2.2rem, 1.6rem + 3vw, 3.8rem); margin-bottom: 18px; }
.final-cta p { color: var(--on-dark-mut); max-width: 660px; margin: 0 auto 36px; font-size: 1.1rem; }
.final-cta .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Contact
   ============================================================ */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); }
.contact-info { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.contact-row { display: flex; align-items: center; gap: 14px; }
.contact-row .ci { width: 46px; height: 46px; border-radius: 13px; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; }
.contact-row .ci svg { width: 22px; height: 22px; }
.contact-row b { display: block; font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-row a, .contact-row span { font-size: 1.02rem; color: var(--ink); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #000; color: var(--on-dark-mut); padding: 56px 0 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand-word b { color: #fff; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; transition: color .25s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 0.84rem; }

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .stats-grid, .opp-grid { grid-template-columns: repeat(2, 1fr); }
  .talent-grid, .why-grid { grid-template-columns: 1fr; }
  .why-grid { max-width: 460px; margin-inline: auto; }
}
@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links { display: flex; position: absolute; top: 76px; inset-inline: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 22px 16px; box-shadow: var(--shadow); }
  .nav.open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
  .hero { grid-template-columns: 1fr; }
  .hero-divider, .hero-seal { display: none; }
  .grid-2, .timeline-cols, .testi-grid, .contact-grid, .candidates .grid-2 { grid-template-columns: 1fr; }
  .grid-2 { gap: 36px; }
}
@media (max-width: 540px) {
  .stats-grid, .opp-grid, .form-row { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; transition: none; }
}
