/* ============================================================
   SURV GROUP  —  Website Stylesheet
   Premium Hospitality Staffing Partner  |  South Africa
   ============================================================ */

/* === IMPORTS ================================================ */
@import url("https://use.typekit.net/khd1jso.css");
@import url("https://fonts.googleapis.com/css2?family=Spectral:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Raleway:wght@300;400;500;600&display=swap");

/* === CUSTOM PROPERTIES ===================================== */
:root {
  /* Brand Colors */
  --color-navy:        #051C39;
  --color-navy-95:     rgba(5, 28, 57, 0.95);
  --color-navy-70:     rgba(5, 28, 57, 0.72);
  --color-navy-40:     rgba(5, 28, 57, 0.4);
  --color-dark-gray:   #393637;
  --color-steel:       #718DAC;
  --color-white:       #FFFFFF;
  --color-coral:       #EE5A49;
  --color-pink:        #F3A3B5;
  --color-peach:       #FFBC7D;

  /* Backgrounds */
  --color-bg-light:    #f8f7fb;
  --color-bg-subtle:   #EAEEF3;
  --color-bg-tint:     #D1DFE4;

  /* Typography */
  --font-display:      "Spectral", "Georgia", serif;
  --font-brand:        "futura-pt", "Futura", "Century Gothic", Arial, sans-serif;
  --font-body:         "Raleway", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container-max:     1364px;
  --section-pad:       clamp(4.5rem, 9vw, 7.5rem);
  --container-pad:     clamp(1.5rem, 5vw, 4rem);

  /* Z-index scale */
  --z-base:    1;
  --z-sticky:  100;
  --z-overlay: 200;
  --z-modal:   300;

  /* Transitions */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:    180ms ease-out;
  --t-base:    280ms ease-out;
  --t-slow:    480ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* === RESET ================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-dark-gray);
  background: var(--color-white);
  overflow-x: hidden;
  line-height: 1.7;
}
img, svg { display: block; max-width: 100%; height: auto; width: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY ============================================= */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--color-navy);
}
h3, h4, h5 {
  font-family: var(--font-brand);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-navy);
}
p { max-width: 65ch; line-height: 1.75; }

.t-display {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.t-display em { font-style: italic; }

.t-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.t-sub {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.t-label {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
}

.t-body-lg {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: var(--color-dark-gray);
}

/* On dark backgrounds */
.on-dark { color: var(--color-white); }
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--color-white); }
.on-dark p { color: rgba(255, 255, 255, 0.88); }
.on-dark .t-label { color: var(--color-steel); }

/* === LAYOUT ================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section { padding-block: var(--section-pad); }
.section--dark  { background: var(--color-navy); }
.section--light { background: var(--color-bg-light); }
.section--tint  { background: var(--color-bg-subtle); }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* Section header block */
.section-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.section-header--center {
  margin-inline: auto;
  text-align: center;
}
.section-header .t-label { margin-bottom: 0.75rem; display: block; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--color-dark-gray); font-size: 1.0625rem; }
.section-header.on-dark p { color: rgba(255, 255, 255, 0.88); }

/* === BUTTONS ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.9375rem 2.125rem;
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base), transform var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-coral);
  color: var(--color-white);
  border-color: var(--color-coral);
}
.btn--primary:hover {
  background: transparent;
  color: var(--color-coral);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}
.btn--white:hover {
  background: transparent;
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline-white:hover {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-white);
}

.btn--outline-navy {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn--outline-navy:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === NAVIGATION ============================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 1.75rem;
  transition: padding var(--t-slow), background var(--t-slow), box-shadow var(--t-slow);
}
.site-nav.is-scrolled {
  background: var(--color-navy);
  padding-block: 1.1rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
@media (max-width: 480px) {
  .site-nav.is-scrolled {
    box-shadow: none;
  }
}
.site-nav--solid {
  background: var(--color-navy);
  padding-block: 1.1rem;
}

.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-nav__logo {
  flex-shrink: 0;
  line-height: 0;
}
.site-nav__logo img { height: 40px; width: auto; }

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.site-nav__link {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  transition: color var(--t-fast);
  position: relative;
}
.site-nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--color-coral);
  transition: width var(--t-base);
}
.site-nav__link:hover { color: var(--color-white); }
.site-nav__link:hover::after { width: 100%; }
.site-nav__link.is-active { color: var(--color-white); }
.site-nav__link.is-active::after { width: 100%; }

.site-nav__cta { margin-left: 1rem; }

.site-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.site-nav__hamburger span {
  display: block;
  height: 1.5px;
  background: var(--color-white);
  border-radius: 1px;
  transition: transform var(--t-base), opacity var(--t-fast), width var(--t-base);
  transform-origin: center;
}
.site-nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-nav__hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.site-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === MOBILE NAV ============================================= */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  z-index: calc(var(--z-sticky) + 5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.mobile-nav__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 300;
  color: var(--color-white);
  opacity: 0.85;
  padding: 0.75rem 2rem;
  display: block;
  transition: color var(--t-fast), opacity var(--t-fast);
}
.mobile-nav__link:hover { color: var(--color-coral); opacity: 1; }
.mobile-nav__cta-wrap {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  width: 100%;
  display: flex;
  justify-content: center;
}

/* === HERO =================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 28, 57, 0.85) 0%,
    rgba(5, 28, 57, 0.6) 55%,
    rgba(5, 28, 57, 0.45) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 7rem;
  padding-bottom: 5rem;
  padding-top: max(7rem, calc(var(--section-pad) + 3rem));
}
.hero__inner {
  max-width: 720px;
}
.hero__pretitle {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__pretitle::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-coral);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.25rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}
.hero__title em {
  font-style: italic;
  color: var(--color-pink);
}
.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 2.75rem;
}
.hero__actions { margin-bottom: 4rem; }

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll-hint svg { width: 16px; height: 16px; }

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.7; }
}

@keyframes pillarFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* Interior hero (shorter) */
.hero--interior {
  min-height: 58vh;
  align-items: flex-end;
}
.hero--interior .hero__content {
  padding-bottom: 4.5rem;
}
.hero--interior .hero__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
}

/* === INTRO SPLIT ============================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.intro-split__heading {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3vw, 2.625rem);
  font-weight: 300;
  color: var(--color-navy);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.intro-split__heading strong {
  font-weight: 400;
  color: var(--color-coral);
}
.intro-split__divider {
  width: 48px;
  height: 2px;
  background: var(--color-coral);
  margin-block: 2rem;
}
.intro-split__body {
  color: var(--color-dark-gray);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.intro-split__body p + p { margin-top: 1.25em; }

/* === SERVICE PILLARS ======================================== */
.pillars-wrap {
  background: var(--color-navy);
}
.pillars-wrap .section-header h2 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-bottom: var(--section-pad);
}
.pillar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar::after { display: none; }
.pillar:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(238, 90, 73, 0.4);
  box-shadow: 0 24px 60px rgba(5, 28, 57, 0.45),
              0 0 0 1px rgba(238, 90, 73, 0.15);
}
.pillar__anim {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar__anim svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.pillar__icon { display: none; }
.pillar__num { display: none; }
.pillar__title {
  font-family: var(--font-brand);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.pillar__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.62);
  max-width: 26ch;
  margin-inline: auto;
  flex-grow: 1;
  transition: color 0.3s ease;
}
.pillar:hover .pillar__text { color: rgba(255, 255, 255, 0.82); }
.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1.75rem;
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-coral);
  opacity: 0.72;
  transition: gap 180ms ease-out, opacity 180ms ease-out;
}
.pillar__link:hover { gap: 0.625rem; opacity: 1; }

/* === FEATURE SPLIT SECTION ================================= */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.feature-split__visual {
  position: relative;
  overflow: hidden;
}
.feature-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.feature-split__visual:hover img { transform: scale(1.04); }
.feature-split__body {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-white);
}
.feature-split--alt .feature-split__visual { order: 2; }
.feature-split--alt .feature-split__body { order: 1; background: var(--color-bg-light); }
.feature-split--dark .feature-split__body {
  background: var(--color-navy);
}
.feature-split--dark .feature-split__body h2,
.feature-split--dark .feature-split__body h3 { color: var(--color-white); }
.feature-split--dark .feature-split__body p { color: rgba(255, 255, 255, 0.7); }

.feature-split__body .t-label { margin-bottom: 0.875rem; display: block; }
.feature-split__body h2 { margin-bottom: 1.25rem; }
.feature-split__body p { margin-bottom: 1rem; }
.feature-split__body .btn-group { margin-top: 2rem; }

/* === BENEFIT ICONS GRID ==================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 2rem;
}
@media (max-width: 375px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefit-item {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 0;
}
.benefit-item__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.benefit-item__icon img { width: 100%; height: 100%; object-fit: contain; }
.benefit-item__title {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.625rem;
}
.benefit-item__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-dark-gray);
  max-width: 100%;
}

/* White icon variants */
.benefit-item--white .benefit-item__title { color: var(--color-white); }
.benefit-item--white .benefit-item__text { color: rgba(255, 255, 255, 0.65); }

/* === VENUE TYPE SCROLL ROW ================================= */
.venue-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1px;
  background: var(--color-bg-subtle);
}
.venue-cell {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  padding: 2.25rem 1.25rem;
  text-align: center;
  transition: background var(--t-fast);
}
.venue-cell:hover { background: var(--color-bg-light); }
.venue-cell img { width: 40px; height: 40px; object-fit: contain; opacity: 0.7; transition: opacity var(--t-fast); }
.venue-cell:hover img { opacity: 1; }
.venue-cell span {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-dark-gray);
  line-height: 1.4;
}

/* === STATS STRIP =========================================== */
.stats-strip {
  background: var(--color-navy);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 767px) {
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.stat-item {
  padding: 3.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 0.625rem;
}
.stat-item__num sup {
  font-size: 0.55em;
  vertical-align: super;
  color: var(--color-coral);
}
.stat-item__num span { color: var(--color-coral); }
.stat-item__label {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-steel);
}

/* === QUOTE SECTION ========================================= */
.quote-section {
  background: var(--color-navy);
  padding-block: var(--section-pad);
  text-align: center;
}
.quote-section__inner {
  max-width: 820px;
  margin-inline: auto;
}
.quote-section__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
  color: var(--color-coral);
  line-height: 0.7;
  margin-bottom: 1.5rem;
  display: block;
}
.quote-section__text {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.quote-section__attr {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-steel);
}

/* === PROCESS STEPS ========================================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.process-step {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--color-bg-subtle);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--color-bg-tint);
  line-height: 1;
  margin-bottom: 1.25rem;
}
.process-step__title {
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.process-step__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-dark-gray);
  max-width: 100%;
}

/* Dark background variant — about page approach section */
.process-grid--on-dark .process-step {
  border-right-color: rgba(255,255,255,0.1);
}
.process-grid--on-dark .process-step:hover {
  background: rgba(255,255,255,0.04);
}
.process-grid--on-dark .process-step:hover .process-step__num {
  color: var(--color-coral);
  opacity: 1;
}
.process-grid--on-dark .process-step__num {
  color: var(--color-coral);
  opacity: 0.9;
  transition: opacity var(--t-base), color var(--t-base);
}
.process-grid--on-dark .process-step__title {
  color: var(--color-white);
}
.process-grid--on-dark .process-step__text {
  color: rgba(255,255,255,0.7);
}

/* === PRICING =============================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--color-bg-subtle);
}
.pricing-card {
  background: var(--color-white);
  padding: 3rem 2.5rem 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-base);
}
.pricing-card:hover {
  box-shadow: 0 24px 64px rgba(5, 28, 57, 0.1);
  z-index: 1;
}
.pricing-card--featured {
  background: var(--color-navy);
}
.pricing-card__badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-coral);
  color: var(--color-white);
  font-family: var(--font-brand);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
}
.pricing-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 2rem;
}
.pricing-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.pricing-card__name {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.pricing-card--featured .pricing-card__name { color: var(--color-white); }
.pricing-card__description {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--color-dark-gray);
  margin-bottom: 2rem;
  flex-grow: 1;
}
.pricing-card--featured .pricing-card__description { color: rgba(255, 255, 255, 0.68); }
.pricing-card__features {
  margin-bottom: 2.5rem;
}
.pricing-card__feature {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  font-size: 0.9375rem;
  padding-block: 0.6rem;
  border-bottom: 1px solid var(--color-bg-subtle);
  color: var(--color-dark-gray);
}
.pricing-card--featured .pricing-card__feature {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}
.pricing-card__feature::before {
  content: "—";
  color: var(--color-coral);
  flex-shrink: 0;
  font-family: var(--font-brand);
  font-size: 0.75rem;
}

/* === CONTACT FORM ========================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
  padding-bottom: var(--section-pad);
}
.contact-info__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}
.contact-info__label {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-steel);
}
.contact-info__value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--color-white);
}
.contact-info__value a { transition: color var(--t-fast); }
.contact-info__value a:hover { color: var(--color-coral); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-steel);
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: none;
  transition: border-color var(--t-fast), background var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  max-width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255, 255, 255, 0.3); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-coral);
  background: rgba(255, 255, 255, 0.09);
}
.form-select option { background: var(--color-navy); color: var(--color-white); }
.form-textarea { min-height: 150px; resize: vertical; }

.form-input--file {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}
.form-input--file::file-selector-button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 0.375rem 1rem;
  margin-right: 1rem;
  cursor: pointer;
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t-fast);
}
.form-input--file::file-selector-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Form validation states */
.form-input.is-error,
.form-textarea.is-error,
.form-select.is-error {
  border-color: var(--color-coral);
  background: rgba(238, 90, 73, 0.08);
}
.form-field-error {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--color-coral);
  margin-top: 0.25rem;
  display: block;
}

/* === CTA BANNER ============================================ */
.cta-banner {
  padding-block: clamp(4rem, 8vw, 6rem);
}
.cta-banner--coral { background: var(--color-coral); }
.cta-banner--navy  { background: var(--color-navy); }
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cta-banner__text h2 {
  color: var(--color-white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}
.cta-banner__text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  max-width: 50ch;
}
.cta-banner--coral .cta-banner__text p { color: rgba(255, 255, 255, 0.85); }

/* === TEAM GRID ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}
.team-card__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-subtle);
  margin-bottom: 1.5rem;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__monogram {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}
.team-card__role {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: 0.75rem;
}
.team-card__bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-dark-gray);
  max-width: 100%;
}

/* === VALUES / LARGE FEATURE ================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 4rem;
}
.value-item__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-coral);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1rem;
}
.value-item__title {
  font-family: var(--font-brand);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}
.value-item__text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  max-width: 100%;
}

/* === FOOTER ================================================= */
.site-footer {
  background: var(--color-navy);
  padding-top: 5.5rem;
  padding-bottom: 0;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__brand {}
.site-footer__logo { height: 38px; margin-bottom: 1.5rem; }
.site-footer__tagline {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 26ch;
  margin-bottom: 2rem;
}
.site-footer__social {
  display: flex;
  gap: 1rem;
}
.site-footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.55);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.site-footer__social-link:hover { border-color: var(--color-coral); color: var(--color-coral); }

.site-footer__col-title {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: 1.5rem;
}
.site-footer__links { display: flex; flex-direction: column; gap: 0.875rem; }
.site-footer__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.58);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__link:hover { color: var(--color-white); }

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.75rem;
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.32);
  text-transform: uppercase;
}
.site-footer__bottom a { transition: color var(--t-fast); }
.site-footer__bottom a:hover { color: rgba(255, 255, 255, 0.6); }

/* === SCROLL REVEAL ========================================= */
/* Default: visible — JS enhances with animation when ready */
.reveal { opacity: 1; transform: none; }

.js-animations .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.js-animations .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.js-animations .reveal-d1 { transition-delay: 0.08s; }
.js-animations .reveal-d2 { transition-delay: 0.16s; }
.js-animations .reveal-d3 { transition-delay: 0.24s; }
.js-animations .reveal-d4 { transition-delay: 0.32s; }

/* === PAGE — EMPLOYER / STAFF SPLIT INTRO =================== */
.two-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-white);
}
.path-item {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2.5rem, 5vw, 5rem);
  border-right: 1px solid var(--color-bg-subtle);
  transition: background var(--t-base);
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.path-item:last-child { border-right: none; }
.path-item:hover { background: var(--color-bg-light); }
.path-item__icon {
  width: 56px; height: 56px;
  margin-bottom: 2rem;
}
.path-item__icon img { width: 100%; height: 100%; object-fit: contain; }
.path-item__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.path-item__text {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-dark-gray);
  margin-bottom: 1.5rem;
  max-width: 40ch;
}
.path-item__arrow {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-coral);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap var(--t-fast);
}
.path-item:hover .path-item__arrow { gap: 0.875rem; }

/* === PAGE — STAFF TYPES ===================================== */
.staff-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-bg-subtle);
}
@media (max-width: 767px) {
  .staff-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .staff-list {
    grid-template-columns: 1fr;
  }
}
.staff-item {
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.875rem;
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: background var(--t-fast);
}
.staff-item:hover { background: var(--color-bg-light); }
.staff-item img { width: 40px; height: 40px; object-fit: contain; }
.staff-item span {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  line-height: 1.4;
}

/* === DECORATIVE DIVIDER ==================================== */
.divider-line {
  width: 100%;
  height: 1px;
  background: var(--color-bg-subtle);
}
.divider-line--white { background: rgba(255, 255, 255, 0.09); }

/* === INLINE ACCENT TEXT ==================================== */
.accent { color: var(--color-coral); }
.accent-steel { color: var(--color-steel); }

/* === REDUCED MOTION ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* === RESPONSIVE — DESKTOP (≤1024px) ======================== */
@media (max-width: 1024px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin-inline: auto; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .feature-gxa { grid-template-columns: 1fr; }
  .feature-gxa__visual { min-height: 340px; order: -1; }
}

/* === RESPONSIVE — TABLET/MOBILE (≤767px) =================== */
@media (max-width: 767px) {
  :root { --section-pad: clamp(3rem, 7vw, 4.5rem); }

  /* Nav */
  .site-nav__links,
  .site-nav__cta { display: none; }
  .site-nav__hamburger { display: flex; }

  /* Hero */
  .hero__inner { max-width: 100%; }
  .hero__actions .btn-group { flex-direction: column; align-items: flex-start; }

  /* Layouts */
  .intro-split,
  .grid-2,
  .contact-layout,
  .two-path {
    grid-template-columns: 1fr;
  }
  .two-path { background: none; gap: 1px; }
  .path-item { border-right: none; border-bottom: 1px solid var(--color-bg-subtle); }

  .feature-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .feature-split__visual { min-height: 280px; order: -1 !important; }
  .feature-split__body { order: 0 !important; }

  .pillars,
  .process-grid,
  .grid-3 { grid-template-columns: 1fr; }
  .pillar { box-shadow: 0 2px 16px rgba(5, 28, 57, 0.06); }
  .process-step { border-right: none; border-bottom: 1px solid var(--color-bg-subtle); }
  .process-step:last-child { border-bottom: none; }
  .process-grid--on-dark .process-step { border-bottom-color: rgba(255,255,255,0.1); }
  .feature-gxa { grid-template-columns: 1fr; }
  .feature-gxa__visual { min-height: 280px; order: -1; }
  .service-block__body,
  .service-block__body--alt { grid-template-columns: 1fr; }
  .service-block__body--alt .service-block__visual { order: -1; }
  .service-block__visual img { height: 280px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }

  .values-grid { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer__grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .site-footer__brand { max-width: none; }
  .site-footer__bottom { flex-direction: column; gap: 0.625rem; text-align: center; }

  /* Form */
  .contact-form { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }
  .form-input, .form-textarea, .form-select { font-size: 16px; }
  .contact-form > div[style*="grid-template-columns:1fr"] { grid-template-columns: 1fr; }

  /* CTA Banner */
  .cta-banner__inner { flex-direction: column; gap: 2rem; }
  .cta-banner__inner .btn-group { width: 100%; }
  .cta-banner__inner .btn { width: 100%; justify-content: center; }
}

/* === FEATURED SERVICE — GXA ================================ */
.feature-gxa {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  background: var(--color-bg-light);
}
.feature-gxa__text-col {
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-gxa__text-col h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}
.feature-gxa__text-col h2 em {
  font-style: italic;
  color: var(--color-coral);
}
.feature-gxa__text-col p {
  color: var(--color-dark-gray);
  font-size: 1.0625rem;
  line-height: 1.8;
}
.feature-gxa__visual {
  position: relative;
  overflow: hidden;
}
.feature-gxa__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* === TEAM CARD QUOTE ====================================== */
.team-card__quote {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-steel);
  margin-top: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--color-coral);
  line-height: 1.6;
}

/* === SERVICES PAGE ========================================= */
.service-block__label {
  margin-bottom: 1.5rem;
}
.service-block__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.service-block__body--alt .service-block__visual { order: -1; }
.service-block__body--alt .service-block__text { order: 1; }
.service-block__text h2 {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.service-block__visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}
.service-block__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-feature {
  padding-left: 1.25rem;
  border-left: 2px solid var(--color-coral);
}
.service-feature h3 {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.375rem;
}
.service-feature p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-dark-gray);
  max-width: 100%;
}

/* === FORM CHECKBOX (POPIA / T&C) =========================== */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15em;
  accent-color: var(--color-coral);
  cursor: pointer;
  border-radius: 0;
}
.form-check span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--color-dark-gray);
}
.form-check span a {
  color: var(--color-coral);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
.form-check span a:hover { color: var(--color-navy); }
/* On dark-background forms */
.section--dark .form-check span { color: rgba(255, 255, 255, 0.62); }
.section--dark .form-check span a { color: var(--color-steel); }
.section--dark .form-check span a:hover { color: var(--color-coral); }

/* === ADDITIONAL PAGE ANIMATIONS ============================ */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* Stagger entrance for hero */
.js-animations .hero__pretitle { animation: fadeSlideUp 0.7s var(--ease-out) 0.15s both; }
.js-animations .hero__title    { animation: fadeSlideUp 0.8s var(--ease-out) 0.28s both; }
.js-animations .hero__subtitle { animation: fadeSlideUp 0.7s var(--ease-out) 0.42s both; }
.js-animations .hero__actions  { animation: fadeSlideUp 0.7s var(--ease-out) 0.56s both; }

/* Image hover micro-scale on feature-split */
.feature-split__visual { overflow: hidden; }

/* GXA visual hover */
.feature-gxa__visual:hover img { transform: scale(1.04); }
.feature-gxa__visual img { transition: transform 0.7s var(--ease-out); }

/* Section entry line accent */
.intro-split__divider {
  transform-origin: left;
  animation: lineGrow 0.7s var(--ease-out) 0.2s both;
}

/* Benefit icon float */
.benefit-item__icon img {
  transition: transform 0.35s var(--ease-out);
}
.benefit-item:hover .benefit-item__icon img {
  transform: translateY(-5px) scale(1.08);
}

/* Process step hover */
.process-step {
  transition: background var(--t-base);
}
.process-step:hover { background: var(--color-bg-light); }
.process-step__num { transition: color var(--t-base); }
.process-step:hover .process-step__num { color: var(--color-coral); opacity: 0.5; }

/* Feature-split image hover scale */
.feature-split__visual img {
  transition: transform 0.7s var(--ease-out);
}
.feature-split__visual:hover img { transform: scale(1.04); }

/* Team card hover lift */
.team-card {
  transition: transform var(--t-slow), box-shadow var(--t-slow);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(5, 28, 57, 0.1);
}

/* Pillar icon — handled in pillar block above */

/* CTA section entrance animation */
.js-animations .cta-banner__inner.reveal.visible h2 {
  animation: fadeInUp 0.7s var(--ease-out) 0.1s both;
}
.js-animations .cta-banner__inner.reveal.visible p {
  animation: fadeInUp 0.7s var(--ease-out) 0.22s both;
}

/* Smooth image parallax effect — subtle */
@supports (animation-timeline: scroll()) {
  .hero__bg {
    animation: heroParallax linear both;
    animation-timeline: scroll(root block);
    animation-range: 0 50vh;
  }
  @keyframes heroParallax {
    from { transform: scale(1) translateY(0); }
    to   { transform: scale(1.08) translateY(6%); }
  }
}

/* === HEADING AUTHORITY — key dark/emphasis sections ======== */
.section--dark .section-header h2,
.pillars-wrap .section-header h2,
.feature-gxa__text-col h2,
.cta-banner__text h2 {
  font-weight: 400;
}

/* === WIREFRAME SCENE (PRICING) ============================= */
.standard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.standard-header .section-header {
  margin-bottom: 0;
  flex: 1;
}
.wireframe-scene {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
  opacity: 0.9;
}
.wf-svg {
  width: 260px;
  max-width: 100%;
  height: auto;
}
.wf-el {
  stroke-dashoffset: 0;
}
.js-animations .wf-el {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}
.js-animations .wf-el.wf-animate {
  animation: wfDraw 0.9s ease-out forwards;
}
.wf-el-1  { animation-delay: 0.05s; }
.wf-el-2  { animation-delay: 0.30s; }
.wf-el-3  { animation-delay: 0.45s; }
.wf-el-4  { animation-delay: 0.60s; }
.wf-el-5  { animation-delay: 0.75s; }
.wf-el-6  { animation-delay: 0.50s; }
.wf-el-7  { animation-delay: 0.55s; }
.wf-el-8  { animation-delay: 0.60s; }
.wf-el-9  { animation-delay: 0.65s; }
.wf-el-10 { animation-delay: 0.70s; }
.wf-el-11 { animation-delay: 0.15s; }
.wf-el-12 { animation-delay: 0.45s; }
.wf-el-13 { animation-delay: 0.60s; }
.wf-el-14 { animation-delay: 0.90s; }
.wf-el-15 { animation-delay: 0.10s; }
.wf-el-16 { animation-delay: 0.00s; }
@keyframes wfDraw {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .js-animations .wf-el { stroke-dashoffset: 0 !important; animation: none !important; }
}
@media (max-width: 767px) {
  .standard-header { flex-direction: column; }
  .wireframe-scene { align-self: center; justify-content: center; }
  .wf-svg { width: 200px; }
}

/* === MYSTERY DINER CTA ===================================== */
.mystery-diner__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.mystery-diner__text h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.mystery-diner__text h2 em { font-style: italic; color: var(--color-coral); }
.mystery-diner__text p { color: var(--color-dark-gray); font-size: 1.0625rem; line-height: 1.8; max-width: 100%; }
.mystery-diner__visual { position: relative; }
.mystery-diner__badge {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: var(--color-navy);
  padding: 1.25rem 1.5rem;
  text-align: center;
  z-index: 2;
}
.mystery-diner__badge-label {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: 0.5rem;
}
.mystery-diner__badge-stat {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
}
.mystery-diner__badge-sub {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE REDESIGN — svc-* components
   ═══════════════════════════════════════════════════════ */

.svc-panel {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 8rem);
}
.svc-panel--dark  { background: var(--color-navy); }
.svc-panel--light { background: var(--color-bg-light); }
.svc-panel--white { background: var(--color-white); }

.svc-ghost-num {
  position: absolute;
  top: -0.1em;
  right: -0.04em;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 300;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
}
.svc-ghost-num--dark { color: rgba(5,28,57,0.05); }

.svc-panel .container { position: relative; z-index: 1; }
.svc-panel__header { max-width: 68ch; }

/* Layout */
.svc-layout {
  display: grid;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: center;
}
.svc-layout--right { grid-template-columns: 1fr 40%; }
.svc-layout--left  { grid-template-columns: 40% 1fr; }

/* Eyebrow */
.svc-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.svc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.svc-dot--coral { background: var(--color-coral); }
.svc-dot--steel { background: var(--color-steel); }
.svc-dot--navy  { background: var(--color-navy); }
.svc-eyebrow-label {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.svc-eyebrow-label--dark { color: var(--color-steel); }

/* Titles */
.svc-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}
.svc-title--dark { color: var(--color-navy); }

.svc-lead {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.5rem;
}
.svc-lead--dark { color: var(--color-dark-gray); }

.svc-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  max-width: 58ch;
}
.svc-desc--dark { color: var(--color-dark-gray); max-width: none; }
.svc-desc--sm { font-size: 0.9375rem; }

.svc-note {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.38);
}

/* Two-col content */
.svc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

/* Column labels */
.svc-col-label {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 1rem;
  display: block;
}
.svc-col-label--dark { color: var(--color-navy); }

/* Checklist */
.svc-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-list li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.72);
  padding-left: 1.25rem;
  position: relative;
}
.svc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-coral);
  flex-shrink: 0;
}
.svc-list--dark li { color: var(--color-dark-gray); }
.svc-list--dark li::before { background: var(--color-steel); }

/* Programme pills */
.svc-pills { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.svc-pill {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.4375rem 1.125rem;
  border-radius: 999px;
}

/* Mystery Shopping image */
.svc-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease-out);
}
.svc-img-wrap:hover img { transform: scale(1.04); }

.svc-img-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -1rem;
  background: var(--color-navy);
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-left: 3px solid var(--color-coral);
}
.svc-img-badge__label {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.5625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-steel);
  margin-bottom: 0.375rem;
}
.svc-img-badge__stat {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--color-white);
  line-height: 1;
}
.svc-img-badge__sub {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.5625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-top: 0.25rem;
}

/* Consulting visual */
.svc-consulting-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.svc-cv__frame {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.svc-cv__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.svc-cv__card {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  background: var(--color-white);
  box-shadow: 0 8px 40px rgba(5,28,57,0.16);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 240px;
}
.svc-cv__card img { width: 36px; height: 36px; flex-shrink: 0; }
.svc-cv__card span {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-navy);
  line-height: 1.4;
}

/* Dual cards — Consulting / Training */
.svc-dual-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.svc-dual-card {
  background: var(--color-white);
  padding: 1.75rem 1.5rem;
  border-top: 3px solid;
  box-shadow: 0 2px 20px rgba(5,28,57,0.07);
}
.svc-dual-card--steel { border-color: var(--color-steel); }
.svc-dual-card--navy  { border-color: var(--color-navy); }
.svc-dual-card h3 {
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 1rem;
}
.svc-dual-card__sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--color-dark-gray);
  margin-bottom: 0.875rem;
  line-height: 1.6;
}

/* Staffing tier cards */
.svc-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-tier-card {
  background: var(--color-white);
  border: 1px solid rgba(5,28,57,0.08);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.svc-tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(5,28,57,0.12);
}
.svc-tier-card--featured {
  border-color: var(--color-navy);
  box-shadow: 0 8px 32px rgba(5,28,57,0.1);
}
.svc-tier-card__top {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-tier-card__top--coral { background: var(--color-coral); }
.svc-tier-card__top--navy  { background: var(--color-navy); }
.svc-tier-card__top--steel { background: var(--color-steel); }
.svc-tier-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.svc-tier-card__body { padding: 1.75rem 1.5rem 2.25rem; }
.svc-tier-card__title {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}
.svc-tier-card__price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-coral);
  margin-bottom: 1rem;
}
.svc-tier-card__desc {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-dark-gray);
  line-height: 1.72;
}

/* Positions tag cloud */
.svc-positions { max-width: 900px; }
.svc-tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.svc-tag-cloud span {
  display: inline-flex;
  align-items: center;
  gap: 0.4375rem;
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-navy);
  background: rgba(5,28,57,0.05);
  border: 1px solid rgba(5,28,57,0.1);
  padding: 0.4375rem 1rem 0.4375rem 0.75rem;
}
.pos-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--color-navy);
  opacity: 0.75;
}

/* Responsive */
@media (max-width: 1023px) {
  .svc-layout--right,
  .svc-layout--left { grid-template-columns: 1fr; }
  .svc-layout--left .svc-visual { order: -1; }
  .svc-img-wrap,
  .svc-consulting-visual { aspect-ratio: 16/9; }
  .svc-consulting-visual { padding-bottom: 3rem; }
  .svc-cv__card { bottom: 0; right: 0; }
  .svc-tier-grid { grid-template-columns: 1fr 1fr; }
  .svc-two-col { grid-template-columns: 1fr; gap: 1.5rem; }
  .svc-dual-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .svc-panel { padding-block: clamp(3rem, 8vw, 5rem); }
  .svc-ghost-num { font-size: clamp(5rem, 28vw, 9rem); }
  .svc-tier-grid { grid-template-columns: 1fr; }
  .svc-dual-cards { grid-template-columns: 1fr; }
  .svc-img-badge { left: 0; }
  .svc-cv__card { position: static; margin-top: 1rem; box-shadow: 0 4px 16px rgba(5,28,57,0.1); }
  .svc-consulting-visual { aspect-ratio: 4/3; padding-bottom: 0; }
}

/* === RESPONSIVE ADDITIONS ================================== */
@media (max-width: 1024px) {
  .pillar { min-height: 0; }
  .site-nav__links { gap: 1.5rem; }
  .site-nav__link { font-size: 0.75rem; }
}
@media (max-width: 767px) {
  .hero__title { letter-spacing: -0.02em; }
  .feature-gxa__text-col h2 { font-size: clamp(1.875rem, 6vw, 2.5rem); }
  .t-heading { font-size: clamp(1.625rem, 5vw, 2rem); }
  .mystery-diner__inner { grid-template-columns: 1fr; }
  .mystery-diner__badge { top: 1rem; right: 1rem; }
  .feature-gxa__text-col { padding: 2.5rem var(--container-pad); }
  .pricing-card { padding: 2.25rem 1.75rem 2.75rem; }
}

/* === PILLAR SVG ANIMATIONS ================================= */
/* Network (Staffing) */
@keyframes netRing { 0%,100%{stroke-dashoffset:0} 50%{stroke-dashoffset:20} }
@keyframes netPulse { 0%,100%{r:8} 50%{r:10} }
@keyframes netNodePulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.p-ring { animation: netRing 4s linear infinite; stroke-dasharray: 8 5; }
.p-center { animation: netPulse 3s ease-in-out infinite; }
.p-node { animation: netNodePulse 2s ease-in-out infinite; }
.p-node:nth-child(2) { animation-delay: 0.5s; }
.p-node:nth-child(3) { animation-delay: 1s; }
.p-line { stroke-dasharray: 40; stroke-dashoffset: 40; animation: wfDraw 0.8s ease-out forwards; }
.p-line:nth-child(5) { animation-delay: 0.3s; }
.p-line:nth-child(6) { animation-delay: 0.5s; }

/* Eye (Auditing) */
@keyframes scanRotate { from{transform-origin:50% 50%;transform:rotate(0deg)} to{transform-origin:50% 50%;transform:rotate(360deg)} }
@keyframes eyePulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
.eye-scan { animation: scanRotate 4s linear infinite; }
.eye-pupil { animation: eyePulse 2.5s ease-in-out infinite; transform-origin: 50% 50%; }

/* Diamond (Consulting) */
@keyframes diamondSpin { 0%{transform:rotate(0deg)} 100%{transform:rotate(90deg)} }
@keyframes diamondPulse { 0%,100%{opacity:1} 50%{opacity:0.5} }
.diamond { transform-origin: 50% 50%; animation: diamondSpin 6s ease-in-out infinite alternate; }
.diamond-center { animation: diamondPulse 2s ease-in-out infinite; }

/* Trend (Training) */
@keyframes trendDraw { from{stroke-dashoffset:200} to{stroke-dashoffset:0} }
@keyframes dotAppear { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }
@keyframes dotPulse { 0%,100%{r:4} 50%{r:6} }
.trend-line { stroke-dasharray: 200; animation: trendDraw 1.5s ease-out forwards; }
.trend-dot { animation: dotAppear 0.4s ease-out forwards; opacity: 0; transform-origin: center; }
.trend-dot.t-d1 { animation-delay: 0.3s; }
.trend-dot.t-d2 { animation-delay: 0.6s; }
.trend-dot.t-d3 { animation-delay: 0.9s; }
.trend-dot.t-d4 { animation-delay: 1.1s; animation-name: dotAppear, dotPulse; animation-duration: 0.4s, 2s; animation-delay: 1.1s, 1.5s; animation-iteration-count: 1, infinite; }

@media (prefers-reduced-motion: reduce) {
  .p-ring, .p-center, .p-node, .p-line,
  .eye-scan, .eye-pupil,
  .diamond, .diamond-center,
  .trend-line, .trend-dot { animation: none; opacity: 1; stroke-dashoffset: 0; }
}

@media (max-width: 1024px) {
  .pillar__anim { width: 88px; height: 88px; }
}
@media (max-width: 767px) {
  .pillar { padding: 2.5rem 1.75rem 2rem; }
  .pillar__anim { width: 80px; height: 80px; }
}

/* ============================================================
   SERVICES PAGE — Sub-Nav & Category Banners
   ============================================================ */

/* Services Sub-Nav */
.services-subnav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.875rem 0;
  position: sticky;
  top: 72px;
  z-index: 90;
  border-bottom: 1px solid rgba(5,28,57,0.08);
  box-shadow: 0 2px 20px rgba(5,28,57,0.07);
}
.services-subnav__inner {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.services-subnav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-navy);
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5625rem 1.25rem 0.5625rem 1rem;
  border: 2px solid rgba(5,28,57,0.12);
  border-radius: 0;
  background: transparent;
  transition: color var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  flex-shrink: 0;
}
.services-subnav__link::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.services-subnav__link--mystery::before  { background: var(--color-coral); }
.services-subnav__link--consulting::before { background: var(--color-steel); }
.services-subnav__link--staffing::before { background: var(--color-navy); }

.services-subnav__link--mystery:hover,
.services-subnav__link--mystery.active {
  color: var(--color-coral);
  border-color: var(--color-coral);
}
.services-subnav__link--consulting:hover,
.services-subnav__link--consulting.active {
  color: var(--color-steel);
  border-color: var(--color-steel);
}
.services-subnav__link--staffing:hover,
.services-subnav__link--staffing.active {
  color: var(--color-navy);
  border-color: var(--color-navy);
  background: rgba(5,28,57,0.03);
}

/* Scroll offset: fallback for browser native hash nav (JS handles click scroll) */
.svc-panel {
  scroll-margin-top: 145px;
}

/* Service Category Banners */
/* Pull the banner flush to the top of the section, overriding section padding-block-start */
.service-banner {
  padding: 2.5rem 0;
  margin-top: calc(var(--section-pad) * -1);
  margin-bottom: var(--section-pad);
}
.service-banner--coral {
  background: var(--color-coral);
}
.service-banner--steel {
  background: var(--color-steel);
}
.service-banner--navy {
  background: var(--color-navy);
}
.service-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.service-banner__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.service-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  margin: 0 0 0.25rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.service-banner__tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

@media (max-width: 767px) {
  .service-banner {
    padding: 1.75rem 0;
  }
  .service-banner__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }
  .service-banner__title {
    font-size: 1.25rem;
  }
  .services-subnav {
    top: 64px;
    padding: 0.625rem 0;
  }
  .services-subnav__inner { gap: 0.375rem; }
  .services-subnav__link {
    font-size: 0.5625rem;
    padding: 0.4375rem 0.75rem 0.4375rem 0.625rem;
    gap: 0.375rem;
  }
  .services-subnav__link::before { width: 5px; height: 5px; }
  .svc-panel { scroll-margin-top: 115px; }
}

@media (max-width: 375px) {
  .services-subnav__link {
    font-size: 0.5rem;
    padding: 0.375rem 0.625rem 0.375rem 0.5625rem;
  }
}

/* ═══════════════════════════════════════════════════════
   STAFF PAGE — Three Steps cards
   ═══════════════════════════════════════════════════════ */

.step-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: var(--color-white);
  border: 1px solid rgba(5,28,57,0.08);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(5,28,57,0.12);
}
.step-card__top {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-card__top--coral { background: var(--color-coral); }
.step-card__top--navy  { background: var(--color-navy); }
.step-card__top--steel { background: var(--color-steel); }
.step-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.step-card__body { padding: 1.75rem 1.5rem 2.25rem; }
.step-card__num {
  display: block;
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-coral);
  margin-bottom: 0.5rem;
}
.step-card__title {
  font-family: var(--font-brand);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 0.875rem;
}
.step-card__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-dark-gray);
  line-height: 1.75;
}

@media (max-width: 1023px) {
  .step-card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .step-card-grid { grid-template-columns: 1fr; }
  .step-card__top { padding: 2rem; }
}

/* ═══════════════════════════════════════════════════════
   CLIENT LOGO MARQUEE — "You're in good company"
   ═══════════════════════════════════════════════════════ */

/* Scoped override: reduce gap between section heading and logo track */
.client-marquee .section-header {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

/* Atmospheric photo background — own distinct visual moment,
   avoids blending with the light section above or navy footer below */
.client-marquee {
  position: relative;
  overflow: hidden;
  /* no background color — photo + overlay establish the bg */
  padding-block: clamp(3rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Photo layer */
.client-marquee::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/img-restaurant-interior.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

/* Brand navy overlay — uniform tint, dark enough to keep white logos legible end to end */
.client-marquee::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(5, 28, 57, 0.95) 0%,
    rgba(3, 18, 37, 0.97) 100%
  );
  z-index: 1;
}

/* Content layers above the photo overlay */
.client-marquee > .container { position: relative; z-index: 2; }

/* Headings and body copy: white on dark photo */
.client-marquee .section-header h2 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.client-marquee .section-header p  { color: rgba(255, 255, 255, 0.78); }

.client-marquee__divider {
  width: 88px;
  height: 3px;
  background: var(--color-coral);
  margin: 1.3rem auto 1.4rem;
}

/* Marquee track — sits above overlay */
.client-marquee__track-wrap {
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
          mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}

.client-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: clamp(2.75rem, 4.5vw, 4.5rem);
  animation: client-marquee-scroll 54s linear infinite;
  padding-block: 0.5rem;
}

.client-marquee__track-wrap:hover .client-marquee__track,
.client-marquee__track-wrap:focus-within .client-marquee__track {
  animation-play-state: paused;
}

.client-marquee__set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: clamp(2.75rem, 4.5vw, 4.5rem);
}

/* Logo slots — no cards, logos float as white marks on the dark photo */
.client-marquee__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  transition: opacity var(--t-base), transform var(--t-base);
  opacity: 0.88;
}

.client-marquee__logo:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.client-marquee__logo img {
  max-height: 124px;
  max-width: 310px;
  min-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.3));
  display: block;
}


@keyframes client-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .client-marquee__logo img { max-height: 90px; max-width: 235px; }
  .client-marquee__track { gap: clamp(2rem, 3.5vw, 2.75rem); }
  .client-marquee__set   { gap: clamp(2rem, 3.5vw, 2.75rem); }
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee__track { animation: none; width: 100%; }
  .client-marquee__set {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    row-gap: 2rem;
  }
  .client-marquee__set[aria-hidden="true"] { display: none; }
  .client-marquee__track-wrap { mask-image: none; -webkit-mask-image: none; }

  .client-marquee__logo { opacity: 0.92; }
  .client-marquee__logo img {
    max-height: 90px;
    max-width: 235px;
  }
}

/* === RESPONSIVE FIXES — INLINE GRID OVERRIDES ============== */

/* employers.html: "Purpose-built for F&B" section — 4-col benefits grid
   The inline style repeat(4,1fr) overrides auto-fit; this rule wins on tablet/mobile */
@media (max-width: 1023px) {
  .benefits-grid--4col {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .benefits-grid--4col {
    grid-template-columns: 1fr !important;
  }
}

/* employers.html: venue-types benefits-grid inside feature-split__body (2-col)
   On mobile the feature-split body is full-width, keep 2-col down to 480px then stack */
@media (max-width: 480px) {
  .benefits-grid--2col {
    grid-template-columns: 1fr !important;
  }
}

/* about.html: team section inline 1fr 2fr grid — stack on mobile */
@media (max-width: 767px) {
  .team-bio-grid {
    grid-template-columns: 1fr !important;
  }
  .team-bio-grid > :first-child {
    max-width: 280px;
  }
}

/* staff.html: jobseeker form name fields inline 1fr 1fr grid — stack on small screens */
@media (max-width: 480px) {
  .js-name-grid {
    grid-template-columns: 1fr !important;
  }
}
