/* ================================================
   PAGES
   Per-page overrides + unique section styles.
   Shared component defaults live in components.css.
   ================================================ */


/* ╔═══════════════════════════════════════════════╗
   ║  PAGE-LEVEL OVERRIDES (shared components)     ║
   ╚═══════════════════════════════════════════════╝ */

/* ── HOME: section default padding ── */
/* Several home sections (services, , WEBSITES, approach, cta) rely on a generic
   section-level padding rule. Scoped to the home page only so the
   talent page's explicit per-section padding is not disturbed. */
.page-home section { padding: 7rem 5vw; }
/* Restore explicit padding on home sections that already declare their own
   (listed below so the 7rem default above doesn't win by specificity). */
.page-home .hero          { padding: 10rem 5vw 6rem; }
.page-home .about-section { padding: 8rem 5vw; }


/* ── TALENT: nav & mobile menu tweaks ── */
.page-talent nav { backdrop-filter: blur(12px); }

.page-talent .mobile-menu.open { max-height: 380px; }
.page-talent .mobile-menu a:hover { color: #fff; padding-left: 4px; }

/* ── TALENT: hero overlay + title + sub + actions variants ── */
.page-talent .hero-overlay {
  background: linear-gradient(135deg,
    rgba(13, 32, 16, 0.85) 0%,
    rgba(13, 32, 16, 0.58) 60%,
    rgba(13, 32, 16, 0.75) 100%);
}

.page-talent .hero-title {
  font-size: clamp(2.8rem, 6.5vw, 6.5rem);
  max-width: 16ch;
  animation-delay: 0.3s;
}
.page-talent .hero-title em {
  color: var(--sky-light);
  -webkit-text-stroke: 0 transparent;
}

.page-talent .hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 52ch;
  animation-delay: 0.5s;
}

.page-talent .hero-actions { animation-delay: 0.7s; }

/* ── TALENT: button variants ── */
.page-talent .btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--sky));
}
.page-talent .btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.75);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

/* ── TALENT: footer tweaks ── */
.page-talent .footer-logo img { border-radius: 5px; }
.page-talent .footer-links    { flex-wrap: wrap; }

/* ── TALENT: contact-links margin ── */
.page-talent .contact-links { margin-top: 1rem; }


/* ╔═══════════════════════════════════════════════╗
   ║  HOME PAGE — unique sections                  ║
   ╚═══════════════════════════════════════════════╝ */

/* ── ABOUT ── */
.about-section { background: var(--off-white); }
.about-intro { max-width: 700px; margin-bottom: 3rem; }
.about-intro .section-title { margin-bottom: 1.5rem; }
.about-intro p {
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #4a5568;
}

/* ── CORE VALUES ── */
.core-values-header {
  margin-bottom: 2.5rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.core-values-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(85, 166, 48, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.core-values-header-left { position: relative; }
.core-values-header-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.4rem;
}
.core-values-header-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  line-height: 1.2;
}
.core-values-header-title em { font-style: italic; color: var(--sky-light); }

.core-values-header-right {
  position: relative;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cv-pill {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(85, 166, 48, 0.4);
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.core-value-card {
  background: #fff;
  border-top: 3px solid var(--sky);
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}
.core-value-card:hover {
  box-shadow: 0 12px 40px rgba(43, 147, 72, 0.12);
  transform: translateY(-4px);
}
.core-value-card:nth-child(2) { border-top-color: var(--gold); }
.core-value-card:nth-child(3) { border-top-color: var(--sky-light); }

.core-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  background: rgba(85, 166, 48, 0.08);
}
.core-value-card:nth-child(2) .core-value-icon { background: rgba(201, 168, 76, 0.1); }
.core-value-card:nth-child(3) .core-value-icon { background: rgba(128, 185, 24, 0.08); }

.core-value-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.core-value-desc {
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.75;
  color: #6b7280;
}
.core-value-number {
  position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(85, 166, 48, 0.12);
}
.core-value-card:nth-child(2) .core-value-number { -webkit-text-stroke-color: rgba(201, 168, 76, 0.15); }
.core-value-card:nth-child(3) .core-value-number { -webkit-text-stroke-color: rgba(128, 185, 24, 0.12); }

/* ── SERVICES ── */
.services-section { background: var(--navy); }
.services-section .section-title {
  color: #fff;
  max-width: 18ch; /* (was inline in original) */
}
.services-header { margin-bottom: 4rem; }

.services-grid {
  display: grid;
  gap: 1.5px;
  background: rgba(85, 166, 48, 0.12);
}
.services-grid--3 { grid-template-columns: repeat(3, 1fr); }

.service-card {
  background: var(--navy);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: var(--navy-mid); }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(85, 166, 48, 0.3);
  margin-bottom: 1.5rem;
  transition: -webkit-text-stroke 0.3s;
}
.service-card:hover .service-num { -webkit-text-stroke-color: rgba(85, 166, 48, 0.7); }

.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}
.service-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky);
  border: 1px solid rgba(85, 166, 48, 0.4);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.service-card--featured .service-tag {
  color: var(--gold-light);
  border-color: rgba(233, 196, 106, 0.4);
}
.service-card--featured {
  background: var(--navy-mid);
  box-shadow: inset 0 0 0 1px rgba(85, 166, 48, 0.2);
}

.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.service-bullets li {
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 1.25rem;
  position: relative;
}
.service-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sky);
  font-size: 0.75rem;
}
.service-card--featured .service-bullets li { color: rgba(255, 255, 255, 0.75); }

.service-line {
  width: 2rem;
  height: 2px;
  margin-top: 2rem;
  background: linear-gradient(90deg, var(--sky), transparent);
  transition: width 0.3s;
}
.service-card:hover .service-line { width: 4rem; }

/* ── WEBSITES ── */  
.website-section {
  padding: 8rem 5vw;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  .section-title {
    color: #fff;
    max-width: 18ch; /* (was inline in original) */
  }
}


/* ── APPROACH ── */
.approach { background: #fff; }
.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.approach-sticky { position: sticky; top: 6rem; }
.approach-sticky .section-title { margin-bottom: 1.5rem; }
.approach-sticky p {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: #6b7280;
  margin-top: 1.5rem; /* (was inline in original) */
}

.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid #f0f0f0;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.step:hover       { opacity: 1; }
.step:last-child  { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--sky);
  line-height: 1;
  padding-top: 0.2rem;
}
.step-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #6b7280;
}

/* ── HOME CTA (inner layout) ── */
.page-home .cta-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: 7rem 5vw;
}
.page-home .cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.1;
  color: #fff;
}
.page-home .cta-title em {
  font-style: italic;
  color: var(--sky-light);
}

/* ── HOME footer author link (was inline in original) ── */
.footer-author-link {
  color: green;
  text-decoration: none;
}


/* ╔═══════════════════════════════════════════════╗
   ║  TALENT PAGE — unique sections                ║
   ╚═══════════════════════════════════════════════╝ */

/* ── WHAT THIS IS ── */
.what-section {
  padding: 8rem 5vw;
  background: var(--off-white);
}
.what-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.what-inner .section-title { margin-bottom: 2rem; }
.what-inner .lead {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.6;
  color: var(--navy);
  margin-bottom: 2rem;
  font-weight: 300;
}
.what-inner p {
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #4a5568;
  max-width: 62ch;
  margin: 0 auto;
}

/* ── AUDIENCE SPLIT ── */
.audience-section {
  padding: 7rem 5vw;
  background: #fff;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
}
.audience-panel {
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.audience-panel--companies  { background: var(--navy); }
.audience-panel--candidates {
  background: var(--off-white);
  border: 1px solid rgba(85, 166, 48, 0.2);
}
.audience-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.audience-panel--companies::before {
  background: radial-gradient(ellipse at 80% 20%, rgba(85, 166, 48, 0.18) 0%, transparent 60%);
}

.audience-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.audience-panel--companies  .audience-label { color: var(--sky); }
.audience-panel--candidates .audience-label { color: var(--blue); }

.audience-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}
.audience-panel--companies  .audience-title { color: #fff; }
.audience-panel--candidates .audience-title { color: var(--navy); }

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.benefit-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.6;
}
.audience-panel--companies  .benefit-list li { color: rgba(255, 255, 255, 0.72); }
.audience-panel--candidates .benefit-list li { color: #4a5568; }

.benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.audience-panel--companies .benefit-icon {
  background: rgba(85, 166, 48, 0.2);
  color: var(--sky-light);
}
.audience-panel--candidates .benefit-icon {
  background: rgba(43, 147, 72, 0.1);
  color: var(--blue);
}

.audience-close {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  padding-top: 2rem;
  border-top: 1px solid;
}
.audience-panel--companies  .audience-close { color: rgba(255, 255, 255, 0.4); border-color: rgba(85, 166, 48, 0.15); }
.audience-panel--candidates .audience-close { color: var(--mid-gray);      border-color: rgba(85, 166, 48, 0.15); }

/* ── HOW IT WORKS ── */
.how-section {
  padding: 8rem 5vw;
  background: var(--off-white);
}
.how-header { text-align: center; margin-bottom: 5rem; }
.how-header .section-title { max-width: 20ch; margin: 0 auto; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--sky), rgba(85, 166, 48, 0.3));
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(85, 166, 48, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--sky);
  margin: 0 auto 1.75rem;
  position: relative;
  z-index: 2;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.how-step:hover .step-circle {
  border-color: var(--sky);
  box-shadow: 0 0 24px rgba(85, 166, 48, 0.25);
}
.how-step-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.how-step-desc {
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #6b7280;
}

/* ── VISION ── */
.vision-section {
  padding: 9rem 5vw;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.vision-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(85, 166, 48, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.06) 0%, transparent 50%);
}
.vision-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.vision-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.5rem;
}
.vision-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  line-height: 1.35;
  color: #fff;
  margin-bottom: 3rem;
}
.vision-quote em { color: var(--sky-light); font-style: normal; }
.vision-body {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  max-width: 55ch;
  margin: 0 auto 3.5rem;
}

/* ── WHY THIS MATTERS ── */
.why-section {
  padding: 7rem 5vw;
  background: #fff;
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-text .section-title { margin-bottom: 2rem; }

/* Wrapper around the three why-stats (was inline margin-top: 3rem;) */
.why-stats { margin-top: 3rem; }

.why-stat {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(85, 166, 48, 0.15);
}
.why-stat:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.why-stat-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
}
.why-stat-text strong {
  color: var(--blue);
  font-style: normal;
  font-weight: 600;
}

.why-visual { position: relative; }
.why-card {
  background: var(--navy);
  padding: 2.5rem 2.5rem 2rem;
  border-left: 3px solid var(--sky);
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}
.why-card:last-child {
  margin-bottom: 0;
  border-left-color: var(--gold);
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(85, 166, 48, 0.1) 0%, transparent 60%);
}
.why-card:last-child::before {
  background: radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 60%);
}
.why-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
  position: relative;
}
.why-card:last-child .why-card-label { color: var(--gold-light); }
.why-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  position: relative;
}

/* ── WHO IT'S FOR ── */
.for-section {
  padding: 8rem 5vw;
  background: var(--off-white);
}

.for-header { margin-bottom: 4rem; }
.for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.for-col {
  padding: 3rem 2.5rem;
  position: relative;
}
.for-col--companies { background: var(--navy); }
.for-col--candidates {
  background: #fff;
  border: 1px solid rgba(85, 166, 48, 0.15);
}
.for-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.for-col--companies  .for-col-label { color: var(--sky); }
.for-col--candidates .for-col-label { color: var(--blue); }

.for-col-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}
.for-col--companies  .for-col-title { color: #fff; }
.for-col--candidates .for-col-title { color: var(--navy); }

.for-tags {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.for-tag {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 300;
  font-size: 0.92rem;
}
.for-col--companies  .for-tag { color: rgba(255, 255, 255, 0.65); }
.for-col--candidates .for-tag { color: #4a5568; }
.for-tag::before {
  content: '→';
  color: var(--sky);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.for-col--candidates .for-tag::before { color: var(--blue); }

/* ── TALENT DUAL CTA (inner layout + cards) ── */
.page-talent .cta-inner {
  position: relative;
  padding: 8rem 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.page-talent .cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.1;
  color: #fff;
}
.page-talent .cta-title em {
  font-style: italic;
  color: var(--sky-light);
}

.cta-divider {
  width: 60px;
  height: 1px;
  background: rgba(85, 166, 48, 0.4);
}
.cta-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 720px;
}
.cta-card {
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.cta-card--companies {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(85, 166, 48, 0.3);
}
.cta-card--candidates {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.35);
}
.cta-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.cta-card--companies  .cta-card-label { color: var(--sky); }
.cta-card--candidates .cta-card-label { color: var(--gold-light); }

.cta-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.cta-card-btn { display: inline-block; }


/* ╔═══════════════════════════════════════════════╗
   ║  PAGE-SPECIFIC RESPONSIVE RULES               ║
   ╚═══════════════════════════════════════════════╝ */

@media (max-width: 900px) {
  /* Home */
  .core-values-header-right { display: none; }
  .core-values-grid         { grid-template-columns: 1fr; }
  .services-grid--3         { grid-template-columns: 1fr; }
  .approach-inner           { grid-template-columns: 1fr; }
  .approach-sticky          { position: static; }

  /* Talent */
  .audience-grid    { grid-template-columns: 1fr; }
  .steps-grid       { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .steps-grid::before { display: none; }
  .why-inner        { grid-template-columns: 1fr; }
  .for-grid         { grid-template-columns: 1fr; }
  .cta-cards        { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .steps-grid { grid-template-columns: 1fr; }
}
