/* ==========================================================================
   GRAM HR Solutions — Design System v2
   Direction: clean corporate — white / light grey / brand orange (#F15304),
   modeled loosely on gramconsulting.com.au's structure and openness.
   ========================================================================== */

:root {
  /* Color — pulled from the client's actual logo file */
  --ink: #121212;
  --ink-soft: #55585c;
  --grey-text: #6b6e73;
  --white: #FFFFFF;
  --grey-bg: #F6F6F4;
  --grey-mid: #EBEAE6;
  --line: #E3E2DD;
  --line-strong: #D2D0C9;
  --orange: #F15304;
  --orange-dark: #CC4603;
  --orange-tint: #FDECE2;

  /* Type */
  --font-display: 'Manrope', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4.5rem;
  --space-6: 7rem;

  --radius: 10px;
  --radius-sm: 6px;
  --max-w: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
p { margin: 0; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-4); }
@media (max-width: 640px) { .wrap { padding: 0 var(--space-3); } }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 50px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: var(--space-4); }
.nav-desktop a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-desktop a:hover { color: var(--ink); }
.nav-desktop a.current { color: var(--orange); }

.btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--orange);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(241,83,4,0.25); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: '';
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
}
.nav-mobile { display: none; flex-direction: column; border-bottom: 1px solid var(--line); background: var(--white); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: var(--space-2) var(--space-3); border-top: 1px solid var(--line); font-size: 1rem; font-weight: 600; }
.nav-mobile .btn { margin: var(--space-2) var(--space-3); justify-content: center; }

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-6) 0 var(--space-5);
  background: var(--grey-bg);
  position: relative;
  overflow: hidden;
}
.hero:not(.hero-slider)::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(241,83,4,0.14) 0%, rgba(241,83,4,0) 70%);
  border-radius: 50%;
}
.hero .wrap { position: relative; }
.hero-inner { max-width: 780px; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin-top: var(--space-3); }
.hero h1 .accent { color: var(--orange); }
.hero-lede { margin-top: var(--space-3); font-size: 1.2rem; max-width: 52ch; color: var(--ink-soft); }
.hero-actions { margin-top: var(--space-4); display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Why-us cards (3-up) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.why-card .icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: var(--space-3);
}
.why-card h3 { font-size: 1.15rem; }
.why-card p { margin-top: 0.6rem; color: var(--grey-text); font-size: 0.96rem; }
@media (max-width: 860px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Section shell ---------- */
.section { padding: var(--space-6) 0; }
.section-alt { background: var(--grey-bg); }
.section-head { margin-bottom: var(--space-4); max-width: 640px; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); margin-top: var(--space-2); }
.section-head .sub { margin-top: var(--space-2); color: var(--grey-text); font-size: 1.05rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Services (clean cards) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover {
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(18,18,18,0.06);
  transform: translateY(-3px);
}
.service-card .num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.04em;
}
.service-card h3 { font-size: 1.25rem; margin-top: 0.7rem; }
.service-card p { margin-top: 0.6rem; color: var(--grey-text); font-size: 0.95rem; }
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Focus (industries) ---------- */
.focus-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
}
.focus-copy p { color: var(--grey-text); font-size: 1.02rem; }
.focus-copy p + p { margin-top: var(--space-2); }
.focus-tags { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: var(--space-3); }
.tag {
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  background: var(--orange-tint);
  color: var(--orange-dark);
  border-radius: 999px;
}
.focus-list { display: flex; flex-direction: column; gap: var(--space-2); }
.focus-item {
  display: flex;
  gap: 1rem;
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: flex-start;
}
.focus-item .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.focus-item p { color: var(--ink-soft); font-size: 0.96rem; }
@media (max-width: 860px) { .focus-block { grid-template-columns: 1fr; } }

/* ---------- Impact stat circles ---------- */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  text-align: center;
}
.impact-item { padding: var(--space-3); }
.impact-circle {
  width: 128px; height: 128px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--ink);
}
.impact-item .label { font-size: 0.92rem; color: var(--grey-text); max-width: 20ch; margin: 0 auto; }
@media (max-width: 860px) { .impact-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Team ---------- */
.faculty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.faculty-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  padding: var(--space-4) var(--space-3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faculty-avatar {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--orange-dark);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 auto var(--space-3);
  overflow: hidden;
}
.faculty-avatar img { width: 100%; height: 100%; object-fit: cover; }
.faculty-card h3 { font-size: 1.15rem; }
.faculty-card .role { margin-top: 0.3rem; color: var(--grey-text); font-size: 0.9rem; }
.faculty-card .linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: var(--space-2);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
}
.faculty-card .linkedin-link:hover { color: var(--orange-dark); }
.faculty-card .linkedin-link svg { width: 16px; height: 16px; flex-shrink: 0; }
@media (max-width: 860px) { .faculty-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.letters { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
.letter {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.letter .quote-mark { font-family: var(--font-display); font-size: 2.6rem; color: var(--orange); line-height: 1; }
.letter p.quote { margin-top: 0.6rem; font-size: 1.08rem; color: var(--ink); line-height: 1.55; }
.letter .sig { margin-top: var(--space-3); display: flex; align-items: center; gap: 0.7rem; }
.letter .sig .dot { width: 34px; height: 34px; border-radius: 50%; background: var(--grey-mid); flex-shrink: 0; }
.letter .sig .who b { display: block; font-size: 0.92rem; }
.letter .sig .who span { font-size: 0.82rem; color: var(--grey-text); }
@media (max-width: 860px) { .letters { grid-template-columns: 1fr; } }

/* ---------- How we work list ---------- */
.howwework { display: flex; flex-direction: column; }
.how-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-top: 1px solid var(--line);
  align-items: baseline;
}
.how-row:last-child { border-bottom: 1px solid var(--line); }
.how-row .n { font-family: var(--font-display); font-weight: 800; color: var(--orange); font-size: 1.1rem; }
.how-row p { font-size: 1.05rem; color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--orange); padding: var(--space-6) 0; }
.cta-band .wrap { display: flex; justify-content: space-between; align-items: center; gap: var(--space-4); flex-wrap: wrap; }
.cta-band h2 { color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.7rem); max-width: 22ch; }
.cta-band .sub { color: rgba(255,255,255,0.85); margin-top: 0.6rem; font-size: 1.05rem; }
.cta-band .btn-primary { background: var(--white); color: var(--orange); border-color: var(--white); }
.cta-band .btn-primary:hover { background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: var(--space-5) 0 var(--space-3); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--space-4); padding-bottom: var(--space-4); border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-grid .brand-card {
  display: inline-flex;
  background: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
}
.footer-grid .brand-card img { height: 38px; width: auto; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--orange); margin-bottom: var(--space-2); }
.footer-col a, .footer-col p { display: block; font-size: 0.95rem; padding: 0.35rem 0; color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: var(--space-3); display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 0.5rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: var(--space-3); } }

/* ---------- Shared form components (contact + careers) ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.form-card .eyebrow { margin-bottom: var(--space-2); }
.field { margin-bottom: var(--space-3); }
.field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--grey-bg);
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  border-color: var(--orange);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field textarea { min-height: 110px; resize: vertical; }

.form-msg {
  margin-top: var(--space-3);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.success { background: rgba(241,83,4,0.08); border: 1px solid var(--orange); color: var(--orange-dark); }
.form-msg.error { background: rgba(180,40,40,0.08); border: 1px solid #b42828; color: #b42828; }

/* ---------- Hero with side image (used on About page) ---------- */
.hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-5);
  align-items: center;
}
.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3.1;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-media { order: -1; aspect-ratio: 16/9; }
}

/* ---------- Hero background slider (moving pics, used on homepage) ---------- */
.hero-slider {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-6) 0;
}
.hero-slider .slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: hero-slide-cycle 20s infinite;
  transform: scale(1.08);
}
.hero-slider .slide:nth-child(1) { animation-delay: 0s; }
.hero-slider .slide:nth-child(2) { animation-delay: 5s; }
.hero-slider .slide:nth-child(3) { animation-delay: 10s; }
.hero-slider .slide:nth-child(4) { animation-delay: 15s; }
@keyframes hero-slide-cycle {
  0%   { opacity: 0; transform: scale(1.08); }
  5%   { opacity: 1; transform: scale(1.0); }
  22%  { opacity: 1; transform: scale(1.0); }
  27%  { opacity: 0; transform: scale(0.98); }
  100% { opacity: 0; }
}
.hero-slider::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.82) 40%, rgba(10,10,10,0.62) 70%, rgba(10,10,10,0.45) 100%);
  z-index: 1;
}
.hero-slider .wrap { position: relative; z-index: 2; }
.hero-slider .hero-inner { max-width: 720px; }
.hero-slider .eyebrow { color: var(--white); opacity: 0.9; }
.hero-slider .eyebrow::before { background: var(--white); }
.hero-slider h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4.2rem); margin-top: var(--space-3); text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.hero-slider h1 .accent { color: var(--brass, var(--orange)); }
.hero-slider .hero-lede { color: rgba(255,255,255,0.92); margin-top: var(--space-3); font-size: 1.2rem; max-width: 52ch; text-shadow: 0 1px 10px rgba(0,0,0,0.35); }
.hero-slider .hero-actions { margin-top: var(--space-4); display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-slider .btn-ghost { border-color: rgba(255,255,255,0.6); color: var(--white); }
.hero-slider .btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
@media (prefers-reduced-motion: reduce) {
  .hero-slider .slide { animation: none; opacity: 0; }
  .hero-slider .slide:first-child { opacity: 1; transform: scale(1); }
}
@media (max-width: 700px) {
  .hero-slider { min-height: 560px; }
}

/* ---------- Service cards with background photo ---------- */
.services-grid.photo-cards {
  grid-template-columns: repeat(3, 1fr);
}
.service-card.photo {
  position: relative;
  min-height: 300px;
  padding: var(--space-3);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  border: none;
  overflow: hidden;
  color: var(--white);
}
.service-card.photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18,18,18,0.88) 0%, rgba(18,18,18,0.5) 55%, rgba(18,18,18,0.15) 100%);
}
.service-card.photo:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(18,18,18,0.28); }
.service-card.photo > * { position: relative; z-index: 1; }
.service-card.photo .num { color: var(--brass, var(--orange)); }
.service-card.photo h3 { color: var(--white); }
.service-card.photo p { color: rgba(255,255,255,0.82); }
@media (max-width: 860px) { .services-grid.photo-cards { grid-template-columns: 1fr; } }

/* ---------- Full-width photo band ---------- */
.photo-band {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.photo-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.photo-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(18,18,18,0.78) 0%, rgba(18,18,18,0.15) 55%, rgba(18,18,18,0.05) 100%);
}
.photo-band .wrap { position: relative; padding-bottom: var(--space-4); z-index: 1; }
.photo-band-text { max-width: 640px; }
.photo-band-text .eyebrow { color: var(--white); opacity: 0.9; }
.photo-band-text .eyebrow::before { background: var(--white); }
.photo-band-text p {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--white);
  margin-top: 0.6rem;
  line-height: 1.3;
}

/* ---------- About page: values grid (G.R.A.M.) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
}
.value-card .letter {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 auto var(--space-3);
}
.value-card h3 { font-size: 1.1rem; }
.value-card p { margin-top: 0.5rem; color: var(--grey-text); font-size: 0.92rem; }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }

.brand-statement {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink);
}
.brand-statement .accent { color: var(--orange); }

/* ---------- Logo marquee ("Trusted By") ---------- */
.logo-marquee {
  background: var(--grey-bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-4) 0;
  overflow: hidden;
}
.logo-marquee .marquee-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: var(--space-2);
}
.marquee-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  width: max-content;
  animation: marquee-scroll 55s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.logo-chip {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.4rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.logo-chip img { height: 100%; width: auto; object-fit: contain; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Utility ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Careers: filter pills ---------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--space-4); }
.filter-pill {
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-pill:hover { border-color: var(--orange); color: var(--orange); }
.filter-pill.active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ---------- Careers: job cards ---------- */
.jobs-list { display: flex; flex-direction: column; gap: var(--space-2); }
.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3) var(--space-4);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.job-card:hover { border-color: var(--orange); box-shadow: 0 12px 26px rgba(18,18,18,0.06); }
.job-card h3 { font-size: 1.15rem; }
.job-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; margin-top: 0.5rem; }
.job-meta span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.job-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: var(--orange-tint);
  color: var(--orange-dark);
  margin-bottom: 0.6rem;
}
@media (max-width: 700px) {
  .job-card { grid-template-columns: 1fr; }
  .job-card .btn { width: 100%; justify-content: center; }
}

/* ---------- CV upload dropzone ---------- */
.dropzone {
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: var(--grey-bg);
}
.dropzone:hover, .dropzone.drag { border-color: var(--orange); background: var(--orange-tint); }
.dropzone input[type="file"] { display: none; }
.dropzone .dz-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.2rem;
  color: var(--orange);
}
.dropzone .dz-text { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.dropzone .dz-sub { font-size: 0.82rem; color: var(--grey-text); margin-top: 0.3rem; }
.dropzone .dz-file { font-size: 0.88rem; font-weight: 700; color: var(--orange-dark); margin-top: 0.6rem; }

