:root {
  --paper: #f3f1ea;
  --paper-2: #e8e5db;
  --paper-3: #ddd8cc;
  --ink: #171a18;
  --ink-2: #3a403c;
  --ink-3: #6a736c;
  --line: #c9c6bb;
  --sage: #6d7c66;
  --moss: #3e513f;
  --pine: #243228;
  --leaf: #8b9a74;
  --mist: #d7dbd2;
  --brass: #9c8b63;
  --white: #f8f6f0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  cursor: none;
  overflow-x: hidden;
}

body.touch {
  cursor: auto;
}

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

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

body.touch a {
  cursor: pointer;
}

button {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
  cursor: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--moss);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--moss);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
  opacity: 0.55;
}

.cursor.hover {
  width: 6px;
  height: 6px;
  background: var(--brass);
}

.cursor-ring.hover {
  width: 64px;
  height: 64px;
  opacity: 0.35;
}

body.touch .cursor,
body.touch .cursor-ring {
  display: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 8;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.frame {
  pointer-events: none;
  position: fixed;
  inset: 12px;
  border: 1px solid rgba(36, 50, 40, 0.18);
  z-index: 9;
}

@media (max-width: 760px) {
  .frame {
    inset: 8px;
  }
}

.wrap {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
}

@media (max-width: 760px) {
  .wrap {
    width: min(1240px, calc(100% - 36px));
  }
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: min(1240px, calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.logo b {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 13px;
}

.logo span {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--moss);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.burger {
  display: none;
  width: 28px;
  height: 16px;
  position: relative;
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--ink);
}

.burger span {
  top: 7px;
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

@media (max-width: 760px) {
  .nav-inner {
    width: min(1240px, calc(100% - 36px));
  }
  .burger {
    display: block;
  }
  .nav-links {
    position: fixed;
    inset: 72px 8px 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s var(--ease);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

/* HERO */
.hero {
  padding: 48px 0 56px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 96px);
}

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 28px;
}

.kicker i {
  width: 42px;
  height: 1px;
  background: var(--sage);
  display: block;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(56px, 8vw, 108px);
  line-height: 0.86;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero h1 em {
  font-style: italic;
  color: var(--moss);
}

.roles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 36px;
}

.roles li {
  list-style: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.roles li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--leaf);
  border-radius: 50%;
  transform: translateY(-1px);
}

.lead {
  max-width: 46ch;
  font-size: 16px;
  color: var(--ink-2);
  font-weight: 300;
}

.hero-meta {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-meta b {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.hero-meta span {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.portrait-block {
  position: relative;
  justify-self: end;
  width: min(100%, 420px);
}

.portrait-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pine);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 12%;
  filter: grayscale(0.12) contrast(1.04) saturate(0.95);
  transition: transform 1.2s var(--ease), filter 0.6s;
}

.portrait-frame:hover img {
  transform: scale(1.04);
  filter: grayscale(0) contrast(1.08);
}

.stamp {
  position: absolute;
  right: -18px;
  bottom: 28px;
  width: 118px;
  height: 118px;
  border: 1px solid var(--moss);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  text-align: center;
  transform: rotate(-12deg);
}

.stamp b {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 0.9;
}

.stamp span {
  display: block;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
}

.drawing-marks {
  position: absolute;
  inset: -12px;
  pointer-events: none;
}

.drawing-marks span {
  position: absolute;
  background: var(--moss);
}

.drawing-marks .tl,
.drawing-marks .tr,
.drawing-marks .bl,
.drawing-marks .br {
  width: 18px;
  height: 1px;
}

.drawing-marks .tl {
  top: 0;
  left: 0;
}
.drawing-marks .tr {
  top: 0;
  right: 0;
}
.drawing-marks .bl {
  bottom: 0;
  left: 0;
}
.drawing-marks .br {
  bottom: 0;
  right: 0;
}

.drawing-marks .tlv,
.drawing-marks .trv,
.drawing-marks .blv,
.drawing-marks .brv {
  width: 1px;
  height: 18px;
}

.drawing-marks .tlv {
  top: 0;
  left: 0;
}
.drawing-marks .trv {
  top: 0;
  right: 0;
}
.drawing-marks .blv {
  bottom: 0;
  left: 0;
}
.drawing-marks .brv {
  bottom: 0;
  right: 0;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
  }
  .portrait-block {
    justify-self: start;
    width: min(100%, 360px);
    order: -1;
  }
}

/* SECTIONS */
section {
  padding: 92px 0;
}

.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.sec-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
}

.sec-index {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.about-grid p {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink-2);
  max-width: 58ch;
}

.about-grid p + p {
  margin-top: 18px;
}

.facts {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.facts article {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.facts dd {
  font-size: 15px;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .facts article {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/* EXPERIENCE */
.exp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 820px;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: var(--line);
}

.job {
  position: relative;
  padding: 0 0 36px 32px;
}

.job::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 8px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--moss);
  background: var(--paper);
  border-radius: 50%;
}

.job .when {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.job h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 4px 0 2px;
}

.job .place {
  color: var(--ink-2);
  font-size: 14px;
}

.job .note {
  margin-top: 10px;
  max-width: 62ch;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-2);
}

.job .note a {
  color: var(--moss);
  border-bottom: 1px solid var(--mist);
}

.edu {
  margin-top: 12px;
  padding: 24px;
  background: var(--pine);
  color: var(--white);
}

.edu span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
}

.edu h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  margin: 8px 0 6px;
}

.edu p {
  color: #d7dbd2;
  font-weight: 300;
}

@media (max-width: 860px) {
  .exp-layout {
    max-width: none;
  }
}

/* SKILLS */
.skills-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
}

.tool-group {
  margin-bottom: 28px;
}

.tool-group h3 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}

.bar {
  display: grid;
  grid-template-columns: 130px 1fr 70px;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.bar b {
  font-size: 13px;
  font-weight: 400;
}

.track {
  height: 2px;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}

.fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--moss);
  transition: width 1.2s var(--ease);
}

.bar.is-in .fill {
  width: var(--w);
}

.bar em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: right;
}

.lang-board {
  display: grid;
  gap: 16px;
}

.lang {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.lang::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--mist);
  border-radius: 50%;
}

.lang strong {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.lang b {
  display: block;
  margin-top: 10px;
  font-size: 42px;
  color: var(--moss);
  letter-spacing: -0.04em;
}

.lang span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.schema {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.schema div {
  min-height: 92px;
  border: 1px dashed var(--line);
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.schema div b {
  display: block;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  font-weight: 500;
  margin-top: 8px;
  font-family: var(--serif);
}

@media (max-width: 860px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
  .bar {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .schema {
    grid-template-columns: 1fr;
  }
}

/* CONTACTS */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.4s var(--ease), border-color 0.4s, transform 0.4s var(--ease);
}

.contact-card:hover {
  background: var(--pine);
  border-color: var(--pine);
  color: var(--white);
  transform: translateY(-4px);
}

.contact-card span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.contact-card:hover span {
  color: var(--leaf);
}

.contact-card b {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  margin-top: 18px;
}

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

/* PREVIEW */
.preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}

.preview {
  position: relative;
  min-height: 340px;
  background: var(--pine);
  color: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.preview .thumb {
  position: absolute;
  inset: 0;
}

.preview .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,24,20,0.05) 0%, rgba(18,24,20,0.78) 100%);
}

.preview > * {
  position: relative;
  z-index: 1;
}

.preview:nth-child(2) {
  background: #2d3a30;
}

.preview .bg-mark {
  position: absolute;
  right: -10px;
  top: -18px;
  font-family: var(--serif);
  font-size: 160px;
  opacity: 0.08;
  line-height: 1;
}

.preview span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
}

.preview h3 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  margin: 8px 0 12px;
}

.preview p {
  max-width: 36ch;
  color: #d7dbd2;
  font-weight: 300;
}

.preview .go {
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.preview .go i {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--leaf);
  transition: width 0.35s var(--ease);
}

.preview:hover .go i {
  width: 56px;
}

@media (max-width: 760px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
  }
  .project-meta {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
}

.foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* PORTFOLIO PAGE */
.page-hero {
  padding: 72px 0 24px;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 500;
  line-height: 0.9;
}

.page-hero p {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--ink-2);
  font-weight: 300;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
  padding-bottom: 80px;
}

.work-card {
  position: relative;
  min-height: 280px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--white);
  transition: 0.45s var(--ease);
}

.work-card .thumb {
  position: absolute;
  inset: 0;
}

.work-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
  transform: scale(1.04);
  transition: transform 1.1s var(--ease), filter 0.6s;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 24, 20, 0.18) 10%, rgba(18, 24, 20, 0.72) 100%);
}

.work-card:hover .thumb img {
  transform: scale(1.1);
  filter: saturate(1) contrast(1.08);
}

.work-card:first-child,
.work-card:nth-child(6) {
  min-height: 380px;
  background: var(--pine);
  color: var(--white);
  border-color: var(--pine);
}

.work-card:nth-child(3) {
  min-height: 320px;
}

.hatch {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 6px,
    var(--line) 6px,
    var(--line) 7px
  );
}

.work-card:first-child .hatch,
.work-card:nth-child(6) .hatch {
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 7px,
    rgba(255, 255, 255, 0.12) 7px,
    rgba(255, 255, 255, 0.12) 8px
  );
}

.work-card header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(231, 234, 226, 0.78);
}

.work-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
}

.work-card:hover {
  transform: translateY(-6px);
}

/* PROJECT TEMPLATE */
.project-hero {
  padding: 56px 0 0;
}

.project-cover {
  height: min(72vh, 720px);
  background: var(--pine);
  position: relative;
  overflow: hidden;
}

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

.project-cover .hatch {
  opacity: 0.12;
  pointer-events: none;
}

.project-body {
  max-width: 68ch;
  font-weight: 300;
  color: var(--ink-2);
}

.project-body p + p {
  margin-top: 16px;
}

.shot {
  margin: 0;
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 240px;
}

.shot img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.shot.wide {
  grid-column: 1 / -1;
}

.shot.wide img {
  min-height: 380px;
  max-height: 620px;
  object-fit: cover;
}

.shot.board img {
  object-fit: contain;
  background: #f3f1ea;
  min-height: 280px;
  max-height: 520px;
}

.shot figcaption {
  padding: 10px 14px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.project-meta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 48px 0 80px;
}

.project-meta h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.95;
}

.spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}

.spec div span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.spec div b {
  display: block;
  margin-top: 6px;
  font-weight: 400;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-bottom: 80px;
}

.ph {
  min-height: 240px;
  background: var(--paper-2);
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.ph.wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: none;
}

.reveal.in {
  animation: rise 0.9s var(--ease) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
  html {
    scroll-behavior: auto;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
  body {
    cursor: auto;
  }
}
