/* ================================
   GRATIA EQUITY PARTNERS REDESIGN
   Production CSS
   ================================ */

:root {
  --navy-deep: #0B1623;
  --navy: #112240;
  --navy-mid: #1A3357;
  --navy-light: #1E3A5F;
  --green: #2E7D52;
  --green-light: #3D9466;
  --green-pale: #D4EDE1;
  --green-dark: #1E5438;
  --cream: #F4F7F5;
  --warm-white: #FAFCFB;
  --white: #FFFFFF;
  --text-dark: #0B1623;
  --text-mid: #3D4F6B;
  --text-light: #7A8BAA;
  --border: #D8E4DD;
  --border-dark: #243550;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;
  --section-pad: 100px 0;
  --container-max: 1220px;
  --radius: 2px;
  --transition: 0.3s ease;
}

/* ================================
   RESET & BASE STYLES
   ================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ================================
   PAGE TRANSITIONS
   ================================ */

body {
  opacity: 1;
  animation: pageIn 0.55s ease forwards;
}

body.leaving {
  animation: pageOut 0.3s ease forwards;
}

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

@keyframes pageOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* ================================
   UTILITY CLASSES
   ================================ */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-pad);
}

.section--dark {
  background: var(--navy-deep);
}

/* Section header — constrained container used as title block above grids */
.section__header {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px 48px;
  text-align: center;
}

/* Section rule (green bar under headline) */
.section__rule {
  width: 48px;
  height: 3px;
  background: var(--green);
  margin: 20px 0 28px;
}

/* Quote overlay block inside image panels */
.quote-block {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  background: rgba(11, 22, 35, 0.78);
  border-left: 3px solid var(--green);
  padding: 20px 24px;
  color: var(--cream);
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
}

.about-visual {
  position: relative;
}

.section--dark .eyebrow,
.section--dark .section__eyebrow {
  color: #7FBD9E;
}

.section--dark .eyebrow--light,
.section--dark .section__eyebrow--light {
  color: #D4EDE1;
}

.section--navy {
  background: var(--navy);
}

.section--navy .eyebrow,
.section--navy .section__eyebrow {
  color: #7FBD9E;
}

.section--cream {
  background: var(--cream);
}

.section--photo-bg {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.section--photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 35, 0.88);
  z-index: 0;
}

.section--photo-bg > .container {
  position: relative;
  z-index: 1;
}

.section--cta {
  position: relative;
  text-align: center;
}

.section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(46, 125, 82, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-block;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.85);
}

.green-rule {
  width: 48px;
  height: 2px;
  background: var(--green);
  margin: 20px 0;
}

.body-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1em;
}

/* ================================
   SCROLL REVEAL
   ================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal--left {
  transform: translateX(-32px) translateY(0);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal-group > *:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-group > *:nth-child(3) {
  transition-delay: 0.18s;
}

.reveal-group > *:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal-group > *:nth-child(5) {
  transition-delay: 0.34s;
}

.reveal-group > *:nth-child(6) {
  transition-delay: 0.42s;
}

.reveal-group.revealed > * {
  opacity: 1;
  transform: none;
}

/* ================================
   NAVIGATION
   ================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav--scrolled {
  background: rgba(11, 22, 35, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-dark);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav__logo-img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links li a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.nav__links li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width var(--transition);
}

.nav__links li a:hover {
  color: var(--white);
}

.nav__links li a:hover::after {
  width: 100%;
}

.nav__links li a.active {
  color: var(--green);
}

.nav__cta {
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
  padding: 9px 22px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition);
}

.nav__cta:hover {
  background: var(--green);
  color: var(--white);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 28px;
  height: 28px;
  background: transparent;
  padding: 0;
}

.nav__hamburger span {
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.nav__links--open {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  flex-direction: column;
  gap: 0;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-dark);
}

.nav__links--open li {
  width: 100%;
}

.nav__links--open li a {
  display: block;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border-dark);
}

/* ================================
   HERO SECTION (HOMEPAGE)
   ================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 50%, rgba(46, 125, 82, 0.12) 0%, transparent 50%),
              linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.012) 60px,
    rgba(255, 255, 255, 0.012) 120px
  );
  z-index: 1;
  pointer-events: none;
}

.hero--photo {
  background-size: cover;
  background-position: center;
}

.hero--parallax {
  background-attachment: fixed;
}

.hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 22, 35, 0.92), rgba(11, 22, 35, 0.82));
  z-index: 1;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 22, 35, 0.4) 0%, rgba(11, 22, 35, 0.8) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 100px;
}

.hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--green);
  margin-bottom: 24px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 24px 0;
}

.hero__headline em {
  font-style: italic;
  color: var(--green-light);
  font-weight: 500;
}

.hero__subheadline {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
  line-height: 1.75;
  margin: 0 0 16px 0;
}

.hero__blockquote {
  font-family: var(--font-elegant);
  font-size: 22px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.88);
  border-left: 2px solid var(--green);
  padding-left: 20px;
  margin: 32px 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--green) 0%, transparent 100%);
}

.signature-watermark {
  display: block;
  width: 180px;
  height: auto;
  opacity: 0.18;
  filter: invert(1) brightness(2);
  margin-top: 32px;
  pointer-events: none;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn--gold {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
}

.btn--gold:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-1px);
}

.btn--outline-light {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.btn--outline-light:hover {
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-green {
  border: 1px solid var(--green);
  color: var(--green);
  background: transparent;
}

.btn--outline-green:hover {
  background: var(--green);
  color: var(--white);
}

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

/* ================================
   CREDIBILITY STRIP
   ================================ */

.credibility {
  background: var(--navy-deep);
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.credibility__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.credibility__item {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.credibility__number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.credibility__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.credibility__divider {
  width: 1px;
  height: 40px;
  background: var(--border-dark);
}

.credibility__item:last-child .credibility__divider {
  display: none;
}

/* ================================
   TWO-COLUMN SECTION
   ================================ */

.section-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section__headline {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 16px 0 24px 0;
}

.section__headline--light {
  color: var(--white);
}

.section__subhead {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin: 0;
}

.about-visual {
  min-height: 480px;
  background: var(--navy);
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.quote-block {
  background: var(--navy-deep);
  padding: 40px 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
}

.quote-block__text {
  font-family: var(--font-elegant);
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px 0;
  line-height: 1.8;
}

.quote-block__attribution {
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
}

/* ================================
   SERVICES SECTION
   ================================ */

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dark);
  padding: 48px;
  transition: all var(--transition);
  cursor: pointer;
}

.service-card:hover {
  border-color: rgba(46, 125, 82, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.service-card__number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--green);
  opacity: 0.85;
}

.service-card__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin: 16px 0 12px 0;
}

.service-card__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

/* ================================
   SERVICES INCLUDED GRID
   ================================ */

.services-included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.service-included-item {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
}

.service-included-item__check {
  color: var(--green);
  flex-shrink: 0;
  font-size: 18px;
}

.service-included-item__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ================================
   WHY GRID
   ================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.why-card {
  padding: 32px 0;
}

.why-card__number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--green);
  margin-bottom: 12px;
}

.why-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.why-card__body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ================================
   SECTOR CARDS
   ================================ */

.sector-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy-deep);
  border: 1px solid var(--border-dark);
  cursor: pointer;
  transition: all var(--transition);
}

.sector-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.sector-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(11, 22, 35, 0.8) 100%);
  transition: background var(--transition);
  z-index: 1;
}

.sector-card:hover .sector-card__overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(11, 22, 35, 0.95) 100%);
}

.sector-card:hover .sector-card__img {
  transform: scale(1.05);
  filter: brightness(0.55);
}

.sector-card__body {
  position: relative;
  z-index: 2;
  padding: 36px 32px;
}

.sector-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.sector-card__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}

.sector-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.sector-card:hover .sector-card__desc {
  max-height: 80px;
  opacity: 1;
}

.sector-card__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 3;
}

.sector-card:hover .sector-card__bar {
  transform: scaleX(1);
}

/* ================================
   WHO WE SERVE
   ================================ */

.who-we-serve__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.criteria-card {
  background: var(--navy);
  padding: 48px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
}

.criteria-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 24px;
}

.criteria-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.criteria-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.criteria-list li::before {
  content: '–';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ================================
   PROCESS STEPS (HOMEPAGE)
   ================================ */

.steps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
}

.step-item {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.step-item:last-child {
  border-right: none;
}

.step-item__number {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--green);
  margin-bottom: 12px;
}

.step-item__title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}

.step-item__body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
  max-width: var(--container-max);
  padding: 0 40px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-item__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.contact-item__value {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.6;
}

.form__group {
  margin-bottom: 20px;
}

.form__label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 14px;
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--green);
}

.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='%233D4F6B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ================================
   FOOTER
   ================================ */

.footer {
  background: var(--navy-deep);
  padding: 80px 0 0;
  border-top: 1px solid var(--border-dark);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px 60px 40px;
}

.footer__logo-img {
  height: 40px;
  width: auto;
  opacity: 0.85;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
  line-height: 1.7;
}

.footer__links-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-dark);
  margin-top: 60px;
  padding: 24px 40px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.footer__bottom-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer__bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition);
}

.footer__bottom-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ================================
   PAGE HERO (INNER PAGES)
   ================================ */

.page-hero {
  background: var(--navy-deep);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(46, 125, 82, 0.1) 0%, transparent 60%);
  z-index: 1;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.008) 60px,
    rgba(255, 255, 255, 0.008) 120px
  );
  z-index: 1;
  pointer-events: none;
}

.page-hero--photo {
  background-size: cover;
  background-position: center;
}

.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 22, 35, 0.94), rgba(11, 22, 35, 0.86));
  z-index: 1;
}

.page-hero--parallax {
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .page-hero--parallax {
    background-attachment: scroll;
  }
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.page-hero__subhead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin: 0;
  max-width: 600px;
}

/* ================================
   VALUES GRID
   ================================ */

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.value-card {
  padding: 48px;
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--green-dark);
}

.value-card__icon {
  font-size: 32px;
  color: var(--green);
  margin-bottom: 20px;
}

.value-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.value-card__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

/* ================================
   TEAM CARDS
   ================================ */

.team__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.team-member__photo {
  width: 340px;
  height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
}

.team-headshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-member__info {
  padding: 48px 0;
}

.team-member__name {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 12px 0;
}

.team-member__title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.team-member__bio {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
}

.team-member__linkedin {
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ================================
   RESOURCES TABS
   ================================ */

.resources-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  gap: 0;
}

.tab-btn {
  padding: 16px 32px 14px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.tab-btn:hover,
.tab-btn.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tombstone-card {
  background: var(--navy-deep);
  border: 1px solid var(--border-dark);
  border-top: 4px solid var(--green);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: var(--radius);
}

.tombstone-card__header {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 20px;
}

.tombstone-card__title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.tombstone-card__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tombstone-meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tombstone-meta-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.tombstone-meta-value {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.video-card {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.video-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.article-card {
  background: var(--navy-deep);
  border: 1px solid var(--border-dark);
  overflow: hidden;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
}

.article-card__img {
  height: 240px;
  object-fit: cover;
  order: 2;
}

.article-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

.article-card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.article-card__meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.article-card__excerpt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ================================
   NCNDA PAGE SPECIFIC
   ================================ */

.ncnda-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  margin-top: 60px;
}

.ncnda-info {
  position: sticky;
  top: 120px;
}

.ncnda-info__title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.ncnda-info__body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

.ncnda-legal-scroll {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  padding: 32px;
  max-height: 640px;
  overflow-y: auto;
  border-radius: var(--radius);
  scrollbar-width: thin;
  scrollbar-color: var(--green) transparent;
}

.ncnda-legal-scroll::-webkit-scrollbar {
  width: 6px;
}

.ncnda-legal-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.ncnda-legal-scroll::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 3px;
}

.ncnda-clause {
  margin-bottom: 20px;
}

.ncnda-clause__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.ncnda-clause__text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
}

.ncnda-parties {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 20px;
  margin: 20px 0;
  border-radius: var(--radius);
}

.ncnda-parties__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 8px;
}

.ncnda-parties__value {
  font-size: 13px;
  color: var(--text-dark);
}

.ncnda-legal-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}

.signature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.signature-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.signature-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.signature-field__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.signature-field__input {
  padding: 12px;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-dark);
}

.docusign-panel {
  background: var(--navy-deep);
  border: 1px solid var(--border-dark);
  padding: 48px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 40px;
}

.docusign-panel__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}

.docusign-panel__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
  line-height: 1.7;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 24px;
}

.step-badge__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 600;
}

.attention-box {
  background: rgba(46, 125, 82, 0.08);
  border: 1px solid var(--green);
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.attention-box__icon {
  color: var(--green);
  flex-shrink: 0;
  font-size: 20px;
}

.attention-box__text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ================================
   DEAL MARKETING
   ================================ */

.deal-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.deal-card {
  background: var(--navy-deep);
  border: 1px solid var(--border-dark);
  padding: 36px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.deal-card:hover {
  border-color: var(--green);
}

.deal-card__header {
  margin-bottom: 20px;
}

.mandate-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.mandate-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.deal-card__title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 16px 0;
}

.deal-card__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.deal-gated__step {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--border-dark);
  padding: 20px;
}

.deal-gated__step:last-child {
  border-bottom: none;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.step-num.completed {
  background: rgba(46, 125, 82, 0.3);
  color: var(--green);
}

.step-content {
  flex: 1;
}

.step-content__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.step-content__desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.confidential-ribbon {
  position: fixed;
  bottom: 40px;
  right: 0;
  background: var(--green);
  color: var(--white);
  padding: 8px 32px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 999;
  writing-mode: horizontal-tb;
}

/* ================================
   CTA SECTIONS
   ================================ */

.cta__eyebrow {
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  color: var(--white);
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.cta__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ================================
   PROCESS PAGE SPECIFIC
   ================================ */

.progress-bar {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 999;
}

.progress-bar__fill {
  height: 100%;
  background: var(--green);
  width: 0;
  transition: width 0.3s ease;
}

.progress-bar__label {
  position: absolute;
  right: 16px;
  top: 8px;
  font-family: var(--font-sans);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.phase {
  margin-bottom: 80px;
  scroll-margin-top: 100px;
}

.phase-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green-dark);
  border: 1px solid var(--green);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 40px;
}

.step-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  margin-bottom: 2px;
  transition: all var(--transition);
}

.step-card:hover {
  transform: translateX(4px);
}

.step-card:hover .step-card__num {
  border-left: 3px solid var(--green);
  background: rgba(46, 125, 82, 0.1);
}

.step-card__num {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--green);
  border-left: 3px solid transparent;
  transition: all var(--transition);
}

.step-card__content {
  background: var(--cream);
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-card--final .step-card__num {
  background: var(--green);
  color: var(--white);
}

.step-card--final:hover .step-card__num {
  background: var(--green-light);
  border-left-color: var(--white);
}

.step-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-description {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}

.timeline-card {
  background: var(--cream);
  padding: 32px;
  border: 1px solid var(--border);
  text-align: center;
}

.timeline-card__num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--green);
  margin-bottom: 12px;
}

.timeline-card__label {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .nav__inner {
    padding: 0 32px;
  }

  .nav__links {
    gap: 28px;
  }

  .section-two-col,
  .contact__grid,
  .ncnda-layout,
  .team__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .services-included__grid,
  .why-grid,
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-card {
    min-height: 280px;
  }

  .who-we-serve__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

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

  .step-card {
    grid-template-columns: 80px 1fr;
  }

  .step-card__num {
    font-size: 40px;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 60px 0;
  }

  .container {
    padding: 0 20px;
  }

  .nav__inner {
    padding: 0 20px;
    height: 64px;
  }

  .nav__logo-img {
    height: 36px;
  }

  .nav__links {
    position: fixed;
    flex-direction: column;
    gap: 0;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__content {
    padding: 0 20px;
    padding-top: 80px;
  }

  .hero__headline {
    font-size: clamp(32px, 5vw, 56px);
  }

  .hero__actions {
    flex-direction: column;
  }

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

  .credibility__items {
    flex-direction: column;
    gap: 32px;
  }

  .credibility__item {
    padding: 0;
  }

  .credibility__divider {
    display: none;
  }

  .services__grid,
  .services-included__grid,
  .why-grid,
  .values__grid,
  .steps__grid,
  .deal-cards__grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

  .page-hero__headline {
    font-size: clamp(28px, 4vw, 48px);
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__bottom-links {
    flex-direction: column;
    gap: 16px;
  }

  .section--photo-bg {
    background-attachment: scroll;
  }

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

  .ncnda-layout,
  .section-two-col,
  .contact__grid,
  .team__grid {
    gap: 32px;
  }

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

  .team-member__photo {
    width: 100%;
    height: auto;
  }

  .article-card {
    grid-template-columns: 1fr;
  }

  .article-card__img {
    height: 240px;
    order: 1;
  }

  .article-card__body {
    order: 2;
  }

  .cta__headline {
    font-size: clamp(24px, 3vw, 40px);
  }

  .cta__actions {
    flex-direction: column;
  }

  .cta__actions .btn {
    width: 100%;
  }

  .step-card {
    grid-template-columns: 60px 1fr;
  }

  .step-card__num {
    font-size: 32px;
  }

  .step-card__content {
    padding: 28px 24px;
  }

  .signature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav__inner {
    padding: 0 16px;
  }

  .hero__headline {
    font-size: clamp(28px, 4vw, 44px);
  }

  .page-hero__headline {
    font-size: clamp(24px, 3vw, 40px);
  }

  .section__headline {
    font-size: 28px;
  }

  .cta__headline {
    font-size: clamp(20px, 2vw, 32px);
  }

  .step-card {
    grid-template-columns: 50px 1fr;
  }

  .step-card__num {
    font-size: 24px;
  }

  .footer__grid {
    gap: 24px;
  }

  .founder-split {
    flex-direction: column;
  }

  .founder-split__photo {
    min-height: 360px;
  }

  .founder-split__text {
    padding: 48px 32px;
  }
}

/* ── Founder Split Section ────────────────────────────── */
.founder-split {
  display: flex;
  align-items: stretch;
  min-height: 600px;
}

.founder-split__photo {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
}

.founder-split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}

.founder-split__photo:hover .founder-split__img {
  transform: scale(1.03);
}

.founder-split__text {
  flex: 1;
  background: var(--navy-deep);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-split__quote {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.5;
  margin: 0 0 1.8rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--green);
}

.founder-split__body {
  font-size: 15px;
  line-height: 1.8;
  color: #8fa8b8;
  max-width: 480px;
}

/* ================================================================
   PATCH — Missing class definitions (about, services, index pages)
   ================================================================ */

/* ── Section layout ── */
.section--white {
  background: var(--white);
}

.section__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.section__inner--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section__inner--narrow {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section__inner--reversed .section__left {
  order: 2;
}

.section__inner--reversed .section__right {
  order: 1;
}

.section__rule {
  width: 48px;
  height: 2px;
  background: var(--green);
  margin: 20px 0 28px;
  border: none;
}

/* Eyebrow labels (inner pages use section__eyebrow vs generic .eyebrow) */
.section__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--green);
  margin-bottom: 16px;
}

.section__eyebrow--light {
  color: #7FBD9E;
}

.section--dark .section__eyebrow {
  color: #7FBD9E;
}

/* Body text */
.section__body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.section__body--light,
.section--dark .section__body {
  color: rgba(255, 255, 255, 0.82);
}

/* Subhead on dark sections */
.section__subhead--light,
.section--dark .section__subhead {
  color: rgba(255, 255, 255, 0.82);
}

/* CTA section modifier */
.section__cta {
  text-align: center;
}

/* ── Dark visual block (blockquote container on white sections) ── */
.section__visual--dark {
  background: var(--navy-deep);
  padding: 56px 48px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  min-height: 380px;
}

.about__visual {
  min-height: 480px;
}

/* ── Blockquote ── */
.blockquote__text {
  font-family: var(--font-elegant);
  font-size: 20px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin: 0 0 16px;
  padding-left: 20px;
  border-left: 2px solid var(--green);
}

.blockquote__attribution {
  font-size: 13px;
  font-weight: 500;
  color: #7FBD9E;
  padding-left: 20px;
}

.blockquote--large .blockquote__text {
  font-size: 22px;
}

/* ── Card grid & cards ── */
.card-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.card-grid--6col {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.section--cream .card {
  background: var(--white);
}

.card--dark {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dark);
}

.card__title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 12px;
}

.card__title--light {
  color: var(--white);
}

.card__desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.card__desc--light,
.card--dark .card__desc {
  color: rgba(255, 255, 255, 0.75);
}

/* ── Criteria card list (index.html) ── */
.criteria-card__rule {
  width: 40px;
  height: 2px;
  background: var(--green);
  margin: 12px 0 24px;
  border: none;
}

.criteria-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.criteria-card__list li::before {
  content: '– ';
  color: var(--green);
  font-weight: 700;
}

/* ── Credibility strip (index.html alternate class names) ── */
.credibility__stat {
  flex: 1;
  text-align: center;
  padding: 0 40px;
}

.credibility__figure {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

/* ── Credibility strip (services.html — different component) ── */
.credibility-strip {
  background: var(--navy-deep);
  padding: 48px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.credibility-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.credibility-stat {
  text-align: center;
}

.credibility-stat__primary {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 6px;
  display: block;
}

.credibility-stat__secondary {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
  display: block;
}

/* ── Service card number & link ── */
.service-card__number {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--green);
  opacity: 0.85;
  margin-bottom: 8px;
}

.service-card__link {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 20px;
  transition: color var(--transition);
}

.service-card__link:hover {
  color: var(--white);
}

/* ── CTA section (index.html section--dark photo bg) ── */
.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 22, 35, 0.75);
  z-index: 1;
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
}

.cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 20px;
}

.cta__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin: 0 0 40px;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Contact section (index.html) ── */
.contact__label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 8px;
}

.contact__block {
  margin-bottom: 28px;
}

.contact__block p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 0;
}

.contact__block a {
  color: var(--text-mid);
  transition: color var(--transition);
}

.contact__block a:hover {
  color: var(--green);
}

.contact__tagline {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-top: 24px;
}

/* ── Contact form (index.html uses .form-group/.form-row not .form__group/.form__row) ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 14px;
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius);
  box-sizing: border-box;
  transition: border-color var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
}

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

/* ── Footer variants (about.html / services.html use footer__inner/footer__list) ── */
.footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px 40px;
}

.footer__col {
  /* grid child — no special rules needed */
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 20px;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

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

.footer__text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px;
}

.footer__text a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

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

/* index.html footer extras */
.footer__location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer__tagline-bottom {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* ── Team page extras ── */
.team-member__rule {
  width: 40px;
  height: 2px;
  background: var(--green);
  margin: 16px 0 24px;
  border: none;
}

.team-member__link {
  display: inline-block;
  color: var(--green);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--transition);
}

.team-member__link:hover {
  color: var(--green-light);
}

.team__placeholder {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.team__placeholder-text {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
}

/* ── Button variants (inner pages) ── */
.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn--cream {
  background: var(--cream);
  color: var(--text-dark);
  border: 1px solid var(--cream);
}

.btn--cream:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn--navy {
  background: var(--navy-deep);
  color: var(--white);
  border: 1px solid var(--navy-deep);
}

.btn--navy:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border: 1px solid currentColor;
}

.btn--outline-cream {
  border: 1px solid rgba(244, 247, 245, 0.55);
  color: var(--cream);
  background: transparent;
}

.btn--outline-cream:hover {
  border-color: var(--cream);
  color: var(--white);
}

/* ── Page hero overlay (inner pages) ── */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 22, 35, 0.92), rgba(11, 22, 35, 0.80));
  z-index: 1;
}

/* ── Page hero eyebrow ── */
.page-hero__eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--green);
  margin-bottom: 20px;
}
