:root {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --text: #1a1918;
  --text-muted: #5c5955;
  --accent: #c45c26;
  --accent-soft: rgba(196, 92, 38, 0.12);
  --border: rgba(26, 25, 24, 0.1);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(26, 25, 24, 0.08);
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --space-section: clamp(2rem, 3.5vw, 2.75rem);
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #ffffff;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

code {
  font-size: 0.9em;
  background: #ffffff;
  padding: 0.15em 0.4em;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  background: #ffffff;
  backdrop-filter: none;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--text);
  text-decoration: none;
}

.nav {
  display: flex;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--accent);
}

.hero {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  align-items: center;
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem)
    clamp(1.5rem, 3vw, 2.25rem);
  max-width: var(--max);
  margin: 0 auto;
}

@media (min-width: 880px) {
  .hero {
    grid-template-columns: minmax(200px, 300px) 1fr;
  }
}

.hero__media {
  position: relative;
}

.hero__photo {
  width: min(100%, 300px);
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 50%;
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #eceae8, #e0ddd8);
}

.hero__photo--fallback {
  min-height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8e0d8 0%, #d4ccc4 50%, #c9bfb5 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hero__content {
  max-width: 540px;
}

.hero__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__role {
  margin: 0.5rem 0 1.25rem;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
}

.hero__bio > .hero-bio__lead {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.hero__bio strong {
  font-weight: 700;
  color: var(--text);
}

.hero-bio__tech {
  margin: 0.4rem 0 0;
}

.hero-bio__tech-summary {
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 0;
  font: inherit;
  display: inline-block;
}

.hero-bio__tech-summary::-webkit-details-marker {
  display: none;
}

.hero-bio__tech-summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.hero-bio__tech-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.3;
}

.hero-bio__tech-summary:hover .hero-bio__tech-link {
  text-decoration: underline;
  text-decoration-color: rgba(196, 92, 38, 0.45);
  text-underline-offset: 0.15em;
}

.hero-bio__tech-link--when-open {
  display: none;
}

.hero-bio__tech[open] .hero-bio__tech-link--when-closed {
  display: none;
}

.hero-bio__tech[open] .hero-bio__tech-link--when-open {
  display: inline;
}

.hero-bio__tech-body {
  margin: 0.5rem 0 0;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(26, 25, 24, 0.08);
}

.hero-bio__tech-body .clip-group__description {
  margin: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem 1rem;
  margin-top: 1.25rem;
}

.hero__social {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.hero__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 999px;
  border: 2px solid var(--border);
  color: var(--text);
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.hero__icon-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hero__icon-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero__icon {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}

.hero__icon--linkedin {
  width: 1.05rem;
  height: 1.05rem;
}

@media (max-width: 479px) {
  .hero__social {
    gap: 0.5rem;
  }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.button:active {
  transform: scale(0.98);
}

.button--primary {
  background: var(--text);
  color: var(--bg);
}

.button--primary:hover {
  background: #2d2c2a;
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.button--ghost:hover {
  border-color: var(--text-muted);
}

.section {
  padding: var(--space-section) clamp(1.25rem, 4vw, 2.5rem);
}

.section--alt {
  background: var(--bg-alt);
}

.section--work {
  background: var(--bg);
}

.section__inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section__header {
  margin-bottom: clamp(1.15rem, 2vw, 1.5rem);
  max-width: min(40rem, 100%);
}

.section--work .section__header {
  max-width: 100%;
}

.section__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section__lede {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.5;
  text-wrap: balance;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.projects-carousel {
  position: relative;
}

.projects-carousel__frame {
  max-width: min(920px, 100%);
  margin: 0 auto;
}

.projects-carousel__viewport {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
  overflow: hidden;
}

.projects-carousel__track {
  display: grid;
  min-height: 100%;
}

.projects-carousel__slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition:
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms ease,
    visibility 0s linear 560ms;
}

.projects-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.projects-carousel__slide.is-entering-from-right,
.projects-carousel__slide.is-entering-from-left,
.projects-carousel__slide.is-leaving-to-left,
.projects-carousel__slide.is-leaving-to-right {
  visibility: visible;
  transition-delay: 0s;
}

.projects-carousel__slide.is-entering-from-right {
  transform: translate3d(100%, 0, 0);
}

.projects-carousel__slide.is-entering-from-left {
  transform: translate3d(-100%, 0, 0);
}

.projects-carousel__slide.is-leaving-to-left {
  opacity: 1;
  transform: translate3d(-100%, 0, 0);
}

.projects-carousel__slide.is-leaving-to-right {
  opacity: 1;
  transform: translate3d(100%, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .projects-carousel__slide {
    transition: none;
  }
}

.project-slide__media {
  aspect-ratio: 16 / 6;
  background: linear-gradient(145deg, #e8e6e2, #dad6d0);
  overflow: hidden;
  padding: clamp(0.35rem, 1vw, 0.6rem) clamp(0.5rem, 1.4vw, 0.85rem);
}

.project-slide__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.project-slide__body {
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 2.5vw, 1.35rem)
    clamp(1.15rem, 2.5vw, 1.5rem);
}

.project-slide__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
}

.project-slide__desc {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.project-slide__meta {
  margin: 0;
}

.project-slide__github {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.project-slide__github:hover {
  border-bottom-color: currentColor;
}

.project-slide__github:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.projects-carousel__btn {
  position: absolute;
  top: clamp(0.9rem, 2vw, 1.1rem);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.projects-carousel__btn--prev {
  left: clamp(0.8rem, 2vw, 1rem);
}

.projects-carousel__btn--next {
  right: clamp(0.8rem, 2vw, 1rem);
}

.projects-carousel__btn:hover {
  color: var(--accent);
  border-color: rgba(196, 92, 38, 0.35);
  background: rgba(255, 255, 255, 0.95);
}

.projects-carousel__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.projects-carousel__chevron {
  width: 22px;
  height: 22px;
}

.projects-carousel__status {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

@media (max-width: 560px) {
  .projects-carousel__btn {
    top: 0.75rem;
    width: 40px;
    height: 40px;
  }
}

.video-stack {
  display: flex;
  flex-direction: column;
  gap: clamp(2.25rem, 4vw, 3.25rem);
}

.showcase-group {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.35rem);
}

.showcase-group__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem 1.5rem;
  padding-bottom: clamp(0.65rem, 1.5vw, 0.85rem);
  border-bottom: 1px solid var(--border);
}

.showcase-group__logo-wrap {
  flex-shrink: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.showcase-group__logo {
  max-width: min(220px, 42vw);
  width: auto;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
}

.showcase-group__titles {
  flex: 1;
  min-width: min(100%, 240px);
}

.showcase-group__org {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.8vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--text);
}

.showcase-group__org-site {
  margin-left: 0.75rem;
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #66615e;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 92, 38, 0.25);
}

.showcase-group__org-site:hover {
  color: var(--text);
  border-bottom-color: rgba(196, 92, 38, 0.5);
}

.showcase-group__role {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
}

.showcase-group__summary {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-line;
}

.related-embed {
  width: 100%;
  margin: 0 0 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 8px 28px rgba(26, 25, 24, 0.06);
}

.related-embed__bar {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.related-embed__link {
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text);
  text-decoration: none;
}

.related-embed__link:hover {
  color: var(--accent);
}

.related-embed__frame {
  width: 100%;
  min-height: min(70vh, 520px);
  border: none;
  display: block;
  background: #ffffff;
}

.related-embed__fallback {
  margin: 0;
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.related-embed__fallback a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.related-embed__fallback a:hover {
  text-decoration: underline;
}

.showcase-group__clips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding-top: 0.2rem;
}

@media (min-width: 768px) {
  .showcase-group__clips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }
}

.clip-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  grid-column: 1 / -1;
}

.clip-group__heading {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.94rem, 2.1vw, 1.05rem);
  font-weight: 600;
  letter-spacing: -0.012em;
  text-transform: none;
  color: var(--text-muted);
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(26, 25, 24, 0.08);
}

.clip-group__details {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 3px rgba(26, 25, 24, 0.06);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.clip-group__details:hover {
  border-color: rgba(196, 92, 38, 0.28);
  box-shadow: 0 2px 8px rgba(26, 25, 24, 0.06);
}

.clip-group__details-summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
}

.clip-group__details-summary::-webkit-details-marker {
  display: none;
}

.clip-group__details-summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.clip-group__details-summary-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  min-width: 0;
}

.clip-group__details-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.clip-group__details-hint {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.3;
}

.clip-group__details-hint--when-open {
  display: none;
}

.clip-group__details[open] .clip-group__details-hint--when-closed {
  display: none;
}

.clip-group__details[open] .clip-group__details-hint--when-open {
  display: inline;
}

.clip-group__details-chevron {
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: 0.15rem;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.18s ease;
  opacity: 0.95;
}

.clip-group__details[open] .clip-group__details-chevron {
  transform: rotate(-135deg);
  margin-top: 0.35rem;
}

.clip-group__details-body {
  margin: 0.65rem 0 0;
  padding: 0.65rem 0 0;
  border-top: 1px solid rgba(26, 25, 24, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.clip-group__details-body .clip-group__description {
  margin: 0;
}

.clip-group__description {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-line;
}

.clip-group__description-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 92, 38, 0.35);
}

.clip-group__description-link:hover {
  border-bottom-color: rgba(196, 92, 38, 0.65);
}

.clip-group__clips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .clip-group__clips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
  }

  .clip-group__clips > .video-block:only-child,
  .showcase-group__clips > .video-block:only-child {
    grid-column: 1 / -1;
    max-width: min(100%, 56rem);
    justify-self: center;
  }
}

.video-stack__empty {
  margin: 0;
  padding: 1.5rem 1.25rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 1rem;
}

.video-block {
  display: block;
  min-width: 0;
  position: relative;
  isolation: isolate;
  transition: z-index 0s step-end;
}

.video-block:hover {
  z-index: 8;
  transition: z-index 0s step-start;
}

.video-block__media {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.video-block__embed-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #0d0d0d;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.video-block:hover .video-block__embed-wrap {
  transform: scale(1.07);
  box-shadow: 0 32px 70px rgba(26, 25, 24, 0.16);
}

.video-block__embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-block__pending {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #2a2826 0%, #1a1918 100%);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  transform-origin: center center;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.video-block:hover .video-block__pending {
  transform: scale(1.07);
  box-shadow: 0 32px 70px rgba(26, 25, 24, 0.16);
}

.video-block__pending-text {
  margin: 0;
  max-width: 28rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(250, 249, 247, 0.85);
}

.video-block__pending-text code {
  background: rgba(255, 255, 255, 0.1);
  color: #f5f0e8;
}

.video-block__caption {
  margin-top: 0.15rem;
  padding: 0 0.15rem;
}

.video-block__caption-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.video-block__caption-desc {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .video-block:hover .video-block__embed-wrap,
  .video-block:hover .video-block__pending {
    transform: none;
  }

  .video-block:hover {
    z-index: auto;
  }
}

.pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.pill-list li {
  padding: 0.45rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(26, 25, 24, 0.04);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.timeline li {
  padding: 1.35rem 1.5rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(26, 25, 24, 0.05);
}

.timeline__brand {
  margin-bottom: 1rem;
}

.timeline__logo {
  max-width: 200px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.timeline__org {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.timeline__meta {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
}

.timeline__detail {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.edu-speech {
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border);
}

.edu-speech__media {
  margin-top: 0.75rem;
  width: min(100%, 430px);
}

.edu-speech__frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-lg);
  display: block;
  background: #ffffff;
}

.edu-speech summary {
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.8rem;
  font-weight: 700;
  color: var(--accent);
}

.edu-speech__summary-label {
  font-weight: 700;
}

.edu-speech__summary-hint {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.edu-speech__body {
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.edu-speech__quote {
  margin: 0.65rem 0 0;
  padding: 0.5rem 0 0.35rem 1rem;
  border-left: 3px solid rgba(196, 92, 38, 0.35);
}

.edu-speech__quote-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  font-style: italic;
}

.edu-speech__quote-attribution {
  display: block;
  margin: 0.6rem 0 0;
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text);
}

.other-highlights__content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.other-highlights__summary {
  margin: 0;
  max-width: 720px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
}

.other-highlights__summary strong {
  font-weight: 700;
  color: var(--text);
}

.other-highlights__content .related-embed__frame {
  min-height: min(85vh, 920px);
}

.highlights-split {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.75rem);
}

@media (min-width: 960px) {
  .highlights-split {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem 2.5rem;
  }

  .highlights-subsection {
    flex: 1;
    min-width: 0;
  }
}

.highlights-subsection__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--border);
}

.highlight-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.highlight-card {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 520px) {
  .highlight-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

.highlight-card__logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
}

.highlight-card__logo {
  max-width: 160px;
  max-height: 44px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.highlight-card__body {
  flex: 1;
  min-width: 0;
}

.highlight-card__title {
  display: inline-block;
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

a.highlight-card__title:hover {
  color: var(--accent);
}

span.highlight-card__title {
  color: var(--text);
}

.highlight-card__meta {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}

.highlight-card__desc {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  white-space: pre-line;
}

.achievements {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .achievements {
    grid-template-columns: repeat(2, 1fr);
  }
}

.achievements__item {
  margin: 0;
  padding: 1.25rem 1.35rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.achievements__item--featured {
  border-color: rgba(196, 92, 38, 0.28);
  box-shadow: 0 12px 40px rgba(196, 92, 38, 0.06);
  background: #ffffff;
}

.achievements__logo {
  max-width: 160px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.achievements__body {
  position: relative;
  padding-top: 0.35rem;
}

.achievements__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.site-footer {
  padding: 1.35rem clamp(1.25rem, 4vw, 2.5rem) 1.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  color: var(--accent);
}
