:root {
  --bg: #f5f4ef;
  --bg-soft: #eeede5;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --ink: #14201b;
  --ink-soft: rgba(20, 32, 27, 0.72);
  --ink-muted: rgba(20, 32, 27, 0.48);
  --line: rgba(20, 32, 27, 0.1);
  --accent: #27584d;
  --accent-soft: #7da79a;
  --shadow-soft: 0 14px 36px rgba(20, 32, 27, 0.08);
  --shadow-large: 0 28px 70px rgba(20, 32, 27, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  --font-serif: Iowan Old Style, "Palatino Linotype", "Book Antiqua", Palatino, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 12% -10%, rgba(125, 167, 154, 0.18), transparent 58%),
    linear-gradient(180deg, #faf9f5 0%, var(--bg) 58%, var(--bg-soft) 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

.container {
  width: min(1100px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-banner {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.banner-inner {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  padding: 0.85rem 0;
}

.banner-inner p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.banner-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.66rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 32, 27, 0.08);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  background: rgba(245, 244, 239, 0.72);
  backdrop-filter: blur(14px);
  transition: border-color 0.24s ease, background 0.24s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(248, 247, 242, 0.86);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-mark {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.94rem;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active { color: var(--ink); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.25rem;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  padding: 5.4rem 0 4rem;
  overflow: clip;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.hero-with-brain .hero-copy,
.hero-with-brain .hero-panel {
  position: relative;
  z-index: 3;
}

.hero-brain-layer {
  position: absolute;
  top: -1rem;
  right: clamp(-6rem, -4vw, -1rem);
  width: min(62vw, 820px);
  aspect-ratio: 8 / 7;
  pointer-events: none;
  z-index: 1;
}

.brain-turntable {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: drop-shadow(0 28px 50px rgba(39, 88, 77, 0.10));
  animation: brain-turntable-enter 1.6s cubic-bezier(.19,1,.22,1) 0.2s both;
}

.brain-turntable-stage {
  position: absolute;
  inset: 0;
  isolation: isolate;
}

.brain-turntable-stage::before,
.brain-turntable-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transform-origin: 50% 50%;
}

.brain-turntable-stage::before {
  inset: 16% 18% 18% 18%;
  z-index: 0;
  border-radius: 48% 52% 50% 50% / 46% 44% 56% 54%;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.84), rgba(168, 201, 190, 0.28) 38%, rgba(125, 167, 154, 0.14) 64%, rgba(125, 167, 154, 0) 78%),
    radial-gradient(circle at 50% 58%, rgba(39, 88, 77, 0.08), transparent 62%);
  filter: blur(18px);
  opacity: 0.72;
  animation: brain-volume-turn 26s cubic-bezier(.45,.05,.15,.95) infinite 1.8s;
}

.brain-turntable-stage::after {
  inset: 17% 21% 20% 22%;
  z-index: 1;
  border-radius: 47% 53% 50% 50% / 44% 46% 54% 56%;
  border: 1px solid rgba(39, 88, 77, 0.09);
  opacity: 0.42;
  animation: brain-shell-turn 26s cubic-bezier(.45,.05,.15,.95) infinite 1.8s;
}

.brain-render {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brain-view {
  opacity: 0;
  will-change: transform, opacity;
  transform-origin: 50% 50%;
}

.brain-view-left,
.brain-view-right {
  z-index: 2;
}

.brain-view-front {
  z-index: 3;
}

.brain-view-left {
  animation: brain-view-left 26s cubic-bezier(.45,.05,.15,.95) infinite 1.8s;
}

.brain-view-front {
  animation: brain-view-front 26s cubic-bezier(.45,.05,.15,.95) infinite 1.8s;
}

.brain-view-right {
  animation: brain-view-right 26s cubic-bezier(.45,.05,.15,.95) infinite 1.8s;
}

.brain-particle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.98), rgba(125,167,154,.9) 55%, rgba(125,167,154,0) 72%);
  opacity: 0;
  filter: blur(0.2px);
  animation: particle-enter 1.4s ease forwards, particle-drift 11s ease-in-out infinite 1.8s;
}

.particle-1 { top: 10%; left: 58%; animation-delay: .95s, 2s; }
.particle-2 { top: 18%; right: 17%; animation-delay: 1.1s, 2.2s; }
.particle-3 { top: 34%; left: 79%; animation-delay: 1.18s, 2.6s; }
.particle-4 { bottom: 28%; left: 14%; animation-delay: 1.06s, 2.1s; }
.particle-5 { bottom: 14%; right: 14%; animation-delay: 1.26s, 2.8s; }
.particle-6 { bottom: 6%; left: 48%; animation-delay: 1.32s, 3s; }

@keyframes brain-turntable-enter {
  from { opacity: 0; transform: translate3d(14px, 22px, 0) scale(.92) rotate(-2deg); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1) rotate(0deg); }
}

@keyframes brain-turntable-enter-mobile {
  from { opacity: 0; transform: translate3d(8px, 14px, 0) scale(.94); }
  to { opacity: 0.38; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes brain-volume-turn {
  0%, 14%, 100% {
    transform: translate3d(0, 0, 0) scale(1, 0.99) rotate(-3deg);
    opacity: 0.72;
  }
  24%, 34% {
    transform: translate3d(0, 0, 0) scale(0.82, 1.03) rotate(0deg);
    opacity: 0.82;
  }
  46%, 64% {
    transform: translate3d(0, 0, 0) scale(1, 1) rotate(2deg);
    opacity: 0.72;
  }
  74%, 84% {
    transform: translate3d(0, 0, 0) scale(0.82, 1.03) rotate(0deg);
    opacity: 0.82;
  }
}

@keyframes brain-shell-turn {
  0%, 14%, 100% {
    transform: translate3d(0, 0, 0) scale(1, 1) rotate(-2deg);
    opacity: 0.36;
  }
  24%, 34% {
    transform: translate3d(0, 0, 0) scale(0.78, 1.03) rotate(0deg);
    opacity: 0.52;
  }
  46%, 64% {
    transform: translate3d(0, 0, 0) scale(1, 1) rotate(2deg);
    opacity: 0.36;
  }
  74%, 84% {
    transform: translate3d(0, 0, 0) scale(0.78, 1.03) rotate(0deg);
    opacity: 0.52;
  }
}

@keyframes brain-view-left {
  0%, 16% {
    opacity: 0.96;
    transform: translate3d(0, 0, 0) scale(1, 1) rotate(-1.5deg);
  }
  22%, 30% {
    opacity: 0;
    transform: translate3d(18px, 0, 0) scale(0.74, 1.02) rotate(0deg);
  }
  66%, 78% {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) scale(0.74, 1.02) rotate(0deg);
  }
  86%, 100% {
    opacity: 0.96;
    transform: translate3d(0, 0, 0) scale(1, 1) rotate(-1.5deg);
  }
}

@keyframes brain-view-front {
  0%, 16%, 52%, 64%, 100% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.86);
  }
  24%, 34% {
    opacity: 0.8;
    transform: translate3d(0, 3px, 0) scale(0.97);
  }
  38%, 46% {
    opacity: 0.92;
    transform: translate3d(0, 0, 0) scale(1);
  }
  72%, 82% {
    opacity: 0.92;
    transform: translate3d(0, 0, 0) scale(1);
  }
  86%, 94% {
    opacity: 0.8;
    transform: translate3d(0, 3px, 0) scale(0.97);
  }
}

@keyframes brain-view-right {
  0%, 34% {
    opacity: 0;
    transform: translate3d(18px, 0, 0) scale(-0.74, 1.02) rotate(0deg);
  }
  44%, 64% {
    opacity: 0.96;
    transform: translate3d(0, 0, 0) scale(-1, 1) rotate(1.5deg);
  }
  72%, 80% {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) scale(-0.74, 1.02) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(-18px, 0, 0) scale(-0.74, 1.02) rotate(0deg);
  }
}

@keyframes particle-enter {
  from { opacity: 0; transform: scale(.4); }
  to { opacity: .82; transform: scale(1); }
}

@keyframes particle-drift {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-8px) translateX(4px); }
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.1rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  font-weight: 600;
  max-width: 9ch;
}

.hero-lead {
  margin: 0 0 1rem;
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  line-height: 1.6;
  color: var(--ink);
  max-width: 44rem;
}

.hero-subtext {
  margin: 0 0 1.6rem;
  color: var(--ink-soft);
  max-width: 40rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.92rem 1.4rem;
  font-weight: 600;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(39, 88, 77, 0.18);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 32, 27, 0.08);
}

.button:hover { transform: translateY(-1px); }

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card,
.info-card,
.statement-block,
.contact-panel,
.timeline-content,
.work-item,
.section-tint .statement-block {
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface) 100%);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.panel-card {
  padding: 1.3rem;
}

.panel-card-soft {
  background: linear-gradient(180deg, rgba(240, 245, 242, 0.9) 0%, rgba(255, 255, 255, 0.75) 100%);
}

.panel-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--ink-muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.panel-list li + li { margin-top: 0.6rem; }

.section {
  padding: 4.5rem 0;
}

.section-tint {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(238, 237, 229, 0.56) 100%);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.section-heading h2 {
  margin: 0.9rem 0 0.8rem;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.section-heading p,
.info-card p,
.work-body p,
.timeline-content p,
.contact-copy p {
  color: var(--ink-soft);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  padding: 1.3rem;
}

.info-card h3,
.work-body h3,
.timeline-content h3 {
  margin: 0 0 0.55rem;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.section-education {
  position: relative;
}

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

.degree-card {
  --degree-accent: var(--accent);
  --degree-soft: rgba(125, 167, 154, 0.2);
  --tilt-x: 0;
  --tilt-y: 0;
  --glow-x: 50%;
  --glow-y: 35%;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1rem;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(252, 252, 249, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transform: perspective(1200px) rotateX(calc(var(--tilt-y) * 1deg)) rotateY(calc(var(--tilt-x) * 1deg));
  transform-style: preserve-3d;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
  outline: none;
}

.degree-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.72), transparent 42%);
  opacity: 0;
  transition: opacity 0.26s ease;
  pointer-events: none;
}

.degree-card:hover,
.degree-card:focus-visible,
.degree-card.is-active {
  border-color: rgba(20, 32, 27, 0.12);
  box-shadow: var(--shadow-large);
}

.degree-card:hover::before,
.degree-card:focus-visible::before,
.degree-card.is-active::before {
  opacity: 1;
}

.degree-card[data-city="Durham"] {
  --degree-accent: #2f594a;
  --degree-soft: rgba(125, 167, 154, 0.26);
}

.degree-card[data-city="Edinburgh"] {
  --degree-accent: #59697a;
  --degree-soft: rgba(128, 144, 160, 0.24);
}

.degree-card[data-city="Sheffield"] {
  --degree-accent: #6a5a4b;
  --degree-soft: rgba(154, 134, 108, 0.22);
}

.degree-card-visual {
  position: relative;
  min-height: 228px;
  padding: 1rem;
  border-radius: calc(var(--radius-lg) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4)),
    radial-gradient(circle at 50% 18%, var(--degree-soft), transparent 58%),
    linear-gradient(180deg, rgba(245, 244, 239, 0.92), rgba(255, 255, 255, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.degree-aurora {
  position: absolute;
  inset: 12% 10% auto;
  height: 58%;
  border-radius: 999px;
  background: radial-gradient(circle, var(--degree-soft), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.degree-visual-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.degree-city,
.degree-landmark,
.degree-facts span {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 0.34rem 0.72rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 32, 27, 0.08);
}

.degree-city {
  color: var(--degree-accent);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.degree-landmark {
  color: rgba(20, 32, 27, 0.58);
  font-size: 0.76rem;
  white-space: nowrap;
}

.degree-illustration {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 148px;
  color: var(--degree-accent);
}

.degree-illustration svg {
  width: 100%;
  max-width: 290px;
  height: auto;
  overflow: visible;
}

.landmark-shell {
  fill: rgba(255, 255, 255, 0.34);
}

.landmark-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landmark-fade {
  opacity: 0.38;
}

.degree-card-body {
  padding: 1.2rem 0.1rem 0.2rem;
}

.degree-card-body h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.degree-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.95rem 0 0;
}

.degree-facts span {
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 500;
}

.degree-note {
  margin: 1rem 0 0;
  color: var(--ink-soft);
}

.work-list {
  display: grid;
  gap: 1rem;
}

.work-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  padding: 1.3rem;
}

.work-meta {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--ink-muted);
}

.work-body p { margin: 0; }
.work-links { margin-top: 0.7rem; }
.work-links a {
  color: var(--accent);
  font-weight: 600;
}

.statement-block {
  margin-top: 1.2rem;
  padding: 1.3rem;
}

.statement-block p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.32rem, 2vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-year {
  padding-top: 0.8rem;
  color: var(--ink-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-content {
  padding: 1.2rem 1.3rem;
}

.timeline-content p { margin: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.contact-panel {
  padding: 0.4rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1rem 0.95rem;
  border-radius: 20px;
  transition: background 0.2s ease;
}

.contact-row + .contact-row {
  border-top: 1px solid rgba(20, 32, 27, 0.08);
}

.contact-row:hover {
  background: rgba(255, 255, 255, 0.58);
}

.contact-label {
  color: var(--ink-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-value {
  color: var(--ink);
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 900px) {
  .hero-grid,
  .contact-grid,
  .card-grid-three,
  .degree-grid {
    grid-template-columns: 1fr;
  }

  .hero-brain-layer {
    top: 1.8rem;
    right: -2.4rem;
    width: min(92vw, 620px);
    opacity: 0.9;
  }

  .timeline-row,
  .work-item {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .timeline-year,
  .work-meta {
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100%, calc(100% - 1.35rem));
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.5rem 1rem 1rem;
    background: rgba(248, 247, 242, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.24s ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(20, 32, 27, 0.06);
  }

  .banner-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.45rem;
  }

  .hero {
    padding: 4.5rem 0 3rem;
  }

  .hero-brain-layer {
    top: 2.6rem;
    right: -3.8rem;
    width: 112vw;
    opacity: 0.4;
  }

  .brain-turntable {
    filter: drop-shadow(0 12px 20px rgba(39, 88, 77, 0.06));
    animation-name: brain-turntable-enter-mobile;
  }

  .brain-turntable-stage::before {
    inset: 18% 21% 22% 21%;
    opacity: 0.42;
    animation: none;
  }

  .brain-turntable-stage::after {
    inset: 20% 26% 24% 26%;
    opacity: 0.2;
    animation: none;
  }

  .brain-view-left {
    opacity: 0.88;
    animation: none;
    transform: translate3d(0, 0, 0) scale(1, 1) rotate(-1deg);
  }

  .brain-view-front {
    opacity: 0.16;
    animation: none;
    transform: translate3d(0, 8px, 0) scale(0.92);
  }

  .brain-view-right {
    display: none;
  }

  .brain-particle {
    width: 8px;
    height: 8px;
  }

  .hero-copy,
  .section-heading,
  .contact-copy {
    text-align: left;
  }

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

  .button {
    width: 100%;
  }

  .degree-card {
    padding: 0.85rem;
    transform: none;
  }

  .degree-card-visual {
    min-height: 208px;
    padding: 0.9rem;
  }

  .degree-visual-meta {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.9rem;
  }

  .degree-landmark {
    white-space: normal;
  }

  .degree-card-body h3 {
    font-size: 1.6rem;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .degree-card {
    transform: none;
  }

  .brain-turntable,
  .brain-turntable-stage::before,
  .brain-turntable-stage::after,
  .brain-view {
    animation: none !important;
  }

  .brain-turntable {
    opacity: 1 !important;
  }

  .brain-turntable-stage::before,
  .brain-turntable-stage::after,
  .brain-view-front,
  .brain-view-right {
    opacity: 0 !important;
  }

  .brain-view-left {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) scale(1, 1) rotate(0deg) !important;
  }

  html { scroll-behavior: auto; }
}
