/* ── HIRE UG — COMPONENTS ────────────────────────────────────────────────
   All UI components extracted from home.html, about-us.html, contact.html
   ──────────────────────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════════════
   1. NAVIGATION
   ═══════════════════════════════════════════════════════════════════════ */

.jh-nav {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(253, 250, 244, .95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(17, 16, 16, .1);
}

.jh-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  color: var(--ink);
  text-decoration: none;
}
.jh-logo span,
.jh-logo .logo-accent {
  color: var(--amber);
}

.jh-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.jh-nav-links a {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}
.jh-nav-links a:hover,
.jh-nav-links a.active,
.jh-nav-links li.current-menu-item > a {
  color: var(--ink);
}
.jh-nav-links li.current-menu-item > a {
  font-weight: 500;
  border-bottom: 1px solid var(--amber);
  padding-bottom: 1px;
}

.jh-nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Nav Buttons */
.nav-ghost {
  background: transparent;
  color: var(--ink);
  padding: .55rem 1.2rem;
  font-size: .85rem;
  letter-spacing: .04em;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid rgba(17, 16, 16, .2);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: .55rem 1.5rem;
  font-size: .85rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  transition: background .25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover {
  background: var(--amber);
  color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════════════════
   2. HERO VARIANTS
   ═══════════════════════════════════════════════════════════════════════ */

/* Home hero */
.jh-hero {
  min-height: 100vh;
  padding: 12rem 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.jh-hero::before {
  content: attr(data-bg-text);
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translateY(-55%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 16, 16, .06);
  line-height: 1;
  pointer-events: none;
  animation: fadeIn 1.4s ease both;
  user-select: none;
}

/* Inner page hero (about, contact) */
.jh-page-hero {
  padding: 13rem 4rem 7rem;
  position: relative;
  overflow: hidden;
}
.jh-page-hero::before {
  content: attr(data-bg-text);
  position: absolute;
  top: 5rem;
  right: -1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(17, 16, 16, .06);
  line-height: 1;
  pointer-events: none;
  animation: fadeIn 1.2s ease both;
  user-select: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 2rem;
  animation: slideUp .7s ease both;
  font-family: 'DM Sans', sans-serif;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--amber);
}

.hero-tag {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  border-bottom: 1px solid var(--amber);
  padding-bottom: .2rem;
  margin-bottom: 2rem;
  animation: slideUp .7s ease both;
  font-family: 'DM Sans', sans-serif;
}

.jh-hero h1,
.jh-page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  font-weight: 900;
  line-height: 1.02;
  max-width: 900px;
  animation: slideUp .8s .1s ease both;
}
.jh-page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.05;
  max-width: 820px;
}
.jh-hero h1 em,
.jh-page-hero h1 em {
  font-style: italic;
  color: var(--amber);
}
.jh-hero h1 .outline-text {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
}

.hero-sub {
  margin-top: 2rem;
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  animation: slideUp .8s .2s ease both;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  margin-top: 4rem;
  animation: slideUp .8s .35s ease both;
}

/* ═══════════════════════════════════════════════════════════════════════
   3. SEARCH BOX
   ═══════════════════════════════════════════════════════════════════════ */

.jh-search-wrap {
  margin-top: 3.5rem;
  max-width: 780px;
  animation: slideUp .8s .2s ease both;
}

.jh-search-box {
  display: flex;
  background: var(--white);
  border: 1.5px solid rgba(17, 16, 16, .12);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.jh-search-box:focus-within {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(212, 135, 10, .1);
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  gap: .8rem;
  border-right: 1px solid rgba(17, 16, 16, .1);
}
.search-field:last-of-type {
  border-right: none;
}
.search-field svg {
  flex-shrink: 0;
  opacity: .35;
}
.search-field input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  width: 100%;
  padding: 1.2rem 0;
  font-weight: 300;
}
.search-field input::placeholder {
  color: var(--muted);
}

.search-btn {
  background: var(--ink);
  color: var(--cream);
  border: none;
  padding: 0 2.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s;
}
.search-btn:hover {
  background: var(--amber);
}

.search-tags {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
}
.search-tags span {
  font-size: .78rem;
  color: var(--muted);
}

.tag-pill {
  display: inline-block;
  padding: .3rem .9rem;
  border: 1px solid rgba(17, 16, 16, .15);
  font-size: .78rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  border-radius: 0;
  text-decoration: none;
}
.tag-pill:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.jh-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   4. TICKER
   ═══════════════════════════════════════════════════════════════════════ */

.jh-ticker-wrap {
  border-top: 1px solid rgba(17, 16, 16, .1);
  border-bottom: 1px solid rgba(17, 16, 16, .1);
  overflow: hidden;
  padding: .9rem 0;
  background: var(--paper);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 28s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  white-space: nowrap;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

.ticker-dot {
  width: 5px;
  height: 5px;
  background: var(--amber);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   5. STATS BAR
   ═══════════════════════════════════════════════════════════════════════ */

.jh-stats-bar {
  display: flex;
  padding: 4.5rem 4rem;
  gap: 0;
  border-bottom: 1px solid rgba(17, 16, 16, .08);
}

.jh-stats-bar .stat {
  flex: 1;
  padding: 0 3rem;
  border-right: 1px solid rgba(17, 16, 16, .1);
}
.jh-stats-bar .stat:first-child {
  padding-left: 0;
}
.jh-stats-bar .stat:last-child {
  border-right: none;
}

/* About page inline stats */
.hero-stats .stat-num,
.jh-stats-bar .stat-num,
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}
.hero-stats .stat-num {
  font-size: 2.8rem;
}

.stat-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-top: .5rem;
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════
   6. CATEGORIES SECTION
   ═══════════════════════════════════════════════════════════════════════ */

.jh-categories {
  padding: 7rem 4rem;
}

.jh-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.cat-card {
  padding: 2.2rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background .3s;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--amber);
  transition: width .4s ease;
}
.cat-card:hover {
  background: var(--white);
}
.cat-card:hover::after {
  width: 100%;
}

.cat-icon {
  width: 44px;
  height: 44px;
  background: rgba(17, 16, 16, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background .3s;
}
.cat-card:hover .cat-icon {
  background: rgba(212, 135, 10, .15);
}

.cat-name {
  font-weight: 500;
  font-size: .95rem;
  line-height: 1.3;
}
.cat-count {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .2rem;
}

.cat-arrow {
  margin-top: auto;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s, gap .2s;
  font-family: 'DM Sans', sans-serif;
}
.cat-card:hover .cat-arrow {
  color: var(--amber);
  gap: .7rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   7. FEATURED JOBS LIST
   ═══════════════════════════════════════════════════════════════════════ */

.jh-featured {
  padding: 7rem 4rem;
  background: var(--paper);
}

.jh-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 3.5rem;
}

.job-card {
  background: var(--cream);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  transition: background .25s, transform .2s;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0;
  background: var(--amber);
  transition: height .35s ease;
}
.job-card:hover {
  background: var(--white);
  transform: translateX(4px);
}
.job-card:hover::before {
  height: 100%;
}

.job-logo {
  width: 52px;
  height: 52px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.job-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-main h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: .35rem;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.job-company {
  font-size: .85rem;
  color: var(--muted);
}

.job-badge {
  display: inline-block;
  padding: .2rem .8rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(17, 16, 16, .15);
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  border-radius: 0;
}
.job-badge.hot {
  border-color: var(--amber);
  color: var(--amber);
}
.job-badge.remote {
  border-color: #2a7a4b;
  color: #2a7a4b;
}

.job-right {
  text-align: right;
  flex-shrink: 0;
}

.job-salary {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.job-location {
  font-size: .8rem;
  color: var(--muted);
  margin-top: .25rem;
}

.job-posted {
  font-size: .72rem;
  color: var(--muted);
  margin-top: .5rem;
  letter-spacing: .04em;
}

.jobs-footer {
  margin-top: 3rem;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   8. HOW IT WORKS
   ═══════════════════════════════════════════════════════════════════════ */

.jh-how {
  padding: 7rem 4rem;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.how-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.how-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(212, 135, 10, .04) 0px,
    rgba(212, 135, 10, .04) 1px,
    transparent 1px,
    transparent 28px
  );
}

.how-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(212, 135, 10, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.how-circle::before {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px solid rgba(212, 135, 10, .12);
}
.how-circle::after {
  content: '';
  position: absolute;
  inset: -40px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 135, 10, .07);
}

.how-inner {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  text-align: center;
}
.how-inner small {
  display: block;
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  font-family: 'DM Sans', sans-serif;
  margin-top: .3rem;
  font-style: normal;
  font-weight: 300;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.how-step {
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(17, 16, 16, .1);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  cursor: default;
  transition: padding-left .3s;
}
.how-step:first-child {
  border-top: 1px solid rgba(17, 16, 16, .1);
}
.how-step:hover {
  padding-left: .5rem;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(17, 16, 16, .08);
  line-height: 1;
}

.step-body h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: .5rem;
}
.step-body p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════
   9. STRIPE / EMPLOYER CTA
   ═══════════════════════════════════════════════════════════════════════ */

.jh-stripe {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  overflow: hidden;
  position: relative;
}
.jh-stripe::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  height: 100%;
  background: var(--amber);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: .14;
  pointer-events: none;
}

/* About page quote stripe (slightly different) */
.jh-stripe.stripe-quote-variant {
  align-items: center;
  gap: 6rem;
  justify-content: flex-start;
}
.jh-stripe.stripe-quote-variant::after {
  opacity: .18;
}

.stripe-label {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif;
}

.stripe-left {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 1;
}
.stripe-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}
.stripe-left h2 em {
  font-style: italic;
  color: var(--amber-lt);
}
.stripe-left p {
  margin-top: 1rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  font-size: .95rem;
}

.stripe-right {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Quote variant */
.stripe-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 640px;
  flex: 1;
  position: relative;
  z-index: 1;
}
.stripe-quote em {
  font-style: italic;
  color: var(--amber-lt);
}

.stripe-source {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.stripe-source p {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  font-family: 'DM Sans', sans-serif;
}
.stripe-source strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-top: .3rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   10. VALUES GRID
   ═══════════════════════════════════════════════════════════════════════ */

.jh-values {
  padding: 7rem 4rem;
}

.values-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
}
.values-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  max-width: 420px;
  line-height: 1.15;
}
.values-header p {
  max-width: 360px;
  color: var(--muted);
  line-height: 1.7;
  font-size: .95rem;
}

.jh-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.value-card {
  padding: 3rem 2.5rem;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  transition: background .3s;
  cursor: default;
}
.value-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--amber);
  transition: width .4s ease;
}
.value-card:hover {
  background: var(--white);
}
.value-card:hover::before {
  width: 100%;
}

.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(17, 16, 16, .06);
  line-height: 1;
  margin-bottom: 1rem;
}

.value-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: .8rem;
}
.value-card p {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════════
   11. TEAM GRID
   ═══════════════════════════════════════════════════════════════════════ */

.jh-team {
  padding: 7rem 4rem;
  background: var(--paper);
}

.team-header {
  margin-bottom: 4rem;
}
.team-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

.jh-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.team-card {
  position: relative;
}

.avatar-box {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #1a1a1a 0%, #2e2e2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--amber);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  letter-spacing: -.02em;
}
.avatar-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(212, 135, 10, .2) 0%, transparent 60%);
}
.avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.team-info {
  padding: 1.2rem 0;
}
.team-info h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.team-info span {
  font-size: .8rem;
  color: var(--amber);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════════════
   12. TESTIMONIALS
   ═══════════════════════════════════════════════════════════════════════ */

.jh-testimonials {
  padding: 7rem 4rem;
  background: var(--paper);
}

.jh-t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
}

.t-card {
  background: var(--cream);
  padding: 2.8rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
.t-card:hover {
  background: var(--white);
}

.t-stars {
  margin-bottom: 1rem;
  color: var(--amber);
  font-size: .85rem;
  letter-spacing: .1em;
}

.t-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: .7;
  color: var(--amber);
  opacity: .25;
  margin-bottom: .5rem;
}

.t-card p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
}
.t-card p strong {
  color: var(--ink);
  font-weight: 500;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.t-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}
.t-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-name {
  font-weight: 500;
  font-size: .9rem;
  font-family: 'DM Sans', sans-serif;
}
.t-role {
  font-size: .78rem;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════════════════════════════════════════════════════════════
   13. COMPANIES (trusted logos)
   ═══════════════════════════════════════════════════════════════════════ */

.jh-companies {
  padding: 5rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(17, 16, 16, .08);
}
.jh-companies p {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-family: 'DM Sans', sans-serif;
}

.company-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3.5rem 4rem;
}

.company-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(17, 16, 16, .18);
  letter-spacing: -.02em;
  transition: color .25s;
  cursor: default;
}
.company-name:hover {
  color: rgba(17, 16, 16, .5);
}

/* ═══════════════════════════════════════════════════════════════════════
   14. FINAL CTA SECTION
   ═══════════════════════════════════════════════════════════════════════ */

.jh-cta-section {
  padding: 9rem 4rem;
  text-align: center;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.jh-cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 135, 10, .2) 0%, transparent 70%);
  pointer-events: none;
}

.jh-cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  position: relative;
}
.jh-cta-section h2 em {
  font-style: italic;
  color: var(--amber-lt);
}

.jh-cta-section p {
  margin: 2rem auto;
  max-width: 500px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.7;
  position: relative;
  font-size: .95rem;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════
   15. BUTTONS
   ═══════════════════════════════════════════════════════════════════════ */

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  padding: 1.1rem 2.8rem;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
}
.btn-primary:hover {
  background: var(--amber-lt);
  color: var(--ink);
}

.btn-amber {
  background: var(--amber);
  color: var(--ink);
  padding: 1.1rem 2.8rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .25s;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
}
.btn-amber:hover {
  background: var(--amber-lt);
  color: var(--ink);
}

.btn-ink {
  background: var(--ink);
  color: var(--cream);
  padding: 1rem 2.8rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background .25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
}
.btn-ink:hover {
  background: var(--amber);
  color: var(--cream);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 1.1rem 2.8rem;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .25s, color .25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
}
.btn-outline:hover {
  border-color: var(--amber);
  color: var(--amber-lt);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: .55rem 1.2rem;
  font-size: .85rem;
  letter-spacing: .04em;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid rgba(17, 16, 16, .2);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  border-radius: 0;
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ═══════════════════════════════════════════════════════════════════════
   16. MISSION SECTION (About page)
   ═══════════════════════════════════════════════════════════════════════ */

.jh-mission {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  padding: 7rem 4rem;
  align-items: start;
}

.mission-left h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}
.mission-left h2 span {
  display: block;
  font-style: italic;
  color: var(--amber);
}

.mission-right p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.mission-right p strong {
  color: var(--ink);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════
   17. CONTACT FORM GRID
   ═══════════════════════════════════════════════════════════════════════ */

.jh-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  min-height: 700px;
}

/* Form Side */
.form-side {
  padding: 6rem 4rem;
  background: var(--cream);
  border-top: 1px solid rgba(17, 16, 16, .1);
  border-right: 1px solid rgba(17, 16, 16, .1);
}
.form-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.form-side h2 em {
  font-style: italic;
  color: var(--amber);
}

/* Subject Tabs */
.subject-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.s-tab {
  padding: .5rem 1.1rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 16, 16, .15);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all .2s;
  border-radius: 0;
}
.s-tab:hover {
  border-color: var(--ink);
  color: var(--ink);
}
.s-tab.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* Form Fields */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}
.form-group input,
.form-group textarea,
.form-group select {
  border: 1.5px solid rgba(17, 16, 16, .13);
  background: var(--white);
  padding: .9rem 1.1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  appearance: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
  border-radius: 0;
  font-weight: 300;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(122, 110, 95, .5);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(212, 135, 10, .09);
}
.form-group input.error,
.form-group textarea.error {
  border-color: var(--rust);
  box-shadow: 0 0 0 4px rgba(184, 76, 24, .07);
}
.form-group .err-msg {
  font-size: .78rem;
  color: var(--rust);
  display: none;
}
.form-group.has-error .err-msg {
  display: block;
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.char-count {
  font-size: .72rem;
  color: var(--muted);
  text-align: right;
  margin-top: .3rem;
  font-family: 'DM Sans', sans-serif;
}

/* Submit Button */
.submit-btn {
  background: var(--ink);
  color: var(--cream);
  padding: 1.05rem 2.8rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .25s;
  width: 100%;
  margin-top: .5rem;
  border-radius: 0;
}
.submit-btn:hover:not(:disabled) {
  background: var(--amber);
}
.submit-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
}
.btn-text {
  transition: opacity .2s;
}
.btn-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  opacity: 0;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: var(--cream);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  transition: opacity .2s;
}
.submit-btn.loading .btn-text {
  opacity: 0;
}
.submit-btn.loading .btn-spinner {
  opacity: 1;
}

/* Success State */
.success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  min-height: 400px;
}
.success-state.show {
  display: flex;
}
.success-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(212, 135, 10, .12);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: circlePop .5s ease both;
}
.success-circle svg {
  animation: checkDraw .5s .3s ease both;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}
.success-state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: .8rem;
}
.success-state p {
  color: var(--muted);
  line-height: 1.7;
  max-width: 340px;
}

.reset-btn {
  margin-top: 2rem;
  background: transparent;
  border: 1px solid rgba(17, 16, 16, .2);
  padding: .7rem 1.8rem;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  color: var(--muted);
  transition: border-color .2s, color .2s;
  border-radius: 0;
}
.reset-btn:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Info Side */
.info-side {
  background: var(--ink);
  color: var(--white);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.info-side::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(212, 135, 10, .15);
  pointer-events: none;
}
.info-side::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 135, 10, .07);
  pointer-events: none;
}
.info-side h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}
.info-side h3 em {
  font-style: italic;
  color: var(--amber-lt);
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-card {
  padding: 1.8rem 2rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  transition: background .25s;
  cursor: default;
}
.info-card:hover {
  background: rgba(212, 135, 10, .1);
}

.info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(212, 135, 10, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.info-text p:first-child {
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
  margin-bottom: .35rem;
  font-family: 'DM Sans', sans-serif;
}
.info-text p:last-child {
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .65);
}
.info-text a {
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  transition: color .2s;
}
.info-text a:hover {
  color: var(--amber-lt);
}

.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 2.5rem 0;
}

.social-row {
  display: flex;
  gap: .8rem;
}
.soc-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .02em;
  transition: background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.soc-btn:hover {
  background: rgba(212, 135, 10, .2);
  border-color: var(--amber);
  color: var(--amber-lt);
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(212, 135, 10, .12);
  border: 1px solid rgba(212, 135, 10, .25);
  padding: .5rem 1rem;
  margin-top: 2.5rem;
  font-size: .78rem;
  color: var(--amber-lt);
  letter-spacing: .06em;
  font-family: 'DM Sans', sans-serif;
}
.response-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   18. MAP BAR
   ═══════════════════════════════════════════════════════════════════════ */

.jh-map-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(17, 16, 16, .1);
  border-bottom: 1px solid rgba(17, 16, 16, .1);
}

.map-visual {
  background: var(--ink);
  aspect-ratio: 16/7;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(212, 135, 10, .04) 0px, rgba(212, 135, 10, .04) 1px, transparent 1px, transparent 48px),
    repeating-linear-gradient(90deg, rgba(212, 135, 10, .04) 0px, rgba(212, 135, 10, .04) 1px, transparent 1px, transparent 48px);
}

.map-pin-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}
.map-pin {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 6px rgba(212, 135, 10, .2), 0 0 0 12px rgba(212, 135, 10, .1);
}
.map-label {
  background: rgba(212, 135, 10, .9);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

.map-caption {
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}
.map-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.map-caption p {
  color: var(--muted);
  line-height: 1.7;
  font-size: .9rem;
  margin-bottom: 1.5rem;
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--amber);
  border-bottom: 1px solid var(--amber);
  padding-bottom: .2rem;
  cursor: pointer;
  background: transparent;
  border-left: none;
  border-top: none;
  border-right: none;
  font-family: 'DM Sans', sans-serif;
  transition: gap .2s, color .2s;
}
.directions-btn:hover {
  gap: .9rem;
  color: var(--amber-lt);
  border-color: var(--amber-lt);
}

/* ═══════════════════════════════════════════════════════════════════════
   19. FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════════ */

.jh-faq {
  padding: 7rem 4rem;
  background: var(--cream);
}

.faq-inner {
  max-width: 820px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 3.5rem;
}
.faq-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
}
.faq-header h2 em {
  font-style: italic;
  color: var(--amber);
}
.faq-header p {
  margin-top: .8rem;
  color: var(--muted);
  font-size: .95rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid rgba(17, 16, 16, .1);
  background: var(--white);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  cursor: pointer;
  gap: 1rem;
  transition: background .2s;
}
.faq-q:hover {
  background: var(--paper);
}
.faq-q span {
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.4;
  font-family: 'DM Sans', sans-serif;
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(17, 16, 16, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
  transition: background .25s, color .25s, transform .3s;
  user-select: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  background: var(--amber);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 2rem;
}
.faq-a-inner {
  padding-bottom: 1.8rem;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--muted);
}
.faq-a-inner a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(212, 135, 10, .3);
}
.faq-a-inner a:hover {
  color: var(--amber-lt);
}
.faq-item.open .faq-a {
  max-height: 400px;
}

/* ═══════════════════════════════════════════════════════════════════════
   20. FOOTER
   ═══════════════════════════════════════════════════════════════════════ */

.jh-footer {
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 4rem 4rem 2.5rem;
  color: rgba(255, 255, 255, .35);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-brand .jh-logo {
  font-size: 1.2rem;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .35);
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  font-weight: 500;
  margin-bottom: 1.2rem;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  margin-bottom: .7rem;
  transition: color .2s;
  font-family: 'DM Sans', sans-serif;
}
.footer-col a:hover {
  color: var(--amber-lt);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: .78rem;
  font-family: 'DM Sans', sans-serif;
}
.footer-bottom .jh-logo {
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   21. MISSION STRIPE
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Single job page wrapper ── */
.jh-single-job {
  margin: 0 auto;
  padding: 8rem 4rem 6rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   22. RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .jh-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1000px) {
  .jh-contact-grid {
    grid-template-columns: 1fr;
  }
  .info-side {
    padding: 4rem 1.5rem;
  }
  .jh-map-bar {
    grid-template-columns: 1fr;
  }
  .map-visual {
    aspect-ratio: 16/6;
  }
}

@media (max-width: 900px) {
  /* Nav */
  .jh-nav {
    padding: 1rem 1.5rem;
  }
  .jh-nav-links {
    display: none;
  }

  /* Hero */
  .jh-hero {
    padding: 9rem 1.5rem 5rem;
    min-height: unset;
  }
  .jh-page-hero {
    padding: 9rem 1.5rem 4rem;
  }
  .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }

  /* Search */
  .jh-search-box {
    flex-direction: column;
  }
  .search-field {
    border-right: none;
    border-bottom: 1px solid rgba(17, 16, 16, .1);
  }
  .search-btn {
    padding: 1rem;
  }

  /* Stats */
  .jh-stats-bar {
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
  .jh-stats-bar .stat {
    border-right: none;
    padding: 0;
    min-width: calc(50% - 1rem);
  }

  /* Sections */
  .jh-categories,
  .jh-featured,
  .jh-how,
  .jh-testimonials,
  .jh-companies,
  .jh-cta-section,
  .jh-values,
  .jh-faq {
    padding: 4rem 1.5rem;
  }
  .jh-team {
    padding: 4rem 1.5rem;
  }
  .jh-mission {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 4rem 1.5rem;
  }

  /* Cat grid */
  .jh-cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* How */
  .how-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .how-visual {
    display: none;
  }

  /* Stripe */
  .jh-stripe {
    flex-direction: column;
    padding: 4rem 1.5rem;
    gap: 2rem;
  }
  .jh-stripe.stripe-quote-variant {
    flex-direction: column;
    gap: 2rem;
  }

  /* Testimonials */
  .jh-t-grid {
    grid-template-columns: 1fr;
  }

  /* Values */
  .jh-values-grid {
    grid-template-columns: 1fr;
  }
  .values-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  /* Team */
  .jh-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* CTA */
  .jh-cta-section {
    padding: 5rem 1.5rem;
  }

  /* Form */
  .form-side {
    padding: 4rem 1.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .map-caption {
    padding: 3rem 1.5rem;
  }

  /* Footer */
  .jh-footer {
    padding: 3rem 1.5rem 2rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
  }
  .footer-bottom {
    flex-direction: column;
    gap: .7rem;
    text-align: center;
  }

  /* Single job */
  .jh-single-job {
    padding: 8rem 1.5rem 4rem;
  }
}
