/* ============================================================
   Centaurus Recruitment — shared stylesheet
   Corporate-editorial dark navy + gold, healthcare recruitment
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --navy:        #0b1a2e;
  --navy-2:      #12233b;
  --navy-3:      #1b3350;
  --paper:       #f7f7f4;
  --paper-2:     #ffffff;
  --ink-on-dark:       #eef1f5;
  --ink-on-dark-mute:  rgba(238,241,245,0.70);
  --ink-on-dark-dim:   rgba(238,241,245,0.45);
  --ink-on-light:      #101826;
  --ink-on-light-mute: #4b5568;
  --gold:        #caa356;
  --gold-2:      #a37f36;
  --gold-soft:   rgba(202,163,86,0.16);
  --line-dark:   rgba(238,241,245,0.14);
  --line-light:  rgba(16,24,38,0.12);
  --shadow-dark: 0 30px 60px -20px rgba(0,0,0,0.55);
  --shadow-gold: 0 20px 45px -18px rgba(202,163,86,0.45);

  --font-display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --nav-height: 136px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--navy);
  color: var(--ink-on-dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.08; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.75rem;
}

.section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); scroll-margin-top: var(--nav-height); }
.section-dark  { background: var(--navy); color: var(--ink-on-dark); }
.section-navy2 { background: var(--navy-2); color: var(--ink-on-dark); }
.section-light { background: var(--paper); color: var(--ink-on-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--gold);
  display: inline-block;
}

.h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--ink-on-dark-mute);
  max-width: 56ch;
}
.section-light .lead { color: var(--ink-on-light-mute); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
  max-width: 46rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 3px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease-out), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { background: #d8b46a; transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--ink-on-dark);
  border-color: rgba(238,241,245,0.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent;
  color: var(--ink-on-light);
  border-color: rgba(16,24,38,0.28);
}
.btn-ghost-light:hover { border-color: var(--gold-2); color: var(--gold-2); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-solid {
  background: rgba(11,26,46,0.92);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line-dark);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.6);
}
.nav-inner {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink-on-dark);
}
.brand img { height: 100px; width: auto; object-fit: contain; }
.footer-brand .brand img { height: 64px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-link {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-on-dark-mute);
  padding-block: 0.3rem;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.35s var(--ease-out);
}
.nav-link:hover { color: var(--ink-on-dark); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link.is-active { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 0.9rem; }
.nav-cta { padding: 0.7rem 1.4rem; font-size: 0.85rem; }

.hamburger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 3px;
  border: 1px solid var(--line-dark);
  background: rgba(238,241,245,0.04);
  position: relative;
  flex-shrink: 0;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: "";
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink-on-dark);
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease, top 0.3s ease;
}
.hamburger span { top: 50%; transform: translateY(-50%); }
.hamburger span::before { top: -8px; }
.hamburger span::after { top: 8px; }
.hamburger.is-open span { background: transparent; }
.hamburger.is-open span::before { top: 0; transform: rotate(45deg); }
.hamburger.is-open span::after { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--nav-height) 0 0 0;
  background: var(--navy);
  z-index: 99;
  padding: 2.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); visibility: visible; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--line-dark);
}
.mobile-nav .btn { margin-top: 1.5rem; align-self: flex-start; }

@media (max-width: 1180px) {
  .nav-links, .nav-actions .nav-cta-desktop { display: none; }
  .hamburger { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--nav-height) + 3rem) 4rem;
  overflow: clip;
  background: var(--navy);
}
.hero-mesh {
  position: absolute;
  inset: -20% -10% -30% -10%;
  z-index: 0;
  background:
    radial-gradient(38% 45% at 18% 24%, rgba(202,163,86,0.20), transparent 70%),
    radial-gradient(45% 50% at 85% 12%, rgba(27,51,80,0.9), transparent 70%),
    radial-gradient(60% 60% at 60% 100%, rgba(202,163,86,0.10), transparent 75%);
  filter: blur(60px);
  animation: meshDrift 26s ease-in-out infinite;
  pointer-events: none;
}
@keyframes meshDrift {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50%      { transform: scale(1.12) translate(-2%, 2%); }
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(238,241,245,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(238,241,245,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 40%, transparent 100%);
  pointer-events: none;
}
.hero-photo-tint {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo-tint img { width: 100%; height: 100%; object-fit: cover; opacity: 0.34; }
.hero-photo-tint::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, var(--navy) 22%, rgba(11,26,46,0.72) 55%, rgba(11,26,46,0.4) 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-kicker { margin-bottom: 1.4rem; }
.hero-title {
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  max-width: 20ch;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  margin-top: 1.4rem;
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  color: var(--ink-on-dark-mute);
  max-width: 46ch;
}
.hero-actions {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-note {
  margin-top: 2.6rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-on-dark-dim);
  letter-spacing: 0.04em;
}
.hero-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.hero-simple { min-height: 58svh; padding-block: calc(var(--nav-height) + 3.5rem) 3.5rem; }

@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
}

/* ---------- Stats bar ---------- */
.stats-bar {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--navy-2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat { padding-block: 2.6rem; text-align: center; border-right: 1px solid var(--line-dark); }
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--gold);
  font-weight: 700;
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink-on-dark-mute);
  letter-spacing: 0.01em;
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-dark); padding-bottom: 1.8rem; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 1.8rem; }
}

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.marquee-track {
  display: flex;
  width: max-content;
  gap: 3.2rem;
  padding-block: 1.4rem;
  animation: marqueeScroll 62s linear infinite;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--ink-on-light-mute);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.marquee-item::after { content: "•"; color: var(--gold); }
.section-dark .marquee, .section-navy2 .marquee { border-color: var(--line-dark); }
.section-dark .marquee-item, .section-navy2 .marquee-item { color: var(--ink-on-dark-mute); }

/* ---------- Tilt cards (services / jobs) ---------- */
.tilt-card {
  --rx: 0deg; --ry: 0deg;
  transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s ease, border-color 0.4s ease;
  will-change: transform;
}
.tilt-card:hover {
  box-shadow: var(--shadow-gold);
  border-color: rgba(202,163,86,0.4);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.service-card {
  position: relative;
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  cursor: pointer;
}
.card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}
.card-cta {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--gold);
  transition: gap 0.3s var(--ease-out);
}
.service-card:hover .card-cta { gap: 0.8rem; }
.section-light .card-cta { border-top-color: var(--line-light); }
.service-index {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.service-title { font-size: 1.2rem; }
.service-desc { color: var(--ink-on-dark-mute); font-size: 0.95rem; line-height: 1.65; }
.service-roles {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.role-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  background: rgba(238,241,245,0.06);
  color: var(--ink-on-dark-mute);
}
.section-light .service-card { background: var(--paper-2); border-color: var(--line-light); }
.section-light .service-desc { color: var(--ink-on-light-mute); }
.section-light .role-tag { background: rgba(16,24,38,0.05); color: var(--ink-on-light-mute); }
.section-light .service-roles { border-top-color: var(--line-light); }

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

/* ---------- Jobs ---------- */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.job-card {
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--ink-on-light);
}
.job-cat { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-2); }
.job-title { font-size: 1.15rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; padding-top: 0.9rem; border-top: 1px solid var(--line-light); }
.job-tag { font-family: var(--font-mono); font-size: 0.72rem; padding: 0.3rem 0.6rem; border-radius: 3px; background: rgba(16,24,38,0.05); color: var(--ink-on-light-mute); }
.job-desc { font-size: 0.92rem; color: var(--ink-on-light-mute); line-height: 1.6; }
.job-card .btn { align-self: flex-start; }

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

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.step { position: relative; padding-inline-start: 0; }
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
  line-height: 1;
}
.step-title { margin-top: 0.9rem; font-size: 1.1rem; }
.step-desc { margin-top: 0.5rem; font-size: 0.92rem; color: var(--ink-on-dark-mute); line-height: 1.6; }
.section-light .step-desc { color: var(--ink-on-light-mute); }
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.2rem; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Who-we-serve tag grid ---------- */
.tag-grid { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.tag-pill {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  color: var(--ink-on-dark-mute);
}
.section-light .tag-pill { border-color: var(--line-light); color: var(--ink-on-light-mute); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.testimonial-card {
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  color: var(--ink-on-light);
}
.quote-mark { font-family: var(--font-display); font-size: 2.6rem; color: var(--gold-soft); line-height: 1; }
.testimonial-text { font-size: 0.98rem; line-height: 1.7; color: var(--ink-on-light-mute); }
.testimonial-person { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; }
.avatar-mono {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.person-name { font-size: 0.92rem; font-weight: 600; }
.person-role { font-size: 0.82rem; color: var(--ink-on-light-mute); }

@media (max-width: 980px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ---------- CTA split ---------- */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line-dark);
  border-radius: 12px;
  overflow: hidden;
}
.cta-col {
  background: var(--navy-2);
  padding: clamp(2.4rem, 5vw, 3.6rem);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.cta-col h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.cta-col p { color: var(--ink-on-dark-mute); font-size: 0.98rem; }
@media (max-width: 760px) { .cta-split { grid-template-columns: 1fr; } }

/* ---------- Forms ---------- */
.form-card {
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  border-radius: 12px;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ink-on-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 500; color: var(--ink-on-light-mute); }
.form-field input, .form-field textarea, .form-field select {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--line-light);
  background: var(--paper);
  color: var(--ink-on-light);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold-2);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }
.form-fineprint { font-size: 0.78rem; color: var(--ink-on-light-mute); max-width: 34ch; }

.success-banner {
  display: none;
  align-items: center;
  gap: 0.8rem;
  background: rgba(202,163,86,0.14);
  border: 1px solid rgba(202,163,86,0.4);
  color: var(--gold-2);
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.4rem;
  font-size: 0.92rem;
}
.success-banner.is-visible { display: flex; }
.success-banner svg { flex-shrink: 0; }

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

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); border-top: 1px solid var(--line-dark); padding-block: 4rem 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand .brand { color: var(--ink-on-dark); }
.footer-tagline { font-size: 0.9rem; color: var(--ink-on-dark-mute); max-width: 30ch; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 0.4rem; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-on-dark-mute);
  transition: border-color 0.3s ease, color 0.3s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-on-dark-dim); margin-bottom: 1.1rem; font-family: var(--font-mono); font-weight: 400; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a, .footer-col span { font-size: 0.92rem; color: var(--ink-on-dark-mute); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-on-dark-dim);
}
.footer-bottom a { color: var(--ink-on-dark-dim); }
.footer-bottom a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
/* Defensive: elements with data-split must stay visible even if the split-reveal JS is stale/fails */
.reveal[data-split] { opacity: 1; transform: none; }

/* ---------- Misc editorial ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

.figure-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  aspect-ratio: 4 / 3;
}
.section-dark .figure-frame, .section-navy2 .figure-frame { border-color: var(--line-dark); }
.figure-frame img { width: 100%; height: 100%; object-fit: cover; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 1.8rem; border: 1px solid var(--line-light); border-radius: 10px; }
.section-dark .value-card, .section-navy2 .value-card { border-color: var(--line-dark); }
