:root {
  --bg: #07111c;
  --bg-top: #102133;
  --bg-bottom: #060b12;
  --accent: #67e4ff;
  --accent-soft: rgba(103, 228, 255, 0.16);
  --text: #f5efe3;
  --muted: #bfd0dc;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(9, 17, 28, 0.72);
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
  --max-width: 1220px;
  --topbar-height: 5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-height) + 1rem);
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg-bottom);
  background:
    radial-gradient(circle at top, var(--accent-soft), transparent 38%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  transition:
    background-color 500ms ease,
    background-image 500ms ease;
}

button,
a {
  color: inherit;
}

.scene,
.noise {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

.scene {
  z-index: 0;
  opacity: 0.78;
}

.noise {
  z-index: 1;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 4px 4px;
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: 1080px;
  margin: 0.85rem auto 0;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top left, rgba(103, 228, 255, 0.14), transparent 36%),
    rgba(0, 0, 0, 0.58);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.3rem;
  height: 2.3rem;
  flex: 0 0 auto;
  border-radius: 0.55rem;
  object-fit: contain;
  display: block;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name,
.brand-role {
  margin: 0;
}

.brand-name {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.brand-role {
  color: rgba(245, 239, 227, 0.58);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  min-width: 0;
  padding: 0 1rem;
}

.topbar-nav a {
  color: rgba(245, 239, 227, 0.7);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  transition:
    color 220ms ease,
    opacity 220ms ease;
}

.topbar-nav a:hover,
.topbar-nav a:focus-visible {
  color: rgba(245, 239, 227, 0.96);
}

.banner-right {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease;
}

.contact-icon-link svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: currentColor;
}

/* SoundScope link — full-colour icon (not a currentColor glyph like email/LinkedIn) */
.contact-icon-soundscope img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  border-radius: 0.3rem;
}
.contact-icon-soundscope:hover,
.contact-icon-soundscope:focus-visible {
  border-color: rgba(200, 169, 110, 0.5);
  background: rgba(200, 169, 110, 0.12);
}

.contact-icon-link:hover,
.contact-icon-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(103, 228, 255, 0.45);
  border-color: color-mix(in srgb, var(--accent) 42%, white 4%);
  background: rgba(103, 228, 255, 0.12);
  background: color-mix(in srgb, var(--accent) 12%, rgba(255, 255, 255, 0.05));
}

/* Instant styled tooltip for the header contact icons.
   Drops BELOW the icon (these sit at the very top of the page — no room above). */
.contact-icon-link[data-tip]::after {
  content: attr(data-tip);
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  width: max-content;
  max-width: 17rem;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.65rem;
  background: rgba(6, 11, 18, 0.97);
  color: rgba(245, 239, 227, 0.94);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  text-align: left;
  white-space: normal;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease;
  z-index: 40;
}
.contact-icon-link[data-tip]:hover::after,
.contact-icon-link[data-tip]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.1rem 1.5rem 5rem;
}

.video-section,
.knowledge-section,
#recognition {
  scroll-margin-top: calc(var(--topbar-height) + 1rem);
}

.showcase {
  display: grid;
  gap: 0;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 7rem;
  gap: 1rem;
  align-items: center;
  max-width: 54rem;
  margin: 0 auto 1.35rem;
}

.intro-copy {
  max-width: none;
  margin: 0;
  padding: 1rem 1.4rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 50px, black calc(100% - 50px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 50px, black calc(100% - 50px), transparent 100%);
}

.portrait-card {
  justify-self: end;
}

.portrait-frame {
  position: relative;
  width: min(7rem, 100%);
  height: 9rem;
  aspect-ratio: 14 / 18;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(5, 10, 18, 0.12), rgba(5, 10, 18, 0.48)),
    rgba(0, 0, 0, 0.36);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.portrait-frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 14, 0.1) 0%, rgba(4, 8, 14, 0.28) 52%, rgba(4, 8, 14, 0.42) 100%),
    linear-gradient(135deg, rgba(103, 228, 255, 0.10), transparent 50%);
  background:
    linear-gradient(180deg, rgba(4, 8, 14, 0.1) 0%, rgba(4, 8, 14, 0.28) 52%, rgba(4, 8, 14, 0.42) 100%),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 50%);
  pointer-events: none;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.92) contrast(1.03);
}

.carousel-block {
  display: block;
}

.video-section {
  margin-top: 3.5rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top left, rgba(103, 228, 255, 0.16), transparent 34%),
    rgba(0, 0, 0, 0.48);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.video-section-header {
  max-width: 48rem;
  margin-bottom: 1.35rem;
}

.video-heading {
  margin: 0;
  color: rgba(245, 239, 227, 0.82);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.7;
}

.video-accordion {
  display: grid;
  gap: 0.9rem;
}

.video-group {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(103, 228, 255, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.42);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.video-group-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  list-style: none;
}

.video-group-summary::after {
  content: "+";
  flex: 0 0 auto;
  color: rgba(245, 239, 227, 0.72);
  font-size: 1.35rem;
  line-height: 1;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.video-group-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.video-group-icon {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.04);
}

.video-group-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-group-summary::-webkit-details-marker {
  display: none;
}

.video-group-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.98;
}

.video-group-meta {
  color: rgba(245, 239, 227, 0.56);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.video-group[open] .video-group-summary {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.video-group[open] .video-group-summary::after {
  transform: rotate(45deg);
  color: rgba(245, 239, 227, 0.92);
}

.video-group-list {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 1rem 1.15rem 1.15rem;
}

.video-group[open] .video-group-list,
.video-group.is-open .video-group-list {
  display: grid;
}

.video-link-card {
  display: block;
  min-height: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.video-link-card:hover,
.video-link-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(103, 228, 255, 0.36);
  background: rgba(103, 228, 255, 0.08);
}

.video-link-thumb {
  position: relative;
  height: 0;
  margin: -1rem -1rem 0.9rem;
  padding-top: 56.25%;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.video-link-thumb img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 260ms ease,
    filter 260ms ease;
  filter: brightness(0.86) saturate(0.92);
}

@supports (aspect-ratio: 16 / 9) {
  .video-link-thumb {
    height: auto;
    padding-top: 0;
    aspect-ratio: 16 / 9;
  }

  .video-link-thumb img {
    position: static;
  }
}

.video-link-card:hover .video-link-thumb img,
.video-link-card:focus-visible .video-link-thumb img {
  transform: scale(1.03);
  filter: brightness(0.96) saturate(1);
}

.video-link-label {
  margin: 0;
  color: rgba(168, 233, 245, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-link-card h3 {
  margin: 0.45rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1;
}

.video-link-card p:last-child {
  margin: 0.75rem 0 0;
  color: rgba(245, 239, 227, 0.82);
  line-height: 1.6;
}

.knowledge-section {
  margin-top: 4.5rem;
  padding-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.9fr);
  gap: 1.4rem;
  align-items: start;
}

.knowledge-column {
  min-width: 0;
}

.recognition-panel {
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top left, rgba(103, 228, 255, 0.16), transparent 34%),
    rgba(0, 0, 0, 0.48);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.archive-header {
  max-width: 44rem;
  margin-bottom: 1.5rem;
}

.archive-eyebrow,
.archive-year {
  margin: 0;
  text-transform: uppercase;
}

.archive-eyebrow {
  color: rgba(245, 239, 227, 0.56);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
}

.archive-heading {
  margin: 0.5rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.95;
}

.archive-intro {
  max-width: 38rem;
  margin: 0.8rem 0 0;
  color: rgba(245, 239, 227, 0.76);
  line-height: 1.7;
}

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

.archive-card {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 1.15rem 1.15rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at top right, rgba(103, 228, 255, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.46);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 12%, transparent), transparent 34%),
    rgba(0, 0, 0, 0.46);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.archive-card:hover,
.archive-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(103, 228, 255, 0.46);
  border-color: color-mix(in srgb, var(--accent) 40%, white 6%);
  background:
    radial-gradient(circle at top right, rgba(103, 228, 255, 0.18), transparent 34%),
    rgba(0, 0, 0, 0.56);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--accent) 18%, transparent), transparent 34%),
    rgba(0, 0, 0, 0.56);
}

.archive-card-note {
  cursor: default;
}

.archive-card-note:hover,
.archive-card-note:focus-visible {
  transform: none;
}

.archive-year {
  display: none;
}

.archive-card h3 {
  margin: 0.45rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 0.98;
}

.archive-card p:last-child {
  margin: 0.75rem 0 0;
  color: rgba(245, 239, 227, 0.82);
  line-height: 1.65;
}

.skills-panel {
  position: sticky;
  top: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top left, rgba(103, 228, 255, 0.16), transparent 34%),
    rgba(0, 0, 0, 0.48);
  background:
    radial-gradient(circle at top left, color-mix(in srgb, var(--accent) 16%, transparent), transparent 34%),
    rgba(0, 0, 0, 0.48);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.video-section,
.skills-panel,
.recognition-panel {
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease;
}

.video-section:target,
.skills-panel:target,
.recognition-panel:target {
  border-color: rgba(103, 228, 255, 0.5);
  box-shadow:
    0 0 0 1px rgba(103, 228, 255, 0.28),
    0 24px 80px rgba(0, 0, 0, 0.28);
}

.video-section:target,
.skills-panel:target,
.recognition-panel:target {
  background:
    radial-gradient(circle at top left, rgba(103, 228, 255, 0.24), transparent 38%),
    rgba(0, 0, 0, 0.56);
}

.skills-header {
  max-width: 28rem;
}

.skills-heading {
  margin: 0;
  color: rgba(245, 239, 227, 0.82);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.1vw, 1.95rem);
  line-height: 1.65;
}

.skills-stack {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.skill-cluster {
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
}

.skill-cluster-label {
  margin: 0;
  color: rgba(245, 239, 227, 0.58);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.skill-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.75rem;
}

.skill-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.15rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(103, 228, 255, 0.22);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, rgba(255, 255, 255, 0.08));
  border-radius: 999px;
  background: rgba(103, 228, 255, 0.08);
  background: color-mix(in srgb, var(--accent) 8%, rgba(255, 255, 255, 0.03));
  color: rgba(245, 239, 227, 0.9);
  font-size: 0.88rem;
  line-height: 1.3;
}

.carousel-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.8rem;
  align-items: center;
  overflow: visible;
}

.carousel-viewport {
  position: relative;
  min-width: 0;
  overflow: visible;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 50px, black calc(100% - 50px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, black 50px, black calc(100% - 50px), transparent 100%);
}

.carousel-track {
  display: flex;
  align-items: start;
  gap: 0.85rem;
  padding: 1.2rem 0.5rem 2.8rem;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track:focus-visible {
  outline: 2px solid rgba(103, 228, 255, 0.66);
  outline: 2px solid color-mix(in srgb, var(--accent) 58%, white 8%);
  outline-offset: 0.5rem;
}

.carousel-arrow {
  position: relative;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    opacity 220ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(103, 228, 255, 0.54);
  border-color: color-mix(in srgb, var(--accent) 48%, white 6%);
  background: rgba(103, 228, 255, 0.10);
  background: color-mix(in srgb, var(--accent) 10%, rgba(255, 255, 255, 0.05));
}

.carousel-arrow.is-disabled {
  opacity: 0.42;
}

.carousel-card {
  position: relative;
  overflow: hidden;
  flex: 0 0 15.5rem;
  min-height: 32rem;
  padding: 0;
  border: 1px solid rgba(var(--card-accent-rgb), 0.30);
  border: 1px solid color-mix(in srgb, var(--card-accent) 24%, white 6%);
  border-radius: 1.4rem;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transition:
    transform 260ms ease,
    flex-basis 280ms cubic-bezier(0.22, 1, 0.36, 1),
    margin-bottom 280ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease;
  transform-origin: center top;
}

.carousel-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(6, 12, 20, 0.12) 38%, rgba(6, 12, 20, 0.84) 78%, rgba(6, 12, 20, 0.98) 100%),
    radial-gradient(circle at 24% 20%, rgba(var(--card-accent-rgb), 0.36), transparent 36%);
  background:
    linear-gradient(180deg, transparent 0%, rgba(6, 12, 20, 0.12) 38%, rgba(6, 12, 20, 0.84) 78%, rgba(6, 12, 20, 0.98) 100%),
    radial-gradient(circle at 24% 20%, color-mix(in srgb, var(--card-accent) 36%, transparent), transparent 36%);
  pointer-events: none;
}

.carousel-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 54%;
  background: linear-gradient(180deg, rgba(6, 12, 20, 0) 0%, rgba(6, 12, 20, 0.6) 34%, rgba(6, 12, 20, 0.97) 100%);
  opacity: 0.92;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.carousel-card:hover,
.carousel-card:focus-visible,
.carousel-card.is-active {
  transform: scaleY(1.045) scaleX(1.02);
  margin-bottom: 1.4rem;
  border-color: rgba(var(--card-accent-rgb), 0.62);
  border-color: color-mix(in srgb, var(--card-accent) 58%, white 4%);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

.carousel-card.is-active {
  flex-basis: 22rem;
}

.carousel-card:hover::after,
.carousel-card:focus-visible::after,
.carousel-card.is-active::after {
  opacity: 1;
}

.carousel-card:hover::before,
.carousel-card:focus-visible::before,
.carousel-card.is-active::before {
  background:
    linear-gradient(180deg, rgba(6, 12, 20, 0.18) 0%, rgba(6, 12, 20, 0.34) 34%, rgba(6, 12, 20, 0.9) 78%, rgba(6, 12, 20, 0.99) 100%),
    radial-gradient(circle at 24% 20%, rgba(var(--card-accent-rgb), 0.24), transparent 36%);
  background:
    linear-gradient(180deg, rgba(6, 12, 20, 0.18) 0%, rgba(6, 12, 20, 0.34) 34%, rgba(6, 12, 20, 0.9) 78%, rgba(6, 12, 20, 0.99) 100%),
    radial-gradient(circle at 24% 20%, color-mix(in srgb, var(--card-accent) 24%, transparent), transparent 36%);
}

.carousel-card:focus-visible {
  outline: 2px solid rgba(var(--card-accent-rgb), 0.76);
  outline: 2px solid color-mix(in srgb, var(--card-accent) 70%, white 6%);
  outline-offset: 3px;
}

.carousel-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(0.96);
  transition:
    filter 260ms ease,
    transform 260ms ease;
}

.carousel-card:hover .carousel-image img,
.carousel-card:focus-visible .carousel-image img,
.carousel-card.is-active .carousel-image img {
  filter: brightness(0.58) saturate(0.84);
  transform: scale(1.02);
}

.carousel-copy {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 1.15rem;
  background: linear-gradient(180deg, rgba(6, 12, 20, 0) 0%, rgba(6, 12, 20, 0.28) 18%, rgba(6, 12, 20, 0.88) 72%, rgba(6, 12, 20, 0.98) 100%);
}

.carousel-studio,
.carousel-kicker {
  margin: 0;
  text-transform: uppercase;
}

.carousel-studio {
  color: rgba(var(--card-accent-rgb), 0.80);
  color: color-mix(in srgb, var(--card-accent) 52%, #f5efe3 28%);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
}

.carousel-kicker {
  margin-top: 0.35rem;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: rgba(245, 239, 227, 0.66);
  transition:
    transform 220ms ease,
    color 220ms ease,
    letter-spacing 220ms ease;
}

.carousel-title {
  margin: 0.4rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  line-height: 0.94;
}

.carousel-points {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(10px);
  transition:
    max-height 280ms ease,
    opacity 240ms ease,
    transform 280ms ease,
    margin-top 280ms ease;
}

.carousel-points li {
  position: relative;
  padding-left: 0.9rem;
  color: rgba(245, 239, 227, 0.82);
  line-height: 1.55;
  font-size: 0.92rem;
}

.carousel-points li + li {
  margin-top: 0.45rem;
}

.carousel-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--card-accent), #ffffff);
  box-shadow: 0 0 14px rgba(var(--card-accent-rgb), 0.40);
  box-shadow: 0 0 14px color-mix(in srgb, var(--card-accent) 40%, transparent);
}

.carousel-review-block {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transform: translateY(8px);
  transition:
    max-height 300ms ease,
    opacity 240ms ease,
    transform 300ms ease,
    margin-top 300ms ease;
}

.carousel-review,
.carousel-review-source {
  margin: 0;
}

.carousel-review {
  color: rgba(245, 239, 227, 0.9);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.55;
}

.carousel-review-source {
  margin-top: 0.45rem;
  color: rgba(var(--card-accent-rgb), 0.88);
  color: color-mix(in srgb, var(--card-accent) 58%, #f5efe3 30%);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.carousel-card:hover .carousel-points,
.carousel-card:focus-visible .carousel-points,
.carousel-card.is-active .carousel-points {
  max-height: 11rem;
  margin-top: 0.85rem;
  opacity: 1;
  transform: translateY(0);
}

.carousel-card:hover .carousel-review-block,
.carousel-card:focus-visible .carousel-review-block,
.carousel-card.is-active .carousel-review-block {
  max-height: 9rem;
  margin-top: 0.95rem;
  opacity: 1;
  transform: translateY(0);
}

.carousel-card:hover .carousel-kicker,
.carousel-card:focus-visible .carousel-kicker,
.carousel-card.is-active .carousel-kicker {
  transform: scale(1.04);
  color: rgba(245, 239, 227, 0.94);
  letter-spacing: 0.22em;
}

@media (max-width: 1080px) {
  .video-group-list,
  .knowledge-section,
  .archive-grid,
  .compact-points {
    grid-template-columns: 1fr;
  }

  .skills-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  :root {
    --topbar-height: 4.4rem;
  }

  .topbar,
  main {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-inline: 1rem;
  }

  .topbar {
    gap: 0.6rem;
    margin-top: 0.6rem;
    padding-top: 0.7rem;
    padding-bottom: 0.7rem;
    padding-block: 0.7rem;
  }

  .topbar-nav {
    display: none;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark {
    width: 0.65rem;
    height: 2rem;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .brand-role {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .contact-icon-link {
    width: 2.3rem;
    height: 2.3rem;
  }

  .intro-band {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    justify-items: center;
  }

  .video-section,
  .recognition-panel,
  .skills-panel {
    padding: 1rem;
  }

  .portrait-card {
    justify-self: center;
  }

  .portrait-frame {
    width: min(7rem, 34vw);
  }

  .video-group-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .video-group-heading {
    width: 100%;
  }

  .carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-arrow {
    display: none;
  }

  .carousel-card,
  .carousel-card.is-active {
    flex-basis: 78vw;
    min-height: 28rem;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .carousel-card,
  .carousel-kicker,
  .carousel-points,
  body {
    transition: none;
  }

  .scene,
  .noise {
    opacity: 0.2;
  }
}
