:root {
  --dark: #1a2e1e;
  --gold: #b8860b;
  --gold-light: #d4a017;
  --gold-pale: #f5ead0;
  --cream: #faf8f3;
  --warm-gray: #f0ede6;
  --text: #1a2e1e;
  --text-muted: #5a6b5c;
  --white: #ffffff;
  --border: #e0d8c8;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

@media (prefers-reduced-motion: no-preference) {
  .stagger-item {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 0.7s ease,
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--stagger-delay, 0ms);
    will-change: opacity, transform;
  }

  .stagger-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .depth-scene {
    perspective: 1400px;
    transform-style: preserve-3d;
  }

  .depth-panel,
  .depth-float {
    transform-style: preserve-3d;
  }

  .depth-panel {
    position: relative;
  }

  .depth-panel::before {
    content: '';
    position: absolute;
    inset: auto 10% -28px;
    height: 40px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(26, 46, 30, 0.18) 0%, rgba(26, 46, 30, 0) 72%);
    filter: blur(12px);
    transform: translateZ(-35px);
    pointer-events: none;
  }

  .depth-float {
    --depth-x: 0deg;
    --depth-y: 0deg;
    --depth-lift: 0px;
    --depth-shift: 0px;
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.45s ease;
    transform:
      perspective(1400px)
      rotateX(var(--depth-y))
      rotateY(var(--depth-x))
      translateY(calc(var(--depth-lift) * -1))
      translateZ(var(--depth-shift));
  }

  .hero-content > * {
    transform-style: preserve-3d;
  }

  .hero-content .section-label,
  .hero-content p {
    transform: translateZ(18px);
  }

  .hero-content h1 {
    transform: translateZ(34px);
  }

  .hero-content .btn-primary {
    transform: translateZ(44px);
    box-shadow: 0 16px 30px rgba(26, 46, 30, 0.14);
  }
}

a {
  color: inherit;
}

img, svg {
  display: block;
  max-width: 100%;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.logo-text {
  line-height: 1.1;
}

.logo-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--dark);
  letter-spacing: 0.03em;
}

.logo-text span {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transform: translateY(0);
  transition: color 0.2s, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  transform: translateY(-2px) scale(1.03);
}

.nav-links .has-arrow::after {
  content: ' ↓';
  font-size: 11px;
}

.services-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  transform: translateY(0);
}

.services-nav-link::after {
  display: none;
}

.services-nav-link:hover,
.services-nav-link.active {
  background: rgba(184, 134, 11, 0.1);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.14);
}

.services-nav-link:hover::after,
.services-nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}

body.nav-scrolled .services-nav-link.active {
  background: rgba(184, 134, 11, 0.12);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 28px rgba(184, 134, 11, 0.16);
}

body.nav-scrolled .services-nav-link.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.14);
}

.hamburger {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-pale);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}

.page-tabs {
  display: flex;
  background: var(--dark);
  justify-content: center;
  position: sticky;
  top: 68px;
  z-index: 90;
}

.page-tab {
  padding: 12px 28px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.page-tab:hover,
.page-tab.active {
  color: var(--gold-light);
}

.page-tab.active {
  border-bottom-color: var(--gold-light);
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  background: var(--cream);
  padding: 72px 64px 64px;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow,
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.hero h1,
.services-hero h1,
.about-hero h1,
.careers-hero h1,
.insights-hero h1,
.contact-hero h1 {
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 380px;
  margin: 20px 0 32px;
  line-height: 1.7;
}

.btn-primary,
.btn-outline,
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transform: translateY(0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 999px;
}

.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.14);
}

.btn-outline {
  border: 1.5px solid var(--dark);
  color: var(--dark);
  background: transparent;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(26, 46, 30, 0.18);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(184, 134, 11, 0.14);
}

.hero-visual,
.about-visual,
.insight-img,
.featured-article-img,
.service-row-visual,
.industry-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual {
  background: var(--warm-gray);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  align-items: flex-end;
}

.hero-sun {
  position: absolute;
  top: 56px;
  right: 80px;
  width: 80px;
  height: 80px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0.7;
}

.mountain-svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.trusted {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 64px;
  text-align: center;
}

.trusted p {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}

.logo-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-placeholder {
  font-size: 13px;
  font-weight: 600;
  color: #c0bab0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 20px;
  border-right: 1px solid var(--border);
}

.logo-placeholder:last-child {
  border-right: none;
}

section {
  padding: 80px 64px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.title-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 32px;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 32px 24px;
  transition: all 0.2s;
}

.service-card:hover {
  background: var(--cream);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card h3,
.service-row h3,
.why-card h4,
.job-card h4,
.insight-card h4,
.sidebar-article h4,
.featured-article h2,
.leader-info h4,
.contact-form-side h2,
.contact-info-side h2,
.approach-section h2 {
  color: var(--dark);
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card p,
.service-row p,
.about-hero p,
.careers-hero p,
.insights-hero p,
.contact-hero p,
.contact-form-side p,
.contact-info-item p,
.sidebar-article p,
.featured-article p,
.insight-card p,
.why-card p,
.approach-section p,
.value-item p,
.leader-info .role,
.job-meta {
  color: var(--text-muted);
}

.service-card p {
  font-size: 13px;
  line-height: 1.6;
}

.service-link,
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.read-more.dark {
  color: var(--dark);
}

.stats-band {
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon,
.value-icon,
.why-icon,
.cta-band-icon,
.footer-item-icon,
.contact-info-icon,
.leader-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-3d {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.hamburger .icon-3d {
  width: 20px;
  height: 20px;
}

.service-icon .icon-3d {
  width: 28px;
  height: 28px;
}

.stat-icon .icon-3d {
  width: 32px;
  height: 32px;
}

.value-icon .icon-3d,
.why-icon .icon-3d,
.footer-item-icon .icon-3d,
.contact-info-icon .icon-3d {
  width: 26px;
  height: 26px;
}

.cta-band-icon .icon-3d {
  width: 38px;
  height: 38px;
}

.industry-item .ind-icon .icon-3d {
  width: 20px;
  height: 20px;
}

.leader-avatar .icon-3d {
  width: 40px;
  height: 40px;
}

.stat-icon {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

.industries-section,
.about-hero,
.approach-section,
.contact-section {
  display: grid;
  gap: 64px;
}

.industries-section {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--warm-gray);
}

.industry-visual {
  background: var(--white);
  height: 380px;
}

.industries-grid,
.form-row,
.insights-bottom-grid,
.why-grid,
.leadership-grid,
.values-grid,
.insights-grid {
  display: grid;
}

.industries-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.industry-item .ind-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-muted);
}

.cta-band {
  background: var(--dark);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 40px 64px;
  border-radius: var(--radius-lg);
}

.cta-band-icon {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  font-size: 28px;
}

.cta-band h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 4px;
}

.cta-band p,
.footer-item p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.insights-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.insight-card,
.featured-article,
.sidebar-article,
.leader-card,
.why-card,
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.insight-card {
  overflow: hidden;
}

.insight-img {
  height: 180px;
  background: var(--warm-gray);
}

.insight-body,
.featured-article-body,
.leader-info,
.service-row-content {
  padding: 24px;
}

.insight-date {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  display: block;
}

.insight-card h4,
.sidebar-article h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}

.insight-card p {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}

footer {
  background: var(--dark);
  padding: 20px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-item-icon {
  font-size: 18px;
  color: var(--gold-light);
  margin-top: 2px;
}

.footer-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.services-hero {
  background: var(--dark);
  padding: 80px 64px;
  color: var(--white);
}

.services-hero .section-label,
.careers-hero .section-label,
.contact-hero .section-label {
  color: var(--gold-light);
}

.services-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  max-width: 540px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.services-hero p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  max-width: 520px;
  line-height: 1.7;
}

.services-list {
  padding: 80px 64px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-bottom: 24px;
  overflow: hidden;
}

.service-row-content {
  background: var(--white);
}

.service-row-visual {
  background: var(--warm-gray);
  min-height: 240px;
  display: flex;
  align-items: flex-end;
}

.service-row h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 12px;
}

.service-row p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features,
.approach-list {
  list-style: none;
}

.service-features {
  margin-bottom: 24px;
}

.service-features li,
.approach-list li {
  font-size: 13px;
  color: var(--text);
}

.service-features li {
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features li::before,
.approach-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

.about-hero {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 64px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-visual {
  height: 360px;
  background: var(--warm-gray);
}

.values-section {
  background: var(--dark);
  padding: 80px 64px;
}

.values-section .section-title,
.values-section .section-label {
  color: var(--white);
}

.values-section .section-label {
  color: var(--gold-light);
}

.values-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 40px;
}

.value-item {
  background: var(--dark);
  padding: 32px 20px;
  text-align: center;
}

.value-icon {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.value-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.value-item p {
  font-size: 12px;
  line-height: 1.5;
}

.approach-section {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  background: var(--warm-gray);
  padding: 80px 64px;
}

.approach-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
}

.approach-section p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
}

.approach-list li::before {
  margin-top: 1px;
}

.leadership-section {
  padding: 80px 64px;
  background: var(--cream);
}

.leadership-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.leader-card {
  overflow: hidden;
  background: var(--white);
}

.leader-photo {
  height: 200px;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--border);
  font-size: 32px;
  color: var(--text-muted);
}

.leader-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
}

.leader-info .role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.leader-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.careers-hero {
  background: var(--dark);
  padding: 80px 64px;
  text-align: center;
}

.careers-hero h1 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 16px;
}

.careers-hero p {
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.why-section {
  padding: 80px 64px;
  background: var(--cream);
}

.why-section .section-label,
.why-section .section-title {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(184, 134, 11, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-section .section-title {
  padding: 10px 18px;
  background: rgba(184, 134, 11, 0.06);
}

.why-section .section-label:hover,
.why-section .section-title:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 10px 22px rgba(184, 134, 11, 0.12);
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid rgba(224, 216, 200, 0.8);
  border-radius: 18px;
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(184, 134, 11, 0.35);
  box-shadow: 0 14px 28px rgba(26, 46, 30, 0.12);
}

.why-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  line-height: 1.65;
}

.openings-section {
  padding: 80px 64px;
  background: var(--warm-gray);
}

.openings-list {
  margin-top: 40px;
}

.job-card {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.job-card:hover {
  border-color: var(--gold);
}

.apply-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 22, 19, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 999;
}

.apply-modal-overlay.is-open {
  display: flex;
}

.apply-modal {
  width: min(92vw, 760px);
  max-height: min(90vh, 720px);
  background: var(--white);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(26, 46, 30, 0.22);
  position: relative;
  overflow: auto;
}

.apply-modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--dark);
}

.apply-modal p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.apply-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apply-modal-close:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(26, 46, 30, 0.12);
}

.apply-form {
  display: grid;
  gap: 16px;
}

.apply-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.apply-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.apply-form input,
.apply-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
}

.apply-form textarea {
  min-height: 140px;
  resize: vertical;
}

.apply-form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.apply-form-actions .btn-outline,
.apply-form-actions .btn-gold {
  min-width: 180px;
  justify-content: center;
}

@media (max-width: 640px) {
  .apply-modal {
    padding: 24px;
  }

  .apply-form-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .apply-form .form-row {
    grid-template-columns: 1fr;
  }
}

.job-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.job-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.job-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job-meta .icon-3d {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.insights-hero {
  background: var(--cream);
  padding: 64px 64px 48px;
  border-bottom: 1px solid var(--border);
}

.insights-hero h1 {
  font-size: 48px;
  color: var(--dark);
  margin-bottom: 12px;
}

.insights-hero p {
  font-size: 15px;
  max-width: 520px;
  line-height: 1.7;
}

.insights-filters {
  padding: 24px 64px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.insights-content {
  padding: 64px;
  background: var(--cream);
}

.insights-main-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.featured-article {
  overflow: hidden;
}

.featured-article-img {
  height: 300px;
  background: var(--warm-gray);
}

.featured-article-body {
  padding: 36px;
}

.featured-article h2 {
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.featured-article p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.sidebar-articles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-article {
  padding: 20px;
}

.sidebar-article h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.sidebar-article p {
  font-size: 12px;
  line-height: 1.55;
}

.insights-bottom-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-hero {
  background: var(--dark);
  padding: 80px 64px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-section {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 64px;
  padding: 80px 64px;
  background: var(--cream);
}

.contact-form-side h2,
.contact-info-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 8px;
}

.contact-info-side h2 {
  margin-bottom: 32px;
}

.contact-form-side p {
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  border-radius: var(--radius-sm);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:first-of-type {
  border-top: 1px solid var(--border);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--dark);
}

.contact-info-item h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.common-questions {
  margin-top: 40px;
}

.common-questions h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 20px;
}

.common-questions .question-list {
  border-top: 1px solid var(--border);
}

.common-questions .question-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.common-questions .question-item:last-child {
  border-bottom: none;
}

.common-questions .question-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.common-questions .question-answer {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .services-grid,
  .leadership-grid,
  .values-grid,
  .insights-grid,
  .insights-bottom-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-section,
  .about-hero,
  .approach-section,
  .contact-section,
  .insights-main-grid,
  .service-row {
    grid-template-columns: 1fr;
  }

  .service-row-visual,
  .about-visual,
  .industry-visual {
    min-height: 280px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .page-tabs {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .page-tab {
    white-space: nowrap;
  }

  section,
  .hero,
  .services-hero,
  .services-list,
  .about-hero,
  .values-section,
  .approach-section,
  .leadership-section,
  .careers-hero,
  .why-section,
  .openings-section,
  .insights-hero,
  .insights-filters,
  .insights-content,
  .contact-hero,
  .contact-section,
  footer,
  .cta-band,
  .trusted {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero,
  .services-grid,
  .stats-band,
  .industries-section,
  .insights-grid,
  .insights-bottom-grid,
  .leadership-grid,
  .values-grid,
  .why-grid,
  .contact-section,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .industry-visual {
    display: none;
  }

  .hero h1,
  .services-hero h1,
  .about-hero h1,
  .careers-hero h1,
  .insights-hero h1,
  .contact-hero h1 {
    font-size: 40px;
  }

  .cta-band {
    gap: 20px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
