/* =====================================================
   CRMG - CLINICAL RESEARCH MANAGEMENT GROUP
   Global Stylesheet
===================================================== */

/* ======================================== */
/* LOCAL FONT FACES (self-hosted, no external dependency) */
/* ======================================== */
@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/chakra-petch-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/chakra-petch-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Chakra Petch';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/chakra-petch-700.ttf') format('truetype');
}

/* ======================================== */
/* ROOT VARIABLES */
/* ======================================== */
:root {
  --color-primary: #509A7B;
  --color-primary-dark: #3c7a60;
  --color-accent: #AECB68;
  --color-accent-bright: #C2D66B;
  --color-light-gray: #D2D7D5;
  --color-dark: #1a1a1a;
  --color-white: #ffffff;
  --color-off-white: #f6f8f7;
  --font-body: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Chakra Petch', 'Courier New', monospace;
  --header-height-desktop: 120px;
  --header-height-mobile: 74px;
}

/* ======================================== */
/* RESET & BASE */
/* ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  color: var(--color-dark);
}

.section {
  width: 100%;
  padding: 90px 0;
}

.section-heading {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 24px;
}

.section-heading.centered {
  text-align: center;
}

.section-heading.small-caps {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 40px;
}

p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.75;
  color: #333333;
  margin-bottom: 18px;
}

.btn {
  display: inline-block;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.4;
  text-align: center;
  border-radius: 6px;
  padding: 14px 34px;
  margin-top: 8px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s ease;
}

.btn:hover::after {
  left: 125%;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(80, 154, 123, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(80, 154, 123, 0.32);
}

/* Scroll-triggered fade animation */
.fade-in-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================== */
/* SCROLL PROGRESS BAR */
/* ======================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  z-index: 1100;
  transition: width 0.1s ease-out;
}

/* ======================================== */
/* SECTION X: HEADER SECTION */
/* ======================================== */
.site-header {
  width: 100%;
  height: var(--header-height-desktop);
  position: sticky;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  z-index: 999;
  transition: box-shadow 0.3s ease;
  border-bottom: 1px solid var(--color-light-gray);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 60px;
  max-height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
  list-style: none;
}

.nav-menu a {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: #4d5654;
  text-transform: none;
  position: relative;
  padding: 8px 0;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--color-primary);
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-parent::before {
  content: '';
  order: 2;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.55;
  margin-top: 2px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background-color: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.14);
  border-top: 3px solid var(--color-primary);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1002;
}

.nav-dropdown-wide {
  min-width: 320px;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-item-has-children:hover > .nav-dropdown,
.nav-item-has-children:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-dropdown a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: #4d5654;
  padding: 11px 18px;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--color-primary);
  background-color: #f2f6f4;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ======================================== */
/* SECTION X: HERO SECTION */
/* ======================================== */
.hero {
  width: 100%;
  height: 710px;
  position: relative;
  overflow: hidden;
  background-color: #e8efe9;
  border-top: 4px solid var(--color-primary);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* Hold the zoomed end-state while fading out so the Ken Burns
     animation does not snap back to scale(1) mid-transition. */
  transform: scale(1.08);
  transform-origin: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 2000ms ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  /* Duration matches the 7000ms slide delay so the zoom lands
     at its end state right as the fade begins. */
  animation: heroKenBurns 7000ms ease-out forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-caption {
  position: absolute;
  left: 50%;
  bottom: 150px;
  transform: translateX(-50%);
  width: 85%;
  max-width: 720px;
  text-align: center;
  z-index: 2;
}

.hero-caption > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1), transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-caption > * {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.active .hero-caption > .hero-eyebrow {
  transition-delay: 0.35s;
}

.hero-slide.active .hero-caption > .hero-title {
  transition-delay: 0.5s;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--color-white);
  background-color: rgba(80, 154, 123, 0.7);
  border: 1px solid rgba(174, 203, 104, 0.6);
  border-radius: 999px;
  padding: 8px 22px;
  margin-bottom: 20px;
  text-shadow: none;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -2.2px;
  line-height: 1.12;
  color: var(--color-white);
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
  white-space: nowrap;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-white);
  background-color: transparent;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s ease;
}

.hero-dot.active {
  background-color: var(--color-white);
}

/* Separator bar */
.separator-bar {
  width: 100%;
  height: 24px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

/* ======================================== */
/* QUICK FACTS STRIP */
/* ======================================== */
.quick-facts {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fafcfb;
  border-left: 1px solid rgba(26, 26, 26, 0.14);
  border-right: 1px solid rgba(26, 26, 26, 0.14);
  border-bottom: 1px solid rgba(26, 26, 26, 0.14);
  border-top: none;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(26, 26, 26, 0.1);
  margin: -52px auto 0;
  padding: 36px 20px;
  max-width: 1100px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  isolation: isolate;
}

.quick-facts::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='2' cy='2' r='1.25' fill='%23AECB68' fill-opacity='0.42'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 22px 22px;
}

.quick-facts::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.quick-fact,
.quick-fact-divider {
  position: relative;
  z-index: 1;
}

.quick-fact {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.quick-fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 50%;
  background-color: rgba(174, 203, 104, 0.22);
  color: #3d4a28;
  border: 1px solid rgba(174, 203, 104, 0.55);
}

.quick-fact-icon svg {
  display: block;
}

.quick-fact-value {
  font-family: var(--font-body);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.quick-fact-label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: #666666;
  margin-bottom: 0;
}

.quick-fact-divider {
  width: 1px;
  height: 56px;
  background-color: rgba(26, 26, 26, 0.22);
  flex-shrink: 0;
}

/* ======================================== */
/* SECTION 1: WHO WE ARE / INTRO */
/* ======================================== */
.section-intro {
  background-color: var(--color-white);
}

.eyebrow-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  background-color: rgba(80, 154, 123, 0.12);
  border: 1px solid rgba(80, 154, 123, 0.35);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 20px;
}

.section-intro-header {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-intro-header .section-heading {
  font-size: 38px;
  margin-bottom: 0;
  position: relative;
  padding-left: 22px;
  border-left: 5px solid var(--color-primary);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}

.intro-copy > .fade-in-up:nth-child(1) {
  transition-delay: 0s;
}

.intro-copy > .fade-in-up:nth-child(2) {
  transition-delay: 0.1s;
}

.intro-copy > .fade-in-up:nth-child(3) {
  transition-delay: 0.2s;
}

.intro-copy > .fade-in-up:nth-child(4) {
  transition-delay: 0.3s;
}

.intro-copy > .fade-in-up:nth-child(5) {
  transition-delay: 0.4s;
}

.intro-categories .fade-in-up {
  transition-delay: 0.25s;
}

.category-card {
  position: relative;
  background-color: var(--color-white);
  background-image: radial-gradient(rgba(80, 154, 123, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  border-radius: 14px;
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(26, 26, 26, 0.09);
  overflow: hidden;
  transition: transform 0.25s ease-out;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.category-card-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.category-card-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.3;
  color: var(--color-dark);
  margin-bottom: 26px;
}

.category-list li {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.6;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 12px;
  border-bottom: 1px solid var(--color-light-gray);
  border-radius: 8px;
  transition: background-color 0.25s ease, transform 0.25s ease, padding-left 0.25s ease;
}

.category-list li:first-child {
  padding-top: 0;
}

.category-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.category-list li:hover {
  background-color: var(--color-off-white);
  transform: translateX(6px);
}

.category-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(80, 154, 123, 0.1);
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.category-list li:hover .category-number {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.category-text {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-dark);
}

/* ======================================== */
/* SECTION 2: OUR PHILOSOPHY */
/* ======================================== */
.section-philosophy {
  background-color: var(--color-off-white);
  border-top: 1px solid rgba(80, 154, 123, 0.28);
  border-bottom: 1px solid rgba(80, 154, 123, 0.28);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.philosophy-copy p {
  color: #333333;
}

.philosophy-quote-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 44px;
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.08);
  overflow: hidden;
}

.philosophy-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.quote-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.philosophy-quote-card blockquote {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.55;
  color: var(--color-dark);
  font-style: italic;
  margin-bottom: 28px;
}

.quote-mark {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  color: var(--color-accent);
  display: inline-block;
  margin-right: 4px;
}

.quote-attribution {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
}

.quote-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
}

.quote-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 2px;
}

.quote-title {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.4;
  color: #666666;
  margin-bottom: 0;
}

/* ======================================== */
/* SECTION 3: CASE STUDIES */
/* ======================================== */
.section-case-studies {
  position: relative;
  isolation: isolate;
  background-color: #f2f6f4;
  overflow: hidden;
}

.section-case-studies::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='2' cy='2' r='1.25' fill='%23509A7B' fill-opacity='0.18'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 22px 22px;
}

.section-case-studies > .container {
  position: relative;
  z-index: 1;
}

.case-studies-plaque {
  position: relative;
  background-color: var(--color-white);
  background:
    linear-gradient(var(--color-white), var(--color-white)) padding-box,
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.1);
  padding: 48px 40px 44px;
  overflow: hidden;
}

.case-studies-plaque::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.case-studies-plaque .section-heading {
  margin-bottom: 36px;
}

.case-study-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}

.case-study-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-light-gray);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.25s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.case-study-card:hover {
  box-shadow: 0 20px 48px rgba(26, 26, 26, 0.14);
  border-color: rgba(80, 154, 123, 0.35);
}

.case-study-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.case-study-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: 1;
  pointer-events: none;
}

.case-study-card:hover .case-study-image::after {
  left: 125%;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.08);
}

.case-study-tag {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1.4;
  text-transform: uppercase;
  padding: 10px 20px;
}

.case-study-body {
  padding: 32px;
}

.case-study-body h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.3;
  color: var(--color-dark);
  margin-bottom: 14px;
}

.case-study-body p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
  color: #444444;
  margin-bottom: 16px;
}

.read-more {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.4;
  color: var(--color-primary);
  transition: color 0.25s ease, letter-spacing 0.25s ease;
}

.case-study-card:hover .read-more {
  color: var(--color-primary-dark);
  letter-spacing: 0.8px;
}

/* ======================================== */
/* SECTION 4: PARALLAX MISSION */
/* ======================================== */
.parallax-section {
  width: 100%;
  height: 650px;
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 4px solid var(--color-primary);
  border-bottom: 4px solid var(--color-primary);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20, 28, 24, 0.18) 0%, rgba(20, 28, 24, 0.48) 72%),
    rgba(20, 28, 24, 0.22);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 920px;
}

.parallax-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: rgba(80, 154, 123, 0.7);
  border: 1px solid rgba(174, 203, 104, 0.55);
  border-radius: 999px;
  padding: 8px 22px;
  margin-bottom: 28px;
}

.parallax-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 92px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 0.7;
  color: var(--color-accent);
  opacity: 0.9;
  margin-top: 28px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.parallax-quote {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.2px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  font-style: normal;
  max-width: 880px;
  margin: 0 auto;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.parallax-key {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.55;
  color: var(--color-accent);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}


/* ======================================== */
/* PAGE TITLE BAR (SUBPAGES) */
/* ======================================== */
.page-title-bar {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(125deg, #3c7a60 0%, #509A7B 42%, #457f66 72%, #2f5f4a 100%);
  border-top: 4px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  padding: 34px 0;
}

.page-title-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='2' cy='2' r='1.25' fill='%23AECB68' fill-opacity='0.16'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 22px 22px;
}

.page-title-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(174, 203, 104, 0.18) 0%, transparent 45%, rgba(255, 255, 255, 0.06) 100%);
}

.page-title-inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.page-tagline {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
  margin-bottom: 0;
  max-width: 920px;
}

@media (min-width: 769px) {
  .page-tagline {
    white-space: nowrap;
  }
}

/* ======================================== */
/* ABOUT US PAGE */
/* ======================================== */
.section-about {
  background-color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.85fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-copy .section-intro-header {
  max-width: 100%;
  margin-bottom: 32px;
}

.about-copy p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

.about-copy a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-primary);
}

.about-copy a:hover {
  color: var(--color-primary-dark);
}

.history-lead-quote {
  position: relative;
  margin: 0 0 36px;
  padding: 34px 32px 28px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%) border-box;
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.1);
  overflow: hidden;
}

.history-lead-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.history-lead-quote .about-quote-mark {
  display: block;
  margin-bottom: 12px;
  font-size: 68px;
  color: var(--color-primary);
  line-height: 0.65;
}

.history-lead-quote > p:not(.history-lead-attribution) {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.15px;
  line-height: 1.55;
  color: #2a2a2a;
  font-style: italic;
  margin-bottom: 22px;
}

.about-copy p.history-lead-attribution {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
  font-style: normal;
  margin-bottom: 0;
  padding-top: 16px;
  border-top: 1px solid rgba(80, 154, 123, 0.22);
}

.history-lead-sep {
  display: inline-block;
  margin: 0 8px;
  font-weight: 500;
  opacity: 0.7;
}

.about-list {
  list-style: none;
  margin: 8px 0 28px;
  padding: 0;
}

.about-list li {
  position: relative;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.55;
  color: #333333;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid rgba(210, 215, 213, 0.7);
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.principle-list li {
  padding-top: 14px;
  padding-bottom: 14px;
}

.principle-list li::before {
  top: 22px;
  margin-top: 0;
}

.principle-list strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.55;
  color: var(--color-primary);
}

.about-aside {
  position: sticky;
  top: 140px;
}

.about-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.12);
  margin-bottom: 24px;
  border: 1px solid rgba(26, 26, 26, 0.12);
}

.about-image img {
  display: block;
  width: 100%;
  height: auto;
}

.about-quote-card {
  position: relative;
  background-color: rgba(80, 154, 123, 0.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='2' cy='2' r='1.25' fill='%23509A7B' fill-opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 22px 22px;
  border-radius: 14px;
  border-left: 1px solid rgba(80, 154, 123, 0.28);
  border-right: 1px solid rgba(80, 154, 123, 0.28);
  border-bottom: 1px solid rgba(80, 154, 123, 0.28);
  border-top: none;
  padding: 32px 28px 28px;
  margin: 0;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
  overflow: hidden;
}

.about-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.about-quote-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 0.7;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.about-quote-mark-close {
  text-align: right;
  margin-top: 10px;
  margin-bottom: 0;
}

.about-quote-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.55;
  color: #333333;
  font-style: italic;
  margin-bottom: 0;
}

/* ======================================== */
/* SERVICES PAGES (WITH SIDE NAV) */
/* ======================================== */
.section-services {
  background-color: var(--color-white);
}

.services-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

/* Therapeutic Experience uses the same side-nav system with a slightly wider rail */
.services-layout.therapeutic-layout {
  grid-template-columns: 300px minmax(0, 1fr);
}

.therapeutic-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.85fr);
  gap: 28px 40px;
  align-items: start;
  margin-top: 12px;
}

.therapeutic-chart {
  background-color: var(--color-white);
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  padding: 0;
}

.therapeutic-chart img {
  display: block;
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
}

.therapeutic-lists .services-subheading {
  margin-top: 0;
  margin-bottom: 10px;
  padding-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.3;
  color: var(--color-primary);
}

.therapeutic-lists .services-subheading + .services-list {
  margin-bottom: 22px;
}

.therapeutic-lists .services-list {
  margin-bottom: 22px;
}

.services-copy a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-primary);
}

.services-copy a:hover {
  color: var(--color-primary-dark);
}

.services-case-cta-wrap {
  margin-top: 40px;
  padding: 28px 28px;
  background-color: #eef3f1;
  border-top: none;
  border-radius: 12px;
  text-align: right;
}

.services-case-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  text-align: right;
  transition: color 0.2s ease;
}

.services-case-cta:hover {
  transform: none;
  box-shadow: none;
}

.services-case-cta-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.services-case-cta-kicker {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.services-case-cta-title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.25;
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.services-case-cta::after {
  content: '';
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M9.3 5.7L15.6 12l-6.3 6.3 1.4 1.4L18.4 12 10.7 4.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 54% center;
  background-size: 18px 18px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.services-case-cta:hover .services-case-cta-kicker,
.services-case-cta:hover .services-case-cta-title {
  color: var(--color-dark);
}

.services-case-cta:hover::after {
  transform: translateX(5px);
  background-color: var(--color-dark);
}

.services-sidenav {
  position: sticky;
  top: calc(var(--header-height-desktop) + 24px);
  min-height: calc(100vh - var(--header-height-desktop) - 80px);
  background: linear-gradient(180deg, #5ba884 0%, var(--color-primary) 38%, var(--color-primary-dark) 72%, #2a5341 100%);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(42, 83, 65, 0.28);
}

.services-sidenav-label {
  display: block;
  position: relative;
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2.8px;
  line-height: 1.2;
  color: var(--color-accent-bright);
  text-transform: uppercase;
  padding: 28px 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, transparent 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.services-sidenav-label::after {
  content: '';
  position: absolute;
  left: 22px;
  bottom: 0;
  width: 48px;
  height: 3px;
  background: var(--color-accent-bright);
  border-radius: 2px 2px 0 0;
}

.services-sidenav-list {
  list-style: none;
  margin: 0;
  padding: 10px 0 24px;
}

.services-sidenav-list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.services-sidenav-list a {
  display: block;
  position: relative;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.94);
  text-transform: uppercase;
  padding: 16px 22px;
  border-left: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.services-sidenav-list a:hover {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
}

.services-sidenav-list a.active,
.services-sidenav-list a[aria-current="page"] {
  color: #243528;
  background-color: var(--color-accent-bright);
  font-weight: 700;
}

.services-content .section-intro-header {
  margin-bottom: 28px;
}

.services-lead {
  margin-bottom: 8px;
}

.services-lead::after,
.services-copy-with-image::after {
  content: '';
  display: table;
  clear: both;
}

.services-copy p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

.services-image {
  float: right;
  width: min(52%, 520px);
  margin: 4px 0 28px 36px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.12);
  border: 1px solid rgba(26, 26, 26, 0.22);
}

.services-image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

.services-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.services-list > li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.35;
  color: #333333;
  padding: 3px 0 3px 26px;
  border-bottom: none;
}

.services-list > li:last-child {
  border-bottom: none;
}

.services-list > li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.services-list strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.35;
  color: var(--color-primary);
}

.services-sublist {
  list-style: none;
  margin: 8px 0 2px;
  padding: 0;
}

.services-sublist li {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.35;
  color: #444444;
  padding: 3px 0 3px 20px;
  border-bottom: none;
}

.services-sublist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.services-block-title {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 12px;
}

.services-subheading {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.3px;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(80, 154, 123, 0.22);
}

.services-subheading:first-of-type {
  margin-top: 4px;
}

.services-subheading-sm {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 22px 0 10px;
}

.services-footnote {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.55;
  color: #555555;
  margin: 18px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.services-footnote sup {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1;
  color: #555555;
}

.services-copy sup {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1;
  color: var(--color-primary);
}

/* ======================================== */
/* STUDY BRIEF (INLINE CASE BRIEF) */
/* ======================================== */
.study-brief {
  margin-top: 44px;
  padding-top: 8px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.study-brief .services-subheading {
  margin-top: 28px;
}

.study-brief-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px 32px;
  align-items: start;
}

.study-brief-icon-wrap {
  padding-top: 4px;
}

.study-brief-icon {
  display: block;
  width: 100%;
  max-width: 110px;
  height: auto;
}

.study-brief-content .study-brief-label:first-child {
  margin-top: 0;
}

.study-brief-label {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.1px;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 26px 0 10px;
}

.study-brief-content p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 12px;
}

.study-brief-content .services-list {
  margin-bottom: 8px;
}

/* ======================================== */
/* CASE STUDY DETAIL PAGES */
/* ======================================== */
.section-case-detail {
  background-color: var(--color-off-white);
  padding-top: 48px;
  padding-bottom: 72px;
}

.case-detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.case-detail-rail {
  position: sticky;
  top: calc(var(--header-height-desktop) + 24px);
  background: linear-gradient(180deg, #5ba884 0%, var(--color-primary) 38%, var(--color-primary-dark) 72%, #2a5341 100%);
  border-radius: 16px;
  padding: 32px 28px 36px;
  box-shadow: 0 18px 40px rgba(42, 83, 65, 0.28);
  color: var(--color-white);
}

.case-detail-rail-heading {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.4px;
  line-height: 1.3;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.28);
}

.case-detail-facts {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.case-detail-facts li {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.94);
  padding: 0 0 16px 18px;
}

.case-detail-facts li:last-child {
  padding-bottom: 0;
}

.case-detail-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-accent-bright);
}

.case-detail-rail-image {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.case-detail-rail-image img {
  display: block;
  width: 100%;
  height: auto;
}

.case-detail-rail-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.case-detail-rail-quote-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 0.7;
  color: var(--color-accent-bright);
  margin-bottom: 8px;
}

.case-detail-rail-quote p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  margin: 0;
}

.case-detail-main {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 36px 40px 44px;
  box-shadow: 0 12px 36px rgba(26, 26, 26, 0.08);
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.case-detail-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin-bottom: 18px;
}

.case-detail-nav-split {
  justify-content: space-between;
}

.case-detail-nav-start {
  justify-content: flex-start;
}

.case-detail-nav-link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.case-detail-nav-link:hover {
  color: var(--color-dark);
}

.case-detail-title {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.25;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 0 0 28px;
}

.case-detail-section-heading {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: uppercase;
  margin: 28px 0 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(80, 154, 123, 0.22);
}

.case-detail-section-heading:first-of-type {
  margin-top: 0;
}

.case-detail-main p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 18px;
}

.case-solution-list {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  counter-reset: case-solution;
}

.case-solution-list > li {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 18px;
  padding-left: 36px;
  counter-increment: case-solution;
}

.case-solution-list > li::before {
  content: counter(case-solution);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-primary);
}

.case-solution-list strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  color: var(--color-dark);
}

.case-detail-closing {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 28px;
}

.case-detail-main strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
}

.case-detail-main em {
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
}

.case-detail-main strong em,
.case-detail-main em strong {
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
}

.case-detail-facts strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.98);
}

.case-detail-facts strong em,
.case-detail-facts em strong {
  font-size: 15px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: normal;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.98);
}

.case-detail-footer-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  padding-top: 8px;
}

.case-detail-footer-nav-split {
  justify-content: space-between;
  gap: 16px;
}

.case-detail-footer-nav-start {
  justify-content: flex-start;
}

.case-next-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.3;
  color: var(--color-primary);
  text-transform: uppercase;
  background-color: #eef3f1;
  border: 1px solid rgba(80, 154, 123, 0.18);
  border-radius: 10px;
  padding: 16px 22px;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.case-next-btn::after {
  content: '\00bb';
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  color: inherit;
}

.case-next-btn-prev::before {
  content: '\00ab';
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  color: inherit;
}

.case-next-btn-prev::after {
  content: none;
}

.case-next-btn:hover {
  color: var(--color-dark);
  background-color: var(--color-accent-bright);
  border-color: transparent;
}

/* ======================================== */
/* LEADERSHIP PAGE */
/* ======================================== */
.section-leadership {
  background-color: var(--color-white);
  padding-bottom: 40px;
}

.leadership-intro {
  max-width: none;
  margin-bottom: 48px;
}

.leadership-intro .section-heading {
  white-space: nowrap;
}

.leader-card {
  position: relative;
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: stretch;
  gap: 0;
  background-color: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(26, 26, 26, 0.07);
}

.leader-card-featured {
  grid-template-columns: 280px 1fr;
  margin-bottom: 32px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%) border-box;
  border: 1px solid transparent;
}

.leader-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.leader-photo {
  position: relative;
  align-self: stretch;
  min-height: 320px;
  background-color: #eef3f1;
  border-right: 1px solid rgba(26, 26, 26, 0.06);
  overflow: hidden;
}

.leader-photo img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  transition: filter 0.35s ease;
}

.leader-card:hover .leader-photo img {
  filter: grayscale(0%);
}

.leader-body {
  position: relative;
  padding: 28px 30px 30px;
}

.leader-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-accent) 100%);
}

.leader-card-featured .leader-body {
  padding: 34px 36px 32px;
}

.leader-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.leader-role,
.leader-body p.leader-role {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.leader-body p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
  color: #444444;
  margin-bottom: 14px;
}

.leader-cta {
  margin-bottom: 0 !important;
  padding-top: 8px;
}

.leader-cta a {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.65;
  color: var(--color-primary);
}

.leader-cta a:hover {
  color: var(--color-primary-dark);
}

.section-leadership-contact {
  background-color: var(--color-white);
  padding-top: 48px;
  padding-bottom: 90px;
  scroll-margin-top: calc(var(--header-height-desktop) + 28px);
}

.leadership-contact-panel {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #f2f6f4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='2' cy='2' r='1.25' fill='%23509A7B' fill-opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 22px 22px;
  border-radius: 16px;
  border: 1px solid rgba(80, 154, 123, 0.28);
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
  padding: 48px 44px;
}

.leadership-contact-copy .section-heading {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 16px;
  white-space: normal;
}

.leadership-contact-intro {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
  color: #444444;
  margin-bottom: 22px;
}

.leadership-contact-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.leadership-contact-points li {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-dark);
  padding: 8px 0 8px 22px;
  border-bottom: 1px solid rgba(80, 154, 123, 0.18);
}

.leadership-contact-points li:last-child {
  border-bottom: none;
}

.leadership-contact-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.leadership-contact-direct {
  padding-top: 8px;
}

.leadership-contact-direct-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.leadership-contact-phone {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.leadership-contact-phone:hover {
  color: var(--color-primary);
}

.leadership-form {
  background-color: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

.leadership-form .form-row {
  margin-bottom: 16px;
}

.leadership-form .form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.leadership-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.leadership-form .required {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--color-primary);
}

.leadership-form input,
.leadership-form select,
.leadership-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  color: #333333;
  background-color: #f8faf9;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.leadership-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23509A7B' d='M1.4.6L6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 38px;
  cursor: pointer;
}

.leadership-form textarea {
  resize: vertical;
  min-height: 120px;
}

.leadership-form input:focus,
.leadership-form select:focus,
.leadership-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(80, 154, 123, 0.15);
  background-color: var(--color-white);
}

.leadership-form .btn {
  width: 100%;
  margin-top: 4px;
}

/* ======================================== */
/* INVESTIGATOR INQUIRY FORM */
/* ======================================== */
.section-inquiry {
  padding-top: 56px;
}

.inquiry-form-frame {
  background-color: #f2f6f4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='2' cy='2' r='1.25' fill='%23509A7B' fill-opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 22px 22px;
  border-radius: 16px;
  border: 1px solid rgba(80, 154, 123, 0.28);
  border-top: 4px solid var(--color-primary);
  box-shadow: 0 16px 40px rgba(26, 26, 26, 0.08);
  padding: 36px 32px 32px;
}

.inquiry-form-frame .section-intro-header {
  margin-bottom: 14px;
}

.inquiry-form-frame .section-heading {
  margin-bottom: 0;
}

.inquiry-form-lead {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 24px;
  max-width: none;
}

.inquiry-form-frame .career-intro {
  margin-bottom: 24px;
}

.inquiry-form-frame .form-status {
  margin: 8px 0 16px;
}

.inquiry-form-frame .leadership-form {
  background-color: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: 12px;
  padding: 28px 26px;
  box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

.inquiry-grid {
  grid-template-columns: 1.45fr 1fr;
  gap: 40px;
}

.inquiry-form .form-fieldset {
  margin: 8px 0 22px;
  padding: 0;
  border: none;
}

.inquiry-form .form-legend {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 12px;
  padding: 0;
}

.inquiry-form .form-radio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inquiry-form .form-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.45;
  color: #333333;
  margin: 0;
  cursor: pointer;
}

.inquiry-form .form-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.inquiry-form .form-radio span {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.45;
  color: #333333;
}

.career-intro {
  margin-bottom: 28px;
}

.career-intro p:last-child {
  margin-bottom: 0;
}

.inquiry-form .form-file {
  display: block;
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  color: #333333;
  background-color: #f8faf9;
  border: 1px dashed rgba(80, 154, 123, 0.45);
  border-radius: 8px;
  cursor: pointer;
}

.inquiry-form .form-file::file-selector-button {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  line-height: 1.3;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  margin-right: 12px;
  cursor: pointer;
}

.inquiry-form .form-file-help {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.45;
  color: #666666;
  margin: 8px 0 0;
}

/* Form anti-spam honeypots + status */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

.form-status {
  margin: 8px 0 16px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-dark);
}

.form-status.is-success {
  background: rgba(80, 154, 123, 0.12);
  border: 1px solid rgba(80, 154, 123, 0.45);
  color: #2f6b54;
}

.form-status.is-error {
  background: rgba(140, 50, 50, 0.08);
  border: 1px solid rgba(140, 50, 50, 0.35);
  color: #6b2a2a;
}

/* ======================================== */
/* FAT FOOTER SECTION */
/* ======================================== */
.fat-footer {
  position: relative;
  isolation: isolate;
  width: 100%;
  background-color: #223129;
  padding: 80px 0;
  overflow: hidden;
}

.fat-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 22 22'%3E%3Ccircle cx='2' cy='2' r='1.25' fill='%23AECB68' fill-opacity='0.14'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 22px 22px;
}

.fat-footer > .container {
  position: relative;
  z-index: 1;
}

.fat-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 48px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 22px;
}

.footer-phone {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: normal;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 8px;
}

.footer-phone:hover {
  color: var(--color-accent);
}

.footer-line {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: #cdd6d1;
  margin-bottom: 4px;
}

.footer-line a {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: var(--color-accent);
}

.footer-line a:hover {
  color: var(--color-white);
}

.footer-address {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.4;
  color: #cdd6d1;
  margin-top: 8px;
  font-style: normal;
}

.footer-member {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.35;
  color: #cdd6d1;
  margin-top: 14px;
  margin-bottom: 0;
}

.footer-member a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 1.35;
  color: var(--color-accent);
}

.footer-member a:hover {
  color: var(--color-white);
}

.map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  line-height: 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.map-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 10px;
}

.footer-quote {
  position: relative;
}

.footer-quote-icon {
  font-size: 60px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  color: var(--color-primary);
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-body);
}

.footer-quote-icon-close {
  text-align: right;
  margin-top: 8px;
  margin-bottom: 0;
}

.footer-quote-text {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.65;
  color: #cdd6d1;
  font-style: italic;
  margin-bottom: 0;
}

.footer-logo {
  display: block;
  height: 44px;
  width: auto;
  margin-bottom: 14px;
}

/* ======================================== */
/* COPYRIGHT FOOTER BAR */
/* ======================================== */
.copyright-bar {
  width: 100%;
  background-color: #182620;
  padding: 20px 0;
}

.copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.copyright-inner p {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1.5;
  color: #8ea89b;
  margin-bottom: 0;
}

.copyright-inner a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.5;
  color: var(--color-accent);
}

.copyright-inner a:hover {
  color: var(--color-white);
}

/* ======================================== */
/* SCROLL TO TOP BUTTON */
/* ======================================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-dark);
  color: var(--color-white);
  border: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--color-primary);
}

/* ======================================== */
/* RESPONSIVE - TABLET */
/* ======================================== */
@media (max-width: 1024px) {
  .intro-grid,
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-studies-plaque {
    padding: 36px 24px 32px;
    border-radius: 14px;
  }

  .case-study-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-aside {
    position: static;
  }

  .services-layout,
  .services-layout.therapeutic-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .therapeutic-overview {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-case-cta-wrap {
    text-align: right;
    padding: 22px 20px;
  }

  .study-brief-body {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .study-brief-icon {
    max-width: 88px;
  }

  .case-detail-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-detail-rail {
    position: static;
  }

  .case-detail-main {
    padding: 28px 22px 32px;
  }

  .case-detail-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.25;
    color: var(--color-primary);
  }

  .case-detail-footer-nav-split {
    flex-direction: column;
  }

  .case-next-btn {
    justify-content: center;
    width: 100%;
  }

  .services-sidenav {
    position: static;
    min-height: 0;
    border-radius: 14px;
  }

  .services-sidenav-list {
    display: block;
    padding: 6px 0 16px;
  }

  .services-sidenav-list a {
    padding: 14px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.7px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.94);
  }

  .services-image {
    float: none;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 24px;
  }

  .leadership-intro .section-heading {
    white-space: normal;
  }

  .section-leadership-contact {
    scroll-margin-top: calc(var(--header-height-mobile) + 24px);
    padding-top: 32px;
  }

  .leader-card,
  .leader-card-featured {
    grid-template-columns: 1fr;
  }

  .leader-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-right: none;
    border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  }

  .leader-body::before {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
  }

  .leadership-contact-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 22px;
  }

  .leadership-contact-copy .section-heading {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.25;
    color: var(--color-dark);
  }

  .leadership-contact-phone {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: normal;
    line-height: 1.2;
    color: var(--color-dark);
  }

  .leadership-form .form-row-split {
    grid-template-columns: 1fr;
  }

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

  .leadership-form {
    padding: 22px 18px;
  }

  .fat-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-quote {
    grid-column: 1 / -1;
  }

  .hero {
    height: 580px;
  }

  .hero-title {
    font-size: 44px;
    white-space: normal;
  }

  .hero-eyebrow {
    font-size: 14px;
    padding: 7px 20px;
  }
}

/* ======================================== */
/* RESPONSIVE - MOBILE */
/* ======================================== */
@media (max-width: 768px) {
  .site-header {
    height: var(--header-height-mobile);
  }

  .quick-facts {
    flex-direction: column;
    gap: 24px;
    margin-top: -36px;
    padding: 28px 24px;
    border-radius: 14px;
  }

  .quick-fact {
    padding: 0;
  }

  .quick-fact-divider {
    width: 60%;
    height: 1px;
  }

  .quick-fact-value {
    font-size: 28px;
  }

  .logo-img {
    height: 42px;
    max-height: 42px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: var(--color-white);
    box-shadow: 0 10px 25px rgba(26, 26, 26, 0.12);
    max-height: 0;
    overflow: hidden;
    overflow-y: auto;
    transition: max-height 0.35s ease;
  }

  .nav-menu.open {
    max-height: calc(100vh - 74px);
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid var(--color-light-gray);
  }

  .nav-menu > li > a {
    display: flex;
    width: 100%;
    padding: 16px 20px;
    justify-content: space-between;
  }

  .nav-parent::before {
    border-top: none;
    border-bottom: 5px solid currentColor;
    margin-top: 0;
    transition: transform 0.25s ease;
  }

  .nav-item-has-children.open > .nav-parent::before {
    transform: rotate(180deg);
  }

  .nav-dropdown,
  .nav-item-has-children:hover > .nav-dropdown,
  .nav-item-has-children:focus-within > .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    min-width: 0;
    width: 100%;
    padding: 0;
    background-color: #f6f8f7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-item-has-children.open > .nav-dropdown {
    max-height: 700px;
    padding: 4px 0 10px;
  }

  .nav-dropdown a {
    padding: 12px 20px 12px 32px;
    white-space: normal;
    font-size: 15px;
  }

  .hero {
    height: 520px;
  }

  .hero-slide-1 {
    background-position: 65% center;
  }

  .hero-caption {
    bottom: 90px;
    width: 88%;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 0;
    white-space: normal;
  }

  .hero-eyebrow {
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    margin-bottom: 12px;
  }

  .hero-dots {
    bottom: 55px;
  }

  .section {
    padding: 60px 0;
  }

  .page-title-bar {
    padding: 28px 0;
  }

  .page-title {
    font-size: 30px;
  }

  .page-tagline {
    font-size: 16px;
  }

  .about-quote-text {
    font-size: 18px;
  }

  .section-heading {
    font-size: 26px;
  }

  .section-intro-header .section-heading {
    font-size: 26px;
    padding-left: 16px;
    border-left-width: 4px;
  }

  .section-intro-header {
    margin-bottom: 32px;
  }

  .parallax-quote,
  .parallax-key {
    font-size: 20px;
  }

  .parallax-mark {
    font-size: 64px;
    margin-top: 20px;
  }

  .parallax-eyebrow {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .parallax-section {
    height: 480px;
    background-attachment: scroll;
  }

  .fat-footer-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .footer-quote {
    grid-column: auto;
  }

  .copyright-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-phone {
    font-size: 30px;
  }
}
