:root {
  --black: #0a0a0b;
  --charcoal: #131315;
  --charcoal-2: #1b1b1e;
  --line: rgba(244, 241, 236, 0.1);
  --line-soft: rgba(244, 241, 236, 0.06);
  --off-white: #f4f1ec;
  --off-white-dim: rgba(244, 241, 236, 0.62);
  --off-white-faint: rgba(244, 241, 236, 0.4);
  --bronze: #b08d57;
  --gold: #d9b483;
  --gold-bright: #e8caa0;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 em, h2 em { font-style: italic; color: var(--gold-bright); font-weight: 500; }

.section-lede {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--off-white-dim);
  max-width: 560px;
  margin: 22px 0 0;
  font-weight: 400;
}
.section-lede.center { max-width: 600px; margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--bronze));
  color: #14100a;
  box-shadow: 0 8px 24px -8px rgba(216, 175, 120, 0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(216, 175, 120, 0.65); }
.btn-outline {
  background: transparent;
  color: var(--off-white);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 0.98rem; }
.btn-block { width: 100%; }
.link-ghost { font-size: 0.9rem; color: var(--off-white-dim); font-weight: 500; }
.link-ghost:hover { color: var(--off-white); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10, 10, 11, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo span { color: var(--gold); font-weight: 400; }
.nav-links {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--off-white-dim);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--off-white); }
.nav-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 32px 100px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 1100px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.22) 0%, rgba(176, 141, 87, 0.06) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 880px; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  color: var(--off-white);
}
.hero-sub {
  font-size: 1.2rem;
  color: var(--off-white-dim);
  max-width: 620px;
  margin: 26px auto 0;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 84px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-label {
  font-size: 0.76rem;
  color: var(--off-white-faint);
  margin-top: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: var(--line);
  overflow: hidden;
}
.scroll-cue span {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold);
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue {
  0% { top: -50%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ---------- Sections ---------- */
.section {
  max-width: var(--container);
  margin: 0 auto;
  padding: 140px 32px;
}
.section-dark {
  max-width: none;
  background: var(--charcoal);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-dark > * { max-width: var(--container); margin-left: auto; margin-right: auto; }
.section-dark .journey { max-width: var(--container); margin-left: auto; margin-right: auto; }

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-top: 6px;
}

/* ---------- Pillars ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.pillar {
  background: var(--black);
  padding: 40px 34px;
  position: relative;
  transition: background 0.3s ease;
}
.pillar:hover { background: var(--charcoal-2); }
.pillar-index {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--bronze);
  display: block;
  margin-bottom: 20px;
}
.pillar h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--off-white);
}
.pillar p {
  font-size: 0.94rem;
  color: var(--off-white-dim);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Journey ---------- */
.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 80px;
}
.journey-track {
  position: absolute;
  top: 21px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: linear-gradient(90deg, var(--bronze), var(--gold-bright), var(--bronze));
  opacity: 0.4;
}
.journey-step { position: relative; text-align: left; }
.journey-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  border: 1px solid var(--bronze);
  color: var(--gold-bright);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.journey-step h4 {
  font-size: 1.2rem;
  color: var(--off-white);
  margin-bottom: 10px;
}
.journey-step p {
  font-size: 0.88rem;
  color: var(--off-white-dim);
  line-height: 1.55;
  margin: 0;
}
.opportunity-note {
  margin-top: 72px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  color: var(--off-white-faint);
  font-size: 0.88rem;
  max-width: 720px;
  line-height: 1.6;
}

/* ---------- Ideal recruit ---------- */
.recruit-split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin-top: 72px;
}
.recruit-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white-faint);
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 26px;
}
.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--off-white-dim);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.chip:hover { border-color: var(--gold); color: var(--gold-bright); }
.trait-list { list-style: none; margin: 0; padding: 0; }
.trait-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--off-white);
}
.trait-list li:last-child { border-bottom: none; }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 32px;
  margin-top: 72px;
}
.value h4 {
  font-size: 1.1rem;
  color: var(--gold-bright);
  margin-bottom: 10px;
}
.value p {
  font-size: 0.9rem;
  color: var(--off-white-dim);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Video grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 72px;
}
.video-card-lg { grid-column: span 2; grid-row: span 2; }
.video-card { cursor: pointer; }
.video-thumb {
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(217, 180, 131, 0.18), transparent 55%),
    linear-gradient(155deg, var(--charcoal-2), var(--black));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s ease;
}
.video-card-lg .video-thumb { aspect-ratio: 16 / 11; }
.video-card:hover .video-thumb { border-color: var(--gold); }
.play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(244, 241, 236, 0.08);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 0.85rem;
  padding-left: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.video-card:hover .play-btn { background: var(--gold-bright); color: #14100a; transform: scale(1.08); }
.video-title {
  margin: 14px 2px 0;
  font-size: 0.92rem;
  color: var(--off-white-dim);
  font-weight: 500;
}

/* ---------- Apply / Form ---------- */
.apply-cta {
  padding: 150px 32px;
  background: var(--charcoal);
  border-top: 1px solid var(--line-soft);
  text-align: center;
}
.apply-inner { max-width: 720px; margin: 0 auto; }
.apply-cta h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.apply-form { text-align: left; margin-top: 56px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 0.78rem;
  color: var(--off-white-faint);
  letter-spacing: 0.03em;
}
.field input, .field select, .field textarea {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.94rem;
  transition: border-color 0.2s ease;
  resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d9b483' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 15px center; }
.apply-form .btn-block { margin-top: 12px; }
.form-note { text-align: center; font-size: 0.78rem; color: var(--off-white-faint); margin: 14px 0 0; }
.form-note.success { color: var(--gold-bright); }
.form-note.error { color: #d98c8c; }

/* ---------- Footer ---------- */
.footer { padding: 80px 32px 40px; text-align: center; border-top: 1px solid var(--line-soft); }
.footer-inner { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.footer-tagline { color: var(--off-white-faint); font-size: 0.9rem; margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin: 12px 0; }
.footer-links a { font-size: 0.85rem; color: var(--off-white-dim); }
.footer-links a:hover { color: var(--gold-bright); }
.footer-legal { font-size: 0.74rem; color: var(--off-white-faint); line-height: 1.6; margin-top: 10px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(1, 1fr); gap: 36px; }
  .journey-track { display: none; }
  .recruit-split { grid-template-columns: 1fr; gap: 48px; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .video-card-lg { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions .link-ghost { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    cursor: pointer;
  }
  .nav-toggle span { width: 20px; height: 1.5px; background: var(--off-white); }
  .hero { padding: 140px 24px 80px; }
  .hero-stats { gap: 36px; }
  .section { padding: 90px 24px; }
  .apply-cta { padding: 90px 24px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .video-card-lg { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
}
