/* ============================================
   Cindy Tyeskey-Gage — Executive Site
   Palette: warm & refined, yet confident
   ============================================ */

:root {
  --cream: #F7F2E8;
  --cream-deep: #EFE5D2;
  --ink: #241F1B;
  --taupe: #6E6153;
  --taupe-soft: #948572;
  --gold: #AD8A54;
  --gold-soft: #D9C8A6;
  --wine: #7C2D3B;
  --wine-dark: #611f2b;
  --line: #E1D5BE;
  --cream-rgb: 247, 242, 232;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max: 1160px;
  --max-narrow: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
  margin: 0;
}

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}
.wrap-narrow {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 0 28px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.eyebrow-center { text-align: center; }

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(var(--cream-rgb), 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--taupe);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--wine); }
.nav-cta {
  border: 1px solid var(--ink);
  border-radius: 100px;
  padding: 8px 18px !important;
  color: var(--ink) !important;
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--cream) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary {
  background: var(--wine);
  color: var(--cream);
  padding: 15px 30px;
  border-radius: 4px;
  border: 1px solid var(--wine);
}
.btn-primary:hover {
  background: var(--wine-dark);
  border-color: var(--wine-dark);
}
.btn-text {
  color: var(--ink);
  padding: 15px 6px;
  border-bottom: 1px solid var(--line);
}
.btn-text:hover { border-color: var(--wine); color: var(--wine); }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 88px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.hero-sub {
  margin-top: 22px;
  font-size: 17.5px;
  color: var(--taupe);
  max-width: 52ch;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.hero-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.18);
}

/* ---------- Positioning / How I Lead ---------- */
.positioning {
  padding: 84px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.positioning-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}

/* ---------- Video frame (shared: How I Lead + Agentic Shift videos) ---------- */
.video-frame {
  flex: none;
  max-width: 300px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  border-radius: 16px;
  padding: 14px 14px 16px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.16);
}
.video-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 9px;
  display: block;
  background: var(--ink);
}
.video-frame-caption {
  margin: 14px 2px 0;
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.5;
  text-align: center;
}
.video-frame--compact { max-width: 220px; padding: 10px 10px 12px; }
.video-frame--compact .video-frame-caption { margin-top: 10px; font-size: 12.5px; }

.positioning blockquote {
  margin: 0;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  text-wrap: balance;
}
.positioning-body {
  margin: 24px 0 0;
  color: var(--taupe);
  font-size: 16.5px;
  max-width: 62ch;
}

/* ---------- Agentic AI Impact ---------- */
.agentic {
  padding: 88px 0;
}
.agentic-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.agentic-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.16);
}
.agentic-media-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.agentic-media-photos { display: flex; flex-direction: column; }
.agentic-content h2 {
  font-size: clamp(22px, 2.4vw, 30px);
  max-width: 24ch;
  margin: 6px 0 0;
}
.agentic-content p {
  margin: 20px 0 0;
  color: var(--taupe);
  font-size: 16px;
  line-height: 1.6;
  max-width: 58ch;
}
.agentic-event-card {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  max-width: 58ch;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.agentic-event-card img {
  width: 56px;
  height: 84px;
  object-fit: cover;
  border-radius: 6px;
  flex: none;
  box-shadow: none;
}
.agentic-event-card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--taupe);
  line-height: 1.5;
}
.agentic-event-card p span {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 2px;
}

/* ---------- Impact stats ---------- */
.impact { padding: 88px 0; }
.impact h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-top: 6px;
  max-width: 24ch;
}
.stat-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.stat-tile {
  background: var(--cream);
  padding: 32px 26px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--wine);
  font-variant-numeric: tabular-nums;
  margin: 0 0 12px;
}
.stat-label {
  margin: 0;
  font-size: 14.5px;
  color: var(--taupe);
  line-height: 1.55;
}

/* ---------- Readiness scorecard ---------- */
.readiness {
  padding: 72px 0 88px;
  background: linear-gradient(160deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--cream);
}
.readiness .eyebrow { color: var(--gold-soft); }
.readiness h2 {
  color: var(--cream);
  font-size: clamp(24px, 2.6vw, 32px);
  max-width: 34ch;
  margin-top: 6px;
}
.readiness-note {
  margin: 16px 0 0;
  max-width: 58ch;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(247, 242, 232, 0.72);
  font-style: italic;
  font-family: var(--font-accent);
  font-size: 18px;
}
.readiness-tally {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 22px 0 0;
}
.tally-number {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--gold-soft);
  font-variant-numeric: tabular-nums;
}
.tally-label {
  font-size: 15px;
  color: rgba(247, 242, 232, 0.72);
}
.score-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
}
.score-item {
  position: relative;
  border-top: 1px solid rgba(247, 242, 232, 0.14);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease, background 0.25s ease;
  border-radius: 6px;
}
.score-item:last-child { border-bottom: 1px solid rgba(247, 242, 232, 0.14); }
.score-item.is-visible { opacity: 1; transform: none; }
.score-item:hover { background: rgba(247, 242, 232, 0.05); }

.score-num {
  position: absolute;
  right: 4px;
  top: 8px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: rgba(247, 242, 232, 0.09);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.score-item details { padding: 4px 0; }
.score-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}
.score-item summary::-webkit-details-marker { display: none; }
.score-item summary::marker { content: ""; }

.score-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--ink);
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.4s ease 0.15s, opacity 0.4s ease 0.15s;
}
.score-item.is-visible .score-check { transform: scale(1); opacity: 1; }

.score-req {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--gold-soft);
  flex: 1;
}
.score-chevron {
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(247, 242, 232, 0.5);
  border-bottom: 2px solid rgba(247, 242, 232, 0.5);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-right: 2px;
}
.score-item details[open] .score-chevron { transform: rotate(225deg); }

.score-fact {
  margin: 0 0 20px 44px;
  font-size: 15.5px;
  color: rgba(247, 242, 232, 0.86);
  line-height: 1.6;
  max-width: 62ch;
}

/* ---------- Career timeline ---------- */
.career { padding: 88px 0; }
.career h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin-top: 6px;
  max-width: 26ch;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--line);
}
.timeline li.tl-era {
  position: relative;
  padding: 0 0 44px 32px;
}
.timeline li.tl-era::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold);
}
.timeline li.tl-current-company::before { background: var(--wine); border-color: var(--wine); }
.timeline li.tl-era:last-child { padding-bottom: 0; }

.tl-era-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.tl-logo {
  height: 30px;
  width: 78px;
  object-fit: contain;
  object-position: left center;
}
.tl-date {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.tl-body h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.tl-body p {
  margin: 0;
  color: var(--taupe);
  font-size: 15.5px;
  max-width: 62ch;
}
.tl-summary {
  font-style: italic;
  font-family: var(--font-accent);
  font-size: 18px !important;
  color: var(--ink) !important;
  margin: 4px 0 22px !important;
}

/* Nested Salesforce sub-timeline (promotions within one company) */
.tl-sub {
  list-style: none;
  margin: 4px 0 0;
  padding: 0 0 0 24px;
  border-left: 2px solid var(--gold-soft);
}
.tl-sub-item {
  position: relative;
  padding: 0 0 22px 22px;
}
.tl-sub-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--gold-soft);
}
.tl-sub-item.tl-sub-current::before { background: var(--wine); border-color: var(--wine); }
.tl-sub-item:last-child { padding-bottom: 0; }
.tl-sub-date {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 4px;
}
.tl-sub-body h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 4px;
  text-wrap: balance;
}
.tl-sub-body p {
  margin: 0;
  color: var(--taupe);
  font-size: 14.5px;
  max-width: 60ch;
}

/* ---------- Leadership ---------- */
.leadership {
  padding: 88px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.leadership-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.leadership-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.16);
}
.leadership-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.leadership-photos img {
  height: 100%;
  object-fit: cover;
}
.leadership-photo-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
.leadership-photos img:not(.leadership-photo-main) {
  aspect-ratio: 4 / 5;
}
.leadership-content h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  max-width: 22ch;
  margin: 6px 0 0;
}
.leadership-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.leadership-grid p {
  margin: 0;
  font-size: 15.5px;
  color: var(--taupe);
  line-height: 1.6;
}
.leadership-grid strong { color: var(--ink); }

/* ---------- Global Impact map ---------- */
.global-impact { padding: 88px 0 76px; }
.global-impact h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-top: 6px;
  max-width: 34ch;
}
.map-cta { margin: 18px 0 0; }
.map-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--wine);
  background: var(--cream-deep);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
}
.world-map {
  position: relative;
  margin-top: 40px;
  aspect-ratio: 2000 / 1039;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.world-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  font-family: var(--font-body);
}
.map-pin-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--wine);
  border: 3px solid var(--gold-soft);
  box-shadow: 0 0 0 0 rgba(124, 45, 59, 0.5);
  animation: pinPulse 2.6s ease-out infinite;
}
@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 45, 59, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(124, 45, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 45, 59, 0); }
}
.map-pin-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(36, 31, 27, 0.1);
  transition: transform 0.2s ease, background 0.2s ease;
}
.map-pin:hover .map-pin-label,
.map-pin:focus-visible .map-pin-label {
  background: var(--wine);
  color: var(--cream);
  transform: translateY(-2px);
}
.map-pin:hover .map-pin-dot,
.map-pin:focus-visible .map-pin-dot {
  background: var(--gold);
}
.map-pin--label-above {
  flex-direction: column-reverse;
}
.map-footnote {
  margin: 18px 0 0;
  font-size: 13.5px;
  color: var(--taupe-soft);
  font-style: italic;
}

/* ---------- Region modal + carousel ---------- */
.region-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.region-modal[aria-hidden="true"] { display: none; }
.region-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 31, 27, 0.72);
}
.region-modal-panel {
  position: relative;
  background: var(--cream);
  border-radius: 14px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}
.region-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(36, 31, 27, 0.55);
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.region-carousel {
  position: relative;
  background: var(--ink);
  aspect-ratio: 4 / 3;
}
.region-carousel-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--ink);
  display: block;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(247, 242, 232, 0.85);
  color: var(--ink);
  font-size: 18px;
  cursor: pointer;
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}
.carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247, 242, 232, 0.4);
}
.carousel-dots span.is-active { background: var(--gold-soft); }
.region-modal-body { padding: 22px 26px 26px; }
.region-modal-title {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 8px;
}
.region-modal-desc {
  margin: 0;
  font-size: 15px;
  color: var(--taupe);
  line-height: 1.6;
}

/* ---------- Executive Leadership ---------- */
.executive-leadership { padding: 88px 0; background: var(--cream-deep); border-top: 1px solid var(--line); }
.executive-leadership h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin-top: 6px;
  max-width: 34ch;
}
.exec-feature {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 56px;
}
.exec-feature-media img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.16);
}
.exec-strip { grid-template-columns: repeat(3, 1fr); margin-top: 10px; gap: 10px; background: transparent; }
.exec-strip img { height: 100px; border-radius: 6px; }
.exec-feature-content p {
  margin: 0 0 16px;
  color: var(--taupe);
  font-size: 16px;
  line-height: 1.65;
}
.exec-feature-content p:last-child { margin-bottom: 0; }

.recognition-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 26px;
}
.rec-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.rec-card:not(.has-media) { border-top: 3px solid var(--gold); }
.rec-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}
.rec-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.rec-media.has-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 31, 27, 0.25);
}
.rec-media.has-video::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--cream);
  transform: translate(-42%, -50%);
  z-index: 2;
}
.rec-card:hover .rec-media img { transform: scale(1.04); }

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: var(--cream);
}
.photo-strip img {
  width: 100%;
  height: 64px;
  object-fit: cover;
  display: block;
}
.agentic-media .photo-strip,
.leadership-strip {
  margin-top: 14px;
  gap: 10px;
  background: transparent;
}
.agentic-media .photo-strip img,
.leadership-strip img {
  height: 110px;
  border-radius: 6px;
}
.leadership-strip { grid-column: 1 / -1; }
.leadership-strip--triple { grid-template-columns: repeat(3, 1fr); }
.about-strip {
  grid-template-columns: 1fr;
  max-width: 240px;
  margin-top: 12px;
  background: transparent;
}
.about-strip img { height: 140px; border-radius: 6px; }
.rec-body { padding: 18px 20px 22px; }
.rec-card:not(.has-media) .rec-body { padding-top: 20px; }
.rec-year {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14.5px;
  color: var(--gold);
  margin-bottom: 6px;
}
.rec-desc {
  margin: 0;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.5;
}

/* ---------- About figure ---------- */
.about-figure { margin: 36px 0; }
.about-figure img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(36, 31, 27, 0.16);
}
.about-figure figcaption {
  margin-top: 18px;
  font-size: 16.5px;
  color: var(--taupe);
}

/* ---------- About ---------- */
.about { padding: 96px 0; }
.about-lead {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 27px);
  text-align: center;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 36px;
}
.about p { font-size: 16.5px; color: var(--taupe); }
.about-close {
  margin-top: 30px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
}

/* ---------- Connect ---------- */
.connect {
  padding: 96px 0 104px;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}
.connect h2 { font-size: clamp(26px, 3vw, 34px); margin-top: 6px; }
.connect-sub {
  margin: 20px auto 0;
  text-align: center;
  color: var(--taupe);
  font-size: 16.5px;
  max-width: 56ch;
}
.connect-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer { padding: 40px 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.footer-name {
  font-family: var(--font-display);
  font-size: 15px;
  margin: 0;
  color: var(--ink);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 14px; color: var(--taupe); text-decoration: none; }
.footer-links a:hover { color: var(--wine); }
.footer-copy { margin: 0; font-size: 12.5px; color: var(--taupe-soft); width: 100%; text-align: center; order: 3; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { order: -1; max-width: 320px; margin: 0 auto; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-inner { grid-template-columns: 1fr; gap: 32px; }
  .leadership-media { order: -1; max-width: 420px; margin: 0 auto; }
  .leadership-content h2, .leadership-content .eyebrow { text-align: center; }
  .positioning-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .video-frame { margin: 0 auto; }
  .positioning blockquote, .positioning-body { text-align: center; margin-left: auto; margin-right: auto; }
  .agentic-inner { grid-template-columns: 1fr; gap: 32px; }
  .agentic-media { order: -1; max-width: 460px; margin: 0 auto; }
  .agentic-media-grid { grid-template-columns: 1fr; justify-items: center; }
  .agentic-content h2, .agentic-content p, .agentic-event-card { max-width: none; }
  .score-fact { margin-left: 44px; }
  .recognition-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  .exec-feature { grid-template-columns: 1fr; gap: 28px; }
  .exec-feature-media { order: -1; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 680px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 28px 22px;
    gap: 16px;
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { order: 10; }
  .stat-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-copy { order: 3; }
  .score-req { font-size: 15.5px; }
  .score-fact { margin-left: 0; }
  .tl-era-head { flex-wrap: wrap; gap: 10px; }
  .recognition-grid { grid-template-columns: 1fr 1fr; }
  .map-pin-label { font-size: 10.5px; padding: 2px 7px; }
  .exec-strip { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .exec-strip img { height: 70px; }
  .region-modal-body { padding: 16px 18px 20px; }
  .carousel-arrow { width: 32px; height: 32px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
