/* ============================================================
   Fiat Talent — Shared Styles
   A warm editorial recruiting agency design system
   ============================================================ */

:root {
  /* Palette */
  --cream: #F4EEE2;
  --cream-deep: #EADFC8;
  --blush: #EFDFC7;
  --blush-deep: #E5D1B3;
  --taupe: #C9B396;
  --terracotta: #B8734F;
  --terracotta-deep: #8E5538;
  --terracotta-light: #D49971;
  --ink: #2E2822;
  --ink-soft: #4A4034;
  --ink-mute: #6B5D4C;
  --border: rgba(46, 40, 34, 0.12);
  --border-strong: rgba(46, 40, 34, 0.2);

  /* Fonts */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Instrument Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  /* Layout */
  --max-w: 1400px;
  --max-w-text: 780px;
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  letter-spacing: -0.005em;
  position: relative;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0 0.13 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--ink);
}

.mono {
  font-family: var(--font-mono);
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.italic {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  color: var(--terracotta);
}

/* ============================================================
   TOP STRIP
   ============================================================ */
.top-strip {
  position: relative;
  z-index: 10;
  background: var(--cream-deep);
  color: var(--ink-soft);
  padding: 10px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
}
.top-strip .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  margin-right: 10px;
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.top-strip .right {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.55;
  color: var(--ink);
}

/* ============================================================
   NAV
   ============================================================ */
nav.main {
  position: sticky;
  top: 0;
  z-index: 9;
  background: rgba(244, 238, 226, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(46, 40, 34, 0.08);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  gap: 4px;
}
.logo img {
  height: 22px;
  width: auto;
  display: block;
}
.logo .tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  font-size: 0.74rem;
  color: var(--ink-soft);
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.75;
}
nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}
nav ul a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
nav ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
nav ul a:hover { color: var(--terracotta); }
nav ul a:hover::after { width: 100%; }
.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--terracotta);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.nav-cta svg { transition: transform 0.3s; }
.nav-cta:hover svg { transform: translateX(3px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  letter-spacing: -0.005em;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover {
  background: var(--terracotta);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-terracotta { background: var(--terracotta); color: var(--cream); }
.btn-terracotta:hover {
  background: var(--terracotta-deep);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn svg { transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px) translateY(-2px) rotate(-10deg); }

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  position: relative;
  padding: 80px 40px 60px;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s 0.1s ease-out forwards;
}
.hero-label .line { width: 40px; height: 1px; background: var(--terracotta); }
.hero-label .mono { color: var(--terracotta); letter-spacing: 0.12em; }

.hero h1 {
  font-size: clamp(3rem, 7.5vw, 8.5rem);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.92;
  opacity: 0;
  animation: fadeUp 0.9s 0.25s ease-out forwards;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 16px;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s ease-out forwards;
}
.hero-right p {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 420px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image-block {
  margin-top: 70px;
  position: relative;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 1s 0.6s ease-out forwards;
}
.hero-image {
  position: relative;
  height: 62vh;
  min-height: 480px;
  max-height: 640px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(46,40,34,0.55));
  pointer-events: none;
}
.hero-image-meta {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: var(--cream);
  z-index: 2;
}
.hero-image-meta .mono { opacity: 0.85; }
.hero-image-stats { display: flex; gap: 40px; }
.stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  line-height: 1;
  font-variation-settings: 'SOFT' 50, 'WONK' 1;
}
.stat .num .italic { color: var(--blush); }
.stat .label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  margin-top: 100px;
  padding: 22px 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 38s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 60px;
}
.marquee-item .sep { color: var(--terracotta); font-size: 1.6rem; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section.content {
  padding: 140px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  gap: 40px;
}
.section-num {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--terracotta);
}
.section-num .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.section-title {
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 300;
  max-width: 900px;
}
.section-caption {
  max-width: 340px;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
  padding-bottom: 12px;
}

/* ============================================================
   WHY DIFFERENT - asymmetric card grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1), box-shadow 0.5s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(46,40,34,0.22);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.card:hover::before { opacity: 1; }
.card.c1 { grid-column: span 5; background: var(--terracotta); color: var(--cream); }
.card.c1 h3, .card.c1 .icon-wrap, .card.c1 .card-num { color: var(--cream); }
.card.c1 .card-num { opacity: 0.7; }
.card.c1 h3 .italic { color: var(--blush); }
.card.c2 { grid-column: span 4; background: var(--blush); }
.card.c3 { grid-column: span 3; background: var(--cream-deep); }

.card-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 20px;
}
.icon-wrap {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--terracotta);
}
.card h3 {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.05;
}
.card h3 .italic {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  color: var(--terracotta);
}
.card p { font-size: 0.95rem; line-height: 1.55; color: var(--ink-soft); }
.card.c1 p { color: rgba(244, 238, 226, 0.88); }
.card-footer {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(46,40,34,0.18);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.65;
}
.card.c1 .card-footer { border-top-color: rgba(244, 238, 226, 0.25); opacity: 0.8; }

/* ============================================================
   PULLQUOTE
   ============================================================ */
.pullquote-section {
  padding: 60px 40px 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.pullquote {
  position: relative;
  padding: 90px 80px;
  background: var(--cream-deep);
  color: var(--ink);
  border-radius: var(--radius);
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(184, 115, 79, 0.2);
}
.pullquote::before,
.pullquote::after {
  position: absolute;
  font-family: var(--font-display);
  font-size: 16rem;
  font-style: italic;
  color: rgba(184, 115, 79, 0.15);
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  line-height: 1;
}
.pullquote::before { content: '\201C'; top: -40px; left: 30px; }
.pullquote::after { content: '\201D'; bottom: -130px; right: 40px; }
.pullquote-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SPLIT SECTION (Work With)
   ============================================================ */
.split-section {
  padding: 80px 40px 140px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.split-text h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 300;
  margin-bottom: 30px;
  line-height: 1;
}
.split-text .lead {
  font-size: 1.15rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--ink);
  font-weight: 500;
}
.split-text p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 500px;
}
.split-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 580px;
  background: var(--blush);
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.split-image:hover img { transform: scale(1.04); }
.split-image .tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--cream);
  padding: 8px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.split-image .tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--terracotta); }

/* Process list */
.process-list { list-style: none; margin-bottom: 36px; }
.process-list li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.process-list li:hover { padding-left: 12px; }
.process-list .step-num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
  font-size: 0.95rem;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  min-width: 30px;
}
.process-list .step-text { font-size: 1.02rem; letter-spacing: -0.005em; }
.process-list .step-text strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
}
.process-list .step-text span { color: var(--ink-soft); font-size: 0.92rem; }

/* ============================================================
   OPEN ROLES
   ============================================================ */
.roles-section {
  background: var(--blush-deep);
  color: var(--ink);
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
}
.roles-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.18 0 0 0 0 0.16 0 0 0 0 0.13 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.roles-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.roles-section::after {
  content: 'DREAM BIG.';
  position: absolute;
  bottom: -60px;
  right: -30px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 22rem;
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  color: rgba(184, 115, 79, 0.14);
  letter-spacing: -0.04em;
  line-height: 0.8;
  pointer-events: none;
  z-index: 1;
}
.roles-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}
.roles-head h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  font-weight: 300;
}
.roles-head p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 420px;
  padding-bottom: 14px;
}
.roles-list {
  list-style: none;
  border-top: 1px solid var(--border-strong);
}
.role-item {
  display: grid;
  grid-template-columns: 60px 3fr 2fr 1.5fr 1fr 60px;
  gap: 30px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-strong);
  transition: padding 0.4s, background 0.4s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.role-item:hover {
  padding-left: 20px;
  padding-right: 20px;
  background: rgba(244, 238, 226, 0.5);
}
.role-item:hover .role-title { color: var(--terracotta-deep); }
.role-item:hover .role-arrow { transform: translate(4px, -4px); opacity: 1; color: var(--terracotta-deep); }
.role-num { font-family: var(--font-mono); font-size: 0.72rem; opacity: 0.55; }
.role-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  transition: color 0.3s;
  line-height: 1.1;
}
.role-company {
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  color: var(--terracotta-deep);
  font-size: 1.05rem;
}
.role-type, .role-location {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.role-arrow {
  justify-self: end;
  opacity: 0.5;
  transition: transform 0.3s, opacity 0.3s, color 0.3s;
}
.roles-cta-block {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-strong);
  gap: 40px;
  flex-wrap: wrap;
}
.roles-cta-block p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  max-width: 520px;
}

/* ============================================================
   NOT SURE (contact)
   ============================================================ */
.not-sure {
  padding: 140px 40px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.not-sure-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.not-sure-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
}
.not-sure h2 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 0.95;
}
.path-cards { display: grid; grid-template-columns: 1fr; gap: 16px; }
.path-card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  gap: 30px;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  border: 1px solid transparent;
}
.path-card:hover {
  background: var(--terracotta);
  color: var(--cream);
  transform: translateX(8px);
}
.path-card:hover .path-card-label { color: var(--blush); }
.path-card:hover .path-arrow { transform: translate(4px, -4px); }
.path-card:hover .path-card-content h4 .italic { color: var(--blush); }
.path-card-content h4 { font-size: 1.5rem; font-weight: 400; margin-bottom: 4px; }
.path-card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s;
}
.path-card-content p { font-size: 0.9rem; line-height: 1.5; opacity: 0.82; }
.path-arrow { flex-shrink: 0; transition: transform 0.3s; }

.not-sure-right {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 520px;
  background: var(--blush);
}
.not-sure-right img { width: 100%; height: 100%; object-fit: cover; }
.not-sure-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46,40,34,0.05) 0%, rgba(46,40,34,0.55));
  z-index: 1;
}
.image-quote {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.image-quote .italic { color: var(--cream); }
.image-quote .author {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 16px;
  opacity: 0.82;
  font-style: normal;
  color: var(--cream);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--cream-deep);
  color: var(--ink);
  padding: 100px 40px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 115, 79, 0.2);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.footer-brand h3 {
  color: var(--ink);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
  max-width: 420px;
}
.footer-brand p {
  color: var(--ink-soft);
  max-width: 380px;
  font-size: 0.95rem;
}
.footer-logo-mark { margin-top: 30px; height: 26px; opacity: 0.9; }
.footer-logo-mark img { height: 100%; width: auto; display: block; }

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 22px;
  font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s, padding-left 0.3s;
  display: inline-block;
}
.footer-col a:hover { color: var(--terracotta); padding-left: 6px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  flex-wrap: wrap;
  gap: 20px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1), transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   JOB DETAIL PAGE
   ============================================================ */
.job-breadcrumb {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px 40px 0;
  position: relative;
  z-index: 2;
}
.job-breadcrumb a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s, transform 0.3s;
}
.job-breadcrumb a:hover {
  color: var(--terracotta);
  transform: translateX(-4px);
}
.job-breadcrumb svg { transition: transform 0.3s; }
.job-breadcrumb a:hover svg { transform: translateX(-2px); }

.job-hero {
  padding: 40px 40px 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.job-hero-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.job-hero-label .line { width: 40px; height: 1px; background: var(--terracotta); }
.job-hero-label .mono { color: var(--terracotta); letter-spacing: 0.12em; }

.job-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.98;
  max-width: 1100px;
  margin-bottom: 32px;
}
.job-hero h1 .company {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  color: var(--terracotta);
  display: block;
  font-size: 0.55em;
  margin-top: 14px;
  line-height: 1;
}
.job-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.job-meta-item {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.job-meta-item svg { opacity: 0.6; flex-shrink: 0; }
.job-meta-sep { opacity: 0.3; color: var(--ink-soft); }

.job-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Job layout */
.job-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}
.job-main { max-width: 760px; }

/* Intro callout (the warm intro block on each page) */
.job-intro-card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 40px 44px;
  margin-bottom: 60px;
  font-size: 1.06rem;
  line-height: 1.6;
  position: relative;
}
.job-intro-card p { margin-bottom: 14px; color: var(--ink); }
.job-intro-card p:last-child { margin-bottom: 0; }
.job-intro-card strong { font-weight: 600; color: var(--ink); }
.job-intro-card .leaf-icon {
  position: absolute;
  top: 34px;
  left: -12px;
  background: var(--cream);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(46,40,34,0.1);
}
.job-intro-card .leaf-icon svg { color: var(--terracotta); }

/* Content sections in job page */
.job-section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}
.job-section-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terracotta);
  margin-bottom: 10px;
  display: block;
}
.job-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.05;
}
.job-section h2 .italic {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  color: var(--terracotta);
}
.job-section h3 {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  margin: 32px 0 14px;
  color: var(--ink);
}
.job-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 16px;
  max-width: 660px;
}
.job-section p strong { color: var(--ink); font-weight: 600; }
.job-section ul {
  list-style: none;
  margin: 16px 0 24px;
}
.job-section ul li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
  max-width: 700px;
}
.job-section ul li:last-child { border-bottom: none; }
.job-section ul li strong { color: var(--ink); font-weight: 600; }
.job-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 14px;
  height: 1px;
  background: var(--terracotta);
}
.job-section ul ul {
  margin: 8px 0 0 8px;
}
.job-section ul ul li {
  border-bottom: none;
  padding: 4px 0 4px 24px;
  font-size: 0.92rem;
}
.job-section ul ul li::before {
  top: 14px;
  width: 8px;
  background: var(--ink-mute);
}

/* Sub-sections inside job-section (for Responsibility buckets) */
.job-subsection {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.job-subsection:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.job-subsection h3 {
  margin-top: 0;
  color: var(--terracotta-deep);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
}

/* Sidebar */
.job-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.job-sidebar-card {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--border);
}
.job-sidebar-card h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 18px;
  font-weight: 400;
}
.job-sidebar-card .stat-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.job-sidebar-card .stat-row > div { display: flex; flex-direction: column; gap: 2px; }
.job-sidebar-card .stat-label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.job-sidebar-card .stat-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.job-sidebar-card .stat-val.italic-val {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
}
.job-sidebar-toc { padding: 28px 26px; }
.job-sidebar-toc ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.job-sidebar-toc a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 6px 0;
  border-left: 2px solid transparent;
  padding-left: 12px;
  transition: all 0.3s;
  display: block;
}
.job-sidebar-toc a:hover {
  border-left-color: var(--terracotta);
  color: var(--terracotta);
  padding-left: 16px;
}

.job-sidebar-apply {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 28px 26px;
}
.job-sidebar-apply h4 { color: var(--terracotta-light); }
.job-sidebar-apply p {
  color: rgba(244, 238, 226, 0.85);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
}
.job-sidebar-apply p .italic { color: var(--terracotta-light); }
.job-sidebar-apply .btn-light {
  background: var(--cream);
  color: var(--ink);
  width: 100%;
  justify-content: center;
}
.job-sidebar-apply .btn-light:hover {
  background: var(--terracotta-light);
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--cream);
}

/* Apply closing block at bottom of job content */
.job-apply-block {
  margin-top: 60px;
  padding: 50px 50px;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.job-apply-block h3 {
  color: var(--cream);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 14px;
  font-family: var(--font-display);
}
.job-apply-block h3 .italic { color: var(--blush); }
.job-apply-block p {
  color: rgba(244, 238, 226, 0.92);
  margin-bottom: 26px;
  font-size: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.job-apply-block .btn-light {
  background: var(--cream);
  color: var(--ink);
}
.job-apply-block .btn-light:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--cream);
}

/* Other roles strip at bottom of job page */
.other-roles {
  background: var(--blush-deep);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 115, 79, 0.2);
}
.other-roles-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.other-roles h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1;
}
.other-roles h2 .italic {
  font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1;
  color: var(--terracotta);
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 900px) {
  nav ul { display: none; }
  nav.main { padding: 14px 20px; }
  .hero { padding: 40px 24px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-block { margin-top: 40px; }
  .split-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-image { height: 420px; }
  .not-sure-grid { grid-template-columns: 1fr; }
  .not-sure-right { min-height: 400px; }
  .why-grid { grid-template-columns: 1fr; }
  .card.c1, .card.c2, .card.c3 { grid-column: span 1; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .roles-head { grid-template-columns: 1fr; gap: 30px; }
  .role-item {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    padding: 22px 0;
  }
  .role-item:hover { padding-left: 8px; padding-right: 8px; }
  .role-company, .role-type, .role-location { display: none; }
  .role-title { font-size: 1.2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
  .marquee-item { font-size: 1.4rem; }
  .pullquote { padding: 50px 30px; }
  .hero-image-meta { flex-direction: column; gap: 16px; align-items: flex-start; }
  .hero-image-stats { gap: 24px; }
  section.content { padding: 80px 24px; }
  .split-section { padding: 40px 24px 80px; }
  .not-sure { padding: 80px 24px; }
  .roles-section { padding: 80px 24px; }
  .pullquote-section { padding: 40px 24px 60px; }
  footer { padding: 70px 24px 30px; }
  .footer-bottom { flex-direction: column; }
  .top-strip { padding: 8px 20px; font-size: 0.7rem; }
  .top-strip .right { display: none; }
  /* Job pages */
  .job-layout { grid-template-columns: 1fr; gap: 40px; padding: 0 24px 60px; }
  .job-sidebar { position: static; }
  .job-hero { padding: 24px 24px 40px; }
  .job-breadcrumb { padding: 24px 24px 0; }
  .job-intro-card { padding: 28px 26px; }
  .job-intro-card .leaf-icon { left: 16px; top: -18px; }
  .job-apply-block { padding: 36px 24px; }
  .other-roles { padding: 60px 24px; }
}
