:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-alt: #e9eef2;
  --text: #14212b;
  --text-soft: #4d5c68;
  --accent: #0f6d72;
  --accent-strong: #0a5256;
  --line: #d2dbe2;
  --shadow: 0 18px 40px rgba(8, 30, 52, 0.08);
  --radius: 16px;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-fast: 220ms;
  --motion-medium: 320ms;
  --motion-slow: 760ms;
}

[data-theme="dark"] {
  --bg: #0f141a;
  --surface: #1a232d;
  --surface-alt: #222f3a;
  --text: #e7eef5;
  --text-soft: #b2c1cd;
  --accent: #58c3c9;
  --accent-strong: #7ed7dc;
  --line: #324251;
  --shadow: 0 22px 44px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top right, rgba(15, 109, 114, 0.08), transparent 42%), var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: opacity 260ms var(--motion-ease);
}

body::before {
  content: "";
  position: fixed;
  inset: -30% -20%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.3;
  background:
    radial-gradient(circle at 16% 14%, rgba(88, 195, 201, 0.12), transparent 38%),
    radial-gradient(circle at 84% 72%, rgba(88, 195, 201, 0.08), transparent 46%),
    radial-gradient(circle at 62% 16%, rgba(126, 215, 220, 0.08), transparent 38%);
  transform: translate3d(0, 0, 0) scale(1.05);
  animation: ambientGradient 32s ease-in-out infinite alternate;
}

body.is-page-entering {
  opacity: 0;
}

body.is-page-exiting {
  opacity: 0;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  background: transparent;
  color: var(--text);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  color: var(--text-soft);
  padding: 6px 8px;
  border-radius: 8px;
  transition: color var(--motion-fast) ease, background var(--motion-fast) ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 3px;
  height: 1px;
  background: color-mix(in srgb, var(--accent) 90%, transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--motion-medium) var(--motion-ease);
}

.nav-links a.active,
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: var(--surface-alt);
}

.nav-links a.active::after,
.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.theme-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 99px;
  padding: 8px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    transform var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease,
    background var(--motion-fast) ease,
    border-color var(--motion-fast) ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 10px 20px rgba(8, 30, 52, 0.14);
  background: color-mix(in srgb, var(--surface-alt) 45%, var(--surface) 55%);
}

.hero {
  padding: 80px 0 52px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 272px 1fr;
  gap: 40px;
  align-items: flex-start;
}

.headshot {
  margin: 0;
  padding-top: 0;
  width: 272px;
  align-self: flex-start;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--surface);
  transition:
    transform 250ms var(--motion-ease),
    box-shadow 250ms var(--motion-ease),
    border-color 250ms ease;
}

.headshot:hover,
.headshot:focus-within {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line) 78%);
  box-shadow: 0 22px 44px rgba(8, 30, 52, 0.14);
}

.headshot img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center top;
  image-rendering: auto;
}

.profile-placeholder {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(145deg, var(--accent), color-mix(in srgb, var(--accent-strong) 72%, #08131c));
}

.profile-placeholder span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.94);
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.75rem;
  font-weight: 600;
}

.intro {
  align-self: flex-start;
}

.intro-heading-group {
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.intro .intro-heading-group .kicker {
  position: absolute;
  inset-inline-start: 0;
  inset-block-end: calc(100% + 8px);
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  margin-bottom: 12px;
}

.tagline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-soft);
  margin-bottom: 22px;
}

.intro p {
  margin: 0 0 16px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.pill-link {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.92rem;
  transition:
    transform 250ms var(--motion-ease),
    border-color 250ms ease,
    box-shadow 250ms ease,
    background 200ms ease;
}

.pill-link:hover,
.pill-link:focus-visible {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 14px 24px rgba(8, 30, 52, 0.16);
  background: color-mix(in srgb, var(--surface-alt) 40%, transparent);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.92rem;
  color: var(--text-soft);
  background: var(--surface-alt);
}

.section {
  padding: 64px 0;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 14px;
}

.section-intro {
  color: var(--text-soft);
  max-width: 760px;
  margin-bottom: 28px;
}

.page-experience .experience-intro {
  max-width: 960px;
  margin: 0 auto 56px;
}

.page-experience .experience-intro .section-title {
  margin-bottom: 24px;
}

.page-experience .experience-intro .section-intro {
  max-width: none;
  margin-bottom: 22px;
}

.page-experience .experience-intro .section-intro:last-child {
  margin-bottom: 0;
}

.page-events .events-intro {
  max-width: 960px;
  margin: 0 auto 60px;
}

.page-events .events-intro .section-title {
  margin-bottom: 24px;
}

.page-events .events-intro .section-intro {
  max-width: none;
  margin-bottom: 22px;
}

.page-events .events-intro .section-intro:last-child {
  margin-bottom: 0;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.quote-block.reveal {
  transition: opacity var(--motion-slow) var(--motion-ease), transform var(--motion-slow) var(--motion-ease);
}

.quote-block cite {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--motion-medium) ease, transform var(--motion-medium) var(--motion-ease);
}

.quote-block.reveal.is-visible cite {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 160ms;
}

.card h3 {
  margin-bottom: 8px;
}

.about-flow > .card {
  margin-bottom: 4px;
}

.about-flow > .card p {
  max-width: 70ch;
}

.about-flow > .learning-approach-card p,
.about-flow > .website-purpose p {
  max-width: none;
}

.about-flow > .professional-journey-card p {
  max-width: none;
}

.section-heading {
  line-height: 1.25;
  padding-left: 2px;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 18%, var(--line) 82%, transparent 100%);
  margin: 6px 0 8px;
}

.quote-block {
  margin: 0 0 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface-alt) 55%, transparent);
}

.quote-block p {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  line-height: 1.35;
}

.quote-block cite {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-style: normal;
}

.featured-quote {
  margin: 6px 0 14px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface-alt) 50%, transparent);
  color: var(--text-soft);
  font-style: italic;
}

.value-card,
.explore-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.value-card:hover,
.value-card:focus-within,
.explore-card:hover,
.explore-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.value-card p,
.explore-card p {
  margin: 0;
}

.values-dashboard,
.learning-dashboard {
  display: grid;
  gap: 14px;
}

.values-dashboard {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
}

.learning-dashboard {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}

.value-glass,
.learning-card {
  position: relative;
  min-height: 188px;
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--line) 80%, var(--accent) 20%);
  background: color-mix(in srgb, var(--surface) 86%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 14px 32px rgba(8, 30, 52, 0.14);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.value-glass,
.learning-card,
.event-card,
.article-card,
.resource-card,
.timeline-item {
  will-change: transform, box-shadow;
  transition:
    transform 250ms var(--motion-ease),
    border-color 250ms ease,
    box-shadow 250ms ease,
    background 250ms ease;
}

.value-glass:hover,
.value-glass:focus-within,
.learning-card:hover,
.learning-card:focus-within,
.event-card:hover,
.event-card:focus-within,
.article-card:hover,
.article-card:focus-within,
.resource-card:hover,
.resource-card:focus-within,
.timeline-item:hover,
.timeline-item:focus-within {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--accent) 60%, var(--line) 40%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px color-mix(in srgb, var(--accent) 32%, transparent),
    0 18px 36px rgba(8, 30, 52, 0.2);
}

.useful-links-section {
  margin-bottom: 34px;
}

.useful-links-section:last-of-type {
  margin-bottom: 0;
}

.useful-links-section .section-heading {
  margin-bottom: 12px;
}

.useful-link-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.useful-link-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.useful-link-header h3 {
  margin: 0;
  line-height: 1.3;
}

.external-link-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: inline-grid;
  place-items: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 200ms var(--motion-ease), border-color 200ms ease, background 200ms ease;
}

.external-link-icon:hover,
.external-link-icon:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: color-mix(in srgb, var(--surface-alt) 45%, transparent);
}

.useful-link-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.useful-link-card .pill-link {
  margin-top: auto;
  width: fit-content;
}

.value-glass::before,
.learning-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.1), transparent 42%);
}

.value-glass:hover,
.value-glass:focus-within,
.learning-card:hover,
.learning-card:focus-within {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 60%, var(--line) 40%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent),
    0 18px 36px rgba(8, 30, 52, 0.2);
}

.value-icon,
.learning-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line) 55%);
  background: color-mix(in srgb, var(--surface-alt) 66%, transparent);
  color: var(--accent);
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 0 0 0 rgba(88, 195, 201, 0.28);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.value-glass:hover .value-icon,
.learning-card:hover .learning-icon {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 0 0 8px rgba(88, 195, 201, 0.12);
}

.value-glass h4,
.learning-card h4 {
  margin: 0;
  font-size: 1rem;
}

.value-glass p,
.learning-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.topic-ai {
  border-left: 3px solid #62cad2;
}

.topic-tm {
  border-left: 3px solid #59bfc7;
}

.topic-gb {
  border-left: 3px solid #52b2c2;
}

.topic-et {
  border-left: 3px solid #6ecfd4;
}

.topic-dt {
  border-left: 3px solid #4da9b3;
}

.topic-ie {
  border-left: 3px solid #79d4d9;
}

.topic-km {
  border-left: 3px solid #4ea7bb;
}

.topic-ip {
  border-left: 3px solid #6ccbd0;
}

.motto {
  margin: 12px 0 0;
  color: var(--accent);
  font-weight: 600;
}

.website-purpose {
  grid-column: 1 / -1;
  margin: 10px 0 12px;
  padding: 34px 36px;
}

.website-purpose-copy {
  max-width: 100%;
  text-align: left;
}

.website-purpose-copy p {
  margin: 0 0 14px;
}

.website-purpose-copy p:last-child {
  margin-bottom: 0;
}

.website-purpose.reveal {
  transform: translate3d(0, 20px, 0);
  transition-duration: 720ms;
}

.events-flow {
  display: grid;
  gap: 22px;
}

.featured-recognition {
  margin: 0 0 22px;
}

.featured-recognition .section-heading {
  margin-bottom: 14px;
}

.recognition-card {
  transition:
    transform 250ms var(--motion-ease),
    border-color 250ms ease,
    box-shadow 250ms ease,
    opacity var(--motion-slow) var(--motion-ease);
}

.recognition-card:hover,
.recognition-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 16px 34px rgba(8, 30, 52, 0.18);
}

.recognition-card h3 {
  margin: 0 0 8px;
}

.recognition-card p:last-child {
  margin-bottom: 0;
}

.membership-card {
  position: relative;
  overflow: hidden;
}

.membership-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, color-mix(in srgb, var(--accent) 12%, transparent), transparent 38%);
}

.membership-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

.events-timeline {
  margin-top: 4px;
}

.events-timeline .timeline-item {
  margin-bottom: 32px;
}

.year-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.event-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.event-card {
  transition:
    transform 250ms var(--motion-ease),
    border-color 250ms ease,
    box-shadow 250ms ease,
    opacity var(--motion-slow) var(--motion-ease);
}

.event-card:hover,
.event-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 16px 34px rgba(8, 30, 52, 0.18);
}

.event-card h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.featured-articles {
  margin: 14px 0 26px;
}

.articles-coming-soon-wrap {
  max-width: 920px;
  margin: 12px auto 0;
}

.coming-soon-card {
  padding: 30px 34px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coming-soon-card .section-heading {
  margin: 0 0 2px;
}

.coming-soon-card p {
  margin: 0;
}

.coming-soon-list {
  margin: 0;
  padding: 0;
}

.coming-soon-note {
  max-width: 920px;
  margin: 22px auto 0;
  text-align: center;
}

.article-card {
  transition:
    transform 250ms var(--motion-ease),
    border-color 250ms ease,
    box-shadow 250ms ease,
    opacity var(--motion-slow) var(--motion-ease);
}

.article-card:hover,
.article-card:focus-within {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 16px 34px rgba(8, 30, 52, 0.18);
}

.article-media {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 4px;
  background-size: cover;
  background-position: center;
}

.media-conference {
  background:
    linear-gradient(160deg, rgba(15, 109, 114, 0.22), rgba(10, 82, 86, 0.75)),
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(135deg, #cedfeb, #7da7bc);
}

.media-ai {
  background:
    linear-gradient(160deg, rgba(20, 33, 43, 0.24), rgba(15, 109, 114, 0.78)),
    radial-gradient(circle at 74% 24%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #dce4d4, #85a6a9);
}

.media-ip {
  background:
    linear-gradient(160deg, rgba(10, 82, 86, 0.2), rgba(20, 33, 43, 0.72)),
    radial-gradient(circle at 66% 34%, rgba(255, 255, 255, 0.26), transparent 28%),
    linear-gradient(135deg, #e8dccd, #8db2bf);
}

.media-trademark {
  background:
    linear-gradient(160deg, rgba(15, 109, 114, 0.22), rgba(20, 33, 43, 0.72)),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #dae7d9, #86aab0);
}

.media-innovation {
  background:
    linear-gradient(160deg, rgba(20, 33, 43, 0.22), rgba(10, 82, 86, 0.72)),
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, #e1d7c9, #89a9b3);
}

.media-development {
  background:
    linear-gradient(160deg, rgba(15, 109, 114, 0.2), rgba(20, 33, 43, 0.72)),
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #d9e3ed, #8ca2bf);
}

.media-practice {
  background:
    linear-gradient(160deg, rgba(10, 82, 86, 0.24), rgba(20, 33, 43, 0.76)),
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.28), transparent 28%),
    linear-gradient(135deg, #d8e6da, #86a6aa);
}

.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.articles-grid .pill-link,
.featured-articles .pill-link {
  margin-top: auto;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 24px;
}

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-soft);
  padding: 8px 14px;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    transform 200ms var(--motion-ease),
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.active {
  color: var(--text);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.is-hidden {
  display: none !important;
}

.timeline {
  position: relative;
  margin-left: 8px;
  border-left: 2px solid color-mix(in srgb, var(--line) 82%, transparent);
  padding-left: 24px;
}

.page-experience .timeline,
.page-events .events-timeline {
  border-left-color: transparent;
}

.page-experience .timeline::before,
.page-events .events-timeline::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 76%, var(--line) 24%), color-mix(in srgb, var(--accent-strong) 82%, var(--line) 18%));
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0.92;
  transition: transform 900ms var(--motion-ease);
}

.page-experience .timeline.is-visible::before,
.page-events .events-timeline.is-visible::before {
  transform: scaleY(1);
}

.timeline-item {
  margin-bottom: 28px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  left: -30px;
  top: 7px;
  transform: scale(0.72);
  transition: transform 500ms var(--motion-ease), box-shadow 500ms var(--motion-ease);
}

.timeline-item.is-visible::before {
  transform: scale(1);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 22%, transparent);
}

.meta {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 8px;
}

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

.list-clean li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}

.list-clean li:last-child {
  border-bottom: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-tag {
  display: inline-block;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  padding: 4px 10px;
  color: var(--text-soft);
}


.contact-layout {
  width: min(1100px, 100%);
  margin: 0 auto;
  text-align: center;
}

.page-contact .section-intro {
  margin: 0 auto 14px;
  max-width: 900px;
}

.contact-methods {
  align-items: stretch;
  margin-top: 28px;
  margin-bottom: 60px;
}

.contact-method-card {
  height: 100%;
  min-height: 272px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--line) 40%, rgba(255, 255, 255, 0.2) 60%);
  background:
    radial-gradient(circle at 18% 14%, rgba(126, 215, 220, 0.14), transparent 42%),
    linear-gradient(165deg, #16222d, #1e2c39 62%, #182430);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(8, 30, 52, 0.28);
  color: #e7eef5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: transform 300ms var(--motion-ease), box-shadow 300ms var(--motion-ease), border-color 300ms ease;
}

.contact-method-card:hover,
.contact-method-card:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 54%, rgba(255, 255, 255, 0.26) 46%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 40px rgba(8, 30, 52, 0.36);
}

.contact-method-icon {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1;
}

.contact-method-card h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  color: #f3f7fb;
}

.contact-method-card p {
  margin: 0;
  max-width: 30ch;
  color: color-mix(in srgb, #e7eef5 84%, transparent);
}

.contact-method-card .pill-link {
  margin-top: auto;
  width: fit-content;
  border-color: color-mix(in srgb, #9fb2c4 54%, transparent);
  color: #f3f7fb;
  background: color-mix(in srgb, #101a23 80%, transparent);
}

.contact-method-card .pill-link:hover,
.contact-method-card .pill-link:focus-visible {
  border-color: #8fd7dc;
  background: color-mix(in srgb, #0f6d72 36%, #101a23 64%);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
}

.contact-method-location {
  font-size: 1.05rem;
  font-weight: 600;
  color: #f3f7fb !important;
}

.contact-method-subtitle {
  color: color-mix(in srgb, #e7eef5 74%, transparent) !important;
}

.contact-quote {
  margin: 0 auto 40px;
  max-width: 900px;
  color: var(--text-soft);
  font-style: italic;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
}

.pill-link:active,
.theme-toggle:active {
  transform: translateY(0) scale(0.985);
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 64px;
  padding: 28px 0 42px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.contact-page-disclaimer {
  grid-column: 1 / -1;
  margin-top: 40px;
}

.contact-page-disclaimer h2,
.contact-page-disclaimer p {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  font-size: 0.5625rem;
  font-weight: 400;
  line-height: 1.5;
  color: color-mix(in srgb, var(--text-soft) 90%, transparent);
  text-align: left;
}

.contact-page-disclaimer h2 {
  margin: 0 0 8px;
}

.contact-page-disclaimer p {
  margin: 0 0 10px;
}

.contact-page-disclaimer p:last-child {
  margin-bottom: 0;
}

.page-contact .footer {
  margin-top: 36px;
}

.footer-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--motion-slow) var(--motion-ease), transform var(--motion-slow) var(--motion-ease);
}

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

.reveal {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity var(--motion-slow) var(--motion-ease), transform var(--motion-slow) var(--motion-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.page-about .reveal,
.page-experience .reveal {
  transition-duration: 800ms;
}

/* Keep the Professional Journey page readable even when JS reveal sequencing fails on some mobile browsers. */
.page-experience .reveal {
  opacity: 1;
  transform: none;
}

.page-experience .timeline::before {
  transform: scaleY(1);
}

.page-events .reveal,
.page-articles .reveal,
.page-resources .reveal {
  transition-duration: 660ms;
}

.page-contact .reveal {
  transition-duration: 700ms;
}

.reveal[data-reveal-delay="1"] {
  transition-delay: 80ms;
}

.reveal[data-reveal-delay="2"] {
  transition-delay: 150ms;
}

.reveal[data-reveal-delay="3"] {
  transition-delay: 220ms;
}

.event-card.reveal {
  transform: translate3d(0, 26px, 0);
}

.event-card.reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  display: grid;
  gap: 6px;
  align-content: start;
}

.stat-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--accent);
}

.stat-label {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 0ms linear 220ms;
}

.site-loader.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0ms;
}

.site-loader.is-leaving {
  opacity: 0;
}

.site-loader-logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  opacity: 0;
  transform: translate3d(0, 8px, 0);
  transition: opacity 260ms var(--motion-ease), transform 260ms var(--motion-ease);
}

.site-loader.is-active .site-loader-logo {
  opacity: 0.98;
  transform: translate3d(0, 0, 0);
}

@keyframes ambientGradient {
  0% {
    transform: translate3d(-2%, 0.4%, 0) scale(1.04);
  }

  100% {
    transform: translate3d(2.4%, -1.2%, 0) scale(1.08);
  }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 240px 1fr;
  }

  .headshot {
    width: 240px;
  }

  .headshot img {
    height: 310px;
  }

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

  .website-purpose {
    padding: 30px 30px;
  }

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

  .featured-articles {
    grid-template-columns: 1fr;
  }

  .event-group {
    grid-template-columns: 1fr;
  }

  .page-events .events-intro,
  .page-events .featured-recognition {
    margin-bottom: 28px;
  }

  .page-events .events-timeline .timeline-item {
    margin-bottom: 28px;
  }

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

  .page-experience .experience-intro {
    margin-bottom: 48px;
  }

  .page-experience .timeline {
    margin-left: 4px;
    padding-left: 20px;
  }

  .page-experience .timeline-item::before {
    left: -26px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .page-experience .container {
    width: min(1040px, 94vw);
  }

  .page-experience .timeline-item {
    margin-bottom: 26px;
  }

  .page-experience .card {
    padding: 22px;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding-top: 8px;
    transition: max-height var(--motion-medium) var(--motion-ease), opacity var(--motion-fast) ease;
  }

  .nav-links.open {
    max-height: 420px;
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .headshot {
    width: min(340px, 100%);
    margin: 0 auto;
  }

  .headshot img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .website-purpose {
    margin: 8px 0;
    padding: 24px 20px;
  }

  .coming-soon-card {
    padding: 24px 20px;
  }

  .values-dashboard,
  .learning-dashboard {
    grid-template-columns: 1fr;
  }

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

  .page-events .events-intro {
    margin-bottom: 26px;
  }

  .page-events .featured-recognition {
    margin-bottom: 20px;
  }

  .page-events .featured-recognition .section-heading {
    margin-bottom: 12px;
  }

  .page-events .recognition-card,
  .page-events .event-card,
  .page-events .membership-card {
    padding: 20px;
  }

  .page-events .timeline {
    margin-left: 0;
    padding-left: 18px;
  }

  .page-events .timeline-item::before {
    left: -24px;
  }

  .page-events .year-title {
    margin-bottom: 10px;
  }

  .page-events .events-timeline .timeline-item {
    margin-bottom: 24px;
  }

  .page-experience {
    overflow-x: hidden;
  }

  .page-experience::before {
    display: none;
  }

  .page-experience .reveal,
  .page-experience .footer-reveal {
    opacity: 1;
    transform: none;
  }

  .page-experience .timeline,
  .page-experience .timeline-item,
  .page-experience .card {
    min-width: 0;
  }

  .page-experience .section {
    padding: 48px 0;
  }

  .page-experience .container {
    width: min(100%, 95vw);
  }

  .page-experience .experience-intro {
    margin: 0 auto 32px;
  }

  .page-experience .experience-intro .section-title {
    font-size: clamp(2.25rem, 9vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .page-experience .experience-intro .section-intro {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .page-experience .timeline {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
  }

  .page-experience .timeline::before {
    left: -2px;
    transform: scaleY(1);
  }

  .page-experience .timeline-item {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow-wrap: anywhere;
  }

  .page-experience .timeline-item::before {
    left: -28px;
    top: 24px;
    transform: scale(1);
  }

  .page-experience .timeline-item h3 {
    font-size: clamp(1.5rem, 6.2vw, 1.75rem);
    line-height: 1.25;
    margin-bottom: 10px;
  }

  .page-experience .meta,
  .page-experience .timeline-item p,
  .page-experience .timeline-item li,
  .page-experience .card p {
    font-size: 1rem;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }

  .page-experience .list-clean li {
    padding: 10px 0;
  }

  .page-experience .section-divider {
    height: 0;
    margin: 0;
    background: transparent;
  }

  .page-experience .card {
    width: 100%;
    margin: 0 auto 32px;
    padding: 24px;
  }

  .page-experience .card:last-child {
    margin-bottom: 0;
  }

  .page-experience .section-heading {
    font-size: clamp(1.5rem, 6.5vw, 1.75rem);
    line-height: 1.25;
  }

  .page-experience .timeline-item:hover,
  .page-experience .timeline-item:focus-within {
    transform: none;
    border-color: var(--line);
    box-shadow: var(--shadow);
  }

  .page-experience .nav-toggle,
  .page-experience .theme-toggle {
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  body::before {
    animation: none;
  }

  .reveal,
  .footer-reveal,
  .quote-block cite,
  .timeline::before,
  .events-timeline::before,
  .timeline-item::before {
    opacity: 1 !important;
    transform: none !important;
  }

}
