/* ================================================================
   PEAK TALENT CAPITAL SOLUTIONS — Design System
   Authority. Precision. Behavioral Intelligence.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

:root {
  --green:        #006747;
  --green-dark:   #004d34;
  --green-deep:   #002a1c;
  --green-bright: #4db88a;
  --green-light:  #eff8f4;
  --orange:       #FF4500;
  --orange-pale:  #fff4f0;
  --gold:         #C9A84C;
  --gold-pale:    #fdf8ee;
  --black:        #0A0A0A;
  --warm-dark:    #0e1a14;
  --section-dark: #111d17;
  --white:        #FFFFFF;
  --off-white:    #F8F8F6;
  --rule:         #e5e7eb;
  --mid:          #555555;
  --muted:        #888888;
  --section-alt:  #F4F4F2;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  letter-spacing: -.3px;
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: .85rem;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: block;
  flex-shrink: 0;
}
.eyebrow.grn { color: var(--green); }
.eyebrow.grn::before { background: var(--green); }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }
.eyebrow.wh { color: rgba(255,255,255,.6); }
.eyebrow.wh::before { background: rgba(255,255,255,.4); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -.5px;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--green); }
.section-title.wh { color: #fff; }
.section-title.wh em { color: var(--green-bright); }

.section-intro {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.sec { padding: 6rem 4rem; }
.sec-white { background: var(--white); }
.sec-alt { background: var(--section-alt); }
.sec-dark { background: var(--warm-dark); }
.sec-green { background: var(--green); }
.sec-deep { background: var(--green-deep); }
.sec-black { background: var(--black); }
.inner { max-width: 1200px; margin: 0 auto; }

@media(max-width:900px) {
  .sec { padding: 4rem 1.5rem; }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .2px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  white-space: nowrap;
}
.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }

.btn-orange {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-orange:hover { background: #e03d00; border-color: #e03d00; }

.btn-white {
  background: #fff;
  color: var(--black);
  border-color: #fff;
}
.btn-white:hover { background: var(--off-white); }

.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover { background: var(--green); color: #fff; }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--mid);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

.btn-sm { padding: 9px 18px; font-size: 12.5px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ── NAV ─────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
}
.nav-logo {
  width: 38px;
  height: 38px;
}
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
}
.nav-name span { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .3px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  padding: .5rem .85rem;
  border-radius: 3px;
  transition: color .15s;
}
.nav-links a:hover { color: #fff; }

.nav-cta {
  background: var(--green) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--green-dark) !important; }

.nav-apply {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 9px 20px !important;
  border-radius: 4px !important;
  font-weight: 700 !important;
}
.nav-apply:hover { background: #e03d00 !important; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .2s;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: rgba(10,10,10,.98);
  padding: 1.5rem;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-direction: column;
  gap: .35rem;
}
.mobile-nav a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  padding: .75rem 1rem;
  border-radius: 4px;
  display: block;
  transition: all .15s;
}
.mobile-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.mobile-nav.open { display: flex; }

@media(max-width:900px) {
  .site-nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: #080808;
  padding: 4rem 4rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-brand {}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: .5rem 0 .65rem;
}
.footer-name span { color: var(--orange); }
.footer-tagline {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-col-h {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--green-bright); }
.footer-bottom {
  background: #040404;
  padding: 1.1rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  border-top: 1px solid rgba(255,255,255,.04);
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,.3);
}
.footer-love {
  font-size: 11px;
  color: rgba(255,255,255,.2);
}
.footer-love span { color: var(--green-bright); }

@media(max-width:900px) {
  .site-footer { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem 2rem; gap: 2rem; }
  .footer-bottom { padding: 1rem 1.5rem; }
}
@media(max-width:600px) {
  .site-footer { grid-template-columns: 1fr; }
}
