:root {
  --ink: #111114;
  --ink-soft: #1a1b20;
  --paper: #f5f3ef;
  --paper-bright: #fbfaf7;
  --white: #ffffff;
  --muted: #6d6c71;
  --muted-light: #b8b5b0;
  --line: rgba(17, 17, 20, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --burgundy: #8d1738;
  --burgundy-dark: #641028;
  --burgundy-light: #b33d5d;
  --gold: #b9975b;
  --gold-bright: #d8bd83;
  --green: #79c69a;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 12px 34px rgba(17, 17, 20, 0.08);
  --shadow-lg: 0 34px 90px rgba(17, 17, 20, 0.18);
  --container: 1180px;
  --header-height: 82px;
  --font-sans: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--burgundy); }

.skip-link {
  position: fixed;
  left: 18px;
  top: -90px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 0 0 10px 10px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--burgundy), var(--gold-bright));
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.9);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(17, 17, 20, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-profile {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
}
.brand-credentials {
  display: block;
  margin-top: 4px;
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.brand-certified {
  display: block;
  margin-top: 2px;
  color: rgba(255,255,255,0.65);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  transition: color 0.25s ease;
}
.site-header.is-scrolled .brand-credentials { color: var(--burgundy); }
.site-header.is-scrolled .brand-certified { color: var(--muted); }
.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
}
.brand-name { font-size: 17px; letter-spacing: -0.025em; }
.brand-name strong { font-weight: 800; }
.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  opacity: 0.78;
  transition: opacity 0.2s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 0.25s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.is-active { opacity: 1; }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after { transform: scaleX(1); }
.primary-nav .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--burgundy);
  border-radius: 999px;
  opacity: 1;
}
.primary-nav .nav-cta::after { display: none; }
.site-header:not(.is-scrolled) .nav-cta {
  color: var(--ink);
  background: var(--white);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 23px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 62px) 0 38px;
  color: var(--white);
  background:
    radial-gradient(circle at 83% 28%, rgba(181, 92, 36, 0.2), transparent 24%),
    radial-gradient(circle at 68% 58%, rgba(141, 23, 56, 0.2), transparent 34%),
    linear-gradient(142deg, #0c0c0f 0%, #15151a 52%, #0d0d10 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 91%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-glow-one {
  width: 720px;
  height: 720px;
  right: -270px;
  top: 5%;
  border: 1px solid rgba(216, 189, 131, 0.15);
  box-shadow: 0 0 160px rgba(141, 23, 56, 0.13) inset;
}
.hero-glow-two {
  width: 310px;
  height: 310px;
  left: -130px;
  bottom: 3%;
  border: 1px solid rgba(255,255,255,0.07);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: 54px;
}
.hero-copy {
  position: relative;
  z-index: 4;
  padding: 28px 0 20px;
}
.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow { color: rgba(255,255,255,0.66); }
.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--gold-bright);
}
.hero-role {
  margin: 0 0 18px;
  color: var(--gold-bright);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(52px, 5.55vw, 82px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.98;
}
.hero h1 em {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.045em;
}
.hero-intro {
  max-width: 630px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.78;
}
.hero-intro strong { color: var(--white); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--burgundy); }
.button-primary:hover { background: var(--burgundy-light); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,0.24); background: rgba(255,255,255,0.035); }
.button-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.075); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--gold-bright); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--burgundy); }
.hero-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 39px;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hero-credentials > div {
  min-width: 0;
  padding: 17px 17px 18px;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.hero-credentials > div:first-child { padding-left: 0; }
.hero-credentials > div:last-child { border-right: 0; }
.hero-credentials strong {
  display: block;
  color: var(--white);
  font-size: 19px;
  letter-spacing: -0.04em;
}
.hero-credentials span {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-gallery {
  position: relative;
  min-height: 700px;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  background: #18181b;
  box-shadow: 0 38px 110px rgba(0,0,0,0.48);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.14), inset 0 -130px 120px rgba(0,0,0,0.42);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo-secondary {
  z-index: 3;
  top: 8px;
  right: 4%;
  bottom: auto;
  left: auto;
  width: min(74%, 500px);
  aspect-ratio: 1076 / 1461;
  border: 8px solid rgba(18,18,22,0.96);
  border-radius: 14px 48px 14px 48px;
  transform: rotate(-1.6deg);
}

  z-index: 3;
  left: 0;
  bottom: 28px;
  width: min(41%, 270px);
  aspect-ratio: 1076 / 1461;
  border: 8px solid rgba(18,18,22,0.96);
  border-radius: 28px 4px 28px 4px;
  transform: rotate(-3.2deg);
}
.hero-photo-secondary img { object-position: center top; }
.hero-photo-secondary figcaption {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  flex-direction: column;
  color: var(--white);
  text-align: right;
}
.hero-photo-secondary figcaption strong {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 600;
}

.hero-availability {
  position: absolute;
  z-index: 5;
  right: -6px;
  bottom: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: rgba(255,255,255,0.76);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(13,13,16,0.76);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(121,198,154,0.12);
}
.proof-strip {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.13);
  border-bottom: 1px solid rgba(255,255,255,0.13);
}
.proof-item { padding: 19px 24px; border-right: 1px solid rgba(255,255,255,0.13); }
.proof-item:first-child { padding-left: 0; }
.proof-item:last-child { border-right: 0; }
.proof-item strong { display: block; color: var(--white); font-size: 14px; letter-spacing: -0.02em; }
.proof-item span { display: block; margin-top: 3px; color: rgba(255,255,255,0.45); font-size: 9px; line-height: 1.5; }


.section { padding: 120px 0; }
.section-heading { max-width: 760px; }
.section-heading h2,
.career-intro h2,
.training-copy h2,
.contact-copy h2,
.media-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.07;
}
.section-kicker.light { color: var(--gold-bright); }
.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}
.split-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
}
.profile-section { background: var(--paper-bright); }
.profile-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1.15fr);
  gap: 100px;
}
.profile-body { max-width: 680px; }
.profile-body > p { margin: 0 0 20px; color: var(--muted); }
.profile-body .lead { color: var(--ink); font-size: 20px; line-height: 1.65; letter-spacing: -0.02em; }
.profile-body blockquote {
  position: relative;
  margin: 42px 0;
  padding: 30px 34px 30px 58px;
  color: var(--ink);
  border-left: 3px solid var(--burgundy);
  background: var(--paper);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
}
.profile-body blockquote > span { position: absolute; left: 22px; top: 15px; color: var(--gold); font-size: 48px; }
.leadership-list { border-top: 1px solid var(--line); }
.leadership-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.role-index { color: var(--burgundy); font-size: 10px; font-weight: 800; letter-spacing: 0.08em; }
.leadership-list h3 { margin: 0; font-size: 16px; letter-spacing: -0.02em; }
.leadership-list p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }

.expertise-section { background: var(--paper); }
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.expertise-card {
  position: relative;
  min-height: 320px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.56);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.expertise-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(141,23,56,0.12);
  border-radius: 50%;
  transition: transform 0.35s ease;
}
.expertise-card:hover { transform: translateY(-6px); background: var(--white); box-shadow: var(--shadow-sm); }
.expertise-card:hover::after { transform: scale(1.18); }
.expertise-number { position: absolute; top: 22px; right: 24px; color: rgba(17,17,20,0.28); font-size: 10px; font-weight: 800; }
.expertise-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 34px;
  color: var(--burgundy);
  border: 1px solid rgba(141,23,56,0.2);
  border-radius: 50%;
  background: rgba(141,23,56,0.045);
}
.expertise-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.expertise-card h3 { max-width: 260px; margin: 0 0 12px; font-size: 20px; letter-spacing: -0.035em; line-height: 1.25; }
.expertise-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.work-section { background: var(--paper-bright); }
.work-heading { align-items: end; }
.filter-controls { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.filter-button {
  padding: 9px 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.filter-button:hover,
.filter-button.is-active { color: var(--white); border-color: var(--ink); background: var(--ink); }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.project-card {
  display: flex;
  grid-column: span 6;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(17,17,20,0.04);
  transition: opacity 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card.is-hidden { display: none; }
.project-card.project-featured,
.project-card.project-wide { grid-column: span 12; display: grid; grid-template-columns: 1.08fr 0.92fr; min-height: 440px; }
.project-visual {
  position: relative;
  min-height: 225px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.project-featured .project-visual,
.project-wide .project-visual { min-height: 100%; }
.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 25%, rgba(0,0,0,0.35));
}
.visual-code {
  position: absolute;
  z-index: 2;
  left: 34px;
  bottom: 26px;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.8;
}
.visual-caption {
  position: absolute;
  z-index: 2;
  left: 38px;
  bottom: 18px;
  color: rgba(255,255,255,0.64);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.visual-year { position: absolute; z-index: 3; right: 24px; top: 22px; color: rgba(255,255,255,0.68); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; }
.visual-qifmce { background: linear-gradient(135deg, #3c0a1c, #8d1738 58%, #15151a); }
.visual-qifmce .visual-code { bottom: 50px; color: rgba(255,255,255,0.94); }
.visual-line { position: absolute; z-index: 1; width: 150%; height: 1px; left: -20%; background: rgba(255,255,255,0.18); transform-origin: left; }
.line-a { top: 28%; transform: rotate(15deg); }
.line-b { top: 52%; transform: rotate(-10deg); }
.line-c { top: 74%; transform: rotate(8deg); }
.visual-qifmce::before { content: ""; position: absolute; width: 270px; height: 270px; right: 7%; top: 12%; border: 1px solid rgba(216,189,131,0.45); border-radius: 50%; box-shadow: 0 0 0 30px rgba(216,189,131,0.04), 0 0 0 65px rgba(216,189,131,0.03); }
.visual-transport { background: linear-gradient(145deg, #1e2936, #334c60); }
.route-path { position: absolute; left: 13%; right: 12%; top: 47%; height: 2px; background: rgba(255,255,255,0.3); transform: rotate(-8deg); }
.route-dot { position: absolute; z-index: 2; width: 15px; height: 15px; border: 3px solid rgba(255,255,255,0.8); border-radius: 50%; background: #334c60; }
.dot-a { left: 14%; top: 56%; }.dot-b { left: 49%; top: 43%; }.dot-c { right: 15%; top: 32%; }
.visual-gulf { background: linear-gradient(145deg, #164f4c, #287a6c); }
.visual-gulf .visual-code { bottom: 56px; }
.visual-gulf .visual-caption { bottom: 26px; }
.eco-ring { position: absolute; border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; }
.ring-a { width: 210px; height: 210px; right: 5%; top: -40px; }
.ring-b { width: 130px; height: 130px; right: 22%; top: 60px; border-color: rgba(216,189,131,0.45); }
.visual-worldcup { background: linear-gradient(145deg, #341c62, #8d1738 75%, #d09a42); }
.visual-worldcup .visual-code { bottom: 68px; color: var(--gold-bright); }
.visual-worldcup .visual-caption { bottom: 33px; color: rgba(255,255,255,0.75); }
.cabin { position: absolute; bottom: 16%; width: 78px; height: 42px; border: 1px solid rgba(255,255,255,0.55); border-radius: 4px; background: rgba(255,255,255,0.07); }
.cabin::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(255,255,255,0.25); }
.cabin-a { right: 8%; }.cabin-b { right: 24%; bottom: 33%; }.cabin-c { right: 40%; bottom: 18%; }.cabin-d { right: 18%; bottom: 6%; }
.visual-finance { background: linear-gradient(145deg, #1f1f25, #4a3b28); }
.arch { position: absolute; bottom: -50px; width: 110px; height: 180px; border: 1px solid rgba(216,189,131,0.5); border-radius: 60px 60px 0 0; }
.arch-a { right: 8%; }.arch-b { right: 30%; height: 145px; }.arch-c { right: 49%; height: 115px; }
.visual-udc { background: linear-gradient(145deg, #173f32, #327b58); }
.field-line { position: absolute; border: 1px solid rgba(255,255,255,0.38); }
.field-a { inset: 18% 9%; }.field-b { top: 18%; bottom: 18%; left: 50%; width: 1px; background: rgba(255,255,255,0.38); }
.field-circle { position: absolute; width: 90px; height: 90px; left: calc(50% - 45px); top: calc(50% - 45px); border: 1px solid rgba(255,255,255,0.38); border-radius: 50%; }
.project-content { display: flex; flex: 1; flex-direction: column; padding: 30px 32px 32px; }
.project-featured .project-content,
.project-wide .project-content { justify-content: center; padding: 48px; }
.project-meta { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 17px; color: var(--burgundy); font-size: 9px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; }
.project-meta span:last-child { color: var(--muted); }
.project-content h3 { margin: 0; font-size: 25px; letter-spacing: -0.045em; line-height: 1.2; }
.project-featured .project-content h3,
.project-wide .project-content h3 { font-size: clamp(28px, 3vw, 42px); }
.project-content > p { margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.project-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.project-metrics li { padding-top: 14px; border-top: 1px solid var(--line); }
.project-metrics strong { display: block; font-size: 18px; letter-spacing: -0.04em; }
.project-metrics span { color: var(--muted); font-size: 9px; text-transform: uppercase; letter-spacing: 0.05em; }
.project-link { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; margin-top: auto; padding: 20px 0 0; color: var(--ink); border: 0; border-top: 1px solid var(--line); background: transparent; font-size: 11px; font-weight: 800; cursor: pointer; text-align: left; }
.project-content > p + .project-link { margin-top: auto; }
.project-link:hover { color: var(--burgundy); }

.career-section { color: var(--white); background: var(--ink); }
.career-grid { display: grid; grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr); gap: 110px; }
.career-intro { position: sticky; top: 130px; align-self: start; }
.career-intro p:last-child { max-width: 480px; margin: 24px 0 0; color: rgba(255,255,255,0.56); }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li { display: grid; grid-template-columns: 130px 1fr; gap: 28px; padding: 32px 0; border-top: 1px solid var(--line-dark); }
.timeline li:last-child { border-bottom: 1px solid var(--line-dark); }
.timeline-year { color: var(--gold-bright); font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
.timeline h3 { margin: 0; font-size: 20px; letter-spacing: -0.035em; }
.timeline p { margin: 8px 0 0; color: rgba(255,255,255,0.55); font-size: 13px; }

.training-section {
  position: relative;
  padding: 112px 0 120px;
  color: var(--white);
  border-top: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 14% 22%, rgba(141,23,56,0.16), transparent 26%),
    radial-gradient(circle at 88% 68%, rgba(216,189,131,0.08), transparent 25%),
    var(--ink);
}
.training-shell { position: relative; }
.training-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
  align-items: end;
  gap: 86px;
  margin-bottom: 48px;
}
.training-intro h2 {
  max-width: 770px;
  margin: 0;
  font-size: clamp(40px, 4.7vw, 66px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.05;
}
.training-summary p {
  margin: 0 0 27px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.training-summary .button { width: fit-content; }
.training-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(380px, 0.66fr);
  gap: 16px;
}
.training-gallery-side {
  display: grid;
  grid-template-rows: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 16px;
}
.training-portrait-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  min-height: 0;
}
.training-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: #242429;
  box-shadow: 0 22px 65px rgba(0,0,0,0.22);
}
.training-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(0,0,0,0.78) 100%);
}
.training-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}
.training-photo:hover img { transform: scale(1.035); }
.training-photo-main { min-height: 690px; }
.training-photo-main img { object-position: 52% center; }
.training-photo-wide { min-height: 315px; }
.training-photo-wide img { object-position: center 48%; }
.training-photo-portrait { min-height: 355px; }
.training-photo-portrait img { object-position: center 17%; }
.training-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: flex;
  flex-direction: column;
}
.training-photo figcaption span {
  color: var(--gold-bright);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.training-photo figcaption strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.training-photo-main figcaption strong { max-width: 500px; font-size: 22px; }
.training-photo-portrait figcaption { right: 13px; bottom: 13px; left: 13px; }
.training-photo-portrait figcaption strong { font-size: 11px; }
.training-lower {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: start;
  gap: 60px;
  margin-top: 38px;
  padding-top: 35px;
  border-top: 1px solid var(--line-dark);
}
.training-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.training-topics span {
  padding: 10px 13px;
  color: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.025);
  font-size: 10px;
  font-weight: 700;
}
.training-method {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--line-dark);
}
.training-method > div {
  min-width: 0;
  padding: 0 12px;
  border-right: 1px solid var(--line-dark);
}
.training-method > div:last-child { border-right: 0; }
.training-method span {
  display: block;
  color: var(--gold-bright);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.training-method strong {
  display: block;
  margin-top: 7px;
  font-size: 13px;
}
.training-method small {
  display: block;
  color: rgba(255,255,255,0.42);
  font-size: 9px;
  line-height: 1.45;
}


.insights-section { background: var(--paper); }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 8px; color: var(--ink); font-size: 12px; font-weight: 800; }
.text-link:hover { color: var(--burgundy); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.article-card.article-featured { grid-column: span 2; }
.article-card a { display: flex; height: 100%; flex-direction: column; }
.article-featured a { display: grid; grid-template-columns: 1.1fr 0.9fr; }
.article-image { aspect-ratio: 16 / 10; overflow: hidden; background: #ddd; }
.article-featured .article-image { aspect-ratio: auto; min-height: 100%; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-image img { transform: scale(1.04); }
.article-copy { display: flex; flex: 1; flex-direction: column; padding: 25px; }
.article-featured .article-copy { justify-content: center; padding: 38px; }
.article-date { color: var(--burgundy); font-size: 9px; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase; }
.article-copy h3 { margin: 12px 0 0; font-size: 20px; letter-spacing: -0.035em; line-height: 1.3; }
.article-featured .article-copy h3 { font-size: 29px; }
.article-copy p { margin: 15px 0 0; color: var(--muted); font-size: 12px; }
.read-more { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 24px; color: var(--ink); font-size: 10px; font-weight: 800; }

.media-section { background: var(--paper-bright); }
.media-feature { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(350px, 0.7fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.media-image { min-height: 430px; overflow: hidden; background: #111; }
.media-image img { width: 100%; height: 100%; object-fit: cover; }
.media-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px; }
.media-copy h2 { font-size: clamp(36px, 4vw, 54px); }
.media-copy > p:not(.section-kicker) { margin: 22px 0 30px; color: var(--muted); }
.media-copy .button { align-self: flex-start; }


.social-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(141,23,56,0.09), transparent 23%),
    linear-gradient(180deg, var(--paper-bright), #efece6);
}
.social-section::before {
  content: "AA";
  position: absolute;
  right: -20px;
  bottom: -65px;
  color: rgba(17,17,20,0.025);
  font-size: clamp(210px, 29vw, 460px);
  font-weight: 800;
  letter-spacing: -0.13em;
  line-height: 0.8;
  pointer-events: none;
}
.social-heading { position: relative; z-index: 1; }
.social-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.social-card {
  --social-accent: var(--burgundy);
  position: relative;
  display: flex;
  grid-column: span 1;
  min-width: 0;
  min-height: 275px;
  flex-direction: column;
  overflow: hidden;
  padding: 27px 24px 24px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,0.76);
  box-shadow: 0 16px 48px rgba(17,17,20,0.045);
  transition: color 0.28s ease, transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}
.social-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--social-accent);
}
.social-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.06;
  transition: transform 0.35s ease;
}
.social-card:hover {
  color: var(--white);
  border-color: var(--social-accent);
  background: var(--social-accent);
  box-shadow: 0 24px 65px rgba(17,17,20,0.18);
  transform: translateY(-7px);
}
.social-card:hover::after { transform: scale(1.16); }
.social-featured {
  grid-column: span 2;
  padding-right: 40px;
}
.social-linkedin { --social-accent: #0a66c2; }
.social-facebook { --social-accent: #1877f2; }
.social-x { --social-accent: #111114; }
.social-instagram { --social-accent: #9c2d78; }
.social-tiktok { --social-accent: #16161a; }
.social-icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  color: var(--social-accent);
  border: 1px solid currentColor;
  border-radius: 50%;
  transition: color 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}
.social-card:hover .social-icon { color: var(--white); border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.08); }
.social-icon svg { width: 21px; height: 21px; fill: currentColor; }
.social-instagram .social-icon svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-instagram .social-icon .fill-dot { fill: currentColor; stroke: none; }
.social-icon-x { font-size: 17px; font-weight: 700; }
.social-platform {
  margin-top: 32px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition: color 0.28s ease;
}
.social-card:hover .social-platform { color: rgba(255,255,255,0.58); }
.social-card strong {
  margin-top: 8px;
  font-size: 19px;
  letter-spacing: -0.035em;
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.social-featured strong { font-size: 25px; }
.social-card:not(.social-featured) strong { font-size: 16px; }
.social-instagram strong,
.social-tiktok strong { font-size: 15px; letter-spacing: -0.045em; }
.social-handle {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  transition: color 0.28s ease;
}
.social-card:hover .social-handle { color: rgba(255,255,255,0.64); }
.social-arrow {
  margin-top: auto;
  align-self: flex-end;
  font-size: 22px;
  line-height: 1;
}

.contact-section { color: var(--white); background: linear-gradient(140deg, #141419, #0e0e11); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr); gap: 100px; }
.contact-copy > p:not(.section-kicker) { max-width: 530px; margin: 25px 0 0; color: rgba(255,255,255,0.58); }
.contact-links { margin-top: 46px; border-top: 1px solid var(--line-dark); }
.contact-links a { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); transition: color 0.2s ease; }
.contact-links a:hover { color: var(--gold-bright); }
.contact-links span { color: rgba(255,255,255,0.45); font-size: 10px; text-transform: uppercase; letter-spacing: 0.07em; }
.contact-links strong { font-size: 13px; font-weight: 600; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 34px; border: 1px solid var(--line-dark); border-radius: var(--radius-md); background: rgba(255,255,255,0.035); }
.form-row { display: flex; flex-direction: column; gap: 7px; }
.form-row-full { grid-column: 1 / -1; }
.form-row label { color: rgba(255,255,255,0.55); font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  outline: none;
  background: rgba(255,255,255,0.045);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-row input,
.form-row select { height: 49px; padding: 0 13px; }
.form-row textarea { min-height: 132px; padding: 12px 13px; resize: vertical; }
.form-row select option { color: var(--ink); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--gold-bright); background: rgba(255,255,255,0.07); }
.form-actions { display: flex; align-items: center; gap: 16px; margin-top: 4px; }
.copy-email { padding: 8px 0; color: rgba(255,255,255,0.6); border: 0; border-bottom: 1px solid rgba(255,255,255,0.25); background: transparent; font-size: 11px; cursor: pointer; }
.copy-email:hover { color: var(--white); }
.form-note { margin: 0; color: rgba(255,255,255,0.4); font-size: 9px; }

.site-footer { padding: 48px 0; color: var(--ink); background: var(--paper); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; align-items: end; gap: 40px; }
.brand-footer { margin-bottom: 14px; }
.footer-grid p { max-width: 460px; margin: 0; color: var(--muted); font-size: 11px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 22px; }
.footer-links a { color: var(--muted); font-size: 11px; }
.footer-links a:hover { color: var(--burgundy); }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; color: var(--muted); font-size: 10px; }
.footer-social { display: flex; gap: 7px; margin-bottom: 12px; }
.footer-social a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  font-size: 9px;
  font-weight: 800;
  text-transform: lowercase;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { color: var(--white); background: var(--burgundy); transform: translateY(-2px); }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 500;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 12px 34px rgba(0,0,0,0.22);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--burgundy); }

.project-dialog {
  width: min(calc(100% - 40px), 780px);
  max-height: calc(100svh - 40px);
  padding: 0;
  color: var(--ink);
  border: 0;
  border-radius: var(--radius-md);
  background: var(--paper-bright);
  box-shadow: 0 40px 120px rgba(0,0,0,0.4);
}
.project-dialog::backdrop { background: rgba(8,8,10,0.76); backdrop-filter: blur(8px); }
.dialog-content { padding: 52px; }
.dialog-content h2 { margin: 0; font-size: clamp(32px, 5vw, 52px); letter-spacing: -0.055em; line-height: 1.08; }
.dialog-lead { margin: 20px 0 0; color: var(--muted); font-size: 16px; }
.dialog-columns { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 42px; margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--line); }
.dialog-columns h3 { margin: 0 0 10px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.dialog-columns p,
.dialog-columns li { color: var(--muted); font-size: 13px; }
.dialog-columns p { margin: 0; }
.dialog-columns ul { margin: 0; padding-left: 18px; }
.dialog-close { position: absolute; right: 16px; top: 14px; z-index: 2; width: 39px; height: 39px; color: var(--ink); border: 1px solid var(--line); border-radius: 50%; background: var(--white); font-size: 24px; line-height: 1; cursor: pointer; }

.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 4px; }

@media (max-width: 1080px) {
  :root { --container: 960px; }
  .brand-credentials { font-size: 7px; letter-spacing: 0.035em; }
  .brand-certified { font-size: 7px; }
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.82fr); gap: 38px; }
  .hero-portrait { min-height: 520px; }
  .orbit-one { width: 470px; height: 470px; }
  .orbit-two { width: 525px; height: 525px; }
  .profile-grid { gap: 65px; }
  .expertise-card { min-height: 350px; padding: 28px; }
  .career-grid { gap: 70px; }
  .training-panel { padding: 55px; gap: 50px; }
  .media-feature { grid-template-columns: 1.1fr 0.9fr; }
  .contact-grid { gap: 55px; }
}

@media (max-width: 900px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .menu-toggle { display: block; }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 30px 24px 60px;
    color: var(--ink);
    background: var(--paper-bright);
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.28s ease;
  }
  .primary-nav.is-open { opacity: 1; transform: translateX(0); pointer-events: auto; }
  .primary-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 18px; opacity: 1; }
  .primary-nav a::after { display: none; }
  .primary-nav .nav-cta { margin-top: 20px; padding: 15px 18px; color: var(--white); background: var(--burgundy); text-align: center; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-header:not(.is-scrolled) .menu-toggle[aria-expanded="true"] { color: var(--ink); }
  .site-header:not(.is-scrolled):has(.primary-nav.is-open) { background: var(--paper-bright); color: var(--ink); }

  .hero { min-height: auto; padding-top: calc(var(--header-height) + 70px); }
  .hero-layout { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(51px, 11vw, 78px); }
  .hero-portrait { min-height: 580px; margin-top: 10px; }
  .portrait-frame { width: min(78vw, 490px); }
  .proof-strip { grid-template-columns: 1fr 1fr; }
  .proof-item:nth-child(2) { border-right: 0; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.13); }
  .proof-item:first-child { padding-left: 24px; }

  .section { padding: 90px 0; }
  .profile-grid,
  .career-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .profile-body { max-width: none; }
  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .filter-controls { justify-content: flex-start; }
  .expertise-grid { grid-template-columns: 1fr 1fr; }
  .project-card { grid-column: span 6; }
  .project-card.project-featured,
  .project-card.project-wide { grid-template-columns: 1fr; grid-column: span 12; }
  .project-featured .project-visual,
  .project-wide .project-visual { min-height: 330px; }
  .career-intro { position: static; }
  .training-panel { grid-template-columns: 1fr; }
  .training-topics span:nth-child(even) { transform: none; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .article-card.article-featured { grid-column: span 2; }
  .media-feature { grid-template-columns: 1fr; }
  .media-image { min-height: 360px; }
  .contact-form { max-width: 720px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: span 2; align-items: flex-start; padding-top: 25px; border-top: 1px solid var(--line); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand-name { display: none; }
  .site-header .brand-name { display: block; font-size: 12px; }
  .site-header .brand { gap: 6px; }
  .site-header .brand-mark { width: 34px; height: 34px; font-size: 9px; }
  .site-header .brand-profile { max-width: min(65vw, 235px); }
  .site-header .brand-credentials {
    max-width: 100%;
    margin-top: 3px;
    font-size: 5.9px;
    letter-spacing: 0.025em;
    line-height: 1.3;
    white-space: normal;
  }
  .site-header .brand-certified { margin-top: 1px; font-size: 6.2px; }
  .hero { padding-bottom: 28px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(45px, 14vw, 62px); line-height: 1.01; }
  .hero-intro { font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; justify-content: space-between; }
  .hero-portrait { min-height: 450px; }
  .portrait-frame { width: min(88vw, 390px); }
  .orbit-one { width: 390px; height: 390px; }
  .orbit-two { width: 430px; height: 430px; }
  .portrait-card-top { left: 0; top: 3%; min-width: 135px; }
  .portrait-card-bottom { right: 0; bottom: 4%; max-width: 200px; }
  .proof-strip { margin-top: 25px; }
  .proof-item { padding: 17px 12px; }
  .proof-item:first-child { padding-left: 12px; }
  .proof-item strong { font-size: 15px; }
  .proof-item span { font-size: 9px; }

  .section { padding: 76px 0; }
  .section-heading h2,
  .career-intro h2,
  .training-copy h2,
  .training-intro h2,
  .contact-copy h2,
  .media-copy h2 { font-size: clamp(34px, 10vw, 48px); }
  .profile-body .lead { font-size: 17px; }
  .profile-body blockquote { padding: 26px 24px 26px 44px; font-size: 20px; }
  .profile-body blockquote > span { left: 14px; }
  .leadership-list article { grid-template-columns: 34px 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-card { min-height: auto; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card,
  .project-card.project-featured,
  .project-card.project-wide { display: flex; grid-column: 1; min-height: auto; }
  .project-visual,
  .project-featured .project-visual,
  .project-wide .project-visual { min-height: 260px; }
  .project-featured .project-content,
  .project-wide .project-content,
  .project-content { padding: 26px; }
  .project-featured .project-content h3,
  .project-wide .project-content h3 { font-size: 28px; }
  .project-metrics { grid-template-columns: 1fr; }
  .timeline li { grid-template-columns: 1fr; gap: 8px; }
  .training-panel { padding: 34px 24px; border-radius: var(--radius-md); }
  .training-topics span { font-size: 12px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.article-featured { grid-column: 1; }
  .article-featured a { display: flex; }
  .article-featured .article-image { aspect-ratio: 16 / 10; min-height: 0; }
  .article-featured .article-copy { padding: 25px; }
  .article-featured .article-copy h3 { font-size: 23px; }
  .media-image { min-height: 230px; }
  .media-copy { padding: 32px 24px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px 18px; }
  .form-row-full { grid-column: 1; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .copy-email { align-self: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { margin-top: 10px; }
  .footer-meta { grid-column: 1; }
  .dialog-content { padding: 44px 24px 30px; }
  .dialog-columns { grid-template-columns: 1fr; gap: 24px; }
}



/* Responsive refinements for the editorial redesign */
@media (max-width: 1080px) {
  .primary-nav { gap: 16px; }
  .primary-nav a { font-size: 12px; }
  .hero-layout { grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr); gap: 34px; }
  .hero-gallery { min-height: 630px; }
  .hero-photo-secondary { width: min(78%, 500px); right: 4%; top: 8px; }
  .hero-credentials > div { padding-inline: 12px; }
  .training-intro { gap: 55px; }
  .training-gallery { grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr); }
  .training-photo-main { min-height: 620px; }
  .training-photo-wide { min-height: 286px; }
  .training-photo-portrait { min-height: 318px; }
  .training-lower { grid-template-columns: 1fr; gap: 28px; }
  .training-method { max-width: 670px; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .social-featured { grid-column: span 2; }
  .social-card { min-height: 245px; }
}

@media (max-width: 900px) {
  .hero { padding-top: calc(var(--header-height) + 56px); }
  .hero-layout { grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 770px; padding-top: 15px; }
  .hero h1 { max-width: 760px; font-size: clamp(54px, 10vw, 80px); }
  .hero-intro { max-width: 700px; }
  .hero-gallery { width: min(100%, 760px); min-height: 700px; margin: 0 auto; }
  .hero-photo-secondary { right: 4%; left: auto; top: 8px; width: min(72%, 480px); }
.hero-availability { right: 2%; }
  .proof-strip { margin-top: 32px; }
  .training-intro { grid-template-columns: 1fr; gap: 24px; }
  .training-summary { max-width: 700px; }
  .training-gallery { grid-template-columns: 1fr; }
  .training-photo-main { min-height: 480px; }
  .training-gallery-side { grid-template-rows: auto; }
  .training-photo-wide { min-height: 390px; }
  .training-photo-portrait { min-height: 440px; }
  .training-lower { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .social-featured { grid-column: span 2; }
  .social-card { min-height: 230px; }
}

@media (max-width: 640px) {
  .hero { padding-bottom: 24px; }
  .hero-copy { padding-top: 8px; }
  .hero-role { font-size: 8px; }
  .hero h1 { font-size: clamp(45px, 13.5vw, 62px); }
  .hero-intro { font-size: 14px; }
  .hero-credentials { grid-template-columns: 1fr; margin-top: 30px; }
  .hero-credentials > div,
  .hero-credentials > div:first-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .hero-credentials > div:last-child { border-bottom: 0; }
  .hero-gallery { min-height: 575px; }
  .hero-photo-secondary { right: 2%; left: auto; top: 4px; bottom: auto; width: min(82%, 360px); border-width: 6px; border-radius: 12px 34px 12px 34px; }
  .hero-photo-secondary figcaption { right: 15px; bottom: 15px; left: 15px; }
  .hero-photo-secondary figcaption strong { font-size: 14px; }
.hero-availability { right: 0; bottom: 1px; padding: 10px 12px; font-size: 7px; }
  .proof-strip { margin-top: 17px; }
  .training-section { padding: 82px 0 88px; }
  .training-intro h2 { font-size: clamp(35px, 10.5vw, 48px); }
  .training-summary p { font-size: 13px; }
  .training-gallery { gap: 12px; }
  .training-gallery-side { gap: 12px; }
  .training-portrait-pair { gap: 12px; }
  .training-photo { border-radius: 15px; }
  .training-photo-main { min-height: 330px; }
  .training-photo-wide { min-height: 270px; }
  .training-photo-portrait { min-height: 310px; }
  .training-photo figcaption { right: 15px; bottom: 14px; left: 15px; }
  .training-photo-main figcaption strong { font-size: 16px; }
  .training-method { grid-template-columns: 1fr; border-left: 0; }
  .training-method > div { padding: 13px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .training-method > div:last-child { border-bottom: 0; }
  .social-grid { grid-template-columns: 1fr; }
  .social-featured { grid-column: span 1; }
  .social-card { min-height: 210px; }
  .social-featured strong { font-size: 21px; }
  .footer-social { flex-wrap: wrap; }
}


/* Leadership affiliations on the landing page */
.hero-affiliations {
  position: relative;
  z-index: 3;
  margin-top: 18px;
}
.hero-affiliations-label {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-affiliations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.hero-affiliation-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 22px;
  min-height: 154px;
  padding: 18px 20px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.99), rgba(245,243,239,0.97));
  box-shadow: 0 22px 54px rgba(0,0,0,0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.hero-affiliation-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #7b3a96, #1bbed2);
}
.hero-affiliation-card.affiliation-foundation::before {
  background: linear-gradient(180deg, #78a936, #b27a00);
}
.hero-affiliation-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -90px;
  bottom: -105px;
  border: 1px solid rgba(17,17,20,0.08);
  border-radius: 50%;
  pointer-events: none;
  transition: transform 0.35s ease;
}
.hero-affiliation-card:hover,
.hero-affiliation-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(216,189,131,0.56);
  box-shadow: 0 30px 75px rgba(0,0,0,0.3);
}
.hero-affiliation-card:hover::after,
.hero-affiliation-card:focus-visible::after { transform: scale(1.18); }
.affiliation-logo-frame {
  display: grid;
  width: 190px;
  height: 112px;
  place-items: center;
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid rgba(17,17,20,0.08);
  border-radius: 15px;
  background: #fff;
}
.affiliation-logo-frame picture {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}
.affiliation-logo-frame img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.affiliation-expotale .affiliation-logo-frame img { width: 174px; }
.affiliation-foundation .affiliation-logo-frame img { width: 105px; }
.affiliation-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}
.affiliation-title {
  margin-bottom: 5px;
  color: #7b3a96;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}
.affiliation-foundation .affiliation-title { color: #8c6508; }
.affiliation-copy strong {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -0.035em;
  line-height: 1.25;
}
.affiliation-domain {
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.affiliation-arrow {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.76);
  font-size: 15px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.hero-affiliation-card:hover .affiliation-arrow,
.hero-affiliation-card:focus-visible .affiliation-arrow {
  color: var(--white);
  background: #7b3a96;
  transform: translate(2px,-2px);
}
.affiliation-foundation:hover .affiliation-arrow,
.affiliation-foundation:focus-visible .affiliation-arrow { background: #8c6508; }

/* Direct WhatsApp contact */
.contact-links .contact-link-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.contact-links .whatsapp-icon {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.1);
  letter-spacing: 0;
}
.contact-links .whatsapp-icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-link-whatsapp:hover .whatsapp-icon,
.contact-link-whatsapp:focus-visible .whatsapp-icon {
  box-shadow: 0 0 0 6px rgba(37,211,102,0.14);
  transform: scale(1.03);
}
.footer-social .footer-whatsapp {
  color: #fff;
  border-color: #25d366;
  background: #25d366;
}
.footer-social .footer-whatsapp:hover { background: #128c4a; }

@media (max-width: 1080px) {
  .hero-affiliation-card {
    grid-template-columns: 160px minmax(0, 1fr) 32px;
    gap: 16px;
    padding: 16px;
  }
  .affiliation-logo-frame { width: 160px; height: 102px; }
  .affiliation-expotale .affiliation-logo-frame img { width: 148px; }
  .affiliation-foundation .affiliation-logo-frame img { width: 94px; }
  .affiliation-copy strong { font-size: 14px; }
}

@media (max-width: 900px) {
  .hero-affiliations { margin-top: 16px; }
  .hero-affiliations-grid { grid-template-columns: 1fr; }
  .hero-affiliation-card {
    grid-template-columns: 210px minmax(0, 1fr) 36px;
    min-height: 142px;
    padding: 16px 20px;
  }
  .affiliation-logo-frame { width: 210px; height: 106px; }
  .affiliation-expotale .affiliation-logo-frame img { width: 182px; }
  .affiliation-foundation .affiliation-logo-frame img { width: 100px; }
  .affiliation-copy strong { font-size: 16px; }
}

@media (max-width: 640px) {
  .hero-affiliations-label { margin-bottom: 8px; }
  .hero-affiliations-grid { gap: 10px; }
  .hero-affiliation-card {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 13px;
    min-height: 0;
    padding: 16px;
    border-radius: 16px;
  }
  .affiliation-logo-frame {
    grid-column: 1 / -1;
    width: 100%;
    height: 96px;
    padding: 7px 12px;
  }
  .affiliation-expotale .affiliation-logo-frame img { width: 178px; }
  .affiliation-foundation .affiliation-logo-frame img { width: 92px; }
  .affiliation-copy strong { font-size: 15px; }
  .affiliation-title { font-size: 8px; }
  .affiliation-domain { margin-top: 5px; }
  .affiliation-arrow { align-self: center; }
  .contact-links a { grid-template-columns: 96px minmax(0,1fr); gap: 14px; }
}

@media print {
  .hero-affiliations-label { color: #333; }
  .hero-affiliation-card {
    color: #000;
    border: 1px solid #bbb;
    background: #fff;
    box-shadow: none;
    break-inside: avoid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header,
  .scroll-progress,
  .hero-actions,
  .filter-controls,
  .project-link,
  .contact-form,
  .back-to-top,
  .project-dialog { display: none !important; }
  .hero { min-height: auto; color: #000; background: #fff; }
  .hero h1, .hero-intro, .eyebrow, .hero-tags li { color: #000; }
  .hero-gallery { min-height: 420px; }
  .hero-photo { box-shadow: none; }
  .social-card { min-height: auto; break-inside: avoid; }
  .section { padding: 45px 0; }
  .career-section, .training-section, .contact-section { color: #000; background: #fff; }
  .projects-grid, .expertise-grid, .articles-grid { display: block; }
  .project-card, .expertise-card, .article-card { page-break-inside: avoid; margin-bottom: 18px; box-shadow: none; }
}


/* 2026-08 website update */
.brand-credentials strong { font-weight: 900; }
.insights-links { display: flex; align-items: center; justify-content: flex-end; gap: 18px; flex-wrap: wrap; }
.text-link-secondary { opacity: .7; }
.article-text-visual { min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; padding: 34px; color: #fff; background: linear-gradient(145deg, #111114 0%, #641028 52%, #8d1738 100%); }
.article-text-visual span { font-size: 12px; font-weight: 800; letter-spacing: .24em; opacity: .72; }
.article-text-visual strong { margin-top: 6px; font-size: clamp(34px,5vw,66px); letter-spacing: -.06em; line-height: .9; }
.article-text-visual-alt { background: linear-gradient(145deg, #16161a 0%, #2d2330 50%, #b9975b 140%); }
.article-featured .article-text-visual { min-height: 100%; }
.social-threads { --social-accent: #111114; }
.social-upscrolled { --social-accent: #6b4eff; }
.social-icon-text { font-size: 17px; font-weight: 800; }
@media (max-width: 760px) { .insights-links { justify-content: flex-start; } .site-header .brand-name { font-size: 14px; } }


/* ==========================================================
   Immersive responsive exploration + sitemap sidebar update
   ========================================================== */
:root {
  --sitemap-width: 132px;
  --sitemap-compact: 68px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}
body {
  overflow-x: hidden;
}
main,
.site-footer {
  margin-left: var(--sitemap-width);
  transition: margin-left .35s cubic-bezier(.2,.7,.2,1);
}
.site-header {
  left: var(--sitemap-width);
  transition: left .35s cubic-bezier(.2,.7,.2,1), background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.section,
.hero,
#career,
#media {
  scroll-margin-top: calc(var(--header-height) + 12px);
}
@media (min-width: 1101px) {
  .hero,
  .profile-section,
  .expertise-section,
  .work-section,
  .training-section,
  .insights-section,
  .social-section,
  .contact-section {
    min-height: min(100svh, 980px);
    display: flex;
    align-items: center;
  }
  .hero { display: block; }
}

/* Sitemap rail */
.site-map-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 980;
  width: var(--sitemap-width);
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 10%, rgba(27,190,210,.11), transparent 210px),
    linear-gradient(180deg, #111114 0%, #0d0d11 100%);
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.10);
  box-shadow: 18px 0 55px rgba(0,0,0,.12);
}
.site-map-brand {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.site-map-brand a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
}
.site-map-monogram {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #111114;
  background: linear-gradient(145deg, #22c6d8, #c3a5d1);
  font-weight: 900;
  font-size: 11px;
  letter-spacing: -.05em;
}
.site-map-brand-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}
.site-map-nav {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 22px 11px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.16) transparent;
}
.site-map-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 7px 8px;
  margin: 2px 0;
  border-radius: 12px;
  color: rgba(255,255,255,.53);
  transition: background .22s ease, color .22s ease, transform .22s ease;
}
.site-map-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.055);
  transform: translateX(2px);
}
.site-map-nav a.is-active {
  color: #fff;
  background: linear-gradient(90deg, rgba(27,190,210,.15), rgba(123,58,150,.11));
}
.site-map-nav a.is-active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  height: 23px;
  border-radius: 2px;
  background: #1bbed2;
}
.map-index {
  color: #1bbed2;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
}
.map-label {
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .025em;
}
.site-map-progress {
  position: relative;
  height: 3px;
  margin: 0 12px 18px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255,255,255,.09);
}
.site-map-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1bbed2, #a96ac4);
}
.site-map-toggle,
.site-map-backdrop {
  display: none;
}

/* Immersive sectional depth without changing original identity */
.section {
  position: relative;
}
.section::after {
  content: "";
  position: absolute;
  inset: auto 5% 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,58,150,.12), rgba(27,190,210,.12), transparent);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 16% 54%, rgba(27,190,210,.05), transparent 32%);
}

/* Uniform training gallery */
.training-gallery.training-gallery-uniform {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch;
}
.training-gallery-uniform .training-photo-uniform {
  width: 100%;
  min-height: 0 !important;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
}
.training-gallery-uniform .training-photo-uniform img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.training-gallery-uniform .training-crop-upper img {
  object-position: center 20%;
}
.training-gallery-uniform figcaption {
  min-height: 62px;
  justify-content: flex-end;
}

/* Tablet sidebar becomes compact rail */
@media (max-width: 1100px) and (min-width: 901px) {
  :root { --sitemap-width: var(--sitemap-compact); }
  .site-map-brand { justify-content: center; padding: 0; }
  .site-map-brand a { justify-content: center; }
  .site-map-brand-text,
  .map-label { display: none; }
  .site-map-nav { padding: 18px 9px; }
  .site-map-nav a {
    grid-template-columns: 1fr;
    place-items: center;
    min-height: 46px;
    padding: 6px;
  }
  .map-index { font-size: 9px; }
  .site-map-progress { margin-inline: 19px; }
  .training-gallery.training-gallery-uniform {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
  }
}

/* Mobile: sidebar turns into a slide-out sitemap */
@media (max-width: 900px) {
  main,
  .site-footer { margin-left: 0; }
  .site-header { left: 0; }
  .site-map-sidebar {
    width: min(82vw, 320px);
    transform: translateX(-105%);
    transition: transform .32s cubic-bezier(.2,.7,.2,1);
    box-shadow: 24px 0 80px rgba(0,0,0,.34);
  }
  .site-map-sidebar.is-open { transform: translateX(0); }
  .site-map-toggle {
    position: fixed;
    z-index: 1010;
    left: max(14px, env(safe-area-inset-left));
    bottom: max(16px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 4px;
    height: 48px;
    padding: 0 15px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(17,17,20,.91);
    box-shadow: 0 14px 40px rgba(0,0,0,.26);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .site-map-toggle span {
    width: 3px;
    height: 3px;
    margin-right: 1px;
    border-radius: 50%;
    background: #1bbed2;
  }
  .site-map-toggle strong {
    margin-left: 7px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
  }
  .site-map-backdrop {
    position: fixed;
    z-index: 970;
    inset: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgba(8,8,11,.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition: opacity .25s ease, visibility .25s ease;
  }
  .site-map-backdrop.is-visible {
    visibility: visible;
    opacity: 1;
  }
  .training-gallery.training-gallery-uniform {
    grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    gap: 12px !important;
  }
  .training-gallery-uniform .training-photo-uniform {
    aspect-ratio: 4 / 3;
  }
}
@media (max-width: 620px) {
  .training-gallery.training-gallery-uniform {
    grid-template-columns: 1fr !important;
  }
  .training-gallery-uniform .training-photo-uniform {
    aspect-ratio: 16 / 10;
  }
}

/* Accessibility and device reliability */
@supports (padding: max(0px)) {
  .site-map-sidebar {
    padding-bottom: env(safe-area-inset-bottom);
  }
}
@media (hover: none) and (pointer: coarse) {
  .site-map-nav a:hover { transform: none; }
  .training-photo:hover img { transform: none; }
}


/* Narrow sidebar refinement */
@media (min-width: 1101px) {
  .site-map-brand a { gap: 8px; }
  .site-map-monogram {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 10px;
    font-size: 10px;
  }
  .site-map-brand-text {
    font-size: 8px;
    letter-spacing: .12em;
  }
  .site-map-nav {
    padding: 18px 8px;
  }
  .site-map-nav a {
    min-height: 44px;
    border-radius: 10px;
  }
  .map-label {
    font-size: 9px;
  }
}


/* Training image refinement */
.training-gallery.training-gallery-uniform {
  width: min(92%, 1180px);
  margin-left: auto;
  margin-right: auto;
}
.training-gallery-uniform .training-photo-uniform {
  aspect-ratio: 16 / 9;
}
.training-gallery-uniform .training-photo-uniform img {
  object-fit: cover;
  transform: scale(.96);
  transform-origin: center;
  background: #ece8df;
}
/* Keep Ammar clearly visible in each source image */
.training-gallery-uniform .training-photo-uniform:nth-child(1) img {
  object-position: center 42%;
}
.training-gallery-uniform .training-photo-uniform:nth-child(2) img {
  object-position: center 38%;
}
.training-gallery-uniform .training-photo-uniform:nth-child(3) img {
  object-position: center 18%;
}
.training-gallery-uniform .training-photo-uniform:nth-child(4) img {
  object-position: center 18%;
}
@media (max-width: 900px) {
  .training-gallery.training-gallery-uniform {
    width: 96%;
  }
}
@media (max-width: 620px) {
  .training-gallery.training-gallery-uniform {
    width: 100%;
  }
  .training-gallery-uniform .training-photo-uniform {
    aspect-ratio: 16 / 10;
  }
}


/* Final Training second-row photo update */
.training-gallery-uniform .training-photo-uniform:nth-child(3) img,
.training-gallery-uniform .training-photo-uniform:nth-child(4) img {
  object-fit: cover;
  transform: none;
}
.training-gallery-uniform .training-photo-uniform:nth-child(3) img {
  object-position: center 42%;
}
.training-gallery-uniform .training-photo-uniform:nth-child(4) img {
  object-position: center 42%;
}
@media (max-width: 900px) {
  .training-gallery-uniform .training-photo-uniform:nth-child(3) img,
  .training-gallery-uniform .training-photo-uniform:nth-child(4) img {
    object-position: center center;
  }
}


/* Selected Work event identity system */
.project-visual-logo {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.project-visual-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.055), transparent 58%);
}
.project-logo-group {
  position: relative;
  z-index: 5;
  width: min(82%, 390px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  justify-items: center;
}
.project-logo-group-dual {
  width: min(92%, 520px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.project-logo-frame {
  width: 100%;
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 45px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.project-logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none !important;
  filter: none !important;
}
.visual-code-underlay {
  opacity: .055 !important;
  z-index: 1 !important;
  pointer-events: none;
}
.project-visual-logo .visual-caption,
.project-visual-logo .visual-year,
.project-visual-logo .visual-line,
.project-visual-logo .route-dot,
.project-visual-logo .route-path,
.project-visual-logo .eco-ring,
.project-visual-logo .arch,
.project-visual-logo .cabin {
  z-index: 2;
}
@media (max-width: 1100px) {
  .project-logo-frame { height: 138px; padding: 15px; }
}
@media (max-width: 760px) {
  .project-visual-logo { padding: 20px; }
  .project-logo-group,
  .project-logo-group-dual { width: min(94%, 470px); }
  .project-logo-frame { height: 126px; padding: 13px; border-radius: 15px; }
}
@media (max-width: 520px) {
  .project-logo-group-dual { grid-template-columns: 1fr 1fr; gap: 8px; }
  .project-logo-frame { height: 108px; padding: 10px; border-radius: 13px; }
}


/* Leadership Affiliations: three-card responsive system */
.hero-affiliations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero-affiliation-card {
  min-width: 0;
}
.affiliation-celebrations .affiliation-logo-frame {
  background: #08090b;
}
.affiliation-celebrations .affiliation-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: none;
}
@media (max-width: 1180px) {
  .hero-affiliations-grid {
    grid-template-columns: 1fr;
  }
}


/* Expo Tale Celebrations logo refinement */
.affiliation-celebrations .affiliation-logo-frame,
.affiliation-logo-frame-dark {
  background: #ffffff !important;
  padding: 20px !important;
  overflow: hidden;
}
.affiliation-celebrations .affiliation-logo-frame img,
.affiliation-logo-frame-dark img {
  width: auto !important;
  height: auto !important;
  max-width: 78% !important;
  max-height: 78% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block;
  margin: auto;
}
@media (max-width: 760px) {
  .affiliation-celebrations .affiliation-logo-frame,
  .affiliation-logo-frame-dark {
    padding: 16px !important;
  }
  .affiliation-celebrations .affiliation-logo-frame img,
  .affiliation-logo-frame-dark img {
    max-width: 74% !important;
    max-height: 74% !important;
  }
}


/* Final centered Expo Tale Celebrations logo treatment */
.affiliation-celebrations {
  grid-template-columns: 210px minmax(0, 1fr) 36px;
}
.affiliation-celebrations .affiliation-logo-frame,
.affiliation-celebrations .affiliation-logo-frame-dark {
  display: grid !important;
  place-items: center !important;
  width: 210px !important;
  height: 124px !important;
  padding: 10px !important;
  background: #ffffff !important;
  overflow: hidden !important;
}
.affiliation-celebrations .affiliation-logo-frame img,
.affiliation-celebrations .affiliation-logo-frame-dark img {
  width: 94% !important;
  height: 94% !important;
  max-width: 94% !important;
  max-height: 94% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: auto !important;
}
@media (max-width: 760px) {
  .affiliation-celebrations {
    grid-template-columns: 1fr;
  }
  .affiliation-celebrations .affiliation-logo-frame,
  .affiliation-celebrations .affiliation-logo-frame-dark {
    width: 100% !important;
    max-width: 220px;
    margin: 0 auto;
  }
}


/* Match Expo Tale Celebrations logo scale with the other affiliation logos */
.affiliation-celebrations .affiliation-logo-frame img,
.affiliation-celebrations .affiliation-logo-frame-dark img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: auto !important;
}
@media (max-width: 760px) {
  .affiliation-celebrations .affiliation-logo-frame img,
  .affiliation-celebrations .affiliation-logo-frame-dark img {
    width: 96% !important;
    height: 96% !important;
    max-width: 96% !important;
    max-height: 96% !important;
  }
}


/* Final affiliation logo visual balancing */
.hero-affiliation-card .affiliation-logo-frame {
  width: 205px !important;
  height: 124px !important;
  padding: 10px !important;
  display: grid !important;
  place-items: center !important;
  background: #fff !important;
}

/* Expo Tale */
.affiliation-expotale .affiliation-logo-frame img {
  width: 94% !important;
  height: 94% !important;
  max-width: 94% !important;
  max-height: 94% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
}

/* Lady of the Earth - enlarged to match visual weight */
.affiliation-foundation .affiliation-logo-frame img {
  width: 92% !important;
  height: 92% !important;
  max-width: 92% !important;
  max-height: 92% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
}

/* Expo Tale Celebrations - slightly larger and exactly centered */
.affiliation-celebrations .affiliation-logo-frame,
.affiliation-celebrations .affiliation-logo-frame-dark {
  width: 205px !important;
  height: 124px !important;
  padding: 7px !important;
  background: #fff !important;
  display: grid !important;
  place-items: center !important;
}
.affiliation-celebrations .affiliation-logo-frame img,
.affiliation-celebrations .affiliation-logo-frame-dark img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: auto !important;
  transform: none !important;
}

/* Keep all three cards visually aligned */
.hero-affiliation-card {
  grid-template-columns: 205px minmax(0, 1fr) 36px !important;
  align-items: center !important;
}

@media (max-width: 1180px) {
  .hero-affiliation-card {
    grid-template-columns: 205px minmax(0, 1fr) 36px !important;
  }
}

@media (max-width: 760px) {
  .hero-affiliation-card {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hero-affiliation-card .affiliation-logo-frame,
  .affiliation-celebrations .affiliation-logo-frame,
  .affiliation-celebrations .affiliation-logo-frame-dark {
    width: min(100%, 220px) !important;
    height: 126px !important;
    margin: 0 auto 8px !important;
  }
  .affiliation-copy {
    align-items: center !important;
  }
}


/* ===== Final clean override: all 3 affiliation logos visible, centered, matched ===== */
.hero-affiliations-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.hero-affiliation-card {
  grid-template-columns: 200px minmax(0, 1fr) 36px !important;
  align-items: center !important;
}
.hero-affiliation-card .affiliation-logo-frame,
.hero-affiliation-card .affiliation-logo-frame-dark {
  width: 200px !important;
  height: 118px !important;
  padding: 10px !important;
  display: grid !important;
  place-items: center !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border-radius: 16px !important;
}
.hero-affiliation-card .affiliation-logo-frame picture {
  width: 100% !important;
  height: 100% !important;
  display: grid !important;
  place-items: center !important;
}
.hero-affiliation-card .affiliation-logo-frame img,
.hero-affiliation-card .affiliation-logo-frame-dark img {
  display: block !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  width: auto !important;
  height: auto !important;
  transform: none !important;
  filter: none !important;
}

/* Match visual weight while keeping all logos fully visible */
.affiliation-expotale .affiliation-logo-frame img {
  max-width: 86% !important;
  max-height: 86% !important;
}
.affiliation-foundation .affiliation-logo-frame img {
  max-width: 74% !important;
  max-height: 74% !important;
}
.affiliation-celebrations .affiliation-logo-frame img,
.affiliation-celebrations .affiliation-logo-frame-dark img {
  max-width: 86% !important;
  max-height: 86% !important;
}

@media (max-width: 1180px) {
  .hero-affiliations-grid {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 760px) {
  .hero-affiliation-card {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hero-affiliation-card .affiliation-logo-frame,
  .hero-affiliation-card .affiliation-logo-frame-dark {
    width: min(100%, 220px) !important;
    height: 124px !important;
    margin: 0 auto 8px !important;
  }
  .affiliation-copy {
    align-items: center !important;
  }
}


/* ========================================================================
   Leadership Affiliations - final normalization update
   Only this section is changed. Everything else remains untouched.
   ======================================================================== */
.hero-affiliations .hero-affiliations-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}
.hero-affiliations .hero-affiliation-card {
  display: grid !important;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr) 40px !important;
  gap: 22px !important;
  align-items: center !important;
  min-height: 176px !important;
}
.hero-affiliations .hero-affiliation-card .logo-panel {
  width: 100% !important;
  max-width: 340px !important;
  height: 200px !important;
  background: #ffffff !important;
  border: 1px solid rgba(17,17,20,0.08) !important;
  border-radius: 24px !important;
  box-shadow: inset 0 0 0 1px rgba(17,17,20,0.02) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 28px 32px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
.hero-affiliations .hero-affiliation-card .logo-panel img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 auto !important;
  transform: none !important;
  filter: none !important;
}

/* Visual normalization per asset after trimming transparent margins. */
.hero-affiliations .affiliation-expotale .logo-panel img {
  max-width: 240px !important;
  max-height: 128px !important;
}
.hero-affiliations .affiliation-foundation .logo-panel img {
  max-width: 238px !important;
  max-height: 136px !important;
}
.hero-affiliations .affiliation-celebrations .logo-panel img {
  max-width: 228px !important;
  max-height: 142px !important;
}

/* Keep text/content alignment consistent across all cards. */
.hero-affiliations .affiliation-copy {
  min-width: 0;
  justify-content: center;
}
.hero-affiliations .affiliation-arrow {
  align-self: center;
  justify-self: center;
}

/* Tablet */
@media (max-width: 1280px) {
  .hero-affiliations .hero-affiliation-card {
    grid-template-columns: minmax(210px, 300px) minmax(0, 1fr) 40px !important;
  }
  .hero-affiliations .hero-affiliation-card .logo-panel {
    max-width: 300px !important;
    height: 176px !important;
    padding: 24px 28px !important;
  }
  .hero-affiliations .affiliation-expotale .logo-panel img {
    max-width: 212px !important;
    max-height: 116px !important;
  }
  .hero-affiliations .affiliation-foundation .logo-panel img {
    max-width: 210px !important;
    max-height: 122px !important;
  }
  .hero-affiliations .affiliation-celebrations .logo-panel img {
    max-width: 202px !important;
    max-height: 128px !important;
  }
}
@media (max-width: 1024px) {
  .hero-affiliations .hero-affiliations-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-affiliations .hero-affiliation-card {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) 40px !important;
  }
  .hero-affiliations .hero-affiliation-card .logo-panel {
    max-width: 320px !important;
    height: 186px !important;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .hero-affiliations .hero-affiliation-card {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    text-align: center !important;
  }
  .hero-affiliations .hero-affiliation-card .logo-panel {
    width: 100% !important;
    max-width: min(100%, 340px) !important;
    height: clamp(170px, 46vw, 200px) !important;
    margin: 0 auto !important;
  }
  .hero-affiliations .affiliation-copy {
    align-items: center !important;
  }
  .hero-affiliations .affiliation-arrow {
    margin: 0 auto;
  }
}


/* Final affiliation scale refinement: slightly smaller logos, larger adjacent text */
.hero-affiliations .affiliation-expotale .logo-panel img {
  max-width: 218px !important;
  max-height: 116px !important;
}
.hero-affiliations .affiliation-foundation .logo-panel img {
  max-width: 216px !important;
  max-height: 124px !important;
}
.hero-affiliations .affiliation-celebrations .logo-panel img {
  max-width: 208px !important;
  max-height: 130px !important;
}

.hero-affiliations .affiliation-title {
  font-size: 10.5px !important;
  line-height: 1.45 !important;
  letter-spacing: .095em !important;
}
.hero-affiliations .affiliation-copy strong {
  font-size: 18px !important;
  line-height: 1.22 !important;
}
.hero-affiliations .affiliation-domain {
  font-size: 11.5px !important;
  line-height: 1.4 !important;
}

@media (max-width: 1280px) {
  .hero-affiliations .affiliation-expotale .logo-panel img {
    max-width: 194px !important;
    max-height: 106px !important;
  }
  .hero-affiliations .affiliation-foundation .logo-panel img {
    max-width: 192px !important;
    max-height: 112px !important;
  }
  .hero-affiliations .affiliation-celebrations .logo-panel img {
    max-width: 184px !important;
    max-height: 116px !important;
  }
  .hero-affiliations .affiliation-copy strong {
    font-size: 17px !important;
  }
}


/* Final readability refinement: smaller logos, larger text, text shifted left */
.hero-affiliations .hero-affiliation-card {
  grid-template-columns: minmax(205px, 290px) minmax(0, 1fr) 34px !important;
  gap: 14px !important;
  padding-left: 18px !important;
  padding-right: 16px !important;
}

.hero-affiliations .hero-affiliation-card .logo-panel {
  max-width: 290px !important;
  height: 176px !important;
  padding: 24px 28px !important;
}

/* Smaller visual logo scale */
.hero-affiliations .affiliation-expotale .logo-panel img {
  max-width: 186px !important;
  max-height: 100px !important;
}
.hero-affiliations .affiliation-foundation .logo-panel img {
  max-width: 184px !important;
  max-height: 108px !important;
}
.hero-affiliations .affiliation-celebrations .logo-panel img {
  max-width: 176px !important;
  max-height: 112px !important;
}

/* Larger, more readable text */
.hero-affiliations .affiliation-copy {
  transform: translateX(-8px);
}
.hero-affiliations .affiliation-title {
  font-size: 12px !important;
  line-height: 1.45 !important;
  letter-spacing: .085em !important;
  margin-bottom: 7px !important;
}
.hero-affiliations .affiliation-copy strong {
  font-size: 21px !important;
  line-height: 1.18 !important;
  letter-spacing: -0.03em !important;
}
.hero-affiliations .affiliation-domain {
  font-size: 13px !important;
  line-height: 1.35 !important;
  margin-top: 9px !important;
}

/* Slightly tighter arrow placement */
.hero-affiliations .affiliation-arrow {
  justify-self: end !important;
}

@media (max-width: 1280px) {
  .hero-affiliations .hero-affiliation-card {
    grid-template-columns: minmax(190px, 265px) minmax(0, 1fr) 32px !important;
    gap: 12px !important;
  }
  .hero-affiliations .hero-affiliation-card .logo-panel {
    max-width: 265px !important;
    height: 164px !important;
  }
  .hero-affiliations .affiliation-expotale .logo-panel img {
    max-width: 172px !important;
    max-height: 94px !important;
  }
  .hero-affiliations .affiliation-foundation .logo-panel img {
    max-width: 170px !important;
    max-height: 100px !important;
  }
  .hero-affiliations .affiliation-celebrations .logo-panel img {
    max-width: 162px !important;
    max-height: 104px !important;
  }
  .hero-affiliations .affiliation-copy {
    transform: translateX(-6px);
  }
  .hero-affiliations .affiliation-copy strong {
    font-size: 19px !important;
  }
  .hero-affiliations .affiliation-title {
    font-size: 11px !important;
  }
  .hero-affiliations .affiliation-domain {
    font-size: 12px !important;
  }
}

@media (max-width: 1024px) {
  .hero-affiliations .hero-affiliation-card {
    grid-template-columns: minmax(210px, 285px) minmax(0, 1fr) 34px !important;
  }
  .hero-affiliations .affiliation-copy {
    transform: none;
  }
}

@media (max-width: 768px) {
  .hero-affiliations .hero-affiliation-card {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    text-align: center !important;
  }
  .hero-affiliations .hero-affiliation-card .logo-panel {
    width: min(100%, 285px) !important;
    height: 168px !important;
    margin: 0 auto !important;
  }
  .hero-affiliations .affiliation-copy {
    transform: none !important;
    align-items: center !important;
  }
  .hero-affiliations .affiliation-copy strong {
    font-size: 20px !important;
  }
  .hero-affiliations .affiliation-title {
    font-size: 11.5px !important;
  }
  .hero-affiliations .affiliation-domain {
    font-size: 12.5px !important;
  }
}


/* Compact white logo panels to increase text space */
.hero-affiliations .hero-affiliation-card {
  grid-template-columns: minmax(170px, 225px) minmax(0, 1fr) 34px !important;
  gap: 12px !important;
}

.hero-affiliations .hero-affiliation-card .logo-panel {
  width: 100% !important;
  max-width: 225px !important;
  height: 150px !important;
  padding: 18px 20px !important;
  border-radius: 18px !important;
}

/* Keep all logos fully visible and centered inside the smaller equal panels */
.hero-affiliations .affiliation-expotale .logo-panel img {
  max-width: 160px !important;
  max-height: 86px !important;
}
.hero-affiliations .affiliation-foundation .logo-panel img {
  max-width: 158px !important;
  max-height: 94px !important;
}
.hero-affiliations .affiliation-celebrations .logo-panel img {
  max-width: 152px !important;
  max-height: 98px !important;
}

/* Give the text block maximum readable width */
.hero-affiliations .affiliation-copy {
  transform: translateX(-4px) !important;
}
.hero-affiliations .affiliation-copy strong {
  max-width: none !important;
}
.hero-affiliations .affiliation-domain {
  white-space: normal !important;
  overflow-wrap: anywhere;
}

@media (max-width: 1280px) {
  .hero-affiliations .hero-affiliation-card {
    grid-template-columns: minmax(155px, 205px) minmax(0, 1fr) 32px !important;
    gap: 10px !important;
  }
  .hero-affiliations .hero-affiliation-card .logo-panel {
    max-width: 205px !important;
    height: 140px !important;
    padding: 16px 18px !important;
  }
  .hero-affiliations .affiliation-expotale .logo-panel img {
    max-width: 146px !important;
    max-height: 80px !important;
  }
  .hero-affiliations .affiliation-foundation .logo-panel img {
    max-width: 144px !important;
    max-height: 86px !important;
  }
  .hero-affiliations .affiliation-celebrations .logo-panel img {
    max-width: 138px !important;
    max-height: 90px !important;
  }
}

@media (max-width: 1024px) {
  .hero-affiliations .hero-affiliation-card {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) 34px !important;
  }
  .hero-affiliations .hero-affiliation-card .logo-panel {
    max-width: 220px !important;
    height: 146px !important;
  }
}

@media (max-width: 768px) {
  .hero-affiliations .hero-affiliation-card {
    grid-template-columns: 1fr !important;
  }
  .hero-affiliations .hero-affiliation-card .logo-panel {
    width: min(100%, 225px) !important;
    height: 150px !important;
    margin: 0 auto !important;
  }
  .hero-affiliations .affiliation-copy {
    transform: none !important;
  }
}


/* Leadership Affiliations: website domain as full-width footer */
.hero-affiliations .hero-affiliation-card {
  grid-template-rows: 1fr auto !important;
}

.hero-affiliations .affiliation-logo-frame,
.hero-affiliations .affiliation-copy,
.hero-affiliations .affiliation-arrow {
  grid-row: 1 !important;
}

.hero-affiliations .affiliation-footer-domain {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  display: block !important;
  width: 100% !important;
  margin-top: 6px !important;
  padding-top: 10px !important;
  border-top: 1px solid rgba(17,17,20,.08);
  color: var(--muted) !important;
  font-size: 12.5px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  letter-spacing: .02em !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-align: left !important;
}

@media (max-width: 1280px) {
  .hero-affiliations .affiliation-footer-domain {
    font-size: 12px !important;
  }
}

@media (max-width: 768px) {
  .hero-affiliations .affiliation-footer-domain {
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}


/* Leadership Affiliations: remove white logo panels */
.hero-affiliations .hero-affiliation-card .logo-panel,
.hero-affiliations .hero-affiliation-card .affiliation-logo-frame,
.hero-affiliations .hero-affiliation-card .affiliation-logo-frame-dark {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 8px !important;
  overflow: visible !important;
}

/* Keep logos centered and visually balanced directly on the card background */
.hero-affiliations .hero-affiliation-card .logo-panel img,
.hero-affiliations .hero-affiliation-card .affiliation-logo-frame img,
.hero-affiliations .hero-affiliation-card .affiliation-logo-frame-dark img {
  display: block !important;
  margin: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  filter: none !important;
}

/* Slightly adjust logo scale now that the white panel is removed */
.hero-affiliations .affiliation-expotale .logo-panel img {
  max-width: 170px !important;
  max-height: 92px !important;
}
.hero-affiliations .affiliation-foundation .logo-panel img {
  max-width: 166px !important;
  max-height: 100px !important;
}
.hero-affiliations .affiliation-celebrations .logo-panel img {
  max-width: 160px !important;
  max-height: 104px !important;
}

@media (max-width: 1280px) {
  .hero-affiliations .affiliation-expotale .logo-panel img {
    max-width: 158px !important;
    max-height: 86px !important;
  }
  .hero-affiliations .affiliation-foundation .logo-panel img {
    max-width: 154px !important;
    max-height: 94px !important;
  }
  .hero-affiliations .affiliation-celebrations .logo-panel img {
    max-width: 148px !important;
    max-height: 98px !important;
  }
}

@media (max-width: 768px) {
  .hero-affiliations .hero-affiliation-card .logo-panel,
  .hero-affiliations .hero-affiliation-card .affiliation-logo-frame,
  .hero-affiliations .hero-affiliation-card .affiliation-logo-frame-dark {
    width: min(100%, 225px) !important;
    height: 140px !important;
    margin: 0 auto !important;
    padding: 6px !important;
  }
}


/* Hero portrait caption: top position */
.hero-photo figcaption {
  top: 22px !important;
  bottom: auto !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  width: calc(100% - 40px) !important;
  text-align: center !important;
  z-index: 6 !important;
}
.hero-photo figcaption strong {
  display: inline-block !important;
  max-width: 100% !important;
}
@media (max-width: 760px) {
  .hero-photo figcaption {
    top: 16px !important;
    width: calc(100% - 28px) !important;
  }
}


/* Hero caption positioned ABOVE the photo frame */
.hero-gallery {
  padding-top: 46px !important;
}
.hero-photo-heading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 600;
  line-height: 1.2;
  pointer-events: none;
}
.hero-photo-heading strong {
  font: inherit;
}
.hero-photo figcaption {
  display: none !important;
}

@media (max-width: 760px) {
  .hero-gallery {
    padding-top: 40px !important;
  }
  .hero-photo-heading {
    font-size: 15px;
  }
}


/* Hero caption removed */
.hero-gallery {
  padding-top: 0 !important;
}
.hero-photo-heading {
  display: none !important;
}


/* Leadership statement positioned in the central space between the brand and navigation */
.site-header {
  overflow: visible !important;
}
.site-header .nav-wrap {
  position: relative;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  column-gap: clamp(20px, 2.4vw, 36px);
}
.site-header .brand-header {
  grid-column: 1;
  min-width: 0;
}
.header-leadership-line {
  grid-column: 2;
  min-width: 0;
  justify-self: center;
  align-self: center;
  color: rgba(255,255,255,.72);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(11px, .88vw, 13px);
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .025em;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  transition: color .25s ease;
}
.site-header.is-scrolled .header-leadership-line {
  color: rgba(17,17,20,.58);
}
.site-header .menu-toggle,
.site-header .primary-nav {
  grid-column: 3;
  grid-row: 1;
}

/* The compact header reserves its central space for navigation controls. */
@media (max-width: 1259px) {
  .header-leadership-line {
    display: none;
  }
}

/* ==========================================================
   Training specializations portfolio update
   ========================================================== */
.training-lower.training-specializations-panel {
  display: block;
}
.training-specializations-heading {
  display: grid;
  grid-template-columns: minmax(250px, .68fr) minmax(0, 1.32fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 26px;
}
.training-specializations-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.7vw, 36px);
  letter-spacing: -.045em;
  line-height: 1.08;
}
.training-specializations-heading p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.61);
  font-size: 14px;
  line-height: 1.75;
}
.training-specializations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.training-specialization {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 70px;
  align-items: center;
  gap: 13px;
  padding: 12px 17px 12px 13px;
  overflow: hidden;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  background: rgba(255,255,255,.027);
  transition: transform .24s ease, border-color .24s ease, background .24s ease, color .24s ease;
}
.training-specialization::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(216,189,131,.1);
  border-radius: 50%;
  pointer-events: none;
  transition: transform .28s ease, border-color .28s ease;
}
.training-specialization:hover {
  color: var(--white);
  border-color: rgba(216,189,131,.52);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}
.training-specialization:hover::after {
  border-color: rgba(216,189,131,.24);
  transform: scale(1.18);
}
.training-specialization-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: var(--gold-bright);
  border: 1px solid rgba(216,189,131,.24);
  border-radius: 50%;
  background: rgba(216,189,131,.075);
}
.training-specialization-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.training-specialization strong {
  position: relative;
  z-index: 1;
  min-width: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.018em;
  line-height: 1.35;
}
.training-specializations-panel .training-method {
  max-width: none;
  margin-top: 30px;
  padding-top: 27px;
  border-top: 1px solid var(--line-dark);
  border-left: 0;
}
.training-specializations-panel .training-method > div {
  padding: 0 24px;
}
.training-specializations-panel .training-method > div:first-child {
  padding-left: 0;
}
.training-specializations-panel .training-method > div:last-child {
  padding-right: 0;
}
.form-row select:required:invalid {
  color: rgba(255,255,255,.5);
}


@media (max-width: 1100px) {
  .training-specializations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .training-specializations-heading {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .training-specializations-heading p {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .training-specializations-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .training-specialization {
    min-height: 64px;
    padding: 10px 15px 10px 11px;
    border-radius: 20px;
  }
  .training-specialization-icon {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }
  .training-specialization strong {
    font-size: 12px;
  }
  .training-specializations-panel .training-method > div,
  .training-specializations-panel .training-method > div:first-child,
  .training-specializations-panel .training-method > div:last-child {
    padding: 13px 0;
  }
}

@media print {
  .training-specialization {
    color: #000;
    border-color: #bbb;
    background: #fff;
    break-inside: avoid;
  }
  .training-specialization-icon {
    color: #000;
    border-color: #bbb;
    background: #fff;
  }
  .training-specializations-heading h3,
  .training-specializations-heading p {
    color: #000;
  }
}


/* Media feature image: show full image without cropping */
#media .media-image {
  min-height: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
}

#media .media-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 900px) {
  #media .media-image {
    min-height: unset;
  }
}

@media (max-width: 640px) {
  #media .media-image {
    min-height: unset;
  }
}

/* Preserve the full LinkedIn cover composition for the data-analysis article. */
.article-image.article-image-wide { aspect-ratio: 16 / 9; background: #031726; }
.article-image.article-image-wide img { object-fit: contain; }

/* Latest LinkedIn article: preserve the complete cover artwork inside the featured card. */
.article-data-featured .article-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #03111d;
}

.article-data-featured .article-image img,
.article-data-featured:hover .article-image img {
  object-fit: contain;
  transform: none;
}

/* =========================================================
   Social media experience — 2026 redesign
   ========================================================= */
.social-section-v2 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(10, 102, 194, 0.09), transparent 30%),
    radial-gradient(circle at 92% 90%, rgba(214, 41, 118, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfaf7 0%, #f0ede7 100%);
}

.social-section-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 17, 20, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 20, 0.024) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.social-section-v2::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: 80px;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(141, 23, 56, 0.08);
  filter: blur(85px);
}

.social-section-v2 .social-heading {
  position: relative;
  z-index: 2;
}

.social-experience {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(18px, 2.7vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.43)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    0 35px 90px rgba(17, 17, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.social-experience::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(10, 102, 194, 0.13), transparent 26%),
    radial-gradient(circle at 88% 24%, rgba(214, 41, 118, 0.10), transparent 24%),
    radial-gradient(circle at 77% 89%, rgba(107, 78, 255, 0.12), transparent 27%);
}

.social-experience::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image: radial-gradient(rgba(17, 17, 20, 0.16) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at center, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 76%);
}

.social-orb {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 50%;
  opacity: 0.42;
  filter: blur(22px);
  pointer-events: none;
  animation: social-orb-drift 11s ease-in-out infinite alternate;
}

.social-orb-one {
  width: 170px;
  height: 170px;
  left: -45px;
  top: 32%;
  background: rgba(10, 102, 194, 0.25);
}

.social-orb-two {
  width: 210px;
  height: 210px;
  right: -70px;
  top: -65px;
  background: rgba(214, 41, 118, 0.20);
  animation-delay: -3s;
}

.social-orb-three {
  width: 180px;
  height: 180px;
  right: 24%;
  bottom: -80px;
  background: rgba(107, 78, 255, 0.21);
  animation-delay: -6s;
}

@keyframes social-orb-drift {
  from { transform: translate3d(-7px, -8px, 0) scale(0.96); }
  to { transform: translate3d(13px, 14px, 0) scale(1.08); }
}

.social-bento {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 190px;
  gap: 16px;
}

.social-tile {
  --social-brand: #8d1738;
  --social-brand-rgb: 141, 23, 56;
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  min-height: 190px;
  flex-direction: column;
  overflow: hidden;
  padding: 23px;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 20, 0.10);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.69));
  box-shadow:
    0 14px 35px rgba(17, 17, 20, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.90);
  transform: translateZ(0);
  transition:
    transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.32s ease,
    box-shadow 0.42s ease,
    background 0.32s ease;
}

.social-tile::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.08;
  background:
    radial-gradient(circle at 15% 12%, rgba(var(--social-brand-rgb), 0.82), transparent 42%),
    linear-gradient(145deg, rgba(var(--social-brand-rgb), 0.16), transparent 64%);
  transition: opacity 0.38s ease, transform 0.55s ease;
}

.social-tile::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 145px;
  height: 145px;
  right: -68px;
  bottom: -72px;
  border: 1px solid rgba(var(--social-brand-rgb), 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(var(--social-brand-rgb), 0.035);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
}

.social-tile:hover,
.social-tile:focus-visible {
  z-index: 4;
  border-color: rgba(var(--social-brand-rgb), 0.45);
  box-shadow:
    0 28px 58px rgba(17, 17, 20, 0.16),
    0 0 0 1px rgba(var(--social-brand-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transform: translateY(-8px) scale(1.012);
}

.social-tile:hover::before,
.social-tile:focus-visible::before {
  opacity: 0.22;
  transform: scale(1.08);
}

.social-tile:hover::after,
.social-tile:focus-visible::after {
  opacity: 0.9;
  transform: translate(-12px, -12px) scale(1.15);
}

.social-tile:focus-visible {
  outline: 3px solid rgba(var(--social-brand-rgb), 0.32);
  outline-offset: 4px;
}

.social-tile--featured {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 396px;
  padding: clamp(28px, 3vw, 38px);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  background:
    radial-gradient(circle at 84% 18%, rgba(89, 184, 255, 0.40), transparent 31%),
    radial-gradient(circle at 18% 88%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #0759ad 0%, #0a66c2 48%, #1684e2 100%);
  box-shadow:
    0 26px 60px rgba(10, 102, 194, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.social-tile--featured::before {
  opacity: 0.55;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 34px);
}

.social-tile--featured::after {
  width: 265px;
  height: 265px;
  right: -95px;
  bottom: -110px;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 42px rgba(255, 255, 255, 0.035), 0 0 0 82px rgba(255, 255, 255, 0.018);
}

.social-tile--featured:hover,
.social-tile--featured:focus-visible {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 38px 85px rgba(10, 102, 194, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

.social-tile--wide {
  grid-column: span 2;
}

.social-tile-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.social-brand-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 17px;
  background: var(--social-brand);
  box-shadow: 0 12px 26px rgba(var(--social-brand-rgb), 0.28);
  transition:
    transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.38s ease,
    border-radius 0.38s ease;
}

.social-brand-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-tile:hover .social-brand-icon,
.social-tile:focus-visible .social-brand-icon {
  border-radius: 15px;
  box-shadow: 0 17px 34px rgba(var(--social-brand-rgb), 0.36);
  transform: translateY(-3px) rotate(-4deg) scale(1.08);
}

.social-brand-icon--text {
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.social-network-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.social-network-tag i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #86e6aa;
  box-shadow: 0 0 0 4px rgba(134, 230, 170, 0.14);
}

.social-tile-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  margin-top: auto;
}

.social-platform-name {
  color: var(--social-brand);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.social-tile-copy strong {
  margin-top: 7px;
  font-size: clamp(17px, 1.45vw, 21px);
  letter-spacing: -0.045em;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.social-profile-line {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 600;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.social-description {
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.social-tile--featured .social-platform-name,
.social-tile--featured .social-description {
  color: rgba(255, 255, 255, 0.72);
}

.social-tile--featured .social-tile-copy {
  max-width: 390px;
  margin-top: auto;
}

.social-tile--featured .social-tile-copy strong {
  margin-top: 10px;
  font-size: clamp(31px, 4vw, 50px);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.social-tile--featured .social-description {
  max-width: 360px;
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.65;
}

.social-tile-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 27px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.social-tile-arrow {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--social-brand);
  border: 1px solid rgba(var(--social-brand-rgb), 0.20);
  border-radius: 50%;
  background: rgba(var(--social-brand-rgb), 0.06);
  font-size: 17px;
  line-height: 1;
  transition:
    color 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease,
    transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-tile:hover .social-tile-arrow,
.social-tile:focus-visible .social-tile-arrow {
  color: #ffffff;
  border-color: var(--social-brand);
  background: var(--social-brand);
  transform: translate(4px, -4px) rotate(4deg);
}

.social-tile--featured .social-tile-arrow {
  color: #0a66c2;
  border-color: rgba(255, 255, 255, 0.45);
  background: #ffffff;
}

.social-watermark {
  position: absolute;
  right: -20px;
  bottom: -18px;
  width: 230px;
  height: 230px;
  color: #ffffff;
  opacity: 0.075;
  transform: rotate(-7deg);
  transition: opacity 0.45s ease, transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.social-watermark svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.social-tile--featured:hover .social-watermark,
.social-tile--featured:focus-visible .social-watermark {
  opacity: 0.12;
  transform: translate(-8px, -10px) rotate(-2deg) scale(1.07);
}

.social-tile--linkedin {
  --social-brand: #0a66c2;
  --social-brand-rgb: 10, 102, 194;
}

.social-tile--linkedin .social-brand-icon {
  color: #0a66c2;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 37, 79, 0.24);
}

.social-tile--instagram {
  --social-brand: #d62976;
  --social-brand-rgb: 214, 41, 118;
}

.social-tile--instagram::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(254, 218, 117, 0.48), transparent 35%),
    radial-gradient(circle at 88% 10%, rgba(79, 91, 213, 0.34), transparent 36%),
    linear-gradient(145deg, rgba(214, 41, 118, 0.24), transparent 68%);
}

.social-tile--instagram .social-brand-icon {
  background: linear-gradient(145deg, #feda75 0%, #fa7e1e 25%, #d62976 53%, #962fbf 75%, #4f5bd5 100%);
  box-shadow: 0 14px 30px rgba(214, 41, 118, 0.28);
}

.social-tile--instagram .social-brand-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-tile--instagram .social-brand-icon .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-tile--x {
  --social-brand: #111114;
  --social-brand-rgb: 17, 17, 20;
}

.social-tile--x .social-brand-icon {
  background: linear-gradient(145deg, #24242a, #050506);
  box-shadow: 0 14px 30px rgba(17, 17, 20, 0.25);
}

.social-tile--facebook {
  --social-brand: #1877f2;
  --social-brand-rgb: 24, 119, 242;
}

.social-tile--facebook .social-brand-icon {
  background: linear-gradient(145deg, #3090ff, #1466d7);
}

.social-tile--tiktok {
  --social-brand: #111114;
  --social-brand-rgb: 17, 17, 20;
}

.social-tile--tiktok::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(37, 244, 238, 0.25), transparent 38%),
    radial-gradient(circle at 88% 84%, rgba(254, 44, 85, 0.22), transparent 42%);
}

.social-tile--tiktok .social-brand-icon {
  background: #101014;
  box-shadow:
    -6px 6px 0 -3px rgba(37, 244, 238, 0.72),
    6px -6px 0 -3px rgba(254, 44, 85, 0.72),
    0 14px 30px rgba(17, 17, 20, 0.22);
}

.social-tile--threads {
  --social-brand: #111114;
  --social-brand-rgb: 17, 17, 20;
}

.social-tile--threads::before {
  background:
    radial-gradient(circle at 12% 12%, rgba(17, 17, 20, 0.22), transparent 44%),
    linear-gradient(145deg, rgba(17, 17, 20, 0.08), transparent 70%);
}

.social-tile--threads .social-brand-icon {
  background: linear-gradient(145deg, #2d2d32, #08080a);
  box-shadow: 0 14px 30px rgba(17, 17, 20, 0.24);
}

.social-tile--upscrolled {
  --social-brand: #6b4eff;
  --social-brand-rgb: 107, 78, 255;
}

.social-tile--upscrolled::before {
  background:
    radial-gradient(circle at 14% 12%, rgba(146, 118, 255, 0.42), transparent 38%),
    linear-gradient(145deg, rgba(107, 78, 255, 0.20), transparent 68%);
}

.social-tile--upscrolled .social-brand-icon {
  background: linear-gradient(145deg, #9478ff, #5d3ee8);
  box-shadow: 0 14px 30px rgba(107, 78, 255, 0.30);
}

@media (max-width: 900px) {
  .social-experience {
    padding: 22px;
    border-radius: 30px;
  }

  .social-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
  }

  .social-tile {
    min-height: 215px;
  }

  .social-tile--featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 340px;
  }

  .social-tile--wide {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .social-experience {
    padding: 14px;
    border-radius: 25px;
  }

  .social-bento {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .social-tile,
  .social-tile--featured,
  .social-tile--wide {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 205px;
    padding: 22px;
    border-radius: 22px;
  }

  .social-tile--featured {
    min-height: 330px;
    padding: 26px;
  }

  .social-tile--featured .social-tile-copy strong {
    font-size: clamp(30px, 10vw, 42px);
  }

  .social-network-tag {
    max-width: 170px;
    font-size: 8px;
  }

  .social-watermark {
    width: 180px;
    height: 180px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .social-tile:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-orb {
    animation: none;
  }

  .social-tile,
  .social-tile::before,
  .social-tile::after,
  .social-brand-icon,
  .social-tile-arrow,
  .social-watermark {
    transition: none;
  }
}

/* ==========================================================================\n   Executive lifecycle — immersive expertise component\n   ========================================================================== */
.lifecycle-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #f7f4f0;
  background:
    radial-gradient(circle at 8% 10%, rgba(141, 23, 56, 0.34), transparent 32%),
    radial-gradient(circle at 92% 12%, rgba(64, 101, 255, 0.20), transparent 31%),
    radial-gradient(circle at 52% 106%, rgba(185, 151, 91, 0.18), transparent 34%),
    linear-gradient(138deg, #0a090e 0%, #111018 48%, #0b0a10 100%);
}

.lifecycle-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.52;
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,0.022) 38.2% 38.4%, transparent 38.6% 100%),
    linear-gradient(300deg, transparent 0 61%, rgba(255,255,255,0.018) 61.2% 61.4%, transparent 61.6% 100%);
  pointer-events: none;
}

.lifecycle-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 82%);
  pointer-events: none;
}

.lifecycle-ambient {
  position: absolute;
  z-index: -1;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0.18;
  pointer-events: none;
  animation: lifecycleFloat 14s ease-in-out infinite alternate;
}

.lifecycle-ambient-one {
  left: -210px;
  top: 30%;
  background: #bd2b58;
}

.lifecycle-ambient-two {
  right: -220px;
  bottom: -130px;
  background: #397cff;
  animation-duration: 18s;
  animation-direction: alternate-reverse;
}

.lifecycle-shell {
  position: relative;
  z-index: 1;
}

.lifecycle-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.66fr);
  gap: clamp(48px, 7vw, 100px);
  align-items: end;
  margin-bottom: 58px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.lifecycle-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.68);
}

.lifecycle-kicker span {
  display: block;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff4f7a, #ffcc6b);
  box-shadow: 0 0 18px rgba(255,79,122,0.55);
}

.lifecycle-heading h2 {
  max-width: 790px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5.2vw, 72px);
  letter-spacing: -0.062em;
  line-height: 0.99;
}

.lifecycle-heading h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #ffffff 0%, #f0c77d 35%, #ee6b8e 68%, #8aa8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.lifecycle-heading-copy {
  align-self: end;
}

.lifecycle-heading-copy > p {
  margin: 0;
  color: rgba(255,255,255,0.64);
  font-size: 15px;
  line-height: 1.78;
}

.lifecycle-framework {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 14px;
  color: rgba(255,255,255,0.86);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.lifecycle-framework-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62e79d;
  box-shadow: 0 0 0 5px rgba(98,231,157,0.10), 0 0 18px rgba(98,231,157,0.72);
}

.lifecycle-framework svg {
  width: 15px;
  height: 15px;
  margin-left: 2px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lifecycle-card {
  position: relative;
  display: flex;
  min-height: 354px;
  padding: 28px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.115);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.035));
  box-shadow:
    0 24px 64px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.38s cubic-bezier(.2,.75,.2,1),
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    background 0.38s ease;
}

.lifecycle-card::before {
  content: "";
  position: absolute;
  right: -118px;
  top: -126px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.52;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.42) 0%, rgba(var(--accent-rgb), 0.12) 42%, transparent 72%);
  transform: scale(0.82);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(.2,.75,.2,1);
  pointer-events: none;
}

.lifecycle-card::after {
  content: "";
  position: absolute;
  inset: 0 20% auto 20%;
  height: 2px;
  border-radius: 999px;
  opacity: 0.72;
  background: linear-gradient(90deg, transparent, var(--accent-start), var(--accent-end), transparent);
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.42);
  transform: scaleX(0.72);
  transition: opacity 0.38s ease, transform 0.38s ease;
}

.lifecycle-card:hover {
  z-index: 2;
  border-color: rgba(var(--accent-rgb), 0.42);
  background: linear-gradient(145deg, rgba(255,255,255,0.145), rgba(255,255,255,0.052));
  box-shadow:
    0 34px 88px rgba(0,0,0,0.38),
    0 0 52px rgba(var(--accent-rgb), 0.11),
    inset 0 1px 0 rgba(255,255,255,0.16);
  transform: translateY(-10px);
}

.lifecycle-card:hover::before {
  opacity: 0.84;
  transform: scale(1.12) translate(-7px, 9px);
}

.lifecycle-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.lifecycle-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 36px;
}

.lifecycle-icon {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  box-shadow:
    0 15px 34px rgba(var(--accent-rgb), 0.28),
    inset 0 1px 0 rgba(255,255,255,0.38);
  transform: rotate(-3deg);
  transition: transform 0.42s cubic-bezier(.2,.75,.2,1), box-shadow 0.42s ease;
}

.lifecycle-icon::before {
  content: "";
  position: absolute;
  inset: -45% 42% 35% -35%;
  border-radius: 50%;
  background: rgba(255,255,255,0.34);
  filter: blur(10px);
  transform: rotate(-25deg);
}

.lifecycle-icon svg {
  position: relative;
  z-index: 1;
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lifecycle-card:hover .lifecycle-icon {
  box-shadow:
    0 20px 44px rgba(var(--accent-rgb), 0.38),
    inset 0 1px 0 rgba(255,255,255,0.42);
  transform: translateY(-4px) rotate(4deg) scale(1.05);
}

.lifecycle-index {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  padding: 7px 10px;
  color: rgba(255,255,255,0.80);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.lifecycle-index strong {
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.lifecycle-index small {
  color: rgba(255,255,255,0.38);
  font-size: 9px;
  font-weight: 700;
}

.lifecycle-card-body {
  position: relative;
  z-index: 1;
}

.lifecycle-label {
  margin: 0 0 11px;
  color: var(--accent-end);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lifecycle-card h3 {
  max-width: 300px;
  margin: 0 0 15px;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.042em;
  line-height: 1.18;
}

.lifecycle-card-body > p:last-child {
  margin: 0;
  color: rgba(255,255,255,0.60);
  font-size: 13px;
  line-height: 1.72;
}

.lifecycle-card-foot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding-top: 24px;
}

.lifecycle-card-foot span {
  padding: 6px 9px;
  color: rgba(255,255,255,0.58);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.035);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.lifecycle-card-foot svg {
  width: 19px;
  height: 19px;
  margin-left: auto;
  fill: none;
  stroke: var(--accent-end);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateX(-3px);
  transition: transform 0.35s cubic-bezier(.2,.75,.2,1);
}

.lifecycle-card:hover .lifecycle-card-foot span {
  color: rgba(255,255,255,0.84);
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(var(--accent-rgb), 0.08);
}

.lifecycle-card:hover .lifecycle-card-foot svg {
  transform: translateX(3px);
}

.lifecycle-continuum {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 42px;
  color: rgba(255,255,255,0.43);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lifecycle-continuum i {
  display: block;
  width: clamp(16px, 3vw, 42px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.10), rgba(255,255,255,0.34), rgba(255,255,255,0.10));
}

@keyframes lifecycleFloat {
  from { transform: translate3d(0, -14px, 0) scale(0.95); }
  to { transform: translate3d(34px, 24px, 0) scale(1.08); }
}

@media (max-width: 1080px) {
  .lifecycle-heading {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
    gap: 54px;
  }

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

  .lifecycle-card {
    min-height: 338px;
  }
}

@media (max-width: 760px) {
  .lifecycle-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 38px;
    padding-bottom: 30px;
  }

  .lifecycle-heading h2 {
    font-size: clamp(40px, 11.5vw, 58px);
  }

  .lifecycle-heading-copy {
    max-width: 620px;
  }

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

  .lifecycle-card {
    min-height: 320px;
  }

  .lifecycle-continuum {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    white-space: normal;
  }

  .lifecycle-continuum i { display: none; }
}

@media (max-width: 480px) {
  .lifecycle-card {
    min-height: 0;
    padding: 24px;
    border-radius: 24px;
  }

  .lifecycle-card-head {
    margin-bottom: 30px;
  }

  .lifecycle-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .lifecycle-icon svg {
    width: 28px;
    height: 28px;
  }

  .lifecycle-card h3 {
    font-size: 21px;
  }
}

@media (hover: none) {
  .lifecycle-card:hover {
    border-color: rgba(255,255,255,0.115);
    background: linear-gradient(145deg, rgba(255,255,255,0.105), rgba(255,255,255,0.035));
    box-shadow: 0 24px 64px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.10);
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lifecycle-ambient { animation: none; }
  .lifecycle-card,
  .lifecycle-card::before,
  .lifecycle-card::after,
  .lifecycle-icon,
  .lifecycle-card-foot svg { transition: none; }
}

@media print {
  .lifecycle-section {
    color: #111;
    background: #fff;
  }
  .lifecycle-grid-pattern,
  .lifecycle-ambient { display: none; }
  .lifecycle-heading h2,
  .lifecycle-card h3 { color: #111; }
  .lifecycle-heading h2 span { color: #111; -webkit-text-fill-color: #111; }
  .lifecycle-heading-copy > p,
  .lifecycle-card-body > p:last-child { color: #444; }
  .lifecycle-card { border-color: #ccc; background: #fff; box-shadow: none; }
}

/* Preserve the hover lift after the site's reveal transform becomes visible. */
.js .lifecycle-card[data-reveal].is-visible:hover {
  transform: translateY(-10px);
}

@media (hover: none) {
  .js .lifecycle-card[data-reveal].is-visible:hover {
    transform: none;
  }
}

.social-brand-icon--image {
  padding: 0;
  overflow: hidden;
}

.social-brand-icon--image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-brand-icon--upscrolled {
  background: #ffffff;
  border-color: rgba(71, 131, 201, 0.28);
  box-shadow: 0 12px 26px rgba(71, 131, 201, 0.20);
}

.social-tile:hover .social-brand-icon--upscrolled,
.social-tile:focus-visible .social-brand-icon--upscrolled {
  box-shadow: 0 18px 36px rgba(71, 131, 201, 0.28);
}

/* ==========================================================
   Slim label-only sitemap navigation
   ========================================================== */
:root {
  --sitemap-width: 96px;
  --sitemap-compact: 84px;
}

.site-map-sidebar {
  box-shadow: 12px 0 38px rgba(0, 0, 0, 0.13);
}

.site-map-brand {
  justify-content: center;
  padding-inline: 6px;
}

.site-map-brand a {
  width: auto;
  justify-content: center;
  gap: 0;
}

.site-map-monogram {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
  font-size: 9px;
}

.site-map-brand-text {
  display: none;
}

.site-map-nav {
  padding: 14px 6px;
}

.site-map-nav a {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  min-height: 43px;
  padding: 7px 9px;
  margin: 2px 0;
  border-radius: 11px;
}

.site-map-nav a.is-active::before {
  width: 3px;
  height: 22px;
}

.map-label {
  display: block;
  width: 100%;
  font-size: 9.2px;
  font-weight: 760;
  line-height: 1.28;
  letter-spacing: 0.01em;
  text-align: left;
  white-space: normal;
}

.site-map-progress {
  margin: 0 9px 14px;
}

@media (max-width: 1100px) and (min-width: 901px) {
  :root {
    --sitemap-width: var(--sitemap-compact);
  }

  .site-map-brand {
    justify-content: center;
    padding-inline: 5px;
  }

  .site-map-brand a {
    justify-content: center;
  }

  .site-map-brand-text {
    display: none;
  }

  .site-map-nav {
    padding: 12px 5px;
  }

  .site-map-nav a {
    display: flex;
    place-items: initial;
    justify-content: flex-start;
    min-height: 41px;
    padding: 6px 8px;
  }

  .map-label {
    display: block;
    font-size: 8.6px;
    line-height: 1.25;
    text-align: left;
  }

  .site-map-progress {
    margin-inline: 8px;
  }
}

@media (max-width: 900px) {
  .site-map-sidebar {
    width: min(70vw, 228px);
  }

  .site-map-brand {
    justify-content: flex-start;
    padding-inline: 14px;
  }

  .site-map-brand a {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .site-map-brand-text {
    display: block;
    font-size: 8px;
    letter-spacing: 0.14em;
  }

  .site-map-nav {
    padding: 14px 10px;
  }

  .site-map-nav a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 8px 11px;
  }

  .map-label {
    display: block;
    font-size: 11px;
    line-height: 1.25;
    text-align: left;
  }

  .site-map-progress {
    margin: 0 13px 16px;
  }
}

/* ========================================================================== 
   Executive profile — Leadership Portfolio redesign
   ========================================================================== */
.profile-section .profile-grid {
  align-items: start;
}

.leadership-portfolio-v2 {
  position: relative;
  isolation: isolate;
  margin-top: 64px;
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 42%),
    linear-gradient(125deg, #11131a 0%, #17121a 48%, #101722 100%);
  box-shadow:
    0 36px 88px rgba(17, 17, 20, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.leadership-portfolio-v2::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 2%, rgba(190, 40, 87, 0.23), transparent 34%),
    radial-gradient(circle at 84% 14%, rgba(63, 117, 209, 0.19), transparent 34%),
    radial-gradient(circle at 68% 102%, rgba(194, 150, 73, 0.15), transparent 40%);
}

.leadership-portfolio-v2::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -168px;
  bottom: -206px;
  width: 470px;
  height: 470px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(255, 255, 255, 0.018),
    0 0 0 118px rgba(255, 255, 255, 0.012);
}

.leadership-grid-pattern {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 86%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 86%);
}

.leadership-ambient {
  position: absolute;
  z-index: -1;
  display: block;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(12px);
  animation: leadership-ambient-drift 10s ease-in-out infinite alternate;
}

.leadership-ambient-one {
  top: -94px;
  left: 13%;
  width: 230px;
  height: 230px;
  background: rgba(141, 23, 56, 0.16);
}

.leadership-ambient-two {
  top: 48px;
  right: -82px;
  width: 250px;
  height: 250px;
  background: rgba(64, 130, 212, 0.13);
  animation-delay: -3s;
}

@keyframes leadership-ambient-drift {
  from { transform: translate3d(-8px, -5px, 0) scale(0.96); }
  to { transform: translate3d(12px, 14px, 0) scale(1.06); }
}

.leadership-portfolio-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 42px;
}

.leadership-portfolio-copy {
  max-width: 790px;
}

.leadership-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.leadership-eyebrow > span {
  position: relative;
  display: block;
  width: 28px;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, #c52a5d, #d7b570);
}

.leadership-eyebrow > span::after {
  content: "";
  position: absolute;
  right: -1px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d7b570;
  box-shadow: 0 0 0 5px rgba(215, 181, 112, 0.10);
  transform: translateY(-50%);
}

.leadership-portfolio-copy h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 720;
  letter-spacing: -0.058em;
  line-height: 1.03;
  text-wrap: balance;
}

.leadership-portfolio-copy > p:last-child {
  max-width: 690px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 15px;
  line-height: 1.75;
}

.leadership-portfolio-stat {
  position: relative;
  display: grid;
  min-width: 164px;
  min-height: 132px;
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: center;
  gap: 13px;
  padding: 22px 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.leadership-portfolio-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #bd2758, #d7b570, #4d8bd1);
}

.leadership-portfolio-stat strong {
  color: #ffffff;
  font-size: 44px;
  font-weight: 760;
  letter-spacing: -0.08em;
  line-height: 1;
}

.leadership-portfolio-stat span {
  color: rgba(255, 255, 255, 0.60);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.leadership-portfolio-stat i {
  position: absolute;
  right: 16px;
  bottom: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #79c69a;
  box-shadow: 0 0 0 6px rgba(121, 198, 154, 0.10), 0 0 24px rgba(121, 198, 154, 0.65);
}

.leadership-role-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.leadership-role-card {
  --role-accent: #bd2758;
  --role-accent-rgb: 189, 39, 88;
  position: relative;
  display: flex;
  min-height: 332px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  background:
    linear-gradient(145deg, rgba(var(--role-accent-rgb), 0.095), transparent 46%),
    rgba(255, 255, 255, 0.052);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    0 18px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}

.leadership-role-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--role-accent), rgba(var(--role-accent-rgb), 0.18));
}

.leadership-role-card::after {
  content: "";
  position: absolute;
  right: -82px;
  bottom: -86px;
  width: 190px;
  height: 190px;
  pointer-events: none;
  border: 1px solid rgba(var(--role-accent-rgb), 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(var(--role-accent-rgb), 0.035);
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.35s ease;
}

.leadership-role-card:hover,
.leadership-role-card:focus-within {
  z-index: 3;
  border-color: rgba(var(--role-accent-rgb), 0.42);
  background:
    linear-gradient(145deg, rgba(var(--role-accent-rgb), 0.16), transparent 52%),
    rgba(255, 255, 255, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 52px rgba(0, 0, 0, 0.23),
    0 0 0 1px rgba(var(--role-accent-rgb), 0.10);
  transform: translateY(-9px);
}

.js .leadership-role-card[data-reveal].is-visible:hover,
.js .leadership-role-card[data-reveal].is-visible:focus-within {
  transform: translateY(-9px);
}

.leadership-role-card:hover::after,
.leadership-role-card:focus-within::after {
  border-color: rgba(var(--role-accent-rgb), 0.40);
  transform: translate3d(-14px, -13px, 0) scale(1.08);
}

.leadership-role-card--enterprise {
  --role-accent: #d32e66;
  --role-accent-rgb: 211, 46, 102;
}

.leadership-role-card--governance {
  --role-accent: #4d8bd1;
  --role-accent-rgb: 77, 139, 209;
}

.leadership-role-card--industry {
  --role-accent: #d2aa5c;
  --role-accent-rgb: 210, 170, 92;
}

.leadership-role-card--capability {
  --role-accent: #63b79a;
  --role-accent-rgb: 99, 183, 154;
}

.leadership-role-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.leadership-role-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--role-accent);
  border: 1px solid rgba(var(--role-accent-rgb), 0.33);
  border-radius: 17px;
  background: rgba(var(--role-accent-rgb), 0.10);
  box-shadow: 0 13px 28px rgba(var(--role-accent-rgb), 0.12);
  transition:
    color 0.35s ease,
    background 0.35s ease,
    border-radius 0.35s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease;
}

.leadership-role-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leadership-role-card:hover .leadership-role-icon,
.leadership-role-card:focus-within .leadership-role-icon {
  color: #ffffff;
  border-radius: 14px;
  background: var(--role-accent);
  box-shadow: 0 18px 32px rgba(var(--role-accent-rgb), 0.28);
  transform: translateY(-3px) rotate(-4deg) scale(1.06);
}

.leadership-role-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.67);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 8px;
  font-weight: 760;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.leadership-role-sequence {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 25px;
  color: var(--role-accent);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.leadership-role-card h4 {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.leadership-role-organization {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.5;
}

.leadership-role-description {
  position: relative;
  z-index: 1;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.50);
  font-size: 11px;
  line-height: 1.68;
}

.leadership-role-tags {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 22px;
}

.leadership-role-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(var(--role-accent-rgb), 0.19);
  border-radius: 999px;
  background: rgba(var(--role-accent-rgb), 0.055);
  font-size: 7px;
  font-weight: 720;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.leadership-portfolio-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.leadership-proof-line {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.leadership-proof-line > span:last-child {
  min-width: 0;
}

.leadership-proof-line strong,
.leadership-proof-line small {
  display: block;
}

.leadership-proof-line strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  letter-spacing: -0.01em;
}

.leadership-proof-line small {
  margin-top: 2px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.43);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.leadership-proof-mark {
  position: relative;
  display: flex;
  width: 50px;
  flex: 0 0 auto;
  align-items: center;
}

.leadership-proof-mark::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, #d32e66, #4d8bd1, #d2aa5c, #63b79a);
  transform: translateY(-50%);
}

.leadership-proof-mark i {
  position: relative;
  z-index: 1;
  display: block;
  width: 8px;
  height: 8px;
  margin-right: 5px;
  border: 2px solid #15151b;
  border-radius: 50%;
}

.leadership-proof-mark i:nth-child(1) { background: #d32e66; }
.leadership-proof-mark i:nth-child(2) { background: #4d8bd1; }
.leadership-proof-mark i:nth-child(3) { background: #d2aa5c; }
.leadership-proof-mark i:nth-child(4) { margin-right: 0; background: #63b79a; }

.leadership-portfolio-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.leadership-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.025em;
  line-height: 1;
  transition:
    color 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.leadership-cta span {
  font-size: 15px;
  line-height: 1;
  transition: transform 0.28s ease;
}

.leadership-cta:hover,
.leadership-cta:focus-visible {
  transform: translateY(-2px);
}

.leadership-cta:hover span,
.leadership-cta:focus-visible span {
  transform: translate(2px, -2px);
}

.leadership-cta:focus-visible {
  outline: 3px solid rgba(215, 181, 112, 0.24);
  outline-offset: 3px;
}

.leadership-cta--primary {
  color: #15151a;
  background: #ffffff;
  box-shadow: 0 13px 28px rgba(0, 0, 0, 0.18);
}

.leadership-cta--primary:hover,
.leadership-cta--primary:focus-visible {
  background: #f0d9a7;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.leadership-cta--secondary {
  color: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
}

.leadership-cta--secondary:hover,
.leadership-cta--secondary:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.30);
  background: rgba(255, 255, 255, 0.085);
}

@media (max-width: 1100px) {
  .leadership-role-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .leadership-role-card {
    min-height: 305px;
  }
}

@media (max-width: 900px) {
  .leadership-portfolio-v2 {
    margin-top: 48px;
    border-radius: 30px;
  }

  .leadership-portfolio-head {
    grid-template-columns: minmax(0, 1fr) 150px;
    align-items: end;
    gap: 24px;
  }

  .leadership-portfolio-copy h3 {
    font-size: clamp(34px, 7vw, 50px);
  }

  .leadership-portfolio-stat {
    min-width: 150px;
  }

  .leadership-portfolio-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .leadership-portfolio-actions {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 660px) {
  .leadership-portfolio-v2 {
    margin-top: 38px;
    padding: 28px 20px 22px;
    border-radius: 25px;
  }

  .leadership-portfolio-head {
    grid-template-columns: 1fr;
  }

  .leadership-portfolio-stat {
    min-width: 0;
    width: 100%;
    min-height: 94px;
    grid-template-columns: auto 1fr;
    padding: 18px 20px;
  }

  .leadership-portfolio-stat strong {
    font-size: 38px;
  }

  .leadership-role-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .leadership-role-card {
    min-height: 0;
    padding: 22px;
  }

  .leadership-role-card h4 {
    font-size: 23px;
  }

  .leadership-role-description {
    font-size: 12px;
  }

  .leadership-portfolio-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .leadership-cta {
    width: 100%;
    justify-content: space-between;
  }

  .leadership-proof-line small {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .leadership-ambient {
    animation: none;
  }

  .leadership-role-card,
  .leadership-role-icon,
  .leadership-role-card::after,
  .leadership-cta,
  .leadership-cta span {
    transition: none;
  }
}

@media print {
  .leadership-portfolio-v2 {
    color: #111114;
    border: 1px solid #cccccc;
    background: #ffffff;
    box-shadow: none;
  }

  .leadership-ambient,
  .leadership-grid-pattern,
  .leadership-portfolio-v2::before,
  .leadership-portfolio-v2::after {
    display: none;
  }

  .leadership-portfolio-copy h3,
  .leadership-role-card h4 {
    color: #111114;
  }

  .leadership-portfolio-copy > p:last-child,
  .leadership-role-organization,
  .leadership-role-description,
  .leadership-proof-line strong,
  .leadership-proof-line small {
    color: #555555;
  }

  .leadership-role-card,
  .leadership-portfolio-stat {
    border-color: #dddddd;
    background: #fafafa;
    box-shadow: none;
  }

  .leadership-portfolio-actions {
    display: none;
  }
}

/* Expanded media highlights */
.media-section .container {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.media-highlights {
  display: grid;
  gap: 22px;
}

.media-highlights-heading {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.media-highlights-heading h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.media-highlights-heading p:last-child {
  margin: 0;
  color: var(--muted);
}

.media-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.media-card {
  position: relative;
}

.media-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.98));
  border: 1px solid rgba(20, 24, 31, 0.08);
  box-shadow: 0 22px 55px rgba(18, 24, 33, 0.10);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.media-card > a:hover,
.media-card > a:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(18, 24, 33, 0.14);
  border-color: rgba(141, 23, 56, 0.20);
}

.media-card > a:focus-visible {
  outline: 3px solid rgba(141, 23, 56, 0.24);
  outline-offset: 3px;
}

.media-card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0f141b;
  overflow: hidden;
}

.media-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.media-card > a:hover .media-card-cover img,
.media-card > a:focus-visible .media-card-cover img {
  transform: scale(1.04);
}

.media-card-pill {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(10, 14, 22, 0.76);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-card-play {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #111923;
  font-size: 18px;
  box-shadow: 0 12px 30px rgba(10, 14, 22, 0.22);
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.media-card > a:hover .media-card-play,
.media-card > a:focus-visible .media-card-play {
  transform: scale(1.08);
  background: #8d1738;
  color: #ffffff;
}

.media-card-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(8, 10, 14, 0.50));
}

.media-card-cover--with-badge .media-card-poster-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  width: min(34%, 148px);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 14px 30px rgba(5, 10, 18, 0.26);
}

.media-card-cover--with-badge .media-card-poster-badge img {
  display: block;
  width: 100%;
  height: auto;
  transform: none !important;
}

.media-card-body {
  display: grid;
  gap: 12px;
  padding: 24px 24px 26px;
}

.media-card-meta {
  color: #8d1738;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.media-card-body h4 {
  margin: 0;
  font-size: clamp(23px, 2vw, 28px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.media-card-body p {
  margin: 0;
  color: var(--muted);
}

.media-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 700;
}

.media-card--podcast {
  --card-accent: #c46a1a;
}

.media-card--tv {
  --card-accent: #4d8bd1;
}

.media-card--coverage {
  --card-accent: #5f8b5f;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 48%, #ffffff 52%), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0.70;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .media-cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-card:first-child { grid-column: span 2; }
}

@media (max-width: 760px) {
  .media-cards-grid { grid-template-columns: 1fr; }
  .media-card:first-child { grid-column: span 1; }
  .media-card-body { padding: 22px 20px 24px; }
  .media-card-body h4 { font-size: 24px; }
  .media-card-cover--with-badge .media-card-poster-badge { width: min(36%, 128px); }
}

/* Executive profile portrait enhancement */
.executive-profile-intro {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.executive-profile-portrait-card {
  position: relative;
  margin: 8px 0 0;
  width: min(100%, 420px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(21, 24, 33, 0.10);
  background:
    radial-gradient(circle at 50% 82%, rgba(230, 121, 36, 0.24), transparent 48%),
    linear-gradient(180deg, rgba(15, 16, 20, 0.03), rgba(15, 16, 20, 0.08));
  box-shadow:
    0 28px 70px rgba(15, 18, 25, 0.14),
    0 8px 20px rgba(15, 18, 25, 0.08);
}

.executive-profile-portrait-card::before {
  content: "";
  position: absolute;
  inset: auto 8% -16% 8%;
  height: 32%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(233, 137, 45, 0.35), rgba(233, 137, 45, 0));
  filter: blur(26px);
  pointer-events: none;
  z-index: 1;
}

.executive-profile-portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), transparent 22%, transparent 72%, rgba(255,255,255,0.05));
  pointer-events: none;
  z-index: 2;
}

.executive-profile-portrait-card img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 901px) {
  .profile-section .profile-grid {
    align-items: start;
  }

  .executive-profile-intro {
    position: sticky;
    top: calc(var(--header-height) + 24px);
  }
}

@media (max-width: 900px) {
  .executive-profile-portrait-card {
    width: min(100%, 460px);
  }
}

@media (max-width: 640px) {
  .executive-profile-intro {
    gap: 20px;
  }

  .executive-profile-portrait-card {
    border-radius: 24px;
  }
}

/* Executive profile layout matched to visual reference */
.profile-kicker-row {
  margin-bottom: 18px;
}

.profile-grid.profile-grid-match-layout {
  grid-template-columns: minmax(360px, 430px) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 88px);
  align-items: start;
}

.executive-profile-visual {
  padding: 12px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset -10px 0 0 rgba(17, 21, 29, 0.03);
}

.executive-profile-visual .executive-profile-portrait-card {
  width: 100%;
  max-width: none;
  margin: 0;
}

.profile-content-stack {
  display: grid;
  gap: 20px;
  align-self: stretch;
}

.profile-title-panel {
  display: flex;
  align-items: center;
  min-height: 224px;
  padding: clamp(30px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
}

.profile-title-panel h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.profile-content-stack .profile-body {
  max-width: none;
  padding: 6px 30px 0 30px;
}

.profile-content-stack .profile-body > p {
  max-width: 900px;
}

.profile-content-stack .profile-body .lead {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.55;
}

.profile-content-stack .profile-body blockquote {
  margin: 34px 0 0;
}

@media (min-width: 901px) {
  .executive-profile-intro {
    position: static;
  }
}

@media (max-width: 1100px) {
  .profile-grid.profile-grid-match-layout {
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    gap: 36px;
  }

  .profile-title-panel {
    min-height: 190px;
  }

  .profile-title-panel h2 {
    font-size: clamp(38px, 4vw, 52px);
  }
}

@media (max-width: 900px) {
  .profile-grid.profile-grid-match-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .executive-profile-visual {
    max-width: 520px;
    padding: 10px;
  }

  .profile-content-stack {
    gap: 16px;
  }

  .profile-title-panel {
    min-height: auto;
    padding: 28px 24px;
  }

  .profile-title-panel h2 {
    font-size: clamp(34px, 7.8vw, 48px);
  }

  .profile-content-stack .profile-body {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .executive-profile-visual {
    padding: 8px;
  }

  .profile-kicker-row {
    margin-bottom: 14px;
  }

  .profile-title-panel {
    padding: 24px 20px;
  }

  .profile-content-stack .profile-body .lead {
    font-size: 19px;
  }
}

/* Executive profile final alignment: compact typography and equal-height columns */
.profile-grid.profile-grid-match-layout {
  grid-template-columns: minmax(350px, 420px) minmax(0, 1fr);
  gap: clamp(36px, 4.5vw, 72px);
  align-items: stretch;
}

.executive-profile-left {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  min-width: 0;
  min-height: 0;
}

.executive-profile-left > .section-kicker {
  margin: 0;
}

.executive-profile-left .executive-profile-visual {
  height: 100%;
  min-height: 0;
  padding: 10px;
}

.executive-profile-left .executive-profile-portrait-card {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.executive-profile-left .executive-profile-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-content-stack {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  height: 100%;
  min-height: 0;
}

.profile-title-panel {
  min-height: 0;
  padding: clamp(30px, 3.2vw, 42px);
}

.profile-title-panel h2 {
  max-width: 760px;
  font-size: clamp(36px, 3.05vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.profile-content-stack .profile-body {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-width: none;
  padding: 0 28px;
  font-size: 15.5px;
  line-height: 1.66;
}

.profile-content-stack .profile-body > p {
  max-width: 860px;
  margin-bottom: 15px;
}

.profile-content-stack .profile-body .lead {
  margin-bottom: 17px;
  font-size: clamp(19px, 1.55vw, 22px);
  line-height: 1.55;
}

.profile-content-stack .profile-body blockquote {
  margin: auto 0 0;
  padding: 23px 30px 23px 54px;
  font-size: clamp(19px, 1.65vw, 22px);
  line-height: 1.42;
}

.profile-content-stack .profile-body blockquote > span {
  left: 20px;
  top: 11px;
  font-size: 43px;
}

.profile-section .leadership-portfolio-v2 {
  margin-top: 32px;
}

@media (max-width: 1050px) {
  .profile-grid.profile-grid-match-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .executive-profile-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .executive-profile-left .executive-profile-visual {
    width: min(100%, 520px);
    height: auto;
  }

  .executive-profile-left .executive-profile-portrait-card {
    height: auto;
  }

  .executive-profile-left .executive-profile-portrait-card img {
    height: auto;
    object-fit: contain;
  }

  .profile-content-stack {
    height: auto;
    gap: 16px;
  }

  .profile-title-panel {
    padding: 28px 26px;
  }

  .profile-title-panel h2 {
    font-size: clamp(34px, 5.8vw, 46px);
  }

  .profile-content-stack .profile-body {
    padding: 0;
  }

  .profile-content-stack .profile-body blockquote {
    margin-top: 28px;
  }
}

@media (max-width: 640px) {
  .profile-grid.profile-grid-match-layout {
    gap: 20px;
  }

  .executive-profile-left {
    gap: 12px;
  }

  .profile-title-panel {
    padding: 24px 20px;
  }

  .profile-title-panel h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .profile-content-stack .profile-body {
    font-size: 15px;
  }

  .profile-content-stack .profile-body .lead {
    font-size: 18px;
  }

  .profile-content-stack .profile-body blockquote {
    padding: 22px 20px 22px 44px;
    font-size: 19px;
  }

  .profile-section .leadership-portfolio-v2 {
    margin-top: 26px;
  }
}

/* Final executive-profile typography and bottom-edge alignment */
.executive-profile-left .executive-profile-visual {
  padding: 10px 10px 0;
}

.profile-title-panel {
  padding: clamp(28px, 2.8vw, 38px) clamp(30px, 3vw, 40px);
}

.profile-title-panel h2 {
  font-size: clamp(34px, 2.55vw, 40px);
  line-height: 1.12;
}

@media (max-width: 1050px) {
  .executive-profile-left .executive-profile-visual {
    padding: 10px;
  }

  .profile-title-panel h2 {
    font-size: clamp(34px, 5.8vw, 44px);
  }
}

@media (max-width: 640px) {
  .profile-title-panel h2 {
    font-size: clamp(30px, 8.8vw, 38px);
  }
}

/* Executive profile final layout: text left, image right */
.profile-grid.profile-grid-match-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: clamp(36px, 4vw, 84px);
  align-items: stretch;
}

.profile-content-stack {
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 16px;
}

.profile-content-stack > .section-kicker {
  margin: 0 0 4px;
}

.executive-profile-right {
  display: flex;
  align-items: stretch;
}

.executive-profile-right .executive-profile-visual {
  width: 100%;
  min-height: 100%;
  padding: 10px 10px 0;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 10px 0 0 rgba(17, 21, 29, 0.03);
}

.executive-profile-right .executive-profile-portrait-card {
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.executive-profile-right .executive-profile-portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.profile-title-panel {
  min-height: 0;
}

.profile-content-stack .profile-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.profile-content-stack .profile-body blockquote {
  margin: auto 0 0;
}

@media (max-width: 1050px) {
  .profile-grid.profile-grid-match-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .executive-profile-right {
    order: 2;
  }

  .executive-profile-right .executive-profile-visual {
    width: min(100%, 520px);
    height: auto;
    padding: 10px;
    box-shadow: none;
  }

  .executive-profile-right .executive-profile-portrait-card,
  .executive-profile-right .executive-profile-portrait-card img {
    height: auto;
  }

  .executive-profile-right .executive-profile-portrait-card img {
    object-fit: contain;
  }

  .profile-content-stack {
    height: auto;
    grid-template-rows: auto auto auto;
  }
}

@media (max-width: 640px) {
  .profile-grid.profile-grid-match-layout {
    gap: 20px;
  }

  .executive-profile-right .executive-profile-visual {
    padding: 8px;
  }
}

/* Career section — academic qualifications and certifications */
.timeline .timeline-education {
  align-items: start;
}

.education-credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.education-credential {
  min-width: 0;
  padding: 18px 18px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.education-credential:hover {
  transform: translateY(-3px);
  border-color: rgba(208, 168, 91, 0.46);
  background: rgba(255, 255, 255, 0.075);
}

.timeline .education-credential h3 {
  margin: 0;
  color: var(--gold-bright);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.timeline .education-credential p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.certification-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.timeline .certification-list li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(208, 168, 91, 0.30);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.90);
  background: rgba(208, 168, 91, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.timeline .certification-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(208, 168, 91, 0.60);
  background: rgba(208, 168, 91, 0.14);
}

@media (max-width: 1100px) {
  .education-credentials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .education-credentials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .education-credentials {
    grid-template-columns: 1fr;
  }

  .education-credential {
    padding: 16px;
  }

  .certification-list {
    gap: 8px;
  }
}
