@font-face {
  font-family: "Solarie Halsy";
  src: url("./assets/solarie-halsy-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Solarie Halsy";
  src: url("./assets/solarie-halsy-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --page: #f8f6f2;
  --surface: rgba(255, 253, 249, 0.88);
  --surface-strong: #fffdfa;
  --surface-soft: rgba(252, 248, 243, 0.82);
  --ink: #2a2a2a;
  --muted: #66615d;
  --line: rgba(180, 165, 152, 0.22);
  --line-strong: rgba(169, 198, 165, 0.32);
  --sage: #a9c6a5;
  --sage-deep: #779c74;
  --sage-soft: rgba(169, 198, 165, 0.1);
  --blush: #e6c7ce;
  --blush-soft: rgba(230, 199, 206, 0.18);
  --white: #fffdf9;
  --shadow: 0 22px 60px rgba(125, 109, 97, 0.09);
  --shadow-soft: 0 14px 34px rgba(125, 109, 97, 0.07);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-pill: 999px;
  --shell: min(1180px, calc(100vw - 2.25rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(230, 199, 206, 0.24), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(169, 198, 165, 0.14), transparent 20%),
    linear-gradient(180deg, #faf8f4 0%, #f8f6f2 46%, #f6f2ed 100%);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.page-glow {
  position: fixed;
  inset: auto;
  pointer-events: none;
  filter: blur(24px);
  opacity: 0.6;
  z-index: 0;
}

.page-glow-one {
  top: 8rem;
  left: -4rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(230, 199, 206, 0.22);
}

.page-glow-two {
  top: 14rem;
  right: 5rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: rgba(169, 198, 165, 0.12);
}

.shell,
.topbar {
  width: var(--shell);
  margin: 0 auto;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.8rem 0 0;
}

.brand {
  font-family: "Solarie Halsy", "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-style: italic;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
}

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

.nav a {
  color: rgba(42, 42, 42, 0.9);
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.project-links a:hover,
.project-links a:focus-visible {
  color: var(--sage-deep);
}

.hero,
.section {
  position: relative;
  z-index: 1;
}

.hero {
  width: var(--shell);
  margin: 0 auto;
  min-height: calc(100vh - 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3.6rem 0 2rem;
}

.hero-copy {
  max-width: 34rem;
}

.eyebrow {
  margin: 0 0 1.05rem;
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
}

.hero h1 {
  font-family: "Solarie Halsy", "Cormorant Garamond", serif;
  font-size: clamp(4rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.015em;
}

.hero-subtitle {
  max-width: 33rem;
  margin: 1rem 0 0;
  font-size: clamp(1.18rem, 2vw, 1.46rem);
  line-height: 1.58;
  color: rgba(42, 42, 42, 0.94);
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.65rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-status-label {
  color: rgba(42, 42, 42, 0.7);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.95rem;
  border: 1px solid rgba(169, 198, 165, 0.28);
  border-radius: var(--radius-pill);
  background: var(--sage-soft);
  color: var(--ink);
}

.hero-pill-word {
  display: inline-block;
  min-width: 11.5ch;
  text-align: center;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.hero-pill-word.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

.hero-actions,
.contact-actions,
.project-actions,
.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  align-items: center;
}

.hero-actions {
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.88rem 1.45rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--sage);
  box-shadow: 0 14px 34px rgba(169, 198, 165, 0.32);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.text-link,
.project-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.hero-visual {
  position: relative;
  min-height: 34rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bloom {
  position: absolute;
  left: 8%;
  top: 2%;
  width: min(21rem, 36vw);
  opacity: 0.48;
  z-index: 0;
  filter: saturate(0.94);
  transform: translate(-6%, -2%);
}

.portrait-frame {
  position: relative;
  z-index: 1;
  width: min(29rem, 100%);
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 0.9), rgba(247, 240, 233, 0.9));
  box-shadow: 0 34px 80px rgba(168, 149, 134, 0.18);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-note {
  position: absolute;
  left: 0.75rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(180, 165, 152, 0.16);
  border-radius: 18px;
  background: rgba(255, 252, 248, 0.84);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.visual-note span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
}

.visual-note strong {
  font-size: 0.96rem;
  font-weight: 500;
}

.credential-band {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid rgba(180, 165, 152, 0.12);
  border-bottom: 1px solid rgba(180, 165, 152, 0.12);
}

.credential-marquee {
  width: 100%;
  overflow: hidden;
}

.credential-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquee 34s linear infinite;
  padding-left: 1rem;
}

.credential-track span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(180, 165, 152, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(42, 42, 42, 0.88);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-heading-compact {
  margin-bottom: 1.35rem;
}

.section-heading-slim {
  max-width: 38rem;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.section-heading-simple {
  font-family: "Solarie Halsy", "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.card {
  border: 1px solid rgba(180, 165, 152, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(251, 246, 240, 0.9)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 0;
  overflow: hidden;
}

.featured-media {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 14%, rgba(230, 199, 206, 0.26), transparent 26%),
    linear-gradient(180deg, rgba(255, 254, 252, 0.92), rgba(249, 244, 238, 0.92));
}

.featured-media img,
.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-copy,
.project-copy,
.info-card,
.experience-card,
.contact-card {
  padding: 2rem;
}

.project-label,
.detail-label {
  margin: 0;
  color: var(--sage-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.featured-copy h3,
.project-copy h3,
.info-card h3,
.experience-card h3 {
  margin: 0.75rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
  font-weight: 600;
}

.project-kicker {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.project-summary,
.about-copy p,
.info-card p,
.experience-card p,
.contact-copy p,
.detail-card p,
.impact-pill span {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.detail-card {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(180, 165, 152, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.54);
}

.detail-card p {
  margin-top: 0.55rem;
  color: var(--ink);
}

.impact-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  margin-top: 1.3rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(169, 198, 165, 0.18);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(169, 198, 165, 0.14), rgba(255, 255, 255, 0.7));
}

.impact-pill strong {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 600;
}

.impact-pill span {
  margin: 0;
}

.project-actions {
  margin-top: 1.5rem;
}

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

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--surface-strong);
}

.project-card:last-child {
  grid-column: 1 / -1;
  max-width: 620px;
  justify-self: center;
}

.project-media {
  margin: 0;
  padding: 1.7rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(230, 199, 206, 0.22), transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.95), rgba(251, 246, 240, 0.95));
}

.project-image {
  height: 19.75rem;
  object-fit: contain;
  border-radius: 18px;
  background: #fff;
}

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

.tag-list li {
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(169, 198, 165, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(169, 198, 165, 0.08);
  color: var(--ink);
  font-size: 0.8rem;
}

.project-meta {
  margin: 0.75rem 0 0;
  color: #94908b;
  font-size: 0.96rem;
  line-height: 1.65;
}

.project-impact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.3rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(230, 199, 206, 0.2);
  border-radius: 18px;
  background: rgba(255, 251, 252, 0.8);
}

.project-impact strong {
  color: #e8aeb7;
  font-family: "Lora", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.project-impact span {
  color: rgba(42, 42, 42, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

.project-links {
  margin-top: 1.35rem;
  justify-content: space-between;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) auto;
  gap: 1.2rem;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(230, 199, 206, 0.24), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(169, 198, 165, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(250, 245, 239, 0.94));
}

.subpage-main {
  position: relative;
  z-index: 1;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 2rem;
  align-items: center;
  padding: 3.4rem 0 1.5rem;
}

.subpage-hero-compact {
  min-height: calc(100vh - 12rem);
}

.subpage-copy {
  max-width: 38rem;
}

.subpage-title {
  margin: 0;
  font-family: "Solarie Halsy", "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 5.1rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
}

.subpage-lead {
  margin: 1rem 0 0;
  color: rgba(42, 42, 42, 0.94);
  font-size: clamp(1.08rem, 1.9vw, 1.34rem);
  line-height: 1.68;
}

.subpage-summary,
.subpage-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.subpage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  align-items: center;
  margin-top: 1.8rem;
}

.subpage-pill-list,
.subpage-stack-list {
  padding: 0;
  margin: 1.3rem 0 0;
  list-style: none;
}

.subpage-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.subpage-pill-list li {
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(169, 198, 165, 0.2);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1.45;
}

.subpage-stack-list {
  display: grid;
  gap: 0.95rem;
}

.subpage-stack-list li {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(180, 165, 152, 0.14);
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.76;
}

.subpage-stack-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.subpage-stack-list strong {
  color: var(--ink);
}

.subpage-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.subpage-frame,
.about-photo-frame {
  width: min(35rem, 100%);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(180, 165, 152, 0.14);
  background:
    radial-gradient(circle at 18% 16%, rgba(230, 199, 206, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(255, 254, 252, 0.95), rgba(248, 243, 237, 0.92));
  box-shadow: 0 30px 80px rgba(125, 109, 97, 0.12);
}

.subpage-frame {
  padding: 1.2rem;
}

.subpage-frame img,
.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-frame {
  aspect-ratio: 0.9 / 1.08;
}

.subpage-bloom {
  left: -2%;
  top: -2%;
  width: min(18rem, 28vw);
  opacity: 0.38;
}

.about-visual-note {
  left: auto;
  right: 0.85rem;
  bottom: 1.2rem;
}

.section-surface-alt {
  background: rgba(255, 255, 255, 0.28);
}

.subpage-grid-2,
.subpage-grid-3,
.contact-methods {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

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

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

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

.contact-method {
  display: block;
  height: 100%;
  text-decoration: none;
}

.contact-method .info-card,
.contact-highlight .experience-card {
  height: 100%;
}

.subpage-callout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
  align-items: center;
  padding: 2rem;
}

.subpage-stat,
.subpage-quote {
  padding: 1.65rem;
}

.subpage-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.95rem;
  min-height: 100%;
}

.subpage-stat strong {
  color: var(--sage-deep);
  font-family: "Lora", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 700;
}

.subpage-stat span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.subpage-quote p {
  margin: 0;
  color: var(--ink);
  font-family: "Lora", serif;
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.78;
}

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

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 0 2.5rem;
  color: rgba(42, 42, 42, 0.62);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1040px) {
  .hero,
  .featured-project,
  .contact-card,
  .subpage-hero,
  .subpage-callout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.8rem;
  }

  .hero-copy {
    margin: 0 auto;
    text-align: center;
  }

  .hero-status,
  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 28rem;
    order: -1;
  }

  .visual-note {
    left: 50%;
    bottom: 0.6rem;
    transform: translateX(-50%);
  }

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

  .subpage-copy {
    max-width: none;
    text-align: center;
  }

  .subpage-actions,
  .subpage-pill-list {
    justify-content: center;
  }

  .subpage-visual {
    order: -1;
  }

  .subpage-frame,
  .about-photo-frame {
    width: min(31rem, 100%);
  }

  .contact-methods,
  .subpage-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  :root {
    --shell: min(100vw - 1.3rem, 100vw - 1.3rem);
  }

  .topbar {
    flex-wrap: wrap;
    padding-top: 1.25rem;
    justify-content: center;
    text-align: center;
  }

  .nav {
    gap: 1rem;
    width: 100%;
    justify-content: center;
  }

  .hero {
    gap: 1.7rem;
    padding-top: 2.2rem;
  }

  .subpage-hero {
    gap: 1.6rem;
    padding-top: 2.2rem;
  }

  .hero-status {
    align-items: flex-start;
  }

  .hero-bloom {
    left: 50%;
    top: -0.25rem;
    width: 11.5rem;
    opacity: 0.54;
    transform: translateX(-50%);
  }

  .portrait-frame {
    width: min(24rem, 100%);
  }

  .featured-copy,
  .project-copy,
  .contact-card {
    padding: 1.35rem;
  }

  .detail-grid,
  .project-grid,
  .subpage-grid-2,
  .subpage-grid-3,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
  }

  .featured-copy h3,
  .project-copy h3 {
    font-size: 1.9rem;
  }

  .contact-actions {
    width: 100%;
  }

  .contact-actions .button {
    flex: 1 1 100%;
  }

  .subpage-actions .button {
    flex: 1 1 100%;
  }

  .project-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .project-media {
    padding: 1.15rem;
  }

  .project-image {
    height: 14.5rem;
  }

  .project-links {
    justify-content: flex-start;
  }

  .subpage-callout,
  .subpage-stat,
  .subpage-quote {
    padding: 1.35rem;
  }

  .subpage-actions,
  .subpage-pill-list {
    justify-content: flex-start;
  }

  .subpage-copy {
    text-align: left;
  }

  .about-visual-note {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

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

  .credential-track {
    animation: none;
  }

  [data-reveal] {
    transition: none;
  }
}
