/* =============================================
   WEST EXEC PARTNERS LLC - Stylesheet
   Boutique National Security & Strategic Advisory
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Navy & Gold palette вЂ” authority, trust, prestige */
  --navy-900: #0a1628;
  --navy-800: #0f2044;
  --navy-700: #152d5e;
  --navy-600: #1b3a78;
  --navy-500: #1e4d8c;
  --blue-accent: #2563eb;
  --gold-500: #b8922f;
  --gold-400: #d4a843;
  --gold-300: #e6c35a;
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f1f3f5;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --gray-900: #212529;

  --font-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1200px;
  --header-height: 72px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy-700);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-500);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center {
  text-align: center;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-800);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--navy-800);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--navy-700);
  color: var(--white);
  border-color: var(--navy-700);
}

.btn-primary:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--white);
}

/* Hero-specific button with white border for visibility on dark backgrounds */
.hero .btn-primary {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
  font-size: 1rem;
  padding: 1.1rem 3.5rem;
}

.hero .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--navy-800);
}

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: 0.02em;
}

.logo-llc {
  font-weight: 400;
  font-size: 0.9em;
  color: var(--gray-500);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
  padding: 0.25rem 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--navy-800);
}

.nav-link:hover::after {
  width: 100%;
}

.header-linkedin {
  color: var(--gray-500);
  transition: color 0.2s;
}

.header-linkedin:hover {
  color: var(--blue-accent);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-800);
  transition: all 0.3s;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 50%, var(--navy-500) 100%);
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/photos/west-exec-dr.jpg') center/cover no-repeat;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.3) 0%, rgba(10, 22, 40, 0.6) 100%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 6rem 2rem;
}

.hero-badge {
  width: 140px;
  margin: 0 auto 2rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

/* --- Sections --- */
.section {
  padding: 6rem 0;
}

.page-hero {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  padding: 8rem 0 4rem;
  margin-top: var(--header-height);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
}

/* --- Mission --- */
.photo-credit {
  display: block;
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
  font-style: italic;
}

/* --- Scroll offset for anchors under fixed header --- */
[id] {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

/* --- Mission Section (triptych: Bush | text | Obama) --- */
.mission-section {
  background: var(--gray-50);
}

.mission-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mission-triptych {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mission-text {
  text-align: center;
}

.mission-text .section-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.mission-text p {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.7;
  text-align: justify;
}

.mission-photo img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
/* --- Leadership --- */
.leadership-section {
  background: var(--white);
}

.leader-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: start;
}

.leader-card--reverse {
  grid-template-columns: 1fr 280px;
}

.leader-card--reverse .leader-photo {
  order: 2;
}

.leader-card--reverse .leader-bio {
  order: 1;
}

.leader-photo img {
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.leader-name {
  font-size: 1.75rem;
  color: var(--navy-800);
  margin-bottom: 0.25rem;
}

.leader-title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
}

.leader-bio p {
  margin-bottom: 1rem;
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* --- History Strip --- */
.history-strip {
  position: relative;
  min-height: 300px;
  background: url('/images/photos/west-exec-flags.webp') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}

.history-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.2) 100%);
}

.history-strip .container {
  position: relative;
}

.history-content {
  padding: 2rem 0;
}

.history-caption {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
}

.history-credit {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
}

/* --- CTA --- */
.cta-section {
  background: var(--gray-50);
}

.cta-text {
  font-size: 1.125rem;
  color: var(--gray-700);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-weight: 300;
}

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  transition: box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--gold-400);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* --- Contact --- */
.contact-info {
  padding: 3rem;
  background: var(--gray-50);
  border-radius: 4px;
  border: 1px solid var(--gray-200);
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.contact-info a {
  color: var(--navy-700);
}

.contact-info a:hover {
  color: var(--gold-500);
}

.cage-code {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-top: 1rem;
}

/* --- Content Pages --- */
.content-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.content-narrow p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--gray-700);
}

/* --- Footer --- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-contact h4,
.footer-nav h4,
.footer-social h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 1.25rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--white);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.social-link:hover {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* (Orphaned responsive rules removed — proper media queries are below) */

/* --- Blog Grid --- */
.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-grid--home {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}

.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--gold-400);
  transform: translateY(-4px);
  color: inherit;
}

.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-100);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-date {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.blog-card-summary {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-top: 1rem;
}

.blog-card:hover .blog-read-more {
  color: var(--gold-500);
}

/* --- Blog Article --- */
.article-header {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  padding: 8rem 0 3rem;
  margin-top: var(--header-height);
}

.article-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.article-header .article-meta {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.article-header .article-meta strong {
  color: #ffffff;
  font-weight: 700;
}

.article-header .article-role {
  font-style: italic;
  color: #ffffff;
  font-weight: 500;
}

.article-hero {
  padding: 2.5rem 0 0;
}

.article-hero-img {
  border-radius: 4px;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

.article-body {
  padding: 3rem 0;
}

.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy-800);
}

.article-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--navy-700);
}

.article-body p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.article-body ul, .article-body ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-body li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.article-body blockquote {
  border-left: 3px solid var(--gold-400);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--gray-50);
  border-radius: 0 4px 4px 0;
}

.article-body blockquote p {
  font-style: italic;
  color: var(--gray-700);
}

.article-body strong {
  color: var(--gray-900);
}

.article-footer {
  padding: 2rem 0 4rem;
  border-top: 1px solid var(--gray-200);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  background: var(--gray-100);
  color: var(--gray-500);
  border-radius: 2px;
}

/* --- Books --- */
.books-section {
  background: var(--gray-50);
}

.books-cta-text {
  font-size: 0.85rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s;
}

.book-card:hover {
  transform: translateY(-6px);
}

.book-cover {
  width: 100%;
  max-width: 180px;
  border-radius: 3px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s;
}

.book-card:hover .book-cover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.book-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-top: 1rem;
  line-height: 1.3;
}

/* --- About --- */
.about-narrative {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--gray-700);
}

.about-quote {
  border-left: 3px solid var(--gold-400);
  margin: 2rem 0 0;
  padding: 1.25rem 1.5rem;
  background: var(--gray-50);
  border-radius: 0 4px 4px 0;
}

.about-quote p {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy-800);
  margin-bottom: 0.5rem;
}

.about-quote cite {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--gold-500);
}

.about-photo img {
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* --- Contact strip --- */
.contact-strip {
  background: var(--navy-800);
  padding: 4rem 0;
}

.contact-strip .section-heading {
  color: var(--white);
}

.contact-strip-email a {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-strip-email a:hover {
  color: var(--gold-400);
}

/* --- Link arrows --- */
.link-arrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-top: 0.5rem;
}

.link-arrow:hover {
  color: var(--gold-500);
}

/* --- Blog Preview Section --- */
.blog-preview-section {
  background: var(--gray-50);
}

/* (Orphaned responsive additions removed — proper media queries are below) */

/* --- Article Navigation (prev/next) --- */
.article-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.article-nav-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 1rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.article-nav-link:hover {
  background: var(--gray-50);
}

.article-nav-prev {
  text-align: left;
}

.article-nav-next {
  text-align: right;
}

.article-nav-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.35rem;
}

.article-nav-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy-800);
  line-height: 1.3;
}

.article-nav-link:hover .article-nav-title {
  color: var(--gold-500);
}

.article-nav-all {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-700);
  align-self: center;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 3px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.article-nav-all:hover {
  border-color: var(--gold-400);
  color: var(--gold-500);
}

/* --- Footer Brand Name --- */
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 1rem;
}

/* --- Affiliations Section (white, edge-to-edge) --- */
.affiliations-section {
  background: var(--white);
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-200);
}

.affiliations-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.affiliations-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}

.affiliations-row--orgs {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
  gap: 2.5rem;
}

.affiliation-badge {
  height: 120px;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
}

.affiliation-badge--sm {
  height: 52px;
}

.affiliation-badge:hover {
  opacity: 1;
  transform: scale(1.06);
}

/* ==========================================================================
   RESPONSIVE - Mobile Optimization
   ========================================================================== */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
  .mission-triptych {
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .books-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    max-width: 400px;
  }

  .leader-card,
  .leader-card--reverse {
    gap: 2rem;
  }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  /* Navigation */
  .nav-list {
    display: none;
  }

  .header-linkedin {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav.open .nav-list {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    z-index: 99;
    gap: 0;
  }

  .main-nav.open .nav-link {
    padding: 0.6rem 1.75rem;
    display: block;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .main-nav.open .nav-list li:last-child .nav-link {
    border-bottom: none;
  }

  /* Hero */
  .hero {
    min-height: 60vh;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-content {
    padding: 3rem 1.5rem;
  }

  .hero-badge {
    width: 100px;
  }

  /* Sections */
  .section {
    padding: 3.5rem 0;
  }

  .section-heading {
    font-size: 1.75rem;
  }

  .section-eyebrow {
    font-size: 0.7rem;
  }

  /* Mission */
  .mission-triptych {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .mission-photo--left {
    order: 1;
  }

  .mission-text {
    order: 0;
    text-align: left;
  }

  .mission-text p {
    text-align: left;
  }

  .mission-photo--right {
    order: 2;
  }

  /* Leadership */
  .leader-card,
  .leader-card--reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leader-card--reverse .leader-photo,
  .leader-card--reverse .leader-bio {
    order: unset;
  }

  .leader-photo {
    max-width: 200px;
    margin: 0 auto;
  }

  .leader-name {
    font-size: 1.3rem;
  }

  /* Blog */
  .blog-grid,
  .blog-grid--home {
    grid-template-columns: 1fr;
  }

  .blog-card-title {
    font-size: 1.1rem;
  }

  /* Blog Article */
  .article-header {
    padding: 6rem 0 2rem;
  }

  .article-title {
    font-size: 1.6rem;
  }

  .article-body {
    padding: 2rem 0;
  }

  .article-body p,
  .article-body li {
    font-size: 0.95rem;
  }

  .article-nav {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .article-nav-prev,
  .article-nav-next {
    text-align: center;
  }

  .article-nav-all {
    order: -1;
    justify-self: center;
  }

  /* Books */
  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .book-cover {
    max-width: 140px;
  }

  .book-title {
    font-size: 0.85rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-quote p {
    font-size: 1.05rem;
  }

  /* History strip */
  .history-strip {
    min-height: 200px;
  }

  .history-caption {
    font-size: 1rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .affiliations-row {
    gap: 1.25rem;
  }

  .affiliation-badge {
    height: 72px;
  }

  .affiliation-badge--sm {
    height: 36px;
  }

  /* Page heroes */
  .page-hero {
    padding: 6rem 0 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  /* CTA */
  .cta-text {
    font-size: 0.95rem;
  }

  /* Contact strip */
  .contact-strip {
    padding: 2.5rem 0;
  }
}

/* --- Small Mobile (max 480px) --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-content {
    padding: 2.5rem 1rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-brand-name {
    font-size: 1.15rem;
  }

  .affiliation-badge {
    height: 56px;
  }

  .affiliation-badge--sm {
    height: 28px;
  }

  .books-grid {
    gap: 1rem;
  }

  .book-cover {
    max-width: 120px;
  }

  .article-title {
    font-size: 1.35rem;
  }

  .leader-photo {
    max-width: 160px;
  }

  .page-title {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 1rem;
  }
}