/* ============================================================
   GULF PLATFORM HR CONSULTANCY
   Design system & global styles
   ============================================================ */

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

:root {
  /* Brand palette — tuned to the Gulf Platform logo:
     orange-led accent, navy from the wordmark as secondary,
     red as a sparingly-used highlight, soft cream backgrounds. */

  /* Navy — wordmark colour, used for headings & dark sections */
  --navy-900: #1B2A6B;
  --navy-800: #243a7e;
  --navy-700: #324b94;

  /* Orange — primary brand colour (CTAs, links, accents).
     Variables keep their original gold-* names so existing
     selectors don't need to change. */
  --gold-500: #F47B20;  /* logo orange */
  --gold-400: #F8964A;  /* hover / softer */
  --gold-300: #FCC79A;  /* tints, badges */

  /* Cream — page and section backgrounds, gently orange-tinted */
  --sand-50:  #FFF6EC;  /* page bg */
  --sand-100: #FBE9D2;  /* alt section bg */
  --sand-200: #F3D6B0;  /* borders, dividers */

  /* Neutrals — body text & UI greys */
  --ink-900:  #1a1a1a;
  --ink-600:  #4a4a4a;
  --ink-400:  #7a7a7a;
  --ink-200:  #d4d4d4;
  --white:    #ffffff;

  /* Red — highlight (matches the "4" in plat4m). Use sparingly. */
  --accent-rust: #E32726;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 960px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Shadows (tinted with the new navy) */
  --shadow-sm: 0 1px 2px rgba(27, 42, 107, 0.06);
  --shadow-md: 0 6px 24px rgba(27, 42, 107, 0.08);
  --shadow-lg: 0 24px 60px rgba(27, 42, 107, 0.14);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--sand-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* Typography scale */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy-900);
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1rem;
  display: inline-block;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold-500);
  vertical-align: middle;
  margin-right: 12px;
}

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all .25s var(--ease);
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold-500); color: var(--white);
  border-color: var(--gold-500);
}
.btn-primary:hover {
  background: var(--navy-900); color: var(--white);
  border-color: var(--navy-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent; color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-secondary:hover { background: var(--navy-900); color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }

.btn-arrow::after {
  content: '→';
  transition: transform .2s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.top-bar {
  background: var(--navy-900);
  color: var(--sand-100);
  font-size: 0.82rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.top-bar a { color: var(--sand-100); }
.top-bar a:hover { color: var(--gold-400); }
.top-bar-left, .top-bar-right { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
@media (max-width: 640px) {
  .top-bar { font-size: 0.75rem; }
  .top-bar-inner { gap: 8px 16px; }
  .top-bar-left, .top-bar-right { gap: 12px; }
  .top-bar-hide-sm { display: none; }
}

.header {
  background: var(--white);
  border-bottom: 1px solid var(--sand-200);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.96);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: contain; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem;
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--gold-500);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-900);
  position: relative;
  padding: 6px 0;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold-500);
  transition: width .25s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--navy-900); }

.nav-cta { margin-left: 12px; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--navy-900); position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--navy-900);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

@media (max-width: 968px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0;
    width: 320px; max-width: 85vw; height: 100vh;
    background: var(--white);
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform .3s var(--ease);
    z-index: 99;
  }
  .nav.open { transform: translateX(0); }
  .nav-cta { margin: 12px 0 0; width: 100%; justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 60%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 80px 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 161, 74, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(176, 74, 47, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: center;
}
.hero-content .eyebrow { color: var(--gold-400); }
.hero-content .eyebrow::before { background: var(--gold-400); }
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-400);
}
.hero-lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.7;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual — animated globe / hex pattern */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  margin-left: auto;
}
.hero-visual-card {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 20px;
  color: var(--white);
  animation: float 6s ease-in-out infinite;
}
.hero-visual-card-1 {
  top: 6%; right: 0;
  width: 200px;
  animation-delay: 0s;
}
.hero-visual-card-2 {
  bottom: 6%; left: 0;
  width: 220px;
  animation-delay: -2s;
}
.hero-visual-card-3 {
  top: 42%; left: 18%;
  width: 180px;
  animation-delay: -4s;
}
.hero-visual-card .num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.hero-visual-card .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 6px;
  letter-spacing: 0.04em;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: bounce 2.5s infinite;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

@media (max-width: 968px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 340px; margin: 0 auto; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 100px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head p {
  color: var(--ink-600);
  font-size: 1.05rem;
  margin-top: 1rem;
}
.section-head.left { text-align: left; margin-left: 0; }

/* ABOUT INTRO */
.about-intro {
  background: var(--white);
  position: relative;
}
.about-intro-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
  align-items: center;
}
.about-intro-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
}
.about-intro-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 20%, rgba(201, 161, 74, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(176, 74, 47, 0.3) 0%, transparent 50%);
}
.about-intro-visual-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px;
  color: var(--white);
  background: linear-gradient(to top, rgba(10, 31, 61, 0.95), transparent);
}
.about-intro-visual-content .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; line-height: 0.7;
  color: var(--gold-400);
}
.about-intro-visual-content blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 1rem 0;
}
.about-intro-content p {
  color: var(--ink-600);
  font-size: 1.02rem;
  margin-bottom: 1.25rem;
}
.about-intro-content p strong { color: var(--navy-900); font-weight: 600; }

@media (max-width: 968px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-intro-visual { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services {
  background: var(--sand-50);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-300);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--sand-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  margin-bottom: 24px;
  transition: all .3s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--gold-500);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--ink-600);
  font-size: 0.94rem;
  margin-bottom: 20px;
  line-height: 1.65;
}
.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.service-link::after { content: '→'; transition: transform .2s var(--ease); }
.service-card:hover .service-link::after { transform: translateX(4px); }

@media (max-width: 968px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   GLOBAL REACH
   ============================================================ */
.reach {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.reach::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(201, 161, 74, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(201, 161, 74, 0.08) 0%, transparent 50%);
}
.reach-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.reach h2 { color: var(--white); }
.reach-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin: 1.5rem 0 2.5rem;
  line-height: 1.7;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.region {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  transition: all .25s var(--ease);
}
.region:hover {
  border-color: var(--gold-400);
  background: rgba(201, 161, 74, 0.08);
}
.region-flag {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.region-name {
  font-weight: 600; font-size: 0.95rem;
  color: var(--white);
}
.region-desc {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.reach-map {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 968px) {
  .reach-inner { grid-template-columns: 1fr; gap: 48px; }
  .reach-map { max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   WHY US — three pillars (Platinum-inspired)
   ============================================================ */
.why-us { background: var(--white); }
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.pillar {
  text-align: center;
  padding: 32px;
}
.pillar-icon {
  width: 72px; height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--sand-100), var(--sand-200));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  position: relative;
}
.pillar-icon::before {
  content: '';
  position: absolute; inset: -8px;
  border: 1px dashed var(--gold-400);
  border-radius: 50%;
  opacity: 0.6;
}
.pillar-icon svg { width: 32px; height: 32px; }
.pillar h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--navy-900);
}
.pillar p {
  font-size: 0.92rem;
  color: var(--ink-600);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .pillars { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats {
  background:
    linear-gradient(135deg, rgba(10, 31, 61, 0.92), rgba(16, 42, 82, 0.92)),
    var(--sand-100);
  color: var(--white);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ============================================================
   JOBS / FEATURED ROLES
   ============================================================ */
.jobs-section { background: var(--sand-50); }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all .25s var(--ease);
  display: flex; flex-direction: column;
}
.job-card:hover {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.job-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  padding: 4px 10px;
  background: var(--sand-100);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  width: fit-content;
}
.job-card h4 {
  font-size: 1.1rem;
  color: var(--navy-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.job-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  font-size: 0.85rem;
  color: var(--ink-600);
  margin-bottom: 16px;
}
.job-meta-item { display: flex; align-items: center; gap: 6px; }
.job-card p {
  font-size: 0.9rem;
  color: var(--ink-600);
  margin-bottom: 20px;
  flex: 1;
}
.job-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--sand-200);
}
.job-salary {
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.92rem;
}
.job-apply {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.job-apply::after { content: '→'; transition: transform .2s var(--ease); }
.job-card:hover .job-apply::after { transform: translateX(3px); }
.job-apply:hover { color: var(--gold-500); }

.jobs-cta { text-align: center; margin-top: 48px; }

@media (max-width: 968px) { .jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .jobs-grid { grid-template-columns: 1fr; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testi-card {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-400);
  opacity: 0.5;
}
.testi-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy-800);
  line-height: 1.5;
  margin: 24px 0;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--accent-rust));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 600; font-size: 0.95rem;
}
.testi-name { font-weight: 600; font-size: 0.92rem; color: var(--navy-900); }
.testi-role { font-size: 0.8rem; color: var(--ink-600); }
@media (max-width: 968px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201, 161, 74, 0.15) 0%, transparent 40%);
}
.cta-strip h2 { color: var(--white); position: relative; }
.cta-strip h2 em { color: var(--gold-400); font-style: italic; font-weight: 400; }
.cta-strip p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin: 1rem auto 2rem;
  max-width: 600px;
  position: relative;
}
.cta-strip .btn { position: relative; }
.cta-strip-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(201, 161, 74, 0.15) 0%, transparent 50%);
}
.page-header-inner { position: relative; z-index: 2; max-width: 760px; }
.page-header h1 { color: var(--white); margin-bottom: 1rem; }
.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.breadcrumb a:hover { color: var(--gold-400); }
.breadcrumb span { margin: 0 8px; }

/* ============================================================
   CONTENT BLOCKS (inner pages)
   ============================================================ */
.content-block { background: var(--white); }
.content-block.alt { background: var(--sand-50); }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.two-col-content p {
  color: var(--ink-600);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}
.two-col-content ul {
  list-style: none;
  margin: 1.5rem 0;
}
.two-col-content li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--ink-900);
  border-bottom: 1px solid var(--sand-200);
}
.two-col-content li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold-500); font-weight: 700;
}
.two-col-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  position: relative;
  overflow: hidden;
}
.two-col-visual.right-img { order: 2; }
.two-col-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(201, 161, 74, 0.3) 0%, transparent 60%);
}
.two-col-visual-decor {
  position: absolute; bottom: 32px; left: 32px;
  color: var(--gold-400);
}
.two-col-visual-decor .big-num {
  font-family: var(--font-display);
  font-size: 5rem; font-weight: 700; line-height: 1;
  color: var(--gold-400);
}
.two-col-visual-decor .lbl {
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 968px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .two-col-visual.right-img { order: 0; }
  .two-col-visual { max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   VALUES GRID (about page)
   ============================================================ */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  transition: all .25s var(--ease);
}
.value-card:hover {
  border-color: var(--gold-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 16px;
}
.value-card h4 { margin-bottom: 10px; }
.value-card p { color: var(--ink-600); font-size: 0.94rem; line-height: 1.6; }
@media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px; left: 12%; right: 12%;
  height: 1px;
  background: repeating-linear-gradient(to right,
    var(--gold-400) 0, var(--gold-400) 6px,
    transparent 6px, transparent 14px);
}
.step {
  text-align: center;
  background: var(--sand-50);
  padding: 24px 20px;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 2;
}
.step-num {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--navy-900);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  border: 4px solid var(--sand-50);
}
.step h4 { margin-bottom: 8px; font-size: 1.05rem; }
.step p { font-size: 0.88rem; color: var(--ink-600); line-height: 1.55; }
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}

/* ============================================================
   JOBS PAGE — filters + listing
   ============================================================ */
.job-filters {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.filter-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin-bottom: 8px;
}
.filter-group select,
.filter-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy-900);
  background: var(--white);
  transition: border-color .2s var(--ease);
}
.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--gold-500);
}
@media (max-width: 768px) {
  .job-filters { grid-template-columns: 1fr; }
}

.jobs-list-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
@media (max-width: 768px) { .jobs-list-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px;
}
.contact-info-card {
  background: var(--navy-900);
  color: var(--white);
  padding: 48px 36px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(201, 161, 74, 0.18) 0%, transparent 50%);
}
.contact-info-card > * { position: relative; }
.contact-info-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.contact-detail {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: rgba(201, 161, 74, 0.15);
  color: var(--gold-400);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-detail-value { color: var(--white); font-weight: 500; }
.contact-detail-value a:hover { color: var(--gold-400); }

.contact-form {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color .2s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-500);
}
.form-group textarea { resize: vertical; min-height: 140px; }

@media (max-width: 968px) {
  .contact-grid, .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-mark { filter: none; background: var(--white); padding: 2px; }
.footer-brand p {
  margin: 20px 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all .25s var(--ease);
}
.footer-social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 6px 0; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.6); }
.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--gold-400); }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   FLOATING SOCIAL RAIL — fixed to the right edge of the viewport
   ============================================================ */
.social-rail {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}
.social-rail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-md);
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.social-rail a:hover {
  background: var(--gold-500);
  color: var(--white);
  transform: translateX(-3px);
}
.social-rail svg { width: 18px; height: 18px; }
@media (max-width: 768px) {
  .social-rail { display: none; }
}

/* ============================================================
   UTILITIES & ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
