/* Chuck Carr — Game Audio Portfolio */
:root {
  --bg: #08090c;
  --bg-elevated: #101218;
  --bg-card: #141722;
  --bg-card-hover: #1a1e2c;
  --text: #ece8e1;
  --text-muted: #9a958c;
  --text-dim: #6b675f;
  --accent: #e8a05c;
  --accent-soft: rgba(232, 160, 92, 0.14);
  --accent-strong: #f0b574;
  --line: rgba(236, 232, 225, 0.08);
  --line-strong: rgba(236, 232, 225, 0.16);
  --cyan: #6ec8c8;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Instrument Serif", Georgia, serif;
  --header-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(232, 160, 92, 0.08), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(110, 200, 200, 0.05), transparent 50%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-strong);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:hover {
  color: #ffd2a0;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--accent);
  color: #1a1208;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  backdrop-filter: blur(16px);
  background: rgba(8, 9, 12, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(8, 9, 12, 0.92);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--accent) 0%, #c46a2e 100%);
  box-shadow: 0 0 0 1px rgba(232, 160, 92, 0.35), 0 8px 20px rgba(232, 160, 92, 0.2);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 7px 5px 7px 5px;
  background:
    linear-gradient(90deg, transparent 0 8%, #1a1208 8% 14%, transparent 14% 28%, #1a1208 28% 34%, transparent 34% 52%, #1a1208 52% 58%, transparent 58% 78%, #1a1208 78% 86%, transparent 86%);
  opacity: 0.55;
  border-radius: 2px;
}

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

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

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

.nav-cta {
  color: #1a1208 !important;
  background: var(--accent);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--accent-strong);
  color: #1a1208 !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  place-items: center;
  gap: 6px;
  flex-direction: column;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3.5rem, 10vw, 7rem) 0 4rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -80px;
  top: -40px;
  background: radial-gradient(circle, rgba(232, 160, 92, 0.18), transparent 65%);
  pointer-events: none;
  filter: blur(10px);
}

.hero-inner {
  position: relative;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-size: clamp(2.75rem, 7vw, 4.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 0 0 1.75rem;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  max-width: 38rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #1a1208;
}

.btn-primary:hover {
  background: var(--accent-strong);
  color: #1a1208;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: rgba(232, 160, 92, 0.45);
  color: var(--accent-strong);
  background: var(--accent-soft);
}

.hero-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 560px;
}

.hero-stats li {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line-strong);
}

.hero-stats strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-stats span {
  color: var(--text-dim);
  font-size: 0.88rem;
}

.wave-bar {
  width: min(100% - 2.5rem, var(--max));
  margin: 3.5rem auto 0;
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  opacity: 0.55;
}

.wave-bar span {
  flex: 1;
  border-radius: 99px 99px 2px 2px;
  background: linear-gradient(to top, rgba(232, 160, 92, 0.15), var(--accent));
  animation: pulse 1.6s ease-in-out infinite;
  transform-origin: bottom;
}

.wave-bar span:nth-child(odd) { animation-duration: 1.3s; }
.wave-bar span:nth-child(3n) { animation-duration: 1.9s; }
.wave-bar span:nth-child(4n) { animation-duration: 1.1s; }

.wave-bar span:nth-child(1) { height: 28%; }
.wave-bar span:nth-child(2) { height: 52%; }
.wave-bar span:nth-child(3) { height: 70%; }
.wave-bar span:nth-child(4) { height: 40%; }
.wave-bar span:nth-child(5) { height: 88%; }
.wave-bar span:nth-child(6) { height: 55%; }
.wave-bar span:nth-child(7) { height: 35%; }
.wave-bar span:nth-child(8) { height: 75%; }
.wave-bar span:nth-child(9) { height: 48%; }
.wave-bar span:nth-child(10) { height: 92%; }
.wave-bar span:nth-child(11) { height: 60%; }
.wave-bar span:nth-child(12) { height: 38%; }
.wave-bar span:nth-child(13) { height: 80%; }
.wave-bar span:nth-child(14) { height: 45%; }
.wave-bar span:nth-child(15) { height: 65%; }
.wave-bar span:nth-child(16) { height: 30%; }
.wave-bar span:nth-child(17) { height: 72%; }
.wave-bar span:nth-child(18) { height: 50%; }
.wave-bar span:nth-child(19) { height: 85%; }
.wave-bar span:nth-child(20) { height: 42%; }
.wave-bar span:nth-child(21) { height: 58%; }
.wave-bar span:nth-child(22) { height: 95%; }
.wave-bar span:nth-child(23) { height: 36%; }
.wave-bar span:nth-child(24) { height: 68%; }
.wave-bar span:nth-child(25) { height: 44%; }
.wave-bar span:nth-child(26) { height: 78%; }
.wave-bar span:nth-child(27) { height: 52%; }
.wave-bar span:nth-child(28) { height: 32%; }
.wave-bar span:nth-child(29) { height: 62%; }
.wave-bar span:nth-child(30) { height: 48%; }

@keyframes pulse {
  0%, 100% { transform: scaleY(0.55); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Sections */
.section {
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.section-head {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-copy p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
}

.about-copy strong {
  color: var(--text);
  font-weight: 600;
}

.about-copy em {
  color: var(--accent-strong);
  font-style: italic;
  font-family: var(--display);
  font-size: 1.08em;
}

.about-meta {
  margin-top: 1.5rem !important;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--text-dim) !important;
  font-size: 0.95rem;
}

.disciplines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.discipline-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.discipline-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(232, 160, 92, 0.28);
  transform: translateY(-2px);
}

.discipline-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.discipline-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Credits */
.credits {
  background:
    linear-gradient(180deg, transparent, rgba(20, 23, 34, 0.55) 12%, rgba(20, 23, 34, 0.55) 88%, transparent);
}

.credit-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

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

.credit-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.credit-card:hover {
  border-color: rgba(232, 160, 92, 0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.credit-card.featured {
  background:
    linear-gradient(160deg, rgba(232, 160, 92, 0.1), transparent 45%),
    var(--bg-card);
  min-height: 100%;
}

.credit-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.credit-meta .year {
  color: var(--accent);
}

.credit-meta .role {
  color: var(--text-dim);
}

.credit-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.credit-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlight-list {
  margin: 2rem 0 0;
  padding: 1.25rem 1.25rem 1.25rem 2.1rem;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--text-muted);
  columns: 2;
  gap: 2rem;
}

.highlight-list li + li {
  margin-top: 0.45rem;
}

.external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.text-link {
  font-weight: 600;
  color: var(--accent-strong);
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line-strong);
}

.timeline li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.5rem;
  padding: 0 0 2rem 1.5rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 160, 92, 0.15);
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline-when {
  color: var(--text-dim);
  font-size: 0.92rem;
  font-weight: 600;
  padding-top: 0.15rem;
}

.timeline-body h3 {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.timeline-body .org {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-weight: 500;
  font-size: 0.98rem;
}

.timeline-body p:last-child {
  margin: 0;
  color: var(--text-muted);
}

/* Music */
.music-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.song-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.song-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.song-list li:first-child {
  border-top: 1px solid var(--line);
}

.song-list strong {
  letter-spacing: -0.01em;
}

.song-list span {
  color: var(--text-dim);
  font-size: 0.92rem;
}

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

.spotify-embed {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 0.65rem;
  box-shadow: var(--shadow);
}

.spotify-embed iframe {
  display: block;
  min-height: 352px;
}

/* Soundtracks page */
.page-hero {
  padding: calc(var(--header-h) + 2.5rem) 0 1.5rem;
}

.page-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0.35rem 0 1rem;
}

.page-hero-lead {
  max-width: 40rem;
  margin: 0;
}

.soundtrack-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.soundtrack-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem 1.6rem 1.6rem;
  box-shadow: var(--shadow);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.soundtrack-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--line-strong);
}

.soundtrack-card.featured {
  border-color: rgba(232, 160, 92, 0.28);
  background:
    linear-gradient(135deg, rgba(232, 160, 92, 0.08), transparent 55%),
    var(--bg-card);
}

.soundtrack-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 0.65rem;
  font-size: 0.88rem;
}

.soundtrack-meta .year {
  color: var(--accent-strong);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.soundtrack-meta .role {
  color: var(--text-dim);
}

.soundtrack-card h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.15;
  margin: 0 0 0.4rem;
  letter-spacing: -0.015em;
}

.soundtrack-artists {
  margin: 0 0 0.9rem;
  color: var(--cyan);
  font-size: 1.02rem;
}

.soundtrack-card p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  max-width: 48rem;
}

.soundtrack-card p:last-of-type {
  margin-bottom: 1.25rem;
}

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

.ost-songs {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  max-width: 36rem;
}

.ost-songs-label {
  margin: 0 0 0.55rem !important;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim) !important;
}

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

.ost-song-list li {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.45rem 0;
  border-top: 1px solid var(--line);
}

.ost-song-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.ost-song-list a {
  font-weight: 600;
  color: var(--accent-strong);
}

.ost-song-list a:hover {
  color: #ffd2a0;
}

.ost-song-list span {
  font-size: 0.88rem;
  color: var(--text-dim);
}

.soundtrack-footer-cta {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}

.soundtrack-footer-cta p {
  margin: 0;
  flex: 1 1 100%;
  color: var(--text-dim);
  font-size: 0.95rem;
}

@media (min-width: 720px) {
  .soundtrack-footer-cta p {
    flex: 1 1 auto;
  }
}

/* Awards */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.awards-note {
  margin: 1.75rem 0 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.awards-group-label {
  margin: 2rem 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.awards-group-label:first-of-type {
  margin-top: 0;
}

.awards-subnote {
  margin: 0 0 1rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 48rem;
}

@media (max-width: 720px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

/* Contact */
.contact {
  padding-bottom: clamp(5rem, 10vw, 7rem);
}

.contact-inner {
  max-width: 720px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--bg-elevated);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-dim);
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(232, 160, 92, 0.55);
  box-shadow: 0 0 0 3px rgba(232, 160, 92, 0.12);
}

.form-note {
  margin: 0.25rem 0 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.contact-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.contact-links a:hover {
  color: var(--accent-strong);
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

.back-top {
  color: var(--text-muted);
  font-weight: 500;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .about-grid,
  .music-grid,
  .credit-featured {
    grid-template-columns: 1fr;
  }

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

  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(8, 9, 12, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .site-nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
    border: none;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .credit-grid,
  .disciplines {
    grid-template-columns: 1fr;
  }

  .highlight-list {
    columns: 1;
  }

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

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

  .wave-bar span,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
