* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0D1F35;
  --navy-mid: #162D4A;
  --orange: #C85A1E;
  --orange-light: #E85A29;
  --offwhite: #F5F3EF;
  --mid: #6B7280;
  --light-border: rgba(13,31,53,0.12);
  --font-head: 'DM Serif Display', serif;
  --font-body: 'DM Sans', sans-serif;
}
body { font-family: var(--font-body); color: var(--navy); background: var(--navy); }

/* ── NAV ── */
nav {
  background: var(--navy); padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; cursor: pointer; text-decoration: none; color: inherit;
}
.nav-logo-img {
  height: 34px; width: auto; display: block;
}
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-btn { position: relative; background: none; border: none; color: rgba(255,255,255,0.65); font-family: var(--font-body); font-size: 12px; font-weight: 500; padding: 7px 12px; border-radius: 4px; cursor: pointer; letter-spacing: 0.5px; text-transform: uppercase; transition: all 0.2s; white-space: nowrap; text-decoration: none; display: inline-block; }
.nav-btn:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-btn.active { color: white; }
.nav-btn.active:not(.careers-btn)::after {
  content: '';
  position: absolute;
  left: 12px; right: 12px;
  bottom: -19px;
  height: 3px;
  background: white;
  border-radius: 2px;
}
.nav-btn.careers-btn { background: var(--orange); color: white; margin-left: 8px; border-radius: 4px; }
.nav-btn.careers-btn:hover { background: var(--orange-light); }
.nav-btn.careers-btn.active { color: white; background: var(--orange-light); }

/* ── NAV — mobile toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0; z-index: 200;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: white; border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 350px; max-width: 85vw;
    background: var(--orange-light);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 90px 0 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -12px 0 32px rgba(0,0,0,0.3);
    z-index: 150;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links .nav-btn {
    color: white;
    text-align: left;
    padding: 16px 28px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
  }
  .nav-links .nav-btn:hover { background: rgba(255,255,255,0.12); color: white; }
  .nav-links .nav-btn.active:not(.careers-btn) {
    color: white;
    background: rgba(255,255,255,0.14);
    border-left: 8px solid var(--navy);
    border-bottom: none;
    padding-left: 20px;
  }
  .nav-links .nav-btn.active::after { content: none; }
  .nav-links .nav-btn.careers-btn {
    background: var(--navy);
    color: white;
    margin: 14px 20px 0;
    border-bottom: none;
    text-align: center;
    border-radius: 4px;
  }
  .nav-links .nav-btn.careers-btn:hover { background: var(--navy-mid); }
  .nav-links .nav-btn.careers-btn.active { background: var(--navy); color: white; }
}

/* ── PAGES ── */
.page { display: none; scroll-margin-top: 68px; }
.page:target { display: block; animation: pageFadeIn 300ms ease-out; }
#page-home { display: block; }
body:has(.page:not(#page-home):target) #page-home { display: none; }

@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ── HERO ── */
.hero { background: var(--navy); padding: 4.5rem 2.5rem 3.5rem; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 45%; background: linear-gradient(135deg, transparent 30%, rgba(200,90,30,0.06) 100%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.06); }
.hero-home {
  background:
    linear-gradient(90deg, rgba(13,31,53,0.84) 0%, rgba(13,31,53,0.72) 40%, rgba(13,31,53,0.5) 100%),
    url('../img/home-hero.jpg') center 60% / cover no-repeat;
}
.hero-sm { padding: 2.75rem 2.5rem; }
.hero-about { background: linear-gradient(rgba(13,31,53,0.82), rgba(13,31,53,0.82)), url('../img/banner-about.jpg') center / cover no-repeat; }
.hero-services { background: linear-gradient(rgba(13,31,53,0.82), rgba(13,31,53,0.82)), url('../img/banner-services.jpg') center / cover no-repeat; }
.hero-projects { background: linear-gradient(rgba(13,31,53,0.82), rgba(13,31,53,0.82)), url('../img/banner-projects.jpg') center / cover no-repeat; }
.hero-careers { background: linear-gradient(rgba(13,31,53,0.82), rgba(13,31,53,0.82)), url('../img/banner-career.jpg') center / cover no-repeat; }
.hero-contact { background: linear-gradient(rgba(13,31,53,0.82), rgba(13,31,53,0.82)), url('../img/banner-contact.jpg') center / cover no-repeat; }
.hero-eyebrow { font-size: 13px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange-light); margin-bottom: 1rem; opacity: 0.9; }
.hero h1 { font-family: var(--font-head); font-size: 44px; color: white; line-height: 1.12; max-width: 600px; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--orange-light); font-style: italic; }
.hero-sm h1 { font-size: 32px; max-width: 560px; }
.hero p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.8; max-width: 500px; margin-bottom: 2rem; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 2.5rem; }
.stat { background: rgba(255,255,255,0.06); padding: 1.25rem 1rem; text-align: center; border-radius: 4px; }
.stat-num { font-family: var(--font-head); font-size: 32px; color: var(--orange-light); }
.stat-label { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 4px; letter-spacing: 1px; text-transform: uppercase; line-height: 1.4; }

@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

.btn-primary { display: inline-block; background: var(--orange); color: white; border: none; padding: 13px 28px; font-family: var(--font-body); font-size: 14px; font-weight: 500; border-radius: 4px; cursor: pointer; transition: background 0.2s; letter-spacing: 0.2px; text-decoration: none; }
.btn-primary:hover { background: var(--orange-light); }
.btn-outline { display: inline-block; background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); padding: 12px 24px; font-family: var(--font-body); font-size: 14px; cursor: pointer; border-radius: 4px; margin-left: 12px; transition: all 0.2s; letter-spacing: 0.2px; text-decoration: none; }
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }

/* ── SECTIONS ── */
.section { padding: 4rem 2.5rem; }
.section-light { background: white; }
.section-offwhite { background: #f9f8f6; }
.section-label { font-size: 14px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
.section-title { font-family: var(--font-head); font-size: 30px; color: var(--navy); line-height: 1.2; margin-bottom: 1rem; }
.section-sub { font-size: 15px; color: var(--mid); line-height: 1.75; max-width: 600px; margin-bottom: 2rem; }

/* ── PHOTO PLACEHOLDERS ── */
.photo-zone {
  background: linear-gradient(135deg, #162D4A 0%, #0D1F35 100%);
  border-radius: 8px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 2rem; color: rgba(255,255,255,0.5);
  border: 2px dashed rgba(200,90,30,0.3); position: relative; overflow: hidden;
}
.photo-zone-label { font-size: 12px; font-weight: 500; letter-spacing: 0.5px; color: var(--orange-light); margin-bottom: 4px; }
.photo-zone-icon { font-size: 2rem; margin-bottom: 0.75rem; opacity: 0.5; }
.photo-zone-desc { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.home-intro-img { width: 100%; min-height: 280px; max-height: 380px; object-fit: cover; border-radius: 8px; display: block; }

/* ── HOME ── */
.home-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-card { background: white; border: 1px solid var(--light-border); border-radius: 8px; padding: 1.75rem; border-left: 3px solid var(--orange); transition: box-shadow 0.2s; }
.service-card:hover { box-shadow: 0 4px 16px rgba(13,31,53,0.08); }
.service-card h3 { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--mid); line-height: 1.65; }

.promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 1.5rem; }
.promise-item { padding: 1.25rem; background: white; border-radius: 8px; border: 1px solid var(--light-border); }
.promise-num { font-family: var(--font-head); font-size: 32px; color: var(--orange); opacity: 0.3; margin-bottom: 4px; }
.promise-item h4 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.promise-item p { font-size: 13px; color: var(--mid); line-height: 1.65; }

@media (max-width: 900px) {
  .services-grid, .promise-grid { grid-template-columns: 1fr; }
}

.cta-strip { background: var(--navy); padding: 3.5rem 2.5rem; text-align: center; }
.cta-strip h2 { font-family: var(--font-head); font-size: 30px; color: white; margin-bottom: 10px; }
.cta-strip p { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 2rem; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-grid p { font-size: 14px; color: var(--mid); line-height: 1.85; margin-bottom: 1rem; }
.about-highlight { background: #162D4A; border-radius: 8px; padding: 2rem; }
.about-highlight h3 { font-family: var(--font-head); font-size: 22px; color: var(--orange-light); margin-bottom: 1.25rem; }
.about-highlight ul { list-style: none; }
.about-highlight li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.7); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.07); line-height: 1.5; }
.about-highlight li::before { content: ''; flex-shrink: 0; width: 16px; height: 10px; margin-top: 4px; background: url('../img/csg-bullet.svg') no-repeat center / contain; }
.about-highlight li:last-child { border-bottom: none; }

.procurement-panel { background: var(--offwhite); border-radius: 8px; padding: 1.75rem; margin-top: 2rem; border: 1px solid var(--light-border); }
.procurement-panel h3 { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 1rem; }
.proc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.proc-item { background: white; border: 1px solid var(--light-border); border-radius: 6px; padding: 0.75rem 1rem; }
.proc-item strong { font-size: 13px; font-weight: 500; color: var(--navy); display: block; margin-bottom: 2px; }
.proc-item span { font-size: 12px; color: var(--mid); }

/* ── SERVICES ── */
.services-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.network-callout { background: #162D4A; border-radius: 8px; padding: 2rem; }
.network-callout h3 { font-family: var(--font-head); font-size: 20px; color: var(--orange-light); margin-bottom: 1rem; }
.network-callout p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; margin-bottom: 1rem; }
.network-callout ul { list-style: none; }
.network-callout li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.65); padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.network-callout li::before { content: ''; flex-shrink: 0; width: 16px; height: 10px; margin-top: 4px; background: url('../img/csg-bullet.svg') no-repeat center / contain; }

.services-tabs { display: flex; gap: 4px; border-bottom: 2px solid var(--light-border); margin-bottom: 2rem; flex-wrap: wrap; }
.stab { font-size: 13px; font-weight: 500; padding: 10px 16px; border: none; background: none; cursor: pointer; color: var(--mid); border-bottom: 2px solid transparent; margin-bottom: -2px; font-family: var(--font-body); transition: all 0.2s; }
.stab.active { color: var(--navy); border-bottom-color: var(--orange); }
.service-detail { display: none; }
.service-detail.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.svc-list { list-style: none; }
.svc-list li { font-size: 14px; color: var(--mid); padding: 9px 0; border-bottom: 1px solid var(--light-border); }
.svc-list li::before { content: '→ '; color: var(--orange); font-weight: 500; }
.svc-panel h3 { font-size: 18px; font-weight: 500; color: var(--navy); margin-bottom: 14px; }
.svc-panel p { font-size: 14px; color: var(--mid); line-height: 1.8; margin-bottom: 1rem; }
.labour-hire-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* ── TEAM ── */
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 1.75rem; }
.filter-tab { font-size: 12px; font-weight: 500; padding: 7px 16px; border: 1px solid var(--light-border); border-radius: 20px; cursor: pointer; font-family: var(--font-body); background: white; color: var(--mid); transition: all 0.2s; }
.filter-tab:hover, .filter-tab.active { background: var(--orange); color: white; border-color: var(--orange); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.network-summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.team-card { background: white; border: 1px solid var(--light-border); border-radius: 8px; overflow: hidden; transition: box-shadow 0.2s; }
.team-card:hover { box-shadow: 0 4px 16px rgba(13,31,53,0.08); }
.team-card-header { background: var(--navy); padding: 1.25rem; display: flex; align-items: center; gap: 12px; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; color: white; flex-shrink: 0; }
.team-name { font-size: 14px; font-weight: 500; color: white; }
.team-role { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; line-height: 1.4; }
.photo-note { font-size: 10px; color: rgba(255,255,255,0.3); margin-top: 3px; font-style: italic; }
.team-body { padding: 1.1rem; }
.team-body p { font-size: 13px; color: var(--mid); line-height: 1.65; }
.team-tag { display: inline-block; font-size: 11px; font-weight: 500; background: rgba(200,90,30,0.1); color: var(--orange); padding: 3px 9px; border-radius: 3px; margin-top: 8px; margin-right: 4px; }

/* ── PROJECTS ── */
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.project-card { background: white; border: 1px solid var(--light-border); border-radius: 8px; overflow: hidden; cursor: pointer; transition: box-shadow 0.2s, transform 0.15s; }
.project-card:hover { box-shadow: 0 6px 24px rgba(13,31,53,0.1); transform: translateY(-2px); }
.project-header { background: #162D4A; padding: 1.4rem; }
.project-district { font-size: 14px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange-light); margin-bottom: 8px; opacity: 0.9; }
.project-header h3 { font-size: 17px; color: white; font-weight: 500; line-height: 1.3; }
.project-body { padding: 1.25rem; }
.project-meta { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 10px; }
.pmeta { font-size: 11px; font-weight: 500; padding: 3px 9px; border-radius: 3px; background: rgba(200,90,30,0.1); color: var(--orange); }
.project-value { font-family: var(--font-head); font-size: 26px; color: var(--navy); margin: 6px 0 10px; }
.project-body p { font-size: 13px; color: var(--mid); line-height: 1.65; }
.project-read-more { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 500; color: var(--orange); }
.project-read-more::after { content: ' →'; }

.back-btn { display: inline-flex; text-decoration: none; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.65); background: none; border: none; cursor: pointer; font-family: var(--font-body); padding: 0; margin-bottom: 1.5rem; }
.back-btn:hover { color: white; }
.back-btn::before { content: '←'; margin-right: 4px; }
.project-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; }
.project-detail-body p { font-size: 15px; color: var(--mid); line-height: 1.85; margin-bottom: 1.25rem; }
.project-detail-body h3 { font-size: 17px; font-weight: 500; color: var(--navy); margin: 1.75rem 0 0.75rem; }
.project-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.sidebar-card { background: white; border: 1px solid var(--light-border); border-radius: 8px; padding: 1.25rem; }
.sidebar-card h4 { font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.sidebar-row { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; border-bottom: 1px solid var(--light-border); font-size: 13px; }
.sidebar-row:last-child { border-bottom: none; }
.sidebar-row span:first-child { color: var(--mid); flex-shrink: 0; }
.sidebar-row span:last-child { font-weight: 500; color: var(--navy); text-align: right; max-width: 58%; }
.referee-box { background: var(--offwhite); border-left: 3px solid var(--orange); padding: 1.25rem; border-radius: 0 8px 8px 0; margin-top: 1.5rem; }
.referee-box blockquote { font-size: 14px; color: var(--navy); line-height: 1.75; font-style: italic; margin-bottom: 10px; }
.referee-box cite { font-size: 12px; color: var(--mid); font-style: normal; }

/* ── CAREERS ── */
.jobadder-panel { background: var(--offwhite); border: 1px solid var(--light-border); border-radius: 8px; padding: 2.5rem; margin-bottom: 2.5rem; }
.jobadder-heading { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.5px; text-transform: uppercase; text-align: center; margin-bottom: 0.5rem; }
.jobadder-intro { font-size: 13px; color: var(--mid); line-height: 1.7; max-width: 480px; margin: 0 auto 1.5rem; text-align: center; }
.jobadder-widget { font-family: var(--font-body); color: var(--mid); font-size: 14px; }
.jobadder-widget a { color: var(--orange); }
.jobadder-widget .ja-pager {
  display: flex !important; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
  margin-top: 2rem !important; padding-top: 1.5rem;
  border-top: 1px solid var(--light-border);
  list-style: none;
}
.jobadder-widget .ja-pager a,
.jobadder-widget .ja-pager .current-page {
  display: inline-flex !important; align-items: center; justify-content: center;
  min-width: 36px; height: 36px; padding: 0 10px; box-sizing: border-box;
  border-radius: 6px !important; border: 1px solid var(--light-border) !important;
  background: white !important; color: var(--navy) !important;
  font-size: 13px; font-weight: 500;
  text-decoration: none !important; cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.jobadder-widget .ja-pager a:hover {
  background: var(--orange) !important; color: white !important; border-color: var(--orange) !important;
}
.jobadder-widget .ja-pager .current-page {
  background: var(--orange) !important; color: white !important; border-color: var(--orange) !important;
  font-weight: 600; cursor: default;
}
.jobadder-widget .ja-pager a.next-ellipsis,
.jobadder-widget .ja-pager a.previous-ellipsis {
  border: none !important; background: none !important; min-width: 20px; color: var(--mid) !important; cursor: default;
}
.jobadder-widget .ja-pager a.next-ellipsis:hover,
.jobadder-widget .ja-pager a.previous-ellipsis:hover {
  background: none !important; color: var(--mid) !important;
}
.jobadder-widget .ja-pager a.previous,
.jobadder-widget .ja-pager a.next {
  padding: 0 14px; font-weight: 600;
}
.jobadder-widget .job { padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--light-border); }
.jobadder-widget .job:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.jobadder-widget .job a.view-details {
  display: inline-block;
  background: var(--orange) !important; color: white !important; border: none !important;
  padding: 9px 18px; border-radius: 4px;
  font-size: 13px; font-weight: 500;
  text-decoration: none !important; cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s;
}
.jobadder-widget .job a.view-details:hover { background: var(--orange-light) !important; }
.careers-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.careers-intro-box { max-width: 720px; margin-bottom: 2.5rem; }
.careers-intro-box p { font-size: 15px; color: var(--mid); line-height: 1.8; margin-bottom: 0.75rem; }
.job-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
.job-card { background: white; border: 1px solid var(--light-border); border-radius: 8px; padding: 1.5rem; display: flex; flex-direction: column; }
.job-card-top { flex: 1; }
.job-card h3 { font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.job-card p { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 1rem; }
.job-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--light-border); margin-top: auto; }
.job-location { font-size: 12px; color: var(--mid); }
.job-apply { background: var(--orange); color: white; border: none; padding: 9px 18px; border-radius: 4px; font-size: 13px; font-weight: 500; cursor: pointer; font-family: var(--font-body); transition: background 0.2s; }
.job-apply:hover { background: var(--orange-light); }

.eoi-panel { background: var(--navy); border-radius: 8px; padding: 2.5rem; }
.eoi-panel h3 { font-family: var(--font-head); font-size: 24px; color: white; margin-bottom: 0.75rem; }
.eoi-panel p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 1.5rem; max-width: 580px; }
.eoi-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.eoi-col h4 { font-size: 13px; font-weight: 500; color: var(--orange-light); margin-bottom: 0.75rem; letter-spacing: 0.3px; }
.eoi-col p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; margin-bottom: 1rem; }
.eoi-col a { color: var(--orange-light); text-decoration: none; font-weight: 500; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-size: 17px; font-weight: 500; color: var(--navy); margin-bottom: 1.25rem; }
.contact-line { font-size: 14px; color: var(--mid); padding: 6px 0; border-bottom: 1px solid var(--light-border); display: flex; justify-content: space-between; }
.contact-line:last-child { border-bottom: none; }
.contact-line strong { color: var(--navy); font-weight: 500; }
.contact-panels { display: flex; flex-direction: column; gap: 10px; }
.contact-panel { background: white; border: 1px solid var(--light-border); border-radius: 8px; padding: 1.25rem; }
.contact-panel h4 { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.contact-panel p { font-size: 13px; color: var(--mid); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--navy); }
.footer-logos { padding: 2rem 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logos-label { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1.25rem; }
.footer-logos-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-logos-row-text { margin-top: 1.25rem; }
.logo-badge {
  background: white; border-radius: 6px; padding: 6px 14px;
  height: 56px; box-sizing: border-box;
  display: flex; align-items: center; justify-content: center;
}
.logo-badge img { max-height: 100%; width: auto; max-width: 140px; object-fit: contain; display: block; }
.logo-pill {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 8px 16px; font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.6); white-space: nowrap;
}
.logo-pill.highlight { background: rgba(200,90,30,0.15); border-color: rgba(200,90,30,0.3); color: var(--orange-light); }
.footer-bottom { padding: 1.5rem 2.5rem; display: flex; justify-content: space-between; align-items: center; }
footer p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-icons { display: flex; align-items: center; gap: 20px; }
.footer-icons a { display: flex; opacity: 0.55; transition: opacity 0.2s; }
.footer-icons a:hover { opacity: 1; }
.footer-icons img { height: 18px; width: auto; display: block; }

.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.photo-zone-full { background:linear-gradient(135deg,#162D4A,#0D1F35); border-radius:8px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:2rem; border:2px dashed rgba(200,90,30,0.4); min-height:260px; }
.photo-zone-sm { background:linear-gradient(135deg,#162D4A,#0D1F35); border-radius:8px; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:1.5rem; border:2px dashed rgba(200,90,30,0.4); min-height:160px; }
.photo-zone-full-img { width: 100%; min-height: 260px; max-height: 420px; object-fit: cover; border-radius: 8px; display: block; }
.photo-strip-img { width: 100%; height: 220px; object-fit: cover; border-radius: 8px; display: block; }
.photo-icon { font-size:2rem; margin-bottom:0.75rem; opacity:0.35; color:white; }
.photo-lbl { font-size:11px; font-weight:600; letter-spacing:1px; color:var(--orange-light); margin-bottom:5px; text-transform:uppercase; }
.photo-desc { font-size:12px; color:rgba(255,255,255,0.5); line-height:1.5; }
.photo-src { font-size:10px; color:rgba(200,90,30,0.7); margin-top:6px; font-style:italic; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* page gutters */
  nav, .hero, .hero-sm, .section, .cta-strip, .footer-logos, .footer-bottom {
    padding-left: 25px;
    padding-right: 25px;
  }

  /* home */
  .home-intro { grid-template-columns: 1fr; }
  .home-intro-img { order: -1; }
  .photo-strip { grid-template-columns: 1fr; }

  /* about */
  .about-grid { grid-template-columns: 1fr; }

  /* services */
  .services-intro-grid { grid-template-columns: 1fr; }
  .services-tabs { border-bottom: none; gap: 8px; }
  .stab {
    border: 1px solid var(--light-border);
    border-radius: 20px;
    padding: 7px 14px;
    margin-bottom: 0;
    background: white;
  }
  .stab.active { background: var(--orange); color: white; border-color: var(--orange); }
  .service-detail.active { grid-template-columns: 1fr; }
  .labour-hire-grid { grid-template-columns: 1fr; }
  .resource-grid { grid-template-columns: 1fr; }

  /* our people */
  .team-grid { grid-template-columns: 1fr; }
  .network-summary-grid { grid-template-columns: 1fr; }

  /* projects */
  .projects-grid { grid-template-columns: 1fr; }
  .project-detail-grid { grid-template-columns: 1fr; }

  /* careers */
  .careers-intro-grid { grid-template-columns: 1fr; }
  .job-grid { grid-template-columns: 1fr; }

  /* contact */
  .contact-grid { grid-template-columns: 1fr; }
}
