/* ============================================================
   ONYX STAFFING GROUP — Main Stylesheet
   Palette: #0a0a0a (black) | #ffffff (white) | #C9A84C (gold)
   Fonts:   Montserrat (headings) | Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: #0a0a0a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --gold:        #C9A84C;
  --gold-hover:  #d9bc74;
  --black:       #0a0a0a;
  --black-soft:  #111111;
  --black-card:  #141414;
  --white:       #ffffff;
  --border:      rgba(201,168,76,0.15);
  --text-muted:  rgba(255,255,255,0.62);
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: 0.08em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.7rem); letter-spacing: 0.03em; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; }

/* ── Layout Helpers ──────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

.tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-heading { margin-bottom: 16px; }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.section-sub.centred { margin: 0 auto; }

.divider {
  width: 44px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 44px;
  border: none;
}
.divider.centred { margin: 20px auto 44px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
/* Override the generic .container constraint for the nav — let it span
   full width with its own generous horizontal padding instead of a
   narrow centred max-width column. */
.nav .container {
  width: 100%;
  max-width: none;
  padding: 0 48px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* ── Logo (shared across all pages — stacked text wordmark) ─ */
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
}
.logo-onyx {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.logo-sg {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}
/* Slightly larger wordmark in the footer */
.footer-logo .logo-onyx { font-size: 2.4rem; }
.footer-logo .logo-sg   { font-size: 0.62rem; }

/* Legacy image logo (kept for any page/element still referencing it) */
.logo-img {
  height: 90px;
  width: auto;
  display: block;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links .nav-join {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 9px 22px;
  border-radius: 3px;
  transition: all 0.22s;
}
.nav-links .nav-join:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* Mobile menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-join { color: var(--gold); }

/* ── HERO (centered typographic wordmark hero) ──────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(201,168,76,0.07) 0%, transparent 65%),
    linear-gradient(160deg, #0a0a0a 0%, #111111 100%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255,255,255,0.013) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,0.013) 80px);
}
.hero > .container {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  width: 100%;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero-title-onyx {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(4.5rem, 16vw, 10rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  color: var(--gold);
}
.hero-title-sg {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 6px;
}
.hero .divider.centred {
  margin: 30px auto 28px;
  width: 80px;
}
.hero-sub {
  font-style: italic;
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}
.scroll-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.chevron {
  display: block;
  width: 30px;
  height: 15px;
  opacity: 0.15;
  animation: chevronPulse 1.6s ease-in-out infinite;
}
.chevron-1 { animation-delay: 0s;    }
.chevron-2 { animation-delay: 0.25s; }
.chevron-3 { animation-delay: 0.5s;  }
@keyframes chevronPulse {
  0%   { opacity: 0.15; transform: translateY(0);   }
  50%  { opacity: 1;    transform: translateY(4px);  }
  100% { opacity: 0.15; transform: translateY(0);   }
}

/* ── MISSION STATEMENT SECTION (home page) ──────────────── */
.mission-section {
  padding: 100px 0;
  text-align: center;
  background: var(--black);
  border-bottom: 1px solid var(--border);
}
.mission-section .section-tag,
.mission-section .tag {
  display: block;
}
.mission-statement {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 5.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
  text-transform: uppercase;
}
.mission-statement .gold { color: var(--gold); }
.mission-section .divider.centred { margin: 36px auto; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
}
.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  flex: 1;
  min-width: 170px;
  justify-content: center;
}
.stat-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CARD GRID ───────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: rgba(201,168,76,0.38);
  transform: translateY(-4px);
}
.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.09);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h4 { color: var(--white); margin-bottom: 10px; }
.card p  { font-size: 0.91rem; }

/* ── CLIENTS GRID ────────────────────────────────────────── */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.client-item {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  transition: border-color 0.24s, color 0.24s;
}
.client-item:hover { border-color: var(--gold); color: var(--gold); }
.client-item::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── CTA BAND ────────────────────────────────────────────── */
.cta-band {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 88px 0;
  text-align: center;
}
.cta-band h2 { margin-bottom: 14px; }
.cta-band p  { margin-bottom: 36px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 168px 0 96px;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero .tag { display: block; }
.page-hero .divider.reveal { margin-left: auto; margin-right: auto; }
.page-hero .section-sub {
  max-width: 620px;
  margin: 0 auto;
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.story-pull {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.65;
  color: var(--white);
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 30px;
}
.story-body p { margin-bottom: 18px; }
.story-body p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.value-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  padding: 30px 24px;
}
.value-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.value-card p { font-size: 0.91rem; }

.mission-block {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 4px solid var(--gold);
  border-radius: 4px;
  padding: 36px 40px;
  margin-top: 48px;
}
.mission-block p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255,255,255,0.88);
}

/* ── SERVICES PAGE ───────────────────────────────────────── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 40px 30px;
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
}
.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 12px; }
.service-card p  { font-size: 0.91rem; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  overflow: hidden;
}
.step {
  padding: 40px 32px;
  background: var(--black-card);
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}
.step h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.step p  { font-size: 0.9rem; }

/* Standards list */
.standards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.standard-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
}
.check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.standard-item p { font-size: 0.91rem; margin: 0; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 72px;
  align-items: start;
}
.form-wrap {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 48px 44px;
}

/* Form elements */
.form-group { margin-bottom: 22px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}

input, select, textarea {
  width: 100%;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 13px 16px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder,
textarea::placeholder { color: rgba(255,255,255,0.27); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}
select option { background: #1a1a1a; color: #fff; }
textarea { resize: vertical; min-height: 130px; }

input.error, select.error, textarea.error { border-color: #e05858; }
.field-error {
  display: none;
  font-size: 0.76rem;
  color: #e05858;
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}
.field-error.visible { display: block; }

/* Checkboxes */
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,0.78);
}
.check-row input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 17px;
  height: 17px;
  min-width: 17px;
  flex: none;
  border: 1.5px solid rgba(255,255,255,0.22);
  border-radius: 3px;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  accent-color: var(--gold);
}

.form-submit { margin-top: 28px; }
.form-submit .btn { width: 100%; }

/*
  data-fs-success: hidden by default; Formspree Ajax removes the
  `hidden` attribute (or sets display) after a successful POST.
  We use the `hidden` HTML attribute on the element in the markup,
  and provide a matching CSS rule so it looks right when shown.
*/
[data-fs-success] {
  display: none; /* Formspree overrides this on success */
}
[data-fs-success]:not([hidden]) {
  display: block;
}

/* Shared success panel styling (used on both contact + apply pages) */
.success-msg {
  display: none;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.success-msg p {
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  margin: 0;
}

/*
  data-fs-error (no attribute value): top-level form error banner.
  Empty by default; Formspree inserts text and shows it on failure.
*/
.fs-form-error {
  display: none;
  background: rgba(224,88,88,0.08);
  border: 1px solid rgba(224,88,88,0.3);
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e05858;
}
.fs-form-error:not(:empty) { display: block; }

/* Contact info sidebar */
.contact-info-block h3 { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cd-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(201,168,76,0.09);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cd-body small {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.cd-body a, .cd-body span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  transition: color 0.2s;
  display: block;
}
.cd-body a:hover { color: var(--gold); }

/* ── APPLY PAGE ──────────────────────────────────────────── */
.apply-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: start;
}
.aside-panel {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 26px 22px;
  margin-bottom: 20px;
}
.aside-panel h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.aside-panel p { font-size: 0.88rem; margin: 0; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--border);
  padding: 72px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.4);
  max-width: 240px;
  line-height: 1.7;
  margin-top: 12px;
}
.footer-links h5,
.footer-contact h5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p,
.footer-contact a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
}
.footer-policy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policy:hover { color: var(--gold); }

/* ── PRIVACY POLICY PAGE ─────────────────────────────────── */
.privacy-content {
  max-width: 760px;
  margin: 0 auto;
}
.privacy-block {
  margin-bottom: 56px;
}
.privacy-block h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}
.privacy-block h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 24px 0 10px;
}
.privacy-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 12px;
}
.privacy-block ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.privacy-block ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.9;
  margin-bottom: 6px;
}
.privacy-block a {
  color: var(--gold);
  text-decoration: none;
}
.privacy-block a:hover { text-decoration: underline; }

/* ── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-grid      { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout  { grid-template-columns: 1fr; }
  .apply-layout    { grid-template-columns: 1fr; }
  .footer-top      { grid-template-columns: 1fr 1fr; }
  .steps           { grid-template-columns: 1fr; }
  .step            { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .step:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .nav .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-links  { display: none; }
  .nav-toggle { display: flex; }
  .stats-inner      { flex-direction: column; align-items: flex-start; gap: 14px; }
  .stat-item        { min-width: unset; justify-content: flex-start; }
  .hero-content     { padding: 56px 0; }
  .form-row         { grid-template-columns: 1fr; }
  .form-wrap        { padding: 30px 22px; }
  .footer-top       { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom    { flex-direction: column; gap: 10px; text-align: center; }
  .hero-actions     { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .cards-grid      { grid-template-columns: 1fr; }
  .service-cards   { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: 1fr; }
  .clients-grid    { grid-template-columns: 1fr 1fr; }
  .standards-list  { grid-template-columns: 1fr; }
}

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 640px;
  background: #111111;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  flex: 1;
}
.cookie-banner p a {
  color: var(--gold);
  text-decoration: none;
}
.cookie-banner p a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.78rem;
}
