/* ============================================================
   WORKBRIDGE — Editorial Design System
   One Application. Multiple Opportunities.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Tokens ── */
:root {
  --white: #FAFAF8;
  --off-white: #F4F1EC;
  --black: #0F0F0F;
  --ink: #2C2C2C;
  --mid-grey: #737373;
  --light-grey: #E8E4DE;
  --gold: #C9A84C;
  --gold-light: #F7F0DC;
  --gold-dark: #A8883A;
  --rule: 1px solid #2C2C2C;
  --rule-light: 1px solid #E8E4DE;
  --transition: 0.2s ease;
  --max-width: 1280px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
}
h1 { font-size: clamp(2.75rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--mid-grey); line-height: 1.75; }

.overline {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  font-family: 'Inter', sans-serif;
}
.overline-gold { color: var(--gold); }
.display-num {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 400;
  color: var(--light-grey);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.pull-quote {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
}

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }

/* ── Ad Disclosure ── */
.ad-disclosure {
  background: var(--off-white);
  border-bottom: var(--rule-light);
  text-align: center;
  padding: 6px 24px;
  font-size: 0.6875rem;
  color: var(--mid-grey);
  letter-spacing: 0.04em;
}
.ad-disclosure a { color: var(--gold-dark); }

/* ── Info Bar ── */
.info-bar {
  background: var(--black);
  color: #bbb;
  padding: 8px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #333;
}
.info-bar-right { display: flex; gap: 24px; align-items: center; }
.info-bar a { color: #bbb; transition: var(--transition); }
.info-bar a:hover { color: var(--white); }
.info-bar-edition {
  font-family: 'DM Serif Display', serif;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: var(--rule);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 68px;
}
.header-nav { display: flex; gap: 28px; }
.header-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: var(--transition);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.header-nav a:hover { color: var(--black); }
.header-nav a:hover::after { transform: scaleX(1); }
.site-logo {
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.375rem;
  color: var(--black);
  letter-spacing: -0.01em;
}
.site-logo span { color: var(--gold); }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  background: none;
  border: none;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 950;
  flex-direction: column;
  padding: 80px 32px 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 1.5rem;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0; }
.mobile-nav-links a {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  padding: 14px 0;
  border-bottom: var(--rule-light);
  color: var(--black);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: var(--rule);
  text-decoration: none;
}
.btn-primary { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 0.6875rem; }
.btn-lg { padding: 16px 36px; font-size: 0.8125rem; }

/* ── Hero ── */
.hero {
  border-bottom: var(--rule);
  overflow: hidden;
}
.hero-meta-bar {
  border-bottom: var(--rule);
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 12px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-meta-bar span { font-size: 0.6875rem; color: var(--mid-grey); letter-spacing: 0.06em; }
.hero-meta-divider { width: 1px; height: 12px; background: var(--light-grey); }
.hero-meta-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.hero-content {
  padding: 72px 64px 72px 0;
  border-right: var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-overline { margin-bottom: 20px; }
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 28px;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-deck {
  font-size: 1.0625rem;
  color: var(--mid-grey);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }
.hero-image-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.85) 0%, transparent 100%);
  padding: 40px 32px 32px;
}
.hero-image-stat {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.hero-image-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); letter-spacing: 0.08em; margin-top: 4px; }

/* ── Stats Strip ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: var(--rule);
  background: var(--black);
}
.stat-cell {
  padding: 28px 32px;
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.875rem;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.6875rem; color: #888; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── Section Headers ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: var(--rule);
  margin-bottom: 56px;
}
.section-header-left { display: flex; flex-direction: column; gap: 10px; }
.editorial-chapter {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.editorial-chapter::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ── Job Listings Section ── */
.jobs-section {
  padding: 88px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: var(--rule);
}
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: var(--rule);
  border-left: var(--rule);
}
.job-card {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  position: relative;
}
.job-card:hover { background: var(--off-white); }
.job-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--black);
  color: var(--white);
}
.job-card-featured:hover { background: #1a1a1a; }
.job-card-featured .job-card-left { padding: 48px 36px; border-right: 1px solid #333; }
.job-card-featured .job-card-right { padding: 48px 36px; display: flex; flex-direction: column; justify-content: space-between; }
.job-card-tag {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.job-card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.job-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.15;
}
.job-card-featured .job-title { color: var(--white); }
.job-openings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.job-card-featured .job-openings { background: rgba(201,168,76,0.2); color: var(--gold); }
.job-desc {
  font-size: 0.9375rem;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-bottom: 24px;
}
.job-card-featured .job-desc { color: #aaa; }
.job-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.job-tag {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border: var(--rule-light);
  color: var(--mid-grey);
  background: var(--white);
}
.job-card-featured .job-tag { border-color: #444; color: #aaa; background: transparent; }
.job-responsibilities { margin-bottom: 24px; }
.job-responsibilities h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 10px;
}
.job-card-featured .job-responsibilities h5 { color: #888; }
.job-responsibilities ul { display: flex; flex-direction: column; gap: 6px; }
.job-responsibilities li {
  font-size: 0.875rem;
  color: var(--mid-grey);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.job-card-featured .job-responsibilities li { color: #aaa; }
.job-responsibilities li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.job-note {
  font-size: 0.75rem;
  font-style: italic;
  color: var(--mid-grey);
  border-top: var(--rule-light);
  padding-top: 16px;
  margin-top: auto;
  margin-bottom: 20px;
}
.job-card-featured .job-note { border-color: #333; color: #888; }
.job-card .btn { width: 100%; margin-top: auto; }
.job-hiring-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 0.8125rem;
  color: #c9a84c;
  line-height: 1.5;
}

/* ── How It Works ── */
.how-section {
  padding: 88px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: var(--rule);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
  margin-top: 56px;
}
.how-step {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
}
.how-step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.how-step h3 { font-size: 1.125rem; margin-bottom: 10px; color: var(--black); }
.how-step p { font-size: 0.875rem; line-height: 1.65; }

/* ── Why JobsWorldwide.site ── */
.why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: var(--rule);
}
.why-content {
  padding: 88px 64px 88px 32px;
  border-right: var(--rule);
  max-width: var(--max-width);
}
.why-content .editorial-chapter { margin-bottom: 20px; }
.why-content h2 { margin-bottom: 24px; }
.why-content > p { margin-bottom: 48px; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: var(--rule-light);
  align-items: flex-start;
}
.why-item-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--gold);
  min-width: 32px;
  padding-top: 2px;
}
.why-item-text h4 { font-size: 1rem; margin-bottom: 6px; color: var(--black); }
.why-item-text p { font-size: 0.875rem; line-height: 1.65; }
.why-image {
  overflow: hidden;
  position: relative;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-image-pullquote {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(15,15,15,0.88);
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
}
.why-image-pullquote p {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--white);
  line-height: 1.5;
}

/* ── Pricing / Fee Section ── */
.fee-section {
  padding: 88px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: var(--rule);
}
.fee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
  margin-top: 56px;
}
.fee-card {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 48px 36px;
}
.fee-card-featured {
  background: var(--black);
  position: relative;
}
.fee-label {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 16px;
}
.fee-card-featured .fee-label { color: #666; }
.fee-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}
.fee-card-featured .fee-amount { color: var(--white); }
.fee-card-featured .fee-amount span { color: var(--gold); }
.fee-sub {
  font-size: 0.8125rem;
  color: var(--mid-grey);
  margin-bottom: 28px;
}
.fee-card-featured .fee-sub { color: #888; }
.fee-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.fee-feature {
  display: flex;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--mid-grey);
  align-items: flex-start;
  padding-left: 16px;
  position: relative;
}
.fee-feature::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 0.75rem; }
.fee-card-featured .fee-feature { color: #aaa; }
.fee-card .btn { width: 100%; }
.fee-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* ── Testimonials ── */
.testi-section {
  padding: 88px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: var(--rule);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--rule);
  border-left: var(--rule);
  margin-top: 56px;
}
.testi-card {
  border-right: var(--rule);
  border-bottom: var(--rule);
  padding: 40px 32px;
}
.testi-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: 20px;
  display: block;
}
.testi-text {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.0625rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 28px;
}
.testi-meta-row { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: var(--rule-light);
}
.testi-name { font-size: 0.875rem; font-weight: 600; color: var(--black); }
.testi-role { font-size: 0.75rem; color: var(--mid-grey); }

/* ── CTA Section ── */
.cta-section {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cta-content {
  padding: 88px 64px 88px 32px;
  border-right: 1px solid #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta-content .editorial-chapter { margin-bottom: 20px; color: var(--gold); }
.cta-content h2 { color: var(--white); margin-bottom: 20px; }
.cta-content p { color: #aaa; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-image { overflow: hidden; }
.cta-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Footer ── */
.site-footer {
  background: var(--off-white);
  border-top: var(--rule);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 32px;
  border-bottom: var(--rule-light);
  gap: 0;
}
.footer-brand { padding-right: 48px; }
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }
.footer-brand address {
  font-style: normal;
  font-size: 0.8125rem;
  color: var(--mid-grey);
  line-height: 1.8;
}
.footer-brand address a { color: var(--gold-dark); }
.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: var(--ink); transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold-dark); }
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--mid-grey);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--mid-grey); transition: var(--transition); }
.footer-legal a:hover { color: var(--black); }

/* ── Lead Modal ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(3px);
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--white);
  border: var(--rule);
  width: 100%;
  max-width: 460px;
  padding: 48px;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.25rem;
  color: var(--mid-grey);
  transition: var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.modal-close:hover { color: var(--black); }
.modal-eyebrow { margin-bottom: 10px; }
.modal-box h3 { margin-bottom: 8px; font-size: 1.375rem; }
.modal-sub { font-size: 0.875rem; margin-bottom: 24px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input, .modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: var(--rule-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  background: var(--white);
  transition: var(--transition);
  color: var(--ink);
}
.modal-form input:focus, .modal-form textarea:focus { border-color: var(--black); }
.modal-form textarea { resize: vertical; min-height: 80px; }
.modal-consent { display: flex; gap: 10px; align-items: flex-start; width: 100%; }
.modal-consent input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; }
.modal-consent label { font-size: 0.75rem; color: var(--mid-grey); line-height: 1.6; flex: 1; min-width: 0; word-wrap: break-word; }
.modal-consent a { color: var(--black); text-decoration: underline; }
.modal-form .btn { width: 100%; margin-top: 4px; }

/* ── Success Popup ── */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,15,0.7);
  z-index: 1100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.success-overlay.active { display: flex; }
.success-box {
  background: var(--white);
  border: var(--rule);
  width: 100%;
  max-width: 400px;
  padding: 48px;
  text-align: center;
}
.success-icon {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.success-box h3 { margin-bottom: 10px; }
.success-box p { font-size: 0.875rem; margin-bottom: 24px; }

/* ── Promo Popup ── */
.promo-popup-overlay {
  position: fixed; inset: 0;
  background: rgba(15,15,15,0.6);
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.promo-popup-overlay.active { opacity: 1; visibility: visible; }
.promo-popup {
  background: var(--white);
  max-width: 460px; width: calc(100% - 32px);
  padding: 44px 40px 40px;
  position: relative;
  border-top: 3px solid var(--gold);
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.promo-popup-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none;
  font-size: 1.6rem; line-height: 1;
  color: var(--mid-grey); padding: 2px 6px;
  transition: color var(--transition);
}
.promo-popup-close:hover { color: var(--black); }
.promo-popup-badge {
  display: inline-block;
  background: var(--gold-light); color: var(--gold-dark);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; margin-bottom: 16px;
}
.promo-popup-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; line-height: 1.2;
  color: var(--black); margin-bottom: 14px;
}
.promo-popup-body {
  font-size: 0.875rem; color: var(--mid-grey);
  line-height: 1.7; margin-bottom: 28px;
}
.promo-popup-cta { display: inline-block; }
@media (max-width: 500px) {
  .promo-popup { padding: 36px 24px 28px; }
  .promo-popup-title { font-size: 1.3rem; }
}

/* ── Cookie Banner ── */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--black);
  border-top: 1px solid #333;
  padding: 20px 32px;
  z-index: 950;
}
.cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.8125rem; color: #aaa; }
.cookie-inner a { color: var(--gold); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Multi-Step Form (Apply Page) ── */
.apply-page { max-width: 900px; margin: 0 auto; padding: 64px 32px 96px; }
.apply-header { text-align: center; margin-bottom: 56px; padding-bottom: 48px; border-bottom: var(--rule); }
.apply-header .editorial-chapter { justify-content: center; margin-bottom: 16px; }
.apply-header h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.apply-header p { max-width: 520px; margin: 0 auto; }

/* Progress */
.step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
  overflow-x: auto;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 1;
  min-width: 80px;
}
.step-item::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  right: -50%;
  height: 1px;
  background: var(--light-grey);
  z-index: 0;
}
.step-item:last-child::after { display: none; }
.step-circle {
  width: 32px;
  height: 32px;
  border: var(--rule);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid-grey);
  z-index: 1;
  position: relative;
  transition: var(--transition);
}
.step-item.active .step-circle { background: var(--black); color: var(--white); border-color: var(--black); }
.step-item.done .step-circle { background: var(--gold); color: var(--black); border-color: var(--gold); }
.step-item.done::after { background: var(--gold); }
.step-label { font-size: 0.625rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--mid-grey); text-align: center; }
.step-item.active .step-label { color: var(--black); font-weight: 600; }

/* Form Steps */
.form-step { display: none; }
.form-step.active { display: block; }
.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.625rem;
  color: var(--black);
  margin-bottom: 8px;
}
.step-subtitle { font-size: 0.9375rem; color: var(--mid-grey); margin-bottom: 36px; }
.form-fields { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}
.form-field .field-hint { font-size: 0.75rem; color: var(--mid-grey); font-weight: 400; letter-spacing: 0; text-transform: none; }
.form-field input,
.form-field select,
.form-field textarea {
  padding: 13px 14px;
  border: var(--rule-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  outline: none;
  background: var(--white);
  transition: var(--transition);
  color: var(--ink);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--black); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field .input-required {
  border-color: var(--gold);
}

/* File Upload */
.file-upload-area {
  border: 1px dashed var(--light-grey);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  background: var(--off-white);
}
.file-upload-area:hover { border-color: var(--black); background: var(--white); }
.file-upload-area.has-file { border-color: var(--gold); background: var(--gold-light); }
.file-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.file-upload-icon { font-size: 1.5rem; margin-bottom: 8px; display: block; }
.file-upload-label { font-size: 0.8125rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.file-upload-hint { font-size: 0.75rem; color: var(--mid-grey); }
.file-upload-name { font-size: 0.8125rem; color: var(--gold-dark); font-weight: 600; margin-top: 8px; display: none; }
.required-badge {
  display: inline-flex;
  background: var(--gold);
  color: var(--black);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Category Selection */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.category-option { position: relative; }
.category-option input[type="radio"] { position: absolute; opacity: 0; }
.category-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  border: var(--rule-light);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}
.category-label:hover { border-color: var(--black); }
.category-option input:checked + .category-label {
  border-color: var(--black);
  background: var(--off-white);
}
.cat-icon { font-size: 1.5rem; }
.cat-info { flex: 1; }
.cat-name { font-size: 0.9375rem; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.cat-openings { font-size: 0.75rem; color: var(--gold-dark); font-weight: 600; }
.cat-check {
  width: 20px;
  height: 20px;
  border: var(--rule-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: var(--transition);
}
.category-option input:checked + .category-label .cat-check { background: var(--black); color: var(--white); border-color: var(--black); }

/* Skills Tags */
.skills-container { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.skill-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: var(--rule-light);
  font-size: 0.8125rem;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  user-select: none;
}
.skill-tag:hover { border-color: var(--black); }
.skill-tag.selected { border-color: var(--gold); background: var(--gold-light); color: var(--gold-dark); }
.skill-tag .remove-skill { font-size: 0.625rem; opacity: 0.6; }
.skill-input-row { display: flex; gap: 8px; margin-top: 12px; }
.skill-input-row input { flex: 1; }
.skill-input-row .btn { flex-shrink: 0; padding: 12px 16px; }

/* Experience Level */
.exp-options { display: flex; gap: 12px; flex-wrap: wrap; }
.exp-option { position: relative; }
.exp-option input[type="radio"] { position: absolute; opacity: 0; }
.exp-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 20px;
  border: var(--rule-light);
  cursor: pointer;
  transition: var(--transition);
  min-width: 100px;
  text-align: center;
}
.exp-label:hover { border-color: var(--black); }
.exp-option input:checked + .exp-label { border-color: var(--black); background: var(--black); }
.exp-option input:checked + .exp-label span,
.exp-option input:checked + .exp-label small { color: var(--white); }
.exp-label span { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.exp-label small { font-size: 0.6875rem; color: var(--mid-grey); }

/* Agreement */
.agreement-box {
  border: var(--rule-light);
  background: var(--off-white);
  padding: 28px;
  margin-bottom: 28px;
}
.agreement-box p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 16px;
}
.agreement-check { display: flex; gap: 12px; align-items: flex-start; }
.agreement-check input { margin-top: 4px; accent-color: var(--gold); flex-shrink: 0; }
.agreement-check label { font-size: 0.875rem; color: var(--ink); line-height: 1.6; }
.agreement-check a { color: var(--gold-dark); text-decoration: underline; }

/* Step Navigation */
.step-nav { display: flex; justify-content: space-between; margin-top: 40px; padding-top: 32px; border-top: var(--rule-light); align-items: center; }
.step-nav .step-count { font-size: 0.75rem; color: var(--mid-grey); letter-spacing: 0.06em; }

/* ── About / Contact (simple reuse) ── */
.page-hero { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--rule); }
.page-hero-content { padding: 80px 64px 80px 32px; border-right: var(--rule); display: flex; flex-direction: column; justify-content: center; }
.page-hero-content .editorial-chapter { margin-bottom: 16px; }
.page-hero-content h1 { margin-bottom: 20px; }
.page-hero-image { overflow: hidden; }
.page-hero-image img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }

.content-section { padding: 80px 32px; max-width: var(--max-width); margin: 0 auto; border-bottom: var(--rule); }
.content-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: var(--rule); border-left: var(--rule); margin-top: 48px; }
.content-card { border-right: var(--rule); border-bottom: var(--rule); padding: 36px 28px; }
.content-card .display-num { font-size: 3rem; margin-bottom: 12px; }
.content-card h3 { font-size: 1.0625rem; margin-bottom: 10px; }
.content-card p { font-size: 0.875rem; line-height: 1.7; }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--rule); }
.contact-form-side { padding: 80px 64px 80px 32px; border-right: var(--rule); }
.contact-form-side .editorial-chapter { margin-bottom: 16px; }
.contact-form-side h2 { margin-bottom: 8px; }
.contact-form-side > p { margin-bottom: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 13px 14px;
  border: var(--rule-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  background: var(--white);
  transition: var(--transition);
  color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--black); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.75rem; color: var(--mid-grey); width: 100%; }
.contact-form-consent input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; }
.contact-form-consent label { flex: 1; min-width: 0; word-wrap: break-word; line-height: 1.6; }
.contact-info-side { padding: 80px 32px 80px 48px; display: flex; flex-direction: column; gap: 40px; }
.contact-info-block h4 { font-size: 0.5625rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid-grey); margin-bottom: 10px; }
.contact-info-block p { font-size: 0.9375rem; color: var(--ink); line-height: 1.7; }
.contact-info-block a { color: var(--gold-dark); }

/* Legal */
.legal-page { max-width: 760px; margin: 0 auto; padding: 80px 32px; }
.legal-page h1 { font-size: 2.5rem; margin-bottom: 8px; }
.legal-meta { font-size: 0.8125rem; color: var(--mid-grey); margin-bottom: 48px; padding-bottom: 24px; border-bottom: var(--rule); }
.legal-page h2 { font-size: 1.375rem; margin: 36px 0 14px; }
.legal-page p { font-size: 0.9375rem; line-height: 1.8; margin-bottom: 16px; }
.legal-page ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.legal-page ul li { font-size: 0.9375rem; line-height: 1.7; color: var(--mid-grey); }
.legal-page a { color: var(--gold-dark); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .hero-body { grid-template-columns: 1fr; }
  .hero-image { min-height: 50vw; }
  .hero-content { border-right: none; border-bottom: var(--rule); padding: 48px 0; }
  .why-section { grid-template-columns: 1fr; }
  .why-image { height: 50vw; }
  .why-content { border-right: none; border-bottom: var(--rule); }
  .cta-section { grid-template-columns: 1fr; }
  .cta-image { height: 40vw; }
  .cta-content { border-right: none; border-bottom: 1px solid #333; }
  .page-hero { grid-template-columns: 1fr; }
  .page-hero-content { border-right: none; border-bottom: var(--rule); }
  .contact-section { grid-template-columns: 1fr; }
  .contact-form-side { border-right: none; border-bottom: var(--rule); }
  .jobs-grid { grid-template-columns: 1fr; }
  .job-card-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .job-card-featured .job-card-left { border-right: none; border-bottom: 1px solid #333; }
  .fee-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .step-progress { gap: 0; }
  .info-bar-right { display: none; }
  .hero-meta-bar { overflow-x: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-body { padding: 0 16px; }
  .jobs-section, .how-section, .fee-section, .testi-section { padding: 56px 16px; }
  .apply-page { padding: 48px 16px 64px; }
  .exp-options { flex-direction: column; }
  .exp-label { flex-direction: row; justify-content: flex-start; min-width: auto; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
}
