:root {
  --black: #050505;
  --ink: #101010;
  --deep: #0a0a0a;
  --panel: #151515;
  --paper: #f2f2ef;
  --paper-2: #e5e5e0;
  --white: #f7f7f4;
  --muted: #9a9a94;
  --muted-dark: #6f6f69;
  --silver: #d8d8d4;
  --line: rgba(16, 16, 16, 0.12);
  --line-light: rgba(247, 247, 244, 0.16);
  --max: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 96px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

::selection {
  background: var(--white);
  color: var(--black);
}

section[id] {
  scroll-margin-top: 96px;
}

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

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

button {
  font: inherit;
}

.site-header {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 22px;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}

.brand-mark {
  position: relative;
  z-index: 101;
  align-items: center;
  background: rgba(5, 5, 5, 0.34);
  border: 1px solid rgba(247, 247, 244, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: inline-flex;
  height: 64px;
  isolation: isolate;
  padding: 7px;
  pointer-events: auto;
  width: 58px;
}

.brand-mark::before,
.brand-mark::after {
  border-radius: inherit;
  content: "";
  inset: -5px;
  pointer-events: none;
  position: absolute;
}

.brand-mark::before {
  animation: brand-orbit 8s linear infinite;
  background: conic-gradient(from 0deg, transparent 0 42%, rgba(247, 247, 244, 0.86) 51%, transparent 62% 100%);
  opacity: 0.54;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.brand-mark::after {
  background: radial-gradient(circle, rgba(247, 247, 244, 0.14), transparent 64%);
  filter: blur(10px);
  opacity: 0.52;
  transform: scale(1.04);
  z-index: -1;
}

.brand-mark img {
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 16px 34px rgba(0, 0, 0, 0.48));
  height: 100%;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}

@keyframes brand-orbit {
  to {
    transform: rotate(360deg);
  }
}

.nav-links {
  align-items: center;
  background: rgba(5, 5, 5, 0.46);
  border: 1px solid rgba(247, 247, 244, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 999px;
  display: flex;
  gap: 2px;
  justify-self: end;
  padding: 7px;
  pointer-events: auto;
}

.nav-links a {
  color: rgba(247, 247, 244, 0.66);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  min-width: 0;
  padding: 8px 12px;
  text-align: left;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a.active {
  background: rgba(247, 247, 244, 0.1);
  color: var(--white);
}

.nav-links a.active span {
  color: var(--white);
}

.nav-links span {
  color: rgba(247, 247, 244, 0.42);
  font-size: 0.68rem;
  font-weight: 900;
}

.lucide {
  height: 18px;
  width: 18px;
  stroke-width: 1.8;
}

.hero-section {
  display: grid;
  gap: clamp(28px, 4vw, 76px);
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.78fr);
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(116px, 12vh, 150px) clamp(18px, 5vw, 72px) clamp(112px, 14vh, 168px);
  position: relative;
  align-content: end;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0.74;
  cursor: pointer;
}

.scroll-indicator .lucide {
  width: 28px;
  height: 28px;
  stroke: var(--white);
  stroke-width: 1.5;
}

.hero-bg,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-bg {
  filter: grayscale(0.18) contrast(1.04) brightness(0.82);
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.08) 48%, rgba(5, 5, 5, 0.46) 100%);
}

.sound-lines {
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  position: absolute;
}

.sound-lines span {
  border: 1px solid rgba(247, 247, 244, 0.08);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  height: calc(120px + var(--i, 0) * 72px);
  left: -8vw;
  position: absolute;
  top: calc(12vh + var(--i, 0) * 5vh);
  width: calc(46vw + var(--i, 0) * 70px);
}

.sound-lines span:nth-child(1) { --i: 1; }
.sound-lines span:nth-child(2) { --i: 2; }
.sound-lines span:nth-child(3) { --i: 3; }
.sound-lines span:nth-child(4) { --i: 4; }
.sound-lines span:nth-child(5) { --i: 5; }
.sound-lines span:nth-child(6) { --i: 6; }

.hero-copy {
  align-self: end;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--silver);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--muted-dark);
}

#music .section-heading {
  border-bottom-color: rgba(247, 247, 244, 0.1);
}

#music .eyebrow.dark,
.project-copy .eyebrow.dark {
  color: rgba(247, 247, 244, 0.52);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.05;
  margin-bottom: 0;
}

h3 {
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.15;
  margin-bottom: 0;
}

.hero-logo span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hero-logo img {
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.7));
  max-width: 540px;
  width: min(100%, 540px);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.hero-links a {
  color: rgba(247, 247, 244, 0.75);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  padding: 8px 0 4px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(247, 247, 244, 0.25);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hero-links a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

.hero-links a:not(:last-child)::after {
  content: '·';
  display: inline-block;
  margin: 0 14px;
  color: rgba(247, 247, 244, 0.2);
  pointer-events: none;
  font-weight: 900;
  border-bottom: none;
}

.section-wrap {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(78px, 8vw, 108px) clamp(18px, 4vw, 48px);
}

.section-heading {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(120px, 0.18fr) 1fr;
  margin-bottom: 36px;
  padding-bottom: 22px;
}

.section-heading .eyebrow {
  margin: 0 0 6px;
}

.section-heading h2 {
  max-width: 920px;
}

.album-showcase {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
}

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

.album-card {
  background: var(--panel);
  border: 1px solid rgba(247, 247, 244, 0.08);
  overflow: hidden;
  position: relative;
}

.album-card img {
  aspect-ratio: 1;
  filter: grayscale(0.14) contrast(1.02);
  object-fit: cover;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.album-featured {
  min-height: 100%;
}

.album-featured img {
  height: 100%;
  min-height: 420px;
}

.album-card:hover img {
  transform: scale(1.035);
}

.album-card div {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.9));
  bottom: 0;
  left: 0;
  min-height: 92px;
  padding: 34px 14px 14px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.album-card span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 6px;
}

.album-card h3 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 850;
}

.album-featured div {
  min-height: 148px;
  padding: 72px 24px 24px;
}

.album-featured h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.video-section {
  background: var(--paper);
  color: var(--ink);
}

.video-section .section-heading,
.bio-section .section-heading {
  border-bottom-color: rgba(16, 16, 16, 0.1);
}

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

.video-card {
  background: rgba(255, 255, 252, 0.78);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  min-height: 100%;
  overflow: hidden;
  position: relative;
}

.video-card img {
  aspect-ratio: 16 / 9;
  filter: grayscale(0.82) contrast(1.04);
  object-fit: cover;
  width: 100%;
  transition: filter 0.5s ease;
}

.video-card:hover img {
  filter: grayscale(0) contrast(1.02);
}

.video-card span {
  color: #787872;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 18px 18px 0;
  text-transform: uppercase;
}

.video-card h3 {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  min-height: 84px;
  padding: 7px 64px 20px 18px;
}

.video-card .lucide {
  background: var(--ink);
  border-radius: 999px;
  bottom: 18px;
  color: var(--white);
  height: 34px;
  padding: 8px;
  position: absolute;
  right: 18px;
  width: 34px;
}

.video-card:hover {
  background: var(--ink);
  color: var(--white);
}

.project-section,
.contact-layout {
  align-items: center;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.project-copy p,
.bio-layout p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.05rem;
}

.project-copy {
  max-width: 430px;
}

.project-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.bio-layout p {
  color: #74746e;
}

.project-logo {
  align-items: center;
  background: #050505;
  border-right: 1px solid rgba(247, 247, 244, 0.08);
  display: flex;
  justify-content: center;
  min-height: 0;
  padding: 24px;
}

.project-logo img {
  max-width: 154px;
  width: 100%;
}

.project-media {
  align-items: stretch;
  background: #0d0d0d;
  border: 1px solid rgba(247, 247, 244, 0.08);
  display: grid;
  gap: 0;
  grid-template-columns: minmax(156px, 0.26fr) minmax(0, 0.74fr);
}

.project-video-player {
  background: var(--ink);
  min-width: 0;
}

.project-video-player iframe {
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
  height: auto;
  width: 100%;
}

.project-video-grid {
  display: grid;
  gap: 0;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-video {
  background: rgba(247, 247, 244, 0.06);
  border: 0;
  border-top: 1px solid rgba(247, 247, 244, 0.08);
  border-right: 1px solid rgba(247, 247, 244, 0.08);
  color: var(--white);
  cursor: pointer;
  display: grid;
  gap: 6px;
  min-height: 78px;
  padding: 14px;
  text-align: left;
}

.project-video span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.project-video.active {
  background: var(--white);
  color: var(--ink);
}

.bio-section {
  padding-top: 28px;
}

.bio-section {
  background: var(--paper);
  color: var(--ink);
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2 + 48px));
  padding-right: max(18px, calc((100vw - var(--max)) / 2 + 48px));
}

.bio-layout {
  display: grid;
  gap: clamp(34px, 6vw, 84px);
  grid-template-columns: 0.72fr 1.28fr;
}

.bio-lead {
  color: #4b4b47;
  font-size: clamp(1.24rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.35;
}

.bio-timeline {
  border-top: 1px solid rgba(16, 16, 16, 0.1);
  position: relative;
  padding-left: 0;
}

.bio-timeline::after {
  display: none;
}

.bio-timeline.line-active::after {
  transform: scaleY(1);
}

.bio-timeline article {
  display: grid;
  gap: 28px;
  grid-template-columns: 108px 1fr;
  padding: 24px 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.1);
}

.bio-timeline span {
  color: var(--muted-dark);
  font-weight: 900;
}

.bio-timeline h3 {
  font-weight: 800;
}

.bio-timeline p {
  margin-bottom: 0;
}

.contact-section {
  background:
    linear-gradient(180deg, #050505 0%, #0b0b0b 100%);
  border-top: 1px solid rgba(247, 247, 244, 0.08);
  color: var(--white);
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) auto;
  min-height: 380px;
}

.contact-layout h2 {
  font-size: clamp(2.45rem, 4vw, 4rem);
  max-width: 820px;
}

.contact-layout p {
  color: rgba(247, 247, 244, 0.66);
  max-width: 620px;
}

.contact-actions {
  display: grid;
  gap: 10px;
  justify-self: end;
}

.contact-actions a {
  align-items: center;
  background: rgba(247, 247, 244, 0.04);
  border: 1px solid var(--line-light);
  display: inline-flex;
  gap: 9px;
  min-height: 64px;
  padding: 0 28px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
}

.contact-actions a:hover {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.site-footer {
  align-items: center;
  background: #0b0b0b;
  border-top: 1px solid var(--line-light);
  color: rgba(247, 247, 244, 0.62);
  display: flex;
  justify-content: space-between;
  padding: 24px clamp(18px, 4vw, 56px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.6;
  filter: brightness(1.1);
}

/* --- Scroll To Top --- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(247, 247, 244, 0.15);
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  padding: 8px;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top.visible {
  opacity: 0.68;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: rgba(247, 247, 244, 0.12);
  border-color: rgba(247, 247, 244, 0.3);
  opacity: 1;
  transform: translateY(-3px);
}

.scroll-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
}

@media (hover: hover) {
  .nav-links a,
  .album-card,
  .project-video,
  .contact-actions a {
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
  }

  .album-card:hover,
  .project-video:hover,
  .contact-actions a:hover {
    transform: translateY(-2px);
  }

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

@media (max-width: 1180px) {
  .album-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero-section,
  .project-section,
  .contact-layout,
  .project-media {
    grid-template-columns: 1fr;
  }

  .album-showcase {
    grid-template-columns: 1fr;
  }

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

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

  .bio-layout {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand-mark {
    height: 60px;
    width: 54px;
    background: rgba(5, 5, 5, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    padding: 6px;
  }

  .brand-mark img {
    height: 100%;
    filter: brightness(1.3) contrast(1.1);
  }

  .hero-logo img {
    max-width: 320px;
  }

  .hero-section {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 96px 18px max(118px, calc(env(safe-area-inset-bottom) + 108px));
    align-content: end;
  }

  .hero-copy {
    max-width: 100%;
  }

  h2 {
    font-size: 2.1rem;
  }

  .album-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .album-showcase {
    gap: 14px;
  }

  .album-featured img {
    aspect-ratio: 4 / 5;
    height: auto;
    min-height: 0;
  }

  .album-featured div {
    min-height: 116px;
    padding: 52px 18px 18px;
  }

  .album-featured h3 {
    font-size: 2.3rem;
  }

  .album-card:nth-child(n+7) {
    display: none;
  }

  .album-grid.expanded .album-card:nth-child(n+7) {
    display: block;
  }

  .video-card-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .video-card-grid::-webkit-scrollbar {
    display: none;
  }

  .video-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }

  .project-video-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-wrap {
    padding: 66px 18px;
  }

  .section-heading {
    align-items: flex-start;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .project-logo {
    border-right: 0;
    border-bottom: 1px solid rgba(247, 247, 244, 0.08);
    min-height: 180px;
  }

  .project-media {
    grid-template-columns: 1fr;
  }

  .bio-lead {
    font-size: 1.25rem;
  }

  .bio-timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-layout {
    min-height: 0;
  }

  .contact-actions a {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .scroll-top {
    display: none;
  }
}

@media (max-width: 680px) and (max-height: 760px) {
  .hero-logo img {
    max-width: 288px;
  }

  h1 {
    margin-bottom: 18px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
  }

  .hero-links a {
    font-size: 0.68rem;
    padding: 5px 0 3px;
  }

  .hero-links a:not(:last-child)::after {
    margin: 0 7px;
  }
}

@media (max-width: 680px) {
  .hero-links {
    flex-wrap: nowrap;
    width: 100%;
  }

  .hero-links a {
    flex: 0 1 auto;
    font-size: clamp(0.62rem, 2.65vw, 0.74rem);
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero-links a:not(:last-child)::after {
    margin: 0 clamp(4px, 1.45vw, 8px);
  }
}

/* --- Show More Button --- */
.show-more-btn {
  display: none;
}

@media (max-width: 680px) {
  .show-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    background: rgba(247, 247, 244, 0.06);
    border: 1px solid rgba(247, 247, 244, 0.12);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .show-more-btn:hover {
    background: rgba(247, 247, 244, 0.12);
  }

  .show-more-btn .lucide {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .show-more-btn[aria-expanded="true"] .lucide {
    transform: rotate(180deg);
  }
}

@media (max-width: 430px) {
  .project-video-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Playlist Link --- */
.playlist-link {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 1 / -1;
  padding: 16px 20px;
  margin-top: 0;
  background: rgba(247, 247, 244, 0.06);
  border: 1px solid rgba(247, 247, 244, 0.1);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.playlist-link:hover {
  background: rgba(247, 247, 244, 0.12);
}

.playlist-link span {
  flex: 1;
}

.playlist-link .lucide:last-child {
  transition: transform 0.3s ease;
}

.playlist-link:hover .lucide:last-child {
  transform: translateX(4px);
}

.playlist-link.dark {
  background: rgba(16, 16, 16, 0.06);
  border-color: var(--line);
  color: var(--ink);
  margin-top: 22px;
}

.playlist-link.dark:hover {
  background: var(--ink);
  color: var(--white);
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1), transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

  .brand-mark::before {
    animation: none;
  }
}
