:root {
  --forest:   #022819;
  --forest2:  #0a3320;
  --amber:    #CCAA85;
  --amber2:   #b89060;
  --fern:     #8AAF5A;
  --fern2:    #7a9e4c;
  --honey:    #E8C882;
  --offwhite: #F3EEE6;
  --cream:    #F7F4EE;
  --white:    #ffffff;
  --ink:      #111111;
  --mid:      #666666;
  --light:    #f0ece4;
  --nav-h:    72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  height: var(--nav-h);
  border-bottom: 1px solid rgba(2,40,25,0.07);
  box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 50px; width: auto; display: block; }

.nav-menu {
  display: flex; align-items: center; gap: 0;
  list-style: none; height: 100%;
}
.nav-menu > li { position: relative; height: 100%; display: flex; align-items: center; }
.nav-menu > li > a {
  display: flex; align-items: center;
  padding: 0 20px; height: 100%;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--forest); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-menu > li > a:hover { color: var(--amber2); border-bottom-color: var(--amber); }
.nav-menu > li > a.active { color: var(--amber2); border-bottom-color: var(--amber); }

.nav-cta {
  background: var(--amber) !important;
  color: var(--forest) !important;
  padding: 0 28px !important;
  height: 40px !important; border-radius: 2px;
  font-weight: 700 !important; font-size: 12px !important;
  letter-spacing: 0.1em !important; text-transform: uppercase !important;
  border-bottom: none !important; margin-left: 16px;
  display: flex !important; align-items: center !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--honey) !important; }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 210px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-top: 3px solid var(--amber);
  opacity: 0; visibility: hidden;
  transform: translateY(4px);
  transition: all 0.18s ease; z-index: 999;
}
.nav-menu > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown li { list-style: none; }
.nav-dropdown li a {
  display: block; padding: 13px 20px;
  font-size: 13px; color: var(--forest); text-decoration: none;
  font-weight: 400; letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(2,40,25,0.06);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown li a:hover { background: var(--offwhite); color: var(--amber2); }

.mobile-btn {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.mobile-btn span { display: block; width: 24px; height: 2px; background: var(--forest); }

/* ══════════════════════════════════════════
   PAGE SYSTEM
══════════════════════════════════════════ */
.page { display: none; }
.page.active { display: block; }


.hero {
  position: relative; height: 100vh; min-height: 640px;
  overflow: hidden; display: flex; align-items: center;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/Hero-BG.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(2,40,25,0.90) 0%,
    rgba(2,40,25,0.75) 50%,
    rgba(2,40,25,0.35) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1320px; margin: 0 auto;
  padding: 0 48px; width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--honey);
  margin-bottom: 24px;
  animation: up 0.9s ease both;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--amber); flex-shrink: 0; }
.hero h1 {
  font-size: clamp(48px, 5.6vw, 80px); font-weight: 700;
  color: #fff; line-height: 1.04; letter-spacing: -0.02em;
  max-width: 620px; margin-bottom: 22px;
  animation: up 0.9s 0.1s ease both;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--honey); }
.hero-sub {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.65);
  line-height: 1.85; max-width: 440px; margin-bottom: 44px;
  animation: up 0.9s 0.18s ease both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: up 0.9s 0.26s ease both;
}


.stats-bar {
  background: var(--forest);
  padding: 36px 0;
  position: relative; z-index: 1;
}
.stats-bar-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 40px; font-weight: 700; color: var(--honey);
  line-height: 1; letter-spacing: -0.02em;
}
.stat-lbl {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-top: 8px; display: block;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 13px 28px; text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.2s; border-radius: 1px;
  font-family: 'Barlow', sans-serif;
}
.btn-white-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-amber { background: var(--amber); color: var(--forest); }
.btn-amber:hover { background: var(--honey); }
.btn-forest-outline { background: transparent; color: var(--forest); border: 1px solid rgba(2,40,25,0.35); }
.btn-forest-outline:hover { background: var(--forest); color: #fff; border-color: var(--forest); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest2); }
.btn-fern { background: var(--fern); color: #fff; }
.btn-fern:hover { background: var(--fern2); }

/* ══════════════════════════════════════════
   SHARED
══════════════════════════════════════════ */
.eyebrow {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--amber2); margin-bottom: 16px;
}
.eyebrow.on-dark { color: var(--honey); }
.eyebrow.center { text-align: center; }
.section-rule { width: 40px; height: 2px; background: var(--amber); margin: 14px 0 20px; }
.section-rule.c { margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════════
   SPLIT SECTIONS  
══════════════════════════════════════════ */
.split-wrap {
  max-width: 1320px; margin: 0 auto;
  padding: 96px 48px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.split-wrap.reverse { direction: rtl; }
.split-wrap.reverse > * { direction: ltr; }

/* Double-frame photo effect */
.photo-frame {
  position: relative;
  padding-bottom: 28px; padding-right: 28px;
}
.photo-frame .img-wrap {
  position: relative; z-index: 2;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.photo-frame .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.photo-frame .frame-border {
  position: absolute; bottom: 0; right: 0;
  width: calc(100% - 24px); height: calc(100% - 24px);
  border: 2px solid var(--forest); z-index: 1;
}

/* Right-side frame variant (photo on right, border goes bottom-left) */
.photo-frame.right-frame {
  padding-bottom: 28px; padding-right: 0; padding-left: 28px;
}
.photo-frame.right-frame .frame-border {
  bottom: 0; right: auto; left: 0;
}

.split-text {}
.split-text h2 {
  font-size: clamp(32px, 3vw, 44px); font-weight: 700;
  color: var(--forest); line-height: 1.12; letter-spacing: -0.01em;
  margin-bottom: 0;
}
.split-text h2 em {
  font-style: italic; font-weight: 300; color: var(--amber2);
}
.split-text p {
  font-size: 15px; font-weight: 300; color: var(--mid);
  line-height: 1.9; margin-bottom: 0; margin-top: 16px;
}
.split-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ══════════════════════════════════════════
   PROCESS CARDS  
══════════════════════════════════════════ */
.process-section {
  background: var(--offwhite); padding: 88px 48px;
}
.process-inner { max-width: 1320px; margin: 0 auto; }
.process-head { margin-bottom: 48px; }
.process-head h2 {
  font-size: clamp(30px, 3vw, 42px); font-weight: 700;
  color: var(--forest); line-height: 1.1; letter-spacing: -0.01em;
  margin-top: 8px;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 16px;
}
.process-card {
  background: #fff; padding: 32px 24px 28px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.process-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(2,40,25,0.1); }
.process-num {
  font-size: 64px; font-weight: 700;
  color: rgba(2,40,25,0.07); line-height: 1; margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.process-card h4 {
  font-size: 14px; font-weight: 700; color: var(--forest);
  margin-bottom: 10px; letter-spacing: 0.01em;
}
.process-card p {
  font-size: 12px; font-weight: 300; color: var(--mid);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   TESTIMONIALS 
══════════════════════════════════════════ */
.testi-section {
  background: #fff; padding: 96px 48px;
}
.testi-inner { max-width: 1320px; margin: 0 auto; }
.testi-head { text-align: center; margin-bottom: 48px; }
.testi-head h2 {
  font-size: clamp(28px, 3vw, 40px); font-weight: 700;
  color: var(--forest); letter-spacing: -0.01em; margin-top: 8px;
}
.testi-carousel { position: relative; overflow: hidden; }
.testi-track { display: flex; transition: transform 0.5s ease; }
.testi-slide { min-width: 100%; }
.testi-card {
  background: var(--fern); border-radius: 8px;
  padding: 52px 64px; max-width: 760px; margin: 0 auto;
  text-align: center;
}
.testi-quote {
  font-size: 18px; font-style: italic; font-weight: 300;
  color: #fff; line-height: 1.8; margin-bottom: 28px;
}
.testi-name {
  font-size: 15px; font-weight: 700; color: #fff;
  letter-spacing: 0.02em;
}
.testi-role {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.75);
  margin-top: 4px;
}
/* Dots */
.testi-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(2,40,25,0.15); cursor: pointer; transition: background 0.2s;
  border: none;
}
.dot.active { background: var(--fern); }

/* ══════════════════════════════════════════
   FOOTER  
══════════════════════════════════════════ */
footer { background: var(--forest); }
.footer-main {
  max-width: 1320px; margin: 0 auto;
  padding: 72px 48px 56px;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 0.8fr; gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand {}
.footer-brand-logo img {
  height: 36px; width: auto; display: block; margin-bottom: 20px;opacity: 0.6;
  /* invert to white */
  filter: brightness(0) invert(1);
}
.footer-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.85;
  max-width: 280px;
}
.footer-col {}
.footer-col-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 20px; display: block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.5); text-decoration: none;
  transition: color 0.2s; cursor: pointer;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
/* Social buttons — Figma: square outlined buttons with letters */
.social-btns { display: flex; gap: 10px; margin-top: 4px; }
.social-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: all 0.2s; cursor: pointer;
  font-family: 'Barlow', sans-serif;
}
.social-btn:hover { background: var(--amber); color: var(--forest); border-color: var(--amber); }
.footer-bottom {
  max-width: 1320px; margin: 0 auto; padding: 20px 48px;
}
.footer-bottom p {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.22); text-align: center;
}

/* ══════════════════════════════════════════
   INNER PAGE HERO
══════════════════════════════════════════ */
.page-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 72px) 48px 72px;
  background: var(--forest);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(2,40,25,0.92) 40%, rgba(2,40,25,0.55) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 1320px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(36px, 4vw, 58px); font-weight: 700;
  color: #fff; line-height: 1.1; margin-top: 12px;
}
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--honey); }
.page-hero p {
  font-size: 17px; font-weight: 300; color: rgba(255,255,255,0.6);
  max-width: 500px; margin-top: 16px; line-height: 1.8;
}

/* ══════════════════════════════════════════
   JOB SEARCH & LISTINGS
══════════════════════════════════════════ */
.job-search-band {
  background: var(--offwhite); padding: 32px 48px;
  border-bottom: 1px solid rgba(2,40,25,0.08);
}
.job-search-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.job-search-inner input,
.job-search-inner select {
  flex: 1; min-width: 160px;
  border: 1px solid rgba(2,40,25,0.12); padding: 12px 16px;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  color: var(--forest); background: #fff; outline: none;
}
.job-search-inner input:focus,
.job-search-inner select:focus { border-color: var(--fern); }

.jobs-body {
  max-width: 1320px; margin: 0 auto; padding: 48px 48px 80px;
  display: grid; grid-template-columns: 260px 1fr; gap: 36px;
}
.sidebar {
  background: #fff; padding: 28px;
  border-top: 3px solid var(--amber); height: fit-content;
}
.sidebar-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--forest);
  padding-bottom: 14px; border-bottom: 1px solid rgba(2,40,25,0.08);
  margin-bottom: 22px;
}
.filter-g { margin-bottom: 22px; }
.filter-g label {
  display: block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 8px;
}
.filter-g select, .filter-g input {
  width: 100%; border: 1px solid rgba(2,40,25,0.12); padding: 10px 14px;
  font-family: 'Barlow', sans-serif; font-size: 13px;
  color: var(--forest); background: var(--offwhite); outline: none;
}
.filter-checks { display: flex; flex-direction: column; gap: 9px; }
.filter-checks label {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--mid); cursor: pointer;
  text-transform: none; letter-spacing: 0; font-weight: 300;
}
.filter-checks input[type=checkbox] { width: 14px; height: 14px; accent-color: var(--forest); }

.jobs-list { display: flex; flex-direction: column; gap: 12px; }
.job-top-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px; flex-wrap: wrap; gap: 10px;
}
.job-count { font-size: 14px; color: var(--mid); font-weight: 300; }
.job-count strong { color: var(--forest); font-weight: 700; }
.sort-sel {
  border: 1px solid rgba(2,40,25,0.12); padding: 8px 14px;
  font-family: 'Barlow', sans-serif; font-size: 13px;
  color: var(--forest); background: var(--offwhite); outline: none;
}
.job-card {
  background: #fff; padding: 22px 26px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 20px; align-items: start;
  border: 1px solid rgba(2,40,25,0.08);
  border-left: 4px solid transparent;
  transition: all 0.2s; cursor: pointer;
}
.job-card:hover { border-left-color: var(--amber); box-shadow: 0 4px 20px rgba(2,40,25,0.09); }
.jt { font-size: 17px; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.jtags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 9px; }
.jtag {
  padding: 2px 10px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  background: var(--offwhite); color: var(--forest);
  border: 1px solid rgba(2,40,25,0.1);
}
.jtag.g { background: rgba(138,175,90,0.12); color: #2d6010; border-color: rgba(138,175,90,0.3); }
.jd { font-size: 13px; color: var(--mid); line-height: 1.7; font-weight: 300; }
.jr { text-align: right; flex-shrink: 0; }
.js { font-size: 18px; font-weight: 700; color: var(--forest); }
.jp { font-size: 11px; color: var(--mid); margin-top: 4px; }
.ja {
  display: inline-block; margin-top: 14px;
  background: var(--forest); color: #fff;
  padding: 9px 18px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s;
}
.job-card:hover .ja { background: var(--amber2); }

/* ══════════════════════════════════════════
   COMPLIANCE CARDS (employers page)
══════════════════════════════════════════ */
.comp-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px;
}
.comp-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 32px 28px; border-top: 3px solid var(--amber);
}
.comp-card h4 {
  font-size: 15px; font-weight: 700; color: var(--honey); margin-bottom: 10px;
}
.comp-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; font-weight: 300; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-wrap {
  max-width: 1320px; margin: 0 auto; padding: 88px 48px;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start;
}
.contact-detail { margin-bottom: 30px; }
.contact-detail h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber2); margin-bottom: 7px;
}
.contact-detail p { font-size: 15px; color: var(--mid); line-height: 1.7; font-weight: 300; }
.contact-form { background: #fff; padding: 44px; border-top: 4px solid var(--amber); }
.contact-form h3 { font-size: 24px; font-weight: 700; color: var(--forest); margin-bottom: 26px; }
.fg { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ff { grid-column: 1/-1; }
.fl { display: flex; flex-direction: column; gap: 6px; }
.fl label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mid); }
.fl input, .fl select, .fl textarea {
  border: 1px solid rgba(2,40,25,0.14); padding: 11px 15px;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  color: var(--forest); background: var(--offwhite); outline: none;
  transition: border-color 0.2s;
}
.fl input:focus, .fl select:focus, .fl textarea:focus { border-color: var(--fern); }
.fl textarea { min-height: 88px; resize: vertical; }
.file-drop {
  border: 2px dashed rgba(2,40,25,0.14); padding: 24px;
  text-align: center; cursor: pointer; background: #fff; transition: border-color 0.2s;
}
.file-drop:hover { border-color: var(--fern); }
.file-drop p { font-size: 14px; color: var(--mid); margin-bottom: 4px; }
.file-drop small { font-size: 11px; color: var(--mid); }
.fnote {
  font-size: 11px; color: var(--mid); line-height: 1.6; font-weight: 300;
  border-top: 1px solid rgba(2,40,25,0.07); margin-top: 16px; padding-top: 14px;
}

/* ══════════════════════════════════════════
   MODAL
══════════════════════════════════════════ */
.modal-ov {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(2,40,25,0.8); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-ov.open { display: flex; }
.modal {
  background: #fff; max-width: 660px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.4);
  animation: mIn 0.24s ease;
}
@keyframes mIn { from { opacity:0; transform: translateY(12px); } to { opacity:1; } }
.mh {
  background: var(--forest); padding: 26px 34px;
  position: sticky; top: 0; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.mh h3 { font-size: 20px; font-weight: 700; color: #fff; }
.mh p { font-size: 12px; color: var(--honey); margin-top: 3px; }
.mclose {
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: rgba(255,255,255,0.4); padding: 2px 6px; transition: color 0.2s;
}
.mclose:hover { color: #fff; }
.mb { padding: 32px; }
.success {
  display: none; background: var(--forest); padding: 22px 26px;
  text-align: center; margin-top: 16px;
}
.success.show { display: block; }
.success h4 { font-size: 20px; font-weight: 700; color: var(--honey); margin-bottom: 6px; }
.success p { font-size: 13px; color: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes up { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: none; } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1080px) {
  .nav-menu { display: none; }
  .mobile-btn { display: flex; }
  .stats-bar-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .stat-item { border-right: none; }
  .split-wrap { grid-template-columns: 1fr; gap: 48px; padding: 64px 32px; }
  .split-wrap.reverse { direction: ltr; }
  .process-grid { grid-template-columns: repeat(3,1fr); }
  .testi-card { padding: 40px 36px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .jobs-body { grid-template-columns: 1fr; padding: 36px 24px; }
  .contact-wrap { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:640px) {
  .nav-inner { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .stats-bar { padding: 36px 20px; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .split-wrap { padding: 52px 20px; gap: 36px; }
  .process-section { padding: 60px 20px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .testi-section { padding: 60px 20px; }
  .testi-card { padding: 36px 24px; }
  .footer-main { grid-template-columns: 1fr; padding: 48px 20px 36px; }
  .footer-bottom { padding: 16px 20px; }
  .contact-wrap { padding: 52px 20px; }
  .contact-form { padding: 28px 20px; }
  .fg { grid-template-columns: 1fr; }
  .job-search-band { padding: 24px 20px; }
  .jobs-body { padding: 28px 16px; }
  .job-card { grid-template-columns: 1fr; }
  .jr { text-align: left; }
  .comp-grid { grid-template-columns: 1fr; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 20px 52px; }
}
/* ══════════════════════════════════════════
   NEWS PAGE
══════════════════════════════════════════ */

/* Filter bar */
.news-filter-bar {
  background: #fff;
  border-bottom: 1px solid rgba(2,40,25,0.08);
}
.news-filter-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 48px;
  display: flex; gap: 0; overflow-x: auto;
}
.news-cat-btn {
  padding: 18px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: none; border: none;
  border-bottom: 3px solid transparent;
  color: var(--mid); cursor: pointer;
  transition: all 0.15s; white-space: nowrap;
}
.news-cat-btn:hover { color: var(--forest); }
.news-cat-btn.active { color: var(--forest); border-bottom-color: var(--amber); }

/* Featured post */
.news-featured-wrap {
  background: var(--offwhite);
  padding: 64px 48px 0;
}
.news-featured-wrap > div { max-width: 1320px; margin: 0 auto; }

.news-featured-card {
  display: grid; grid-template-columns: 1.2fr 1fr;
  background: #fff; overflow: hidden;
  cursor: pointer; transition: box-shadow 0.25s;
}
.news-featured-card:hover { box-shadow: 0 8px 40px rgba(2,40,25,0.12); }

.news-featured-img { height: 420px; overflow: hidden; }
.news-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.5s ease;
}
.news-featured-card:hover .news-featured-img img { transform: scale(1.04); }

.news-featured-body {
  padding: 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.news-featured-tag {
  display: inline-block;
  background: var(--amber); color: var(--forest);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 12px; margin-bottom: 20px;
  align-self: flex-start;
}
.news-featured-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700; color: var(--forest);
  line-height: 1.15; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.news-featured-excerpt {
  font-size: 15px; color: var(--mid);
  line-height: 1.85; font-weight: 300; margin-bottom: 28px;
}
.news-featured-meta { font-size: 12px; color: var(--mid); }
.news-featured-read {
  display: inline-block; margin-top: 24px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber2);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
}

/* Post grid */
.news-grid-wrap {
  background: var(--offwhite);
  padding: 48px 48px 80px;
}
.news-grid {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-empty {
  max-width: 1320px; margin: 0 auto;
  text-align: center; padding: 64px 24px; background: #fff;
  font-size: 16px; color: var(--mid);
}

/* Post card */
.news-card {
  background: #fff; overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(2,40,25,0.1); }

.news-card-img { height: 210px; overflow: hidden; }
.news-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.4s ease;
}
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-img-placeholder {
  height: 210px; background: var(--forest);
}

.news-card-body {
  padding: 28px 24px 24px;
  flex: 1; display: flex; flex-direction: column;
}
.news-card-cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber2); margin-bottom: 10px;
}
.news-card-title {
  font-family: 'Barlow', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--forest); line-height: 1.25; margin-bottom: 10px;
}
.news-card-excerpt {
  font-size: 13px; color: var(--mid);
  line-height: 1.75; font-weight: 300; flex: 1;
}
.news-card-meta {
  font-size: 11px; color: var(--mid);
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(2,40,25,0.07);
  display: flex; justify-content: space-between; align-items: center;
}
.news-read-more {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber2);
}

/* Newsletter signup */
.news-signup-band {
  background: var(--forest);
  padding: 80px 48px;
}
.news-signup-inner {
  max-width: 580px; margin: 0 auto; text-align: center;
}
.news-signup-inner h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  color: #fff; line-height: 1.12; margin-bottom: 14px;
}
.news-signup-inner h2 em {
  font-style: italic; font-weight: 300; color: var(--honey);
}
.news-signup-inner p {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.8; margin-bottom: 28px; font-weight: 300;
}
#news-signup-ok {
  font-size: 14px; color: var(--honey); margin-top: 14px;
}
.news-signup-form {
  display: flex; max-width: 440px; margin: 0 auto;
}
.news-signup-form input {
  flex: 1; border: none; padding: 14px 18px;
  font-family: 'Barlow', sans-serif; font-size: 14px;
  outline: none; min-width: 0;
}
.news-signup-note {
  font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 12px;
}

/* Article reader modal */
.article-modal-box { max-width: 800px !important; }

.article-hero { height: 320px; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-hero-placeholder { height: 120px; background: var(--forest); }

.article-body-wrap { padding: 40px 44px 44px; }
.article-cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber2); margin-bottom: 10px;
}
.article-title {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700; color: var(--forest);
  line-height: 1.15; margin-bottom: 10px;
}
.article-meta {
  font-size: 12px; color: var(--mid);
  margin-bottom: 24px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(2,40,25,0.08);
}
.article-content {
  font-size: 15px; color: var(--mid);
  line-height: 1.9; font-weight: 300;
  white-space: pre-line;
}
.article-footer {
  padding: 24px 44px;
  border-top: 1px solid rgba(2,40,25,0.08);
  background: var(--offwhite);
  display: flex; gap: 16px;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.article-footer p { font-size: 13px; color: var(--mid); font-weight: 300; }
.article-footer-btns { display: flex; gap: 10px; }

/* News responsive */
@media(max-width: 1080px) {
  .news-featured-card { grid-template-columns: 1fr; }
  .news-featured-img { height: 260px; }
  .news-featured-body { padding: 36px 32px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-filter-inner { padding: 0 20px; }
  .news-featured-wrap { padding: 48px 20px 0; }
  .news-grid-wrap { padding: 36px 20px 60px; }
  .news-signup-band { padding: 60px 20px; }
}
@media(max-width: 640px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-signup-form { flex-direction: column; }
  .news-signup-form input { width: 100%; }
  .article-body-wrap { padding: 28px 20px; }
  .article-footer { padding: 20px; flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════════
   HERO — FLOATING SHAPES
   Slow-drifting organic shapes layered over
   the hero image for depth and movement
══════════════════════════════════════════ */
.hero-shapes { position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:1; }

.hs {
  position: absolute;
  border-radius: 50%;
  background: var(--amber);
  opacity: 0.06;
}
/* Shape 1 — large, top-right */
.hs1 {
  width: 520px; height: 520px;
  top: -160px; right: -80px;
  animation: hs-drift1 22s ease-in-out infinite;
}
/* Shape 2 — medium, bottom-left */
.hs2 {
  width: 320px; height: 320px;
  bottom: -60px; left: 8%;
  background: var(--fern);
  opacity: 0.07;
  animation: hs-drift2 28s ease-in-out infinite;
}
/* Shape 3 — small accent, mid-right */
.hs3 {
  width: 180px; height: 180px;
  top: 38%; right: 18%;
  background: var(--honey);
  opacity: 0.05;
  animation: hs-drift3 18s ease-in-out infinite;
}
/* Shape 4 — tiny, top-left */
.hs4 {
  width: 90px; height: 90px;
  top: 22%; left: 5%;
  background: var(--amber);
  opacity: 0.08;
  animation: hs-drift2 14s ease-in-out infinite reverse;
}

@keyframes hs-drift1 {
  0%,100% { transform: translate(0, 0) scale(1); }
  30%      { transform: translate(-28px, 22px) scale(1.04); }
  60%      { transform: translate(18px, -16px) scale(0.97); }
}
@keyframes hs-drift2 {
  0%,100% { transform: translate(0, 0) rotate(0deg); }
  40%      { transform: translate(22px, -28px) rotate(8deg); }
  70%      { transform: translate(-14px, 18px) rotate(-5deg); }
}
@keyframes hs-drift3 {
  0%,100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-20px, 30px) scale(1.08); }
}

/* Hero bg needs position:relative to clip the shapes */
.hero { overflow: hidden; }

/* ── Split section image drift ──────────────────
   Very slow pan gives the still photos life
──────────────────────────────────────────────── */
.img-wrap {
  overflow: hidden;
}
.img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  animation: img-drift 28s ease-in-out infinite;
  will-change: transform;
}
@keyframes img-drift {
  0%,100% { transform: scale(1.06) translate(0px, 0px); }
  33%      { transform: scale(1.08) translate(-8px, -5px); }
  66%      { transform: scale(1.06) translate(6px, 4px); }
}

/* ══════════════════════════════════════════
   VALUES SECTION
══════════════════════════════════════════ */
.values-section {
  background: #fff;
  padding: 88px 48px;
}
.values-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.values-head {
  text-align: center;
  margin-bottom: 56px;
}
.values-head h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin: 10px 0 16px;
}
.values-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--mid);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 36px 32px;
  border: 1px solid rgba(2,40,25,0.08);
  border-top: 4px solid var(--amber);
  transition: transform 0.25s, box-shadow 0.25s, border-top-color 0.25s;
  background: #fff;
}
.value-card:nth-child(4),
.value-card:nth-child(5),
.value-card:nth-child(6) {
  border-top-color: var(--fern);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(2,40,25,0.09);
}
.value-icon {
  width: 52px; height: 52px;
  color: var(--forest);
  margin-bottom: 20px;
  opacity: 0.7;
}
.value-icon svg {
  width: 100%; height: 100%;
}
.value-card h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
}

/* ══════════════════════════════════════════
   JOB CARD — redesigned without salary column
══════════════════════════════════════════ */
.job-card {
  background: #fff;
  padding: 24px 28px;
  border: 1px solid rgba(2,40,25,0.08);
  border-left: 4px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
  display: block; /* override old grid */
}
.job-card:hover {
  border-left-color: var(--amber);
  box-shadow: 0 4px 20px rgba(2,40,25,0.09);
}
.jcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(2,40,25,0.06);
}
.jposted {
  font-size: 12px;
  color: var(--mid);
  font-weight: 300;
}

/* ── Values responsive ── */
@media(max-width: 1080px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
  .values-section { padding: 64px 32px; }
}
@media(max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .values-section { padding: 52px 20px; }
  .hs1 { width: 280px; height: 280px; }
  .hs2 { width: 180px; height: 180px; }
}
/* prose-section removed — intros now use split-wrap layout */

/* ══════════════════════════════════════════
   DARK CONTENT BAND  — forest green 2-col
══════════════════════════════════════════ */
.dark-content-band {
  background: var(--forest);
  padding: 88px 48px;
}
.dark-band-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.dark-band-text h2 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 10px 0 16px;
}
.dark-band-text h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--honey);
}

.dark-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin-top: 8px;
}
.dark-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dark-bullet-list li:last-child { border-bottom: none; }
.dark-bullet-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ══════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════ */
.cta-band {
  background: var(--offwhite);
  border-top: 1px solid rgba(2,40,25,0.08);
  padding: 56px 48px;
}
.cta-band-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band-inner h3 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.cta-band-inner p {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
}
.cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   SERVICE FEATURE BOX  (support page box 1)
══════════════════════════════════════════ */
.service-feature-box {
  background: var(--forest);
  padding: 44px 52px;
  display: flex;
  align-items: flex-start;
  gap: 36px;
  margin-bottom: 28px;
  border-left: 6px solid var(--amber);
}
.sfb-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  color: var(--honey);
  opacity: 0.8;
}
.sfb-icon svg { width: 100%; height: 100%; }
.service-feature-box h3 {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--honey);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-feature-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   SERVICE BOXES GRID  (support page boxes 2+3)
══════════════════════════════════════════ */
.service-boxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.service-box {
  background: #fff;
  padding: 40px 36px;
  border-top: 4px solid var(--amber);
}
.service-box:last-child { border-top-color: var(--fern); }
.service-box-num {
  font-size: 52px;
  font-weight: 700;
  color: rgba(2,40,25,0.06);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.service-box h3 {
  font-family: 'Barlow', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.service-box-rule {
  width: 36px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 18px;
}
.service-box p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 12px;
}
.service-box p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════
   RESPONSIVE — new sections
══════════════════════════════════════════ */
@media(max-width: 1080px) {
  .dark-band-inner        { grid-template-columns: 1fr; gap: 40px; }
  .service-boxes-grid     { grid-template-columns: 1fr; }
  .dark-content-band      { padding: 64px 32px; }
  .cta-band               { padding: 44px 32px; }
  .cta-band-inner         { flex-direction: column; align-items: flex-start; }
}
@media(max-width: 640px) {
  .dark-content-band      { padding: 52px 20px; }
  .cta-band               { padding: 36px 20px; }
  .service-feature-box    { padding: 28px 24px; flex-direction: column; gap: 20px; }
  .service-box            { padding: 28px 24px; }
  #page-careers > div:nth-child(5) > div > div { grid-template-columns: 1fr; }
}