/* ═══════════════════════════════════════════════════
   ASSIST RECRUITING — GLOBAL STYLESHEET
   Brand: #F5923E orange | #0F172A black | #F8FAFC gray
════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --orange:      #F5923E;
  --orange-dark: #E07B28;
  --black:       #0F172A;
  --gray-text:   #475569;
  --gray-mid:    #94A3B8;
  --gray-line:   #E2E8F0;
  --gray-bg:     #F8FAFC;
  --white:       #FFFFFF;
  --font-serif:  'Libre Baskerville', Georgia, serif;
  --font-sans:   'Source Sans 3', 'Helvetica Neue', sans-serif;
  --max-w:       1140px;
  --sv:          100px;
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px; line-height: 1.7;
  color: var(--black); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── LAYOUT ─────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.section { padding: var(--sv) 0; }
.section--gray { background: var(--gray-bg); }
.section--dark { background: var(--black); color: var(--white); }

/* ─── TYPOGRAPHY UTILITIES ───────────────────────── */
.label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px;
}
.label--white { color: var(--orange); }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 700; line-height: 1.2;
  color: var(--black); max-width: 640px;
}
.section-heading--white { color: var(--white); }
.section-heading--center { margin-left: auto; margin-right: auto; text-align: center; max-width: 640px; }

.section-subtext {
  margin-top: 20px; font-size: 17px;
  color: var(--gray-text); max-width: 560px; line-height: 1.75;
}
.section-subtext--center { text-align: center; margin-left: auto; margin-right: auto; }

.divider { width: 40px; height: 3px; background: var(--orange); margin: 28px 0; }
.divider--center { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-sans); font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 16px 32px; transition: background 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  font-size: 14px; font-weight: 600; color: var(--black);
  border-bottom: 1.5px solid var(--gray-line);
  padding-bottom: 2px; transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost--white { color: var(--white); border-color: #334155; }
.btn-ghost--white:hover { color: var(--orange); border-color: var(--orange); }

/* ─── NAVIGATION ─────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--gray-line);
}
.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 76px;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; gap: 1px; }
.nav__logo-top {
  font-family: var(--font-sans); font-size: 21px;
  font-weight: 700; color: var(--black); letter-spacing: -0.01em;
}
.nav__logo-bottom {
  font-family: var(--font-sans); font-size: 21px;
  font-weight: 700; color: var(--orange); letter-spacing: -0.01em;
}
.nav__logo-bottom span { color: var(--black); }
.nav__logo-byline {
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-mid); margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--black);
  letter-spacing: 0.01em; transition: color 0.2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--orange); }
.nav__cta {
  background: var(--orange) !important; color: var(--white) !important;
  padding: 10px 22px !important; font-size: 13px !important;
  font-weight: 700 !important; letter-spacing: 0.04em;
  text-transform: uppercase; transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--black); }

/* Mobile nav drawer */
.nav__mobile {
  display: none; position: fixed; top: 76px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray-line);
  padding: 24px 40px 32px; z-index: 99;
}
.nav__mobile.open { display: block; }
.nav__mobile ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.nav__mobile li { border-bottom: 1px solid var(--gray-line); }
.nav__mobile a {
  display: block; padding: 16px 0; font-size: 16px;
  font-weight: 500; color: var(--black);
}
.nav__mobile a.nav__cta {
  display: inline-block !important; margin-top: 20px;
  padding: 12px 28px !important;
}

/* ─── PAGE HERO (INNER PAGES) ─────────────────────── */
.page-hero {
  padding: 88px 0 80px;
  border-bottom: 1px solid var(--gray-line);
}
.page-hero__inner { max-width: 720px; }
.page-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 700; line-height: 1.1;
  color: var(--black); letter-spacing: -0.02em; margin-bottom: 24px;
}
.page-hero__headline em { font-style: italic; color: var(--orange); }
.page-hero__sub {
  font-size: 18px; color: var(--gray-text);
  line-height: 1.75; max-width: 580px;
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer { background: var(--black); border-top: 1px solid #1E293B; padding: 64px 0 40px; }
.footer__top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 52px;
  border-bottom: 1px solid #1E293B; margin-bottom: 36px;
}
.footer__logo-wrap { display: flex; flex-direction: column; line-height: 1; gap: 2px; margin-bottom: 8px; }
.footer__logo-a { font-family: var(--font-sans); font-size: 19px; font-weight: 700; color: var(--white); }
.footer__logo-b { font-family: var(--font-sans); font-size: 19px; font-weight: 700; color: var(--orange); }
.footer__logo-b span { color: var(--white); }
.footer__byline-sm { font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #4B5563; }
.footer__brand-desc { font-size: 14px; color: #6B7280; line-height: 1.7; margin-top: 18px; max-width: 280px; }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: #6B7280; transition: color 0.2s; }
.footer__links a:hover { color: var(--orange); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__copy { font-size: 13px; color: #4B5563; }
.footer__copy a { color: var(--orange); }

/* ─── COOKIE BANNER ──────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--black); border-top: 2px solid var(--orange);
  padding: 20px 40px; display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cookie-banner__text { font-size: 14px; color: #94A3B8; line-height: 1.6; max-width: 680px; }
.cookie-banner__text a { color: var(--orange); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--orange); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; padding: 10px 22px;
  border: none; cursor: pointer; transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--orange-dark); }
.cookie-btn-decline {
  background: none; color: #6B7280; font-size: 13px; font-weight: 500;
  padding: 10px 16px; border: 1px solid #334155; cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-btn-decline:hover { color: var(--white); border-color: #6B7280; }

/* ─── ANIMATIONS ─────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --sv: 72px; }
  .container { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .footer__top { grid-template-columns: 1fr; }
  .cookie-banner { padding: 20px 24px; }
}
