:root {
  --ink: #111315;
  --graphite: #2f3130;
  --warm-gray: #4a4742;
  --muted: #736f68;
  --soft: #e5ded4;
  --paper: #f7f4ee;
  --chalk: #fbfaf6;
  --mist: #d9e0df;
  --sage: #dfe4dc;
  --ember: #c9573a;
  --line: rgba(17, 19, 21, 0.12);
  --shadow: 0 24px 80px rgba(17, 19, 21, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-shell {
  max-width: 1440px;
  margin: 0 auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px clamp(20px, 4vw, 56px);
}

.brand {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 560;
  letter-spacing: 0;
}

.brand span {
  color: var(--ember);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--graphite);
  font-size: 14px;
  font-weight: 650;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a[aria-current="page"]::after,
.main-nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
}

.nav-action {
  justify-self: end;
  border: 1px solid rgba(17, 19, 21, 0.18);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(251, 250, 246, 0.46);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(20px, 4vw, 56px);
}

.section-tight {
  padding-top: clamp(28px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: end;
  min-height: calc(100vh - 102px);
  padding-top: clamp(40px, 7vw, 104px);
  padding-bottom: clamp(34px, 6vw, 76px);
  border-bottom: 1px solid var(--soft);
}

.eyebrow,
.meta-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 20px;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--ember);
  content: "";
}

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

h1 {
  max-width: 930px;
  margin-bottom: 26px;
  font-size: clamp(48px, 7vw, 108px);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero-copy {
  max-width: 610px;
  color: var(--warm-gray);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.featured-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  box-shadow: var(--shadow);
}

.featured-work-image {
  display: block;
  width: 100%;
  height: clamp(360px, 42vw, 560px);
  object-fit: cover;
}

.image-placeholder {
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(201, 87, 58, 0.12), transparent 34%),
    linear-gradient(160deg, var(--mist), #eef0ea 46%, #c9d2cf);
  position: relative;
}

.image-placeholder::after {
  position: absolute;
  right: 26px;
  bottom: 22px;
  color: rgba(17, 19, 21, 0.36);
  content: attr(data-label);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--soft);
  background: var(--soft);
}

.hero-meta div {
  min-height: 112px;
  padding: 20px;
  background: var(--chalk);
}

.hero-meta strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 15px;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 92px);
  border-bottom: 1px solid var(--soft);
}

.large-copy {
  max-width: 930px;
  color: var(--graphite);
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

.muted-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

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

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

.project-card {
  display: grid;
  gap: 16px;
  border-top: 1px solid var(--soft);
  padding-top: 18px;
}

.project-thumb {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--mist);
}

.project-thumb .image-placeholder {
  min-height: clamp(260px, 32vw, 480px);
}

.project-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 12%;
  transition: transform 500ms ease;
}

.project-card:hover .project-thumb img {
  transform: scale(1.025);
}

.project-index-grid .project-card {
  gap: 14px;
}

.project-index-grid .project-card h2 {
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.04;
}

.project-index-grid .project-card p {
  font-size: 14px;
  line-height: 1.55;
}

.project-index-grid .project-line {
  gap: 8px 12px;
  font-size: 11px;
}

.project-card h2 {
  margin-bottom: 6px;
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 540;
  letter-spacing: 0;
  line-height: 1;
}

.project-card p {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
}

.project-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--warm-gray);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero {
  padding-top: clamp(58px, 9vw, 132px);
  border-bottom: 1px solid var(--soft);
  text-align: center;
}

.page-hero h1 {
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 1;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero .eyebrow::after {
  width: 34px;
  height: 2px;
  background: var(--ember);
  content: "";
}

.case-hero {
  padding-top: clamp(54px, 8vw, 120px);
}

.case-kicker {
  display: grid;
  grid-template-columns: minmax(100px, 0.18fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  margin-bottom: clamp(42px, 7vw, 86px);
}

.case-kicker h1 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 88px);
  line-height: 0.98;
}

.case-intro {
  display: grid;
  gap: 24px;
  max-width: 880px;
  margin-left: calc(18% + clamp(24px, 5vw, 74px));
}

.case-intro p {
  margin-bottom: 0;
  color: var(--warm-gray);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.24;
}

.case-body {
  display: grid;
  grid-template-columns: minmax(120px, 0.22fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  max-width: 1120px;
  margin: 0 auto;
}

.case-copy {
  max-width: 830px;
}

.case-copy h2 {
  margin-bottom: 18px;
  color: var(--graphite);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 540;
}

.case-copy p {
  color: var(--muted);
  font-size: 17px;
}

.placeholder-lines {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.placeholder-lines span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(115, 111, 104, 0.22);
}

.placeholder-lines span:nth-child(2) {
  width: 92%;
}

.placeholder-lines span:nth-child(3) {
  width: 74%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.gallery-grid .image-placeholder {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.artifact-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  max-width: 1120px;
  margin: 0 auto clamp(26px, 5vw, 54px);
  align-items: end;
}

.artifact-heading h2 {
  max-width: 840px;
  margin: 0;
  color: var(--graphite);
  font-size: clamp(32px, 4.6vw, 68px);
  font-weight: 540;
  line-height: 0.98;
}

.artifact-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.feature-artifact {
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chalk);
  box-shadow: var(--shadow);
}

.feature-artifact img {
  display: block;
  width: 100%;
  height: auto;
}

.feature-artifact figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--soft);
}

.feature-artifact figcaption strong {
  color: var(--graphite);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.block-pair {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.browser-artifact {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--chalk);
  box-shadow: var(--shadow);
}

.browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-bottom: 1px solid var(--soft);
  background: rgba(251, 250, 246, 0.92);
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 19, 21, 0.18);
}

.artifact-scroll {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
  scrollbar-color: rgba(17, 19, 21, 0.34) rgba(17, 19, 21, 0.08);
  scrollbar-width: thin;
}

.artifact-scroll::after {
  position: sticky;
  bottom: 0;
  display: block;
  height: 54px;
  margin-top: -54px;
  background: linear-gradient(to bottom, rgba(251, 250, 246, 0), rgba(251, 250, 246, 0.9));
  content: "";
  pointer-events: none;
}

.browser-artifact img {
  width: 100%;
  height: auto;
  background: #fff;
}

.product-artifact .artifact-scroll {
  height: min(86vh, 900px);
}

.mobile-artifact .artifact-scroll {
  height: min(82vh, 760px);
}

.device-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.58fr) minmax(180px, 0.42fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
  align-items: start;
}

.desktop-device .artifact-scroll {
  height: min(86vh, 900px);
}

.tablet-device .artifact-scroll {
  height: min(82vh, 780px);
}

.browser-artifact figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 20px 22px;
  border-top: 1px solid var(--soft);
}

.browser-artifact figcaption strong {
  color: var(--graphite);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.resume-layout,
.blog-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--soft);
  background: var(--soft);
}

.resume-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.resume-note,
.resume-card,
.credential-card,
.recommendation-card {
  border: 1px solid var(--soft);
  border-radius: 8px;
  background: var(--chalk);
  padding: 24px;
}

.resume-note p,
.resume-card p {
  margin: 14px 0 18px;
  color: var(--muted);
}

.resume-note a {
  display: inline-flex;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 750;
}

.resume-note p a {
  border-bottom: 0;
  color: var(--ink);
}

.resume-row,
.blog-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: 32px;
  padding: clamp(24px, 4vw, 44px);
  background: var(--chalk);
}

.resume-role {
  align-items: start;
}

.resume-period {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 540;
  line-height: 1;
}

.resume-location {
  margin-top: -4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.resume-row h2,
.blog-row h2 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 540;
  line-height: 1.05;
}

.resume-row p,
.blog-row p {
  max-width: 780px;
  color: var(--muted);
}

.resume-points {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.resume-points li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: var(--warm-gray);
}

.resume-points li::before {
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--ember);
  content: "";
}

.resume-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.55fr);
  gap: 22px;
  align-items: start;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-list span {
  border: 1px solid var(--soft);
  border-radius: 999px;
  background: var(--chalk);
  padding: 10px 14px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 700;
}

.resume-card h2 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 540;
  line-height: 1.05;
}

.resume-card h2 + p {
  margin-bottom: 22px;
}

.credential-list {
  display: grid;
  gap: 14px;
}

.credential-card h2 {
  margin: 10px 0 10px;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 540;
  line-height: 1.05;
}

.credential-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.link-card {
  display: grid;
  gap: 14px;
}

.link-card a {
  border-bottom: 1px solid var(--soft);
  padding-bottom: 12px;
  color: var(--graphite);
  font-weight: 750;
}

.link-card a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.recommendations-section {
  border-top: 1px solid var(--soft);
}

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

.recommendation-card {
  display: grid;
  align-content: space-between;
  min-height: 270px;
}

.recommendation-card p {
  color: var(--graphite);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.08;
}

.recommendation-card footer {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 14px;
}

.recommendation-card strong {
  color: var(--ink);
  font-size: 16px;
}

.notes-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--soft);
  background: var(--soft);
}

.note-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 44px);
  background: var(--chalk);
}

.note-row h2 {
  margin: 8px 0 12px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 540;
  line-height: 0.98;
}

.note-row p {
  max-width: 760px;
  color: var(--muted);
}

.note-thumb {
  min-height: 260px;
  border: 1px solid var(--soft);
  border-radius: 8px;
  background: var(--mist);
  position: relative;
  overflow: hidden;
}

.bauhaus-thumb {
  background: var(--chalk);
}

.bauhaus-thumb span {
  position: absolute;
  display: block;
}

.bauhaus-thumb span:nth-child(1) {
  width: 42%;
  height: 42%;
  left: 12%;
  top: 14%;
  background: #d33f2f;
}

.bauhaus-thumb span:nth-child(2) {
  width: 38%;
  height: 38%;
  right: 10%;
  bottom: 12%;
  border-radius: 50%;
  background: #f0bf2f;
}

.bauhaus-thumb span:nth-child(3) {
  width: 14%;
  height: 84%;
  left: 58%;
  top: 8%;
  background: #1167a6;
}

.bauhaus-thumb span:nth-child(4) {
  width: 82%;
  height: 8px;
  left: 9%;
  top: 64%;
  background: var(--ink);
  transform: rotate(-18deg);
}

.quiet-thumb {
  background:
    linear-gradient(135deg, rgba(17, 19, 21, 0.08), transparent 42%),
    var(--mist);
}

.note-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.64fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
  border-bottom: 1px solid var(--soft);
}

.note-hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 8vw, 126px);
}

.note-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.note-meta span,
.closing-questions span,
.question-grid span {
  border: 1px solid var(--soft);
  border-radius: 999px;
  background: var(--chalk);
  padding: 9px 12px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 750;
}

.article-image {
  margin: 0;
  border: 1px solid var(--soft);
  border-radius: 8px;
  background: var(--chalk);
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: auto;
}

.hero-artwork {
  max-width: 520px;
  justify-self: end;
  position: relative;
}

.hero-artwork::before {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  right: -12%;
  top: -10%;
  border: 14px solid var(--ember);
  border-radius: 50%;
  content: "";
  z-index: -1;
}

.wide-image {
  margin: clamp(34px, 6vw, 68px) 0;
}

.article-image figcaption {
  display: block;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--soft);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.article-image figcaption span {
  display: block;
  margin-bottom: 4px;
}

.article-image figcaption a {
  color: var(--graphite);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(170px, 0.24fr) minmax(0, 760px);
  gap: clamp(28px, 7vw, 112px);
  align-items: start;
  justify-content: center;
}

.article-sidebar {
  position: sticky;
  top: 28px;
  border-top: 1px solid var(--soft);
  padding-top: 18px;
}

.article-sidebar ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  list-style: none;
}

.article-body {
  max-width: 760px;
}

.article-body .lede {
  color: var(--graphite);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.12;
}

.article-body p {
  color: var(--warm-gray);
  font-size: clamp(18px, 1.8vw, 21px);
  line-height: 1.68;
}

.article-body h2 {
  margin: clamp(48px, 7vw, 82px) 0 18px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 540;
  line-height: 1;
}

.question-grid,
.closing-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 34px;
}

.pull-quote {
  margin: clamp(36px, 6vw, 72px) 0;
  border-top: 8px solid var(--ink);
  border-bottom: 1px solid var(--soft);
  padding: 28px 0 30px;
}

.pull-quote p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 72px);
  font-weight: 540;
  line-height: 0.98;
}

.pull-quote.align-right p {
  margin-left: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(20px, 4vw, 56px) 48px;
  border-top: 1px solid var(--soft);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .main-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nav-action {
    justify-self: start;
  }

  .hero,
  .intro-band,
  .case-kicker,
  .case-body,
  .artifact-heading,
  .artifact-showcase,
  .device-showcase,
  .note-row,
  .note-hero,
  .article-layout,
  .resume-intro,
  .resume-row,
  .blog-row,
  .resume-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-meta,
  .project-grid,
  .gallery-grid,
  .recommendation-grid {
    grid-template-columns: 1fr;
  }

  .case-intro {
    margin-left: 0;
  }

  .article-sidebar {
    position: static;
  }

  .hero-artwork {
    justify-self: stretch;
    max-width: none;
  }

  .hero-artwork::before {
    right: -8%;
    top: -6%;
  }

  .product-artifact .artifact-scroll {
    height: min(78vh, 680px);
  }

  h1 {
    font-size: clamp(48px, 16vw, 80px);
  }
}

@media (max-width: 540px) {
  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-header {
    padding-right: 18px;
    padding-left: 18px;
  }

  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .image-placeholder {
    min-height: 320px;
  }

  .hero-meta div {
    min-height: 92px;
  }

  .browser-bar {
    min-height: 30px;
  }

  .browser-artifact figcaption {
    padding: 16px;
  }

  .note-hero h1 {
    font-size: clamp(48px, 15vw, 78px);
  }

}

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

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
