/* ============================================
   SEGULAH STRATEGIES — Enhanced Stylesheet
   Institutional American Palette · Premium Motion
   ============================================ */

/* --- Custom Properties --- */
:root {
  --navy: #0A1F44;
  --navy-light: #122B5A;
  --navy-90: rgba(10, 31, 68, 0.9);
  --red: #8B2332;
  --red-hover: #9B2335;
  --ivory: #F7F4EC;
  --ivory-warm: #F2EEE4;
  --slate: #4A4F58;
  --slate-light: #6B7280;
  --white: #FFFFFF;
  --rule: rgba(10, 31, 68, 0.1);
  --rule-dark: rgba(10, 31, 68, 0.15);

  --font-serif: 'EB Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --text-measure: 680px;
  --section-spacing: 120px;
  --subsection-spacing: 64px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 0.2s;
  --duration-med: 0.5s;
  --duration-slow: 0.8s;
}

/* --- Skip to Content --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 10000;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 0;
  color: var(--ivory);
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* --- Focus Styles --- */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.7;
  color: var(--slate);
  background-color: var(--ivory);
}

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

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

a:hover {
  color: var(--red);
}

/* --- Typography --- */
h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

p {
  margin-bottom: 1.5rem;
  max-width: var(--text-measure);
}

em { font-style: italic; }

blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy);
  border-left: 2px solid var(--red);
  padding-left: 1.5rem;
  margin: 2rem 0;
  max-width: var(--text-measure);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
}

.section {
  padding: var(--section-spacing) 0;
  position: relative;
}

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

.section--navy h1,
.section--navy h2,
.section--navy h3 {
  color: var(--ivory);
}

.section--navy p {
  color: rgba(247, 244, 236, 0.85);
}

.section--navy blockquote {
  color: var(--ivory);
  border-left-color: var(--red);
}

.section--ivory-warm {
  background-color: var(--ivory-warm);
}

.text-measure {
  max-width: var(--text-measure);
}

/* ============================================
   SCROLL REVEAL SYSTEM
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-24px);
}

.reveal--left.reveal--visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(24px);
}

.reveal--right.reveal--visible {
  transform: translateX(0);
}

.reveal--scale {
  opacity: 0;
  transform: scale(0.97);
}

.reveal--scale.reveal--visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.stagger > .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger > .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger > .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger > .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger > .reveal:nth-child(6) { transition-delay: 0.40s; }
.stagger > .reveal:nth-child(7) { transition-delay: 0.48s; }
.stagger > .reveal:nth-child(8) { transition-delay: 0.56s; }
.stagger > .reveal:nth-child(9) { transition-delay: 0.64s; }
.stagger > .reveal:nth-child(10) { transition-delay: 0.72s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow 0.4s ease, background-color 0.4s ease;
}

.nav--scrolled {
  box-shadow: 0 1px 12px rgba(10, 31, 68, 0.08);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 52px;
  width: auto;
  max-width: none;
  display: block;
}

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

.nav__link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--slate);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast) ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--red);
  transition: width 0.35s var(--ease-out);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link--active {
  color: var(--navy);
}

.nav__link--cta {
  color: var(--navy);
  font-weight: 500;
  border: 1px solid var(--navy);
  padding: 8px 20px;
  transition: all 0.3s var(--ease-out);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background-color: var(--navy);
  color: var(--ivory);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  width: 36px;
  height: 36px;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background-color: var(--navy);
  position: absolute;
  left: 8px;
  transition: all 0.3s var(--ease-out);
}

.nav__toggle span:nth-child(1) { top: 10px; }
.nav__toggle span:nth-child(2) { top: 17px; }
.nav__toggle span:nth-child(3) { top: 24px; }

.nav__toggle--open span:nth-child(1) {
  transform: rotate(45deg);
  top: 17px;
}

.nav__toggle--open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle--open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 17px;
}

/* --- Label / Eyebrow --- */
.label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 1rem;
  display: block;
}

.section--navy .label {
  color: rgba(247, 244, 236, 0.5);
}

/* --- Hairline Rule --- */
.rule {
  width: 40px;
  height: 1px;
  background-color: var(--red);
  margin: 1.5rem 0;
  border: none;
}

.rule--wide { width: 60px; }

.rule--center {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   CTAs & BUTTONS
   ============================================ */
.cta {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--duration-fast) ease, gap 0.3s var(--ease-out);
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.cta::after {
  content: '\2192';
  transition: transform 0.3s var(--ease-out);
}

.cta:hover {
  color: var(--red);
}

.cta:hover::after {
  transform: translateX(6px);
}

.section--navy .cta { color: var(--ivory); }
.section--navy .cta:hover { color: var(--red-hover); }

.cta--bordered {
  border: 1px solid var(--navy);
  padding: 14px 32px;
  transition: all 0.3s var(--ease-out);
}

.cta--bordered:hover {
  background-color: var(--navy);
  color: var(--ivory);
}

.section--navy .cta--bordered { border-color: var(--ivory); }
.section--navy .cta--bordered:hover {
  background-color: var(--ivory);
  color: var(--navy);
}

/* ============================================
   HERO — Kinetic Typography
   ============================================ */
.hero {
  padding-top: 180px;
  padding-bottom: var(--section-spacing);
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(12px);
  animation: heroReveal 0.6s var(--ease-out) 0.2s forwards;
}

.hero__title {
  font-size: 3.25rem;
  max-width: 780px;
  margin-bottom: 2rem;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroWord 0.6s var(--ease-out) forwards;
}

.hero__desc {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.7s var(--ease-out) 1.2s forwards;
}

.hero__ctas {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.7s var(--ease-out) 1.5s forwards;
}

.hero__quote {
  margin-top: 4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--slate-light);
  opacity: 0;
  animation: heroReveal 0.7s var(--ease-out) 1.8s forwards;
}

@keyframes heroWord {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   METHOD SCROLLYTELLING (Homepage)
   ============================================ */
.method-scroll {
  position: relative;
  padding: var(--section-spacing) 0;
}

.method-scroll__thread {
  position: absolute;
  left: calc(50% - 160px);
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--rule);
}

.method-scroll__thread-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background: var(--red);
  transition: height 0.1s linear;
}

.method-scroll__intro {
  max-width: var(--text-measure);
  margin-bottom: 4rem;
}

.method-scroll__steps {
  position: relative;
}

.method-scroll__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.method-scroll__step--visible {
  opacity: 1;
  transform: translateY(0);
}

.method-scroll__step-number {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 0.75rem;
  display: block;
}

.method-scroll__step h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.method-scroll__step p {
  font-size: 1rem;
  line-height: 1.7;
}

.method-scroll__step-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}

.method-scroll__step-word {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  color: var(--navy);
  opacity: 0.08;
  letter-spacing: 0.05em;
  transition: opacity 0.6s var(--ease-out), color 0.6s var(--ease-out);
}

.method-scroll__step--visible .method-scroll__step-word {
  opacity: 0.12;
}

/* ============================================
   EDITORIAL PULL QUOTES
   ============================================ */
.pull-quote {
  text-align: center;
  padding: 80px 0;
}

.pull-quote--editorial {
  padding: 100px 0;
  position: relative;
}

.pull-quote--editorial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--red);
}

.pull-quote p,
.pull-quote--editorial p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.75rem;
  line-height: 1.45;
  color: var(--navy);
  max-width: 700px;
  margin: 0 auto;
  letter-spacing: -0.005em;
}

.section--navy .pull-quote p,
.section--navy .pull-quote--editorial p {
  color: var(--ivory);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding-top: 160px;
  padding-bottom: var(--subsection-spacing);
  border-bottom: 1px solid var(--rule);
}

.page-header h1 {
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 0.7s var(--ease-out) 0.2s forwards;
}

.page-header p {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 0.7s var(--ease-out) 0.4s forwards;
}

.page-header .label {
  opacity: 0;
  transform: translateY(12px);
  animation: heroReveal 0.5s var(--ease-out) 0.1s forwards;
}

.page-header--navy {
  background-color: var(--navy);
  border-bottom: none;
}

.page-header--navy h1 { color: var(--ivory); }
.page-header--navy p { color: rgba(247, 244, 236, 0.85); }
.page-header--navy .label { color: rgba(247, 244, 236, 0.5); }

/* ============================================
   METHOD GRID (fallback for simple layout)
   ============================================ */
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.method-step {
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
}

.method-step__number {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 0.75rem;
}

.method-step h3 { margin-bottom: 0.75rem; }
.method-step p { font-size: 0.9375rem; line-height: 1.6; }

/* ============================================
   DIVISION CARDS (Enhanced hover)
   ============================================ */
.division-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.division-card {
  padding: 2.5rem;
  border: 1px solid var(--rule);
  transition: border-color 0.3s ease, box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  position: relative;
}

.division-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.4s var(--ease-out);
}

.division-card:hover {
  border-color: var(--rule-dark);
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.06);
  transform: translateY(-2px);
}

.division-card:hover::before {
  width: 100%;
}

.division-card__label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-bottom: 0.75rem;
  display: block;
}

.division-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.division-card p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   FRAMEWORK ACCORDION (Interactive)
   ============================================ */
.framework-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
}

.framework-card {
  border-top: 1px solid var(--rule);
  overflow: hidden;
}

.framework-card:last-child {
  border-bottom: 1px solid var(--rule);
}

.framework-card__header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  cursor: pointer;
  transition: color var(--duration-fast) ease;
  -webkit-user-select: none;
  user-select: none;
}

.framework-card__header:hover {
  color: var(--red);
}

.framework-card__header:hover h3 {
  color: var(--red);
}

.framework-card__abbr {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 6px 12px;
  min-width: 48px;
  text-align: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.framework-card--open .framework-card__abbr {
  background: var(--red);
}

.framework-card__title {
  flex: 1;
}

.framework-card__title h3 {
  margin-bottom: 0;
  transition: color var(--duration-fast) ease;
}

.framework-card__toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.framework-card__toggle::before,
.framework-card__toggle::after {
  content: '';
  position: absolute;
  background: var(--slate);
  transition: transform 0.3s var(--ease-out);
}

.framework-card__toggle::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.framework-card__toggle::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.framework-card--open .framework-card__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.framework-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.5s var(--ease-out);
  padding: 0 0 0 0;
}

.framework-card--open .framework-card__body {
  max-height: 400px;
  padding: 0 0 2.5rem 0;
}

.framework-card__body p {
  font-size: 1rem;
  line-height: 1.7;
  padding-left: calc(48px + 1.5rem);
  margin-bottom: 0;
}

/* ============================================
   INTERACTIVE TIMELINE (Approach page)
   ============================================ */
.timeline {
  margin-top: 4rem;
  position: relative;
}

.timeline__nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 4rem;
  position: relative;
  overflow-x: auto;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.timeline__nav::-webkit-scrollbar { display: none; }

.timeline__line {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule-dark);
}

.timeline__line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.5s var(--ease-out);
}

.timeline__node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 120px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-sans);
}

.timeline__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--rule-dark);
  background: var(--ivory);
  transition: all 0.3s var(--ease-out);
}

.timeline__node--active .timeline__dot {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(139, 35, 50, 0.15);
}

.timeline__node-label {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  transition: color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.timeline__node--active .timeline__node-label {
  color: var(--navy);
  font-weight: 500;
}

.timeline__content {
  position: relative;
  min-height: 200px;
}

.timeline__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  pointer-events: none;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
}

.timeline__panel--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.timeline__panel h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.timeline__panel p {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.timeline__panel-number {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
  display: block;
}

.timeline__arrows {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.timeline__arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule-dark);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  transition: all 0.3s var(--ease-out);
}

.timeline__arrow:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--ivory);
}

.timeline__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ============================================
   STAGE LIST (fallback for approach)
   ============================================ */
.stage-list {
  counter-reset: stage;
  margin-top: 3rem;
}

.stage-item {
  counter-increment: stage;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.stage-item:first-child {
  border-top: 1px solid var(--rule);
}

.stage-item h3 { margin-bottom: 0.75rem; }
.stage-item p { font-size: 0.9375rem; line-height: 1.6; }

/* ============================================
   INDUSTRY GROUPS
   ============================================ */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.industry-group {
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  transition: border-color 0.3s ease;
}

.industry-group:hover {
  border-top-color: var(--red);
}

.industry-group h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.industry-group p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 0;
}

/* ============================================
   INSIGHTS — Editorial Publication Style
   ============================================ */
.insight-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 3rem;
}

.insight-categories__item {
  padding: 2.5rem 2rem;
  border-left: 1px solid var(--rule);
  transition: background 0.3s ease;
}

.insight-categories__item:first-child {
  border-left: none;
  padding-left: 0;
}

.insight-categories__item:hover {
  background: var(--ivory-warm);
}

.insight-categories__item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.insight-categories__item p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.insights-placeholder {
  border: 1px solid var(--rule);
  padding: 3rem 2.5rem;
  margin: 3rem 0;
  text-align: center;
}

.insights-placeholder p {
  font-style: italic;
  color: var(--slate-light);
  margin: 0 auto;
  max-width: 480px;
}

/* ============================================
   ABOUT / STANDARD
   ============================================ */
.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 3rem;
}

.standard-grid__item,
.standard-item {
  padding: 2rem;
  border: 1px solid var(--rule);
  margin: -0.5px;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.standard-grid__item:hover,
.standard-item:hover {
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.06);
  transform: translateY(-2px);
  z-index: 1;
}

.standard-grid__item h3,
.standard-item h3 {
  margin-bottom: 0.5rem;
}

.standard-grid__item p,
.standard-item p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   LEADERSHIP
   ============================================ */
.leadership-note {
  max-width: var(--text-measure);
}

.leadership-placeholder {
  border: 1px solid var(--rule);
  padding: 3rem 2.5rem;
  margin: 2rem 0;
  text-align: center;
}

.leadership-placeholder p {
  font-style: italic;
  color: var(--slate-light);
  margin: 0;
}

/* ============================================
   CAREERS
   ============================================ */
.careers-content {
  max-width: var(--text-measure);
}

.careers-openings {
  border: 1px solid var(--rule);
  padding: 2.5rem;
  margin: 2rem 0;
  text-align: center;
}

.careers-openings p {
  color: var(--slate-light);
  margin: 0;
}

/* ============================================
   CONTACT — Enhanced Form
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

.contact-info h3 {
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-form label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: var(--slate);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.form-group--focused label {
  color: var(--navy);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 12px 16px;
  border: 1px solid var(--rule-dark);
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10, 31, 68, 0.06);
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form button {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ivory);
  background-color: var(--navy);
  border: 1px solid var(--navy);
  padding: 14px 32px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-form button::after {
  content: '\2192';
  transition: transform 0.3s var(--ease-out);
}

.contact-form button:hover {
  background-color: var(--navy-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(10, 31, 68, 0.15);
}

.contact-form button:hover::after {
  transform: translateX(4px);
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-status {
  padding: 2rem;
  border: 1px solid var(--rule);
  margin-top: 1.5rem;
}

.form-status h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.form-status p {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.form-status--success {
  border-color: #2d6a4f;
  background: rgba(45, 106, 79, 0.05);
}

.form-status--error {
  border-color: var(--red);
  background: rgba(139, 35, 50, 0.05);
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(10, 31, 68, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
}

.sticky-cta--visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(247, 244, 236, 0.7);
}

.sticky-cta__link {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ivory);
  border: 1px solid rgba(247, 244, 236, 0.4);
  padding: 10px 24px;
  text-decoration: none;
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sticky-cta__link::after {
  content: '\2192';
  transition: transform 0.3s var(--ease-out);
}

.sticky-cta__link:hover {
  background: var(--ivory);
  color: var(--navy);
  border-color: var(--ivory);
}

.sticky-cta__link:hover::after {
  transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--navy);
  color: rgba(247, 244, 236, 0.6);
  padding: 80px 0 40px;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247, 244, 236, 0.1);
}

.footer__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9375rem;
  color: rgba(247, 244, 236, 0.5);
  margin-top: 1.5rem;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__nav-group h4 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 244, 236, 0.4);
  margin-bottom: 1rem;
}

.footer__nav-group ul { list-style: none; }
.footer__nav-group li { margin-bottom: 0.5rem; }

.footer__nav-group a {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  color: rgba(247, 244, 236, 0.6);
  text-decoration: none;
  transition: color var(--duration-fast) ease;
}

.footer__nav-group a:hover {
  color: var(--ivory);
}

.footer__bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
}

.footer__firm-line { color: rgba(247, 244, 236, 0.4); }

.footer__legal { display: flex; gap: 1.5rem; }

.footer__legal a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(247, 244, 236, 0.4);
}

.footer__legal a:hover { color: rgba(247, 244, 236, 0.6); }

/* ============================================
   UTILITIES
   ============================================ */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-center { text-align: center; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .container,
  .nav__inner,
  .footer__inner,
  .sticky-cta__inner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

  .method-scroll__step {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .method-scroll__step-visual {
    display: none;
  }

  .method-scroll__thread { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-spacing: 80px;
    --subsection-spacing: 48px;
  }

  .container,
  .nav__inner,
  .footer__inner,
  .sticky-cta__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    padding-top: 140px;
    min-height: auto;
  }

  .hero__title {
    font-size: 2.25rem;
  }

  .pull-quote--editorial p,
  .pull-quote p {
    font-size: 1.375rem;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: rgba(247, 244, 236, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem 24px 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--rule);
  }

  .nav__links--open { display: flex; }
  .nav__toggle { display: block; }

  .nav__link::after { display: none; }

  .method-grid,
  .division-grid,
  .framework-grid,
  .industry-grid,
  .standard-grid {
    grid-template-columns: 1fr;
  }

  .insight-categories {
    grid-template-columns: 1fr;
  }

  .insight-categories__item {
    border-left: none;
    border-top: 1px solid var(--rule);
    padding-left: 0;
  }

  .insight-categories__item:first-child {
    border-top: none;
  }

  .stage-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footer__top { grid-template-columns: 1fr; gap: 3rem; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }

  .timeline__nav { overflow-x: auto; }

  .sticky-cta__text { display: none; }
  .sticky-cta__inner { justify-content: center; }

  .framework-card__body p { padding-left: 0; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.875rem; }
  .footer__nav { grid-template-columns: 1fr; }
}

/* ============================================
   PREFERS REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .hero__label,
  .hero__title .word,
  .hero__desc,
  .hero__ctas,
  .hero__quote,
  .page-header h1,
  .page-header p,
  .page-header .label {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .method-scroll__step {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .nav, .sticky-cta, .nav__toggle, .footer__legal { display: none; }
  .hero, .page-header { background: none; color: #000; }
  .section--navy { background: none; color: #000; }
  .section--navy h1, .section--navy h2, .section--navy h3,
  .section--navy p, .section--navy blockquote { color: #000; }
  body { font-size: 12pt; line-height: 1.5; color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
