/* ============================================================
   THE TALENT BRANCH — Website Stylesheet
   Design: Fresh, crisp, premium recruitment agency
   Palette: Deep navy + warm gold + clean white
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --dark:        #0C1628;
  --navy:        #132040;
  --navy-mid:    #1E3156;
  --gold:        #C8973F;
  --gold-light:  #E2B96A;
  --gold-pale:   #F5E6C8;
  --cream:       #FAF8F4;
  --white:       #FFFFFF;
  --grey-50:     #F8FAFC;
  --grey-100:    #F1F5F9;
  --grey-200:    #E2E8F0;
  --grey-400:    #94A3B8;
  --grey-500:    #64748B;
  --grey-700:    #334155;
  --grey-900:    #0F172A;

  --font-head:   'Montserrat', sans-serif;
  --font-body:   'Inter', sans-serif;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 8px 32px rgba(200,151,63,0.25);

  --transition:  all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--grey-700);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Scroll Progress Bar ── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(12, 22, 40, 0.97);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav.scrolled .nav-logo img {
  height: 100px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 160px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  background: rgba(255,255,255,0.06);
  border: 2px solid rgba(200,151,63,0.65);
  border-radius: 12px;
  padding: 10px 18px;
  transition: var(--transition);
  filter: brightness(1.08) contrast(1.04);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 22px rgba(200,151,63,0.22), 0 4px 16px rgba(0,0,0,0.35);
}

.nav-logo img:hover,
.logo img:hover { opacity: 0.9; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark) !important;
  background: var(--gold);
  padding: 10px 22px !important;
  border-radius: 50px !important;
  transition: var(--transition) !important;
  white-space: nowrap;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(200,151,63,0.35); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,151,63,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(30,49,86,0.8) 0%, transparent 60%);
  animation: heroBg 8s ease-in-out infinite alternate;
}

@keyframes heroBg {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,151,63,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,63,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 200px 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-left { max-width: 600px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,151,63,0.12);
  border: 1px solid rgba(200,151,63,0.25);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-h1 span {
  color: var(--gold);
  position: relative;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  cursor: pointer;
}

.hero-card:hover {
  background: rgba(200,151,63,0.1);
  border-color: rgba(200,151,63,0.4);
  transform: translateX(8px);
}

.hero-card-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.hero-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 14px;
  transition: var(--transition);
}

.hero-card:hover .hero-card-arrow { gap: 10px; }

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-head);
  font-weight: 600;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll svg { width: 20px; height: 20px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.8; }
}

/* ── Section Base ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--grey-900);
  line-height: 1.15;
  margin-bottom: 16px;
}

/* ── Gold heading accent pill ── */
.heading-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: white;
  padding: 2px 16px 4px;
  border-radius: 6px;
  font-style: normal;
}

/* ── Dark section form field contrast fix ── */
.dark-section input,
.dark-section select,
.dark-section textarea,
.dark-form input,
.dark-form select,
.dark-form textarea {
  background: rgba(255,255,255,0.12) !important;
  border-color: rgba(200,151,63,0.4) !important;
  color: white !important;
}
.dark-section input::placeholder,
.dark-section textarea::placeholder,
.dark-form input::placeholder,
.dark-form textarea::placeholder {
  color: rgba(255,255,255,0.45) !important;
}
.dark-section label,
.dark-form label {
  color: rgba(250,248,244,0.85) !important;
}
/* Clients.html vacancy form on dark bg */
.vacancy-form-element input,
.vacancy-form-element select,
.vacancy-form-element textarea {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(200,151,63,0.35);
  color: white;
}
.vacancy-form-element input::placeholder,
.vacancy-form-element textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.vacancy-form-element label { color: rgba(250,248,244,0.85); }

.section-title-white { color: var(--white); }

.section-subtitle {
  font-size: 17px;
  color: var(--grey-500);
  line-height: 1.7;
  max-width: 600px;
}

.section-subtitle-light { color: rgba(255,255,255,0.6); }

.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ── Services Split ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  border-radius: var(--radius-xl);
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.service-card-dark {
  background: var(--dark);
  color: var(--white);
}

.service-card-light {
  background: var(--cream);
  border: 2px solid var(--grey-200);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 56px; height: 56px;
  background: rgba(200,151,63,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.service-icon svg { width: 28px; height: 28px; color: var(--gold); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.service-card-dark h3 { color: var(--white); }
.service-card-light h3 { color: var(--grey-900); }

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.service-card-dark p { color: rgba(255,255,255,0.65); }
.service-card-light p { color: var(--grey-500); }

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.service-card-dark .service-feature { color: rgba(255,255,255,0.8); }
.service-card-light .service-feature { color: var(--grey-700); }

.service-feature::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230C1628'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ── Jobs Grid ── */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.job-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.job-card:hover::before { transform: scaleX(1); }

.job-sector {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.job-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--grey-900);
  margin-bottom: 8px;
  line-height: 1.3;
}

.job-company {
  font-size: 13px;
  color: var(--grey-500);
  margin-bottom: 16px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--grey-500);
  font-weight: 500;
}

.job-meta-item svg { width: 14px; height: 14px; color: var(--gold); }

.job-salary {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 20px;
}

.job-card .btn { width: 100%; justify-content: center; padding: 11px 20px; font-size: 13px; }

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(200,151,63,0.08);
  border-color: rgba(200,151,63,0.2);
}

.feature-icon {
  width: 48px; height: 48px;
  background: rgba(200,151,63,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 24px; height: 24px; color: var(--gold); }

.feature-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.feature-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── Sectors ── */
.sectors-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sector-chip {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-700);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  padding: 10px 20px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: default;
}

.sector-chip:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy-mid) 50%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: 30%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,151,63,0.15) 0%, transparent 60%);
  animation: ctaGlow 6s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-60px, 30px); }
}

.cta-content { position: relative; z-index: 2; text-align: center; }

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Process Steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
}

.process-step { text-align: center; padding: 0 16px; }

.step-num {
  width: 64px; height: 64px;
  background: var(--dark);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
}

.process-step h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 10px;
}

.process-step p { font-size: 13px; color: var(--grey-500); line-height: 1.6; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 210px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Page Hero Split Layout (with image) */
.page-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  align-items: stretch;
}
.page-hero-split .hero-img-side {
  position: relative;
  overflow: hidden;
}
.page-hero-split .hero-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82) saturate(0.9);
  transition: transform 6s ease;
}
.page-hero-split:hover .hero-img-side img {
  transform: scale(1.04);
}
.page-hero-split .hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--dark) 100%);
}
.page-hero-split .hero-text-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 200px 64px 80px 48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .page-hero-split {
    grid-template-columns: 1fr;
  }
  .page-hero-split .hero-img-side {
    height: 260px;
  }
  .page-hero-split .hero-text-side {
    padding: 48px 24px;
  }
}


.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(200,151,63,0.1) 0%, transparent 60%);
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,151,63,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,63,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.7; }

/* ── Jobs Filter ── */
.jobs-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--grey-500);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  padding: 9px 20px;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--dark);
  color: var(--gold);
  border-color: var(--dark);
}

/* ── Forms ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--grey-700);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  color: var(--grey-900);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,151,63,0.1);
}

textarea.form-control { resize: vertical; min-height: 140px; }

.file-upload {
  border: 2px dashed var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--grey-50);
}

.file-upload:hover { border-color: var(--gold); background: var(--gold-pale); }
.file-upload-icon { font-size: 40px; margin-bottom: 12px; }
.file-upload h4 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--grey-900); margin-bottom: 6px; }
.file-upload p { font-size: 13px; color: var(--grey-400); }
.file-upload input { display: none; }

/* ── Team/About ── */
.founder-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 56px;
  color: var(--white);
}

.founder-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founder-name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}

.founder-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.founder-bio { font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 28px; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--grey-900);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-item-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--grey-400); margin-bottom: 4px; font-family: var(--font-head); }
.contact-item-value { font-size: 15px; color: var(--grey-900); font-weight: 500; }

/* ── Footer ── */
.footer {
  background: var(--grey-900);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand img {
  height: 44px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-family: var(--font-head);
  font-weight: 500;
}
.breadcrumb a { transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .jobs-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .founder-card { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links, .nav-cta-wrap { display: none; }
  .nav-toggle { display: flex; }
  .jobs-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: var(--transition);
  }

  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-family: var(--font-head); font-size: 24px; font-weight: 800; color: var(--white); }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-close { position: absolute; top: 24px; right: 24px; color: var(--white); font-size: 32px; cursor: pointer; background: none; border: none; }
}

/* ── Utility ── */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* ── Mobile menu: hidden on desktop globally ── */
.mobile-menu { display: none; }
.bg-dark { background: var(--dark); }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }
.divider { height: 1px; background: var(--grey-200); margin: 48px 0; }

/* ── Interactive Hover & Animation Effects ── */

/* Cards lift and glow on hover */
.card, .service-card, .value-card, .job-card, .stat-card, .step-card, .feature-card, .benefit-card, .testimonial-card, .info-card, .process-card, [class*="-card"] {
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}
.card:hover, .service-card:hover, .value-card:hover, .job-card:hover, .stat-card:hover, .step-card:hover, .feature-card:hover, .benefit-card:hover, .testimonial-card:hover, .info-card:hover, .process-card:hover, [class*="-card"]:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 48px rgba(200, 151, 63, 0.18);
}

/* Gold buttons pulse effect */
.btn-gold {
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}
.btn-gold:hover::before {
  width: 300px;
  height: 300px;
}

/* Nav links underline slide */
.nav-links a:not(.nav-cta) {
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold, #C8973F);
  transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Job filter buttons pop */
.filter-btn {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.filter-btn:hover {
  transform: translateY(-2px) scale(1.04);
}

/* Outline buttons shimmer */
.btn-outline {
  position: relative;
  overflow: hidden;
}
.btn-outline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(200,151,63,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-outline:hover::after {
  transform: translateX(100%);
}

/* Nav CTA button glow */
.nav-cta {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 151, 63, 0.4);
}

/* Footer links slide right */
.footer a {
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}
.footer a:hover {
  transform: translateX(4px);
  color: var(--gold, #C8973F);
}

/* Image / logo hover scale */
.nav-logo {
  transition: transform 0.2s ease;
}
.nav-logo:hover {
  transform: scale(1.04);
}

/* Stat numbers pulse on section reveal */
@keyframes countPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.stat-number, .hero-stat-number, [class*="stat-num"] {
  display: inline-block;
}
.stats-section.revealed .stat-number,
.stats-section.revealed .hero-stat-number {
  animation: countPulse 0.6s ease 0.3s both;
}

/* Page hero entrance */
.page-hero {
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Section reveal animation (works with existing JS reveal observer) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
