/* ============================================
   RCG - The Ross-Carlisle Group
   Refined Industrial Aesthetic
   ============================================ */

:root {
  --navy: #0f1e2e;
  --navy-mid: #162840;
  --navy-light: #1e3a56;
  --gold: #c8a256;
  --gold-light: #e0be82;
  --cream: #f5f0e8;
  --cream-dark: #ede5d4;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #9aa5b1;
  --gray-600: #5a6778;
  --gray-800: #2d3748;
  --text: #1a2533;
  --text-light: #5a6778;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);

  --transition: 0.22s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,162,86,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

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

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(200,162,86,0.3);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-rcg {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-full {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  line-height: 1.3;
  max-width: 180px;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 18px;
  font-weight: 700;
}
.nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 100px 24px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(200,162,86,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #0d2340 100%);
  pointer-events: none;
}

/* Geometric accent lines */
.hero-bg::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(200,162,86,0.08);
  border-radius: 50%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(200,162,86,0.12);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,162,86,0.4);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,162,86,0.2);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 32px 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 0 16px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(200,162,86,0.25);
  flex-shrink: 0;
}

/* ---- ABOUT STRIP ---- */
.about-strip {
  background: var(--cream);
  padding: 80px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.75;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
  letter-spacing: 0.02em;
}

.pillar p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ---- POSITIONS SECTION ---- */
.positions-section {
  padding: 80px 0 100px;
  background: var(--white);
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: var(--text-light);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.job-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.job-card:hover {
  border-color: rgba(200,162,86,0.4);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.job-card:hover::before {
  transform: scaleX(1);
  background: var(--gold);
}

.job-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, #fffcf4 0%, var(--white) 100%);
}

.job-card.featured::before {
  transform: scaleX(1);
  background: var(--gold);
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.job-id {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.job-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--cream);
  padding: 3px 10px;
  border-radius: 100px;
}

.job-card.featured .job-type {
  background: var(--gold);
  color: var(--navy);
}

.job-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}

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

.job-location, .job-salary {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-light);
}

.job-blurb {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.job-cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--transition);
}

.job-card:hover .job-cta {
  color: var(--navy);
}

.remote-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: #2d7d46;
  padding: 2px 8px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--navy);
  padding: 72px 24px;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #090f18;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 160px;
  column-gap: 80px;
  row-gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo { margin-bottom: 14px; }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-brand a {
  color: var(--gold);
  font-weight: 500;
}
.footer-brand a:hover { color: var(--gold-light); }

.footer-links h4, .footer-nav h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links ul, .footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a, .footer-nav a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  line-height: 1.4;
}
.footer-links a:hover, .footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ==============================
   CONTACT PAGE
   ============================== */
.page-hero {
  background: var(--navy);
  padding: 80px 24px 64px;
  text-align: center;
}

.page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
}

.contact-section {
  padding: 80px 0 100px;
  background: var(--gray-100);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}

.contact-detail-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-detail-text a, .contact-detail-text span {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-detail-text a:hover { color: var(--gold); }

.contact-positions h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 12px;
  margin-top: 32px;
}

.contact-positions ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-positions a {
  font-size: 0.84rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.contact-positions a:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: #fffcf4;
}

.contact-positions a span {
  font-size: 0.76rem;
  color: var(--text-light);
  font-weight: 400;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form-card .form-sub {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  padding: 15px;
  font-size: 0.95rem;
}

/* ==============================
   JOB DETAIL PAGE
   ============================== */
.job-hero {
  background: var(--navy);
  padding: 72px 24px 56px;
}

.job-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.job-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.job-breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.job-breadcrumb a:hover { color: var(--gold); }
.job-breadcrumb span { color: rgba(255,255,255,0.3); }

.job-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.job-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.job-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.07);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}

.job-pill.salary {
  color: var(--gold);
  background: rgba(200,162,86,0.12);
  border-color: rgba(200,162,86,0.3);
}

.job-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.job-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cream-dark);
}

.job-body h2:first-child { margin-top: 0; }

.job-body p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}

.job-body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.job-body ul li {
  font-size: 0.93rem;
  color: var(--gray-600);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.job-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.job-sidebar {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-detail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.sidebar-detail-item strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.sidebar-detail-item span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.sidebar-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.sidebar-positions {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.sidebar-positions h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.sidebar-positions ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-positions a {
  font-size: 0.82rem;
  color: var(--navy);
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all var(--transition);
  line-height: 1.4;
  border: 1px solid transparent;
}

.sidebar-positions a:hover {
  background: var(--white);
  border-color: var(--gray-200);
  color: var(--gold);
}

.sidebar-positions a.current {
  background: var(--white);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .job-layout { grid-template-columns: 1fr; }
  .job-sidebar { position: static; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    inset: 68px 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 99;
    border-top: 1px solid rgba(200,162,86,0.2);
  }

  .main-nav.open { transform: translateX(0); }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
  }

  .nav-cta {
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }

  .hero { padding: 60px 24px 0; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding: 20px; }
  .stat-divider { display: none; }

  .jobs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .job-hero-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
  .logo-full { display: none; }
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge  { animation: fadeUp 0.5s ease both; }
.hero-title  { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub    { animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.6s 0.3s ease both; }
.hero-stats  { animation: fadeUp 0.6s 0.4s ease both; }

/* ============================================
   LOGO UPGRADE
   ============================================ */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark-rcg {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(200,162,86,0.25);
}

.logo-mark-divider {
  display: block;
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(200,162,86,0.5), transparent);
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-text-main {
  font-family: 'Cormorant Garamond', var(--font-display), Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-text-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  color: rgba(200,162,86,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

/* Footer logo variant */
.footer-logo .logo-text-main { color: rgba(255,255,255,0.85); }
.footer-logo .logo-mark-rcg { font-size: 1.35rem; }
.footer-logo .logo-mark-divider { height: 26px; }

/* ============================================
   HERO — IMAGE BACKGROUND
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 0;
  background: var(--navy); /* fallback */
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,15,24,0.88) 0%,
    rgba(9,15,24,0.80) 60%,
    rgba(9,15,24,0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
}

.hero-stats {
  position: relative;
  z-index: 1;
}

/* ============================================
   SECTION EYEBROW
   ============================================ */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* ============================================
   SECTION DIVIDER (replaces image strip)
   ============================================ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: var(--white);
  overflow: hidden;
  line-height: 0;
}

.section-divider-inner {
  width: 100%;
  display: flex;
  align-items: center;
  height: 72px;
  position: relative;
}

/* Full-width accent bar with layered geometric lines */
.section-divider-inner::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--cream-dark) 8%,
    var(--gold) 30%,
    var(--navy-light) 50%,
    var(--gold) 70%,
    var(--cream-dark) 92%,
    transparent 100%
  );
  transform: translateY(-50%);
}

/* Diamond center emblem */
.section-divider-inner::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 6px rgba(200,162,86,0.3);
}

.section-divider-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.section-divider-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
}

/* ============================================
   PLACEMENT FEATURE SECTION
   ============================================ */
.placement-feature {
  background: var(--cream);
  padding: 100px 0;
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}

.placement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.placement-img {
  position: relative;
}

.placement-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.placement-img-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.placement-text .section-eyebrow { display: block; }

.placement-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.placement-text p {
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.placement-list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.placement-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* ============================================
   CTA BANNER — IMAGE BACKGROUND
   ============================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 0;
}

.cta-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.4) saturate(0.7);
}

.cta-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(9,15,24,0.75) 0%,
    rgba(15,30,46,0.55) 100%
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}

/* ============================================
   CONTACT PAGE — IMAGE HERO
   ============================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 0;
}

.page-hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.35) saturate(0.6);
}

.page-hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9,15,24,0.4) 0%,
    rgba(9,15,24,0.65) 100%
  );
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 96px 24px 72px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
}

/* ============================================
   RESPONSIVE — IMAGE SECTIONS
   ============================================ */
@media (max-width: 900px) {

  .placement-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .placement-img-accent { display: none; }
}

@media (max-width: 600px) {
  .hero { min-height: 100svh; }

  .logo-text-main { font-size: 0.85rem; }
  .logo-text-sub { display: none; }
  .logo-mark-divider { display: none; }
}
