@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --bg: #f5f3ef;
  --surface: #ffffff;
  --surface-2: #ebe8e2;
  --surface-accent: #eeeaf5;
  --border: #d6d2cb;
  --text: #151515;
  --text-muted: #5d5c60;
  --dark: #171719;
  --accent: #b69cff;
  --accent-hover: #c9b8ff;
  --accent-strong: #5b38d1;
  --accent-strong-hover: #4d2fba;
  --success: #4ade80;
  --warning: #fbbf24;
  --font-body: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Space Grotesk", "Manrope", sans-serif;
  --space-section: clamp(4.75rem, 8vw, 8rem);
  --space-page: clamp(1.25rem, 5vw, 5rem);
  --radius-sm: .75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --radius-pill: 999px;
  --shadow-sm: 0 .5rem 2rem rgba(0, 0, 0, .18);
  --shadow-lg: 0 2rem 5rem rgba(0, 0, 0, .34);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --duration-fast: 180ms;
  --duration: 420ms;
  --header-height: 4.25rem;
  --z-header: 100;
  --z-skip-link: 200;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 1rem); }
body { margin: 0; overflow-x: clip; color: var(--text); font-family: var(--font-body); font-size: 1rem; line-height: 1.6; }
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
button,
a { -webkit-tap-highlight-color: transparent; }
h1,
h2,
h3,
p { margin-top: 0; }
h1,
h2,
h3 { font-family: var(--font-display); }
h1,
h2 { margin-bottom: 1.5rem; font-weight: 600; letter-spacing: -.055em; line-height: .95; text-wrap: balance; }
h1 { max-width: 12ch; font-size: clamp(3.25rem, 15vw, 5.25rem); }
h2 { font-size: clamp(2.8rem, 12vw, 5.5rem); }
h3 { margin-bottom: .6rem; font-size: clamp(1.3rem, 4vw, 1.8rem); line-height: 1.2; }
em { color: inherit; font: inherit; font-style: normal; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: var(--z-skip-link); padding: .75rem 1rem; border-radius: var(--radius-pill); background: var(--text); color: var(--bg); font-weight: 700; transform: translateY(-180%); transition: transform var(--duration-fast) var(--ease); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: relative; z-index: var(--z-header); display: grid; grid-template-columns: 1fr auto; align-items: center; height: var(--header-height); padding-inline: 1rem; background: var(--dark); color: #f7f7f8; }
.brand { width: 2.35rem; height: 3.3rem; display: grid; place-items: center; transition: transform var(--duration-fast) var(--ease); }
.brand:hover { transform: translateY(-2px); }
.brand img { width: auto; height: 3.15rem; filter: drop-shadow(0 .25rem .75rem rgba(0, 0, 0, .18)); }
.site-nav { justify-self: end; display: flex; align-items: center; gap: .15rem; padding: .2rem; border-radius: var(--radius-pill); background: rgba(42, 42, 46, .94); }
.site-nav .nav-link { display: none; }
.site-nav a { min-height: 2.5rem; display: inline-flex; align-items: center; padding: .45rem .55rem; border-radius: var(--radius-pill); color: var(--text-muted); font-size: .74rem; font-weight: 650; transition: color var(--duration-fast), background-color var(--duration-fast), transform var(--duration-fast); }
.site-header .site-nav .nav-link { color: #fff; }
.site-nav a:hover,
.site-nav a:focus-visible { background: #38383d; color: #fff; transform: translateY(-1px); }
.header-cta { width: auto; min-height: 2.35rem; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .38rem .9rem; border-radius: var(--radius-pill); background: var(--accent-strong); color: #fff; font-size: .78rem; font-weight: 750; white-space: nowrap; transition: background-color var(--duration-fast), transform var(--duration-fast); }
.site-nav .header-cta { padding-inline: .9rem; background: var(--accent-strong); color: #fff; }
.header-cta span { font-size: 1rem; }
.site-nav .header-cta:hover,
.site-nav .header-cta:focus-visible { background: var(--accent-strong-hover); color: #fff; transform: translateY(-2px); }

.section { position: relative; padding: var(--space-section) var(--space-page); }
.eyebrow { margin-bottom: 1.15rem; color: #6a6970; font-size: .75rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.button { min-height: 3.2rem; display: inline-flex; align-items: center; justify-content: center; padding: .8rem 1.4rem; border: 1px solid transparent; border-radius: var(--radius-pill); font-weight: 750; transition: color var(--duration-fast), background-color var(--duration-fast), border-color var(--duration-fast), transform var(--duration-fast); }
.button:hover { transform: translateY(-2px); }
.button-icon { width: 1.1rem; height: 1.1rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.button-icon-fill { fill: currentColor; stroke: none; }
.button.primary { background: var(--accent-strong); color: #fff; box-shadow: 0 .75rem 2rem rgba(124, 58, 237, .24); }
.button.primary:hover { background: var(--accent-strong-hover); }
.button.secondary,
.button.light { border-color: var(--border); background: transparent; color: var(--text); }
.button.secondary:hover,
.button.light:hover { border-color: #a8a49d; background: var(--surface-2); }

.hero-stage { position: relative; }
.hero { min-height: calc(100svh - var(--header-height)); display: grid; align-content: center; gap: 3rem; padding: clamp(3.5rem, 9vw, 6rem) var(--space-page); background: var(--dark); color: #f7f7f8; }
.hero .eyebrow { color: #aaaab2; }
.hero em { color: #f7f7f8; }
.hero-intro { max-width: 39rem; margin-bottom: 1.75rem; color: #b9b9c2; font-size: clamp(1rem, 3vw, 1.25rem); }
.hero .button.secondary { border-color: #55555e; color: #f7f7f8; }
.hero .button.secondary:hover { border-color: #8e8e99; background: #242429; }
.hero-actions,
.contact-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-actions .button { width: 100%; }
.hero-phone-group { width: 100%; display: flex; align-items: stretch; transition: transform var(--duration-fast) var(--ease); }
.hero-phone-group:hover,
.hero-phone-group:focus-within { transform: translateY(-2px); }
.hero-phone-group .hero-phone { flex: 1; width: auto; border-radius: var(--radius-pill) 0 0 var(--radius-pill); }
.hero-phone { width: fit-content; gap: .7rem; padding-inline: 1.65rem; border-color: #55555e; color: #f7f7f8; font-size: .9rem; }
.hero-phone:hover { color: var(--accent); transform: none; }
.hero-copy-button { width: 3.25rem; display: inline-grid; place-items: center; padding: 0; border: 1px solid #55555e; border-left: 0; border-radius: 0 var(--radius-pill) var(--radius-pill) 0; background: #242429; color: #dedee3; cursor: pointer; transition: background-color var(--duration-fast), color var(--duration-fast); }
.hero-copy-button:hover { background: #303036; color: #fff; }
.hero-copy-button svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.hero-portrait { position: relative; width: min(76vw, 20rem); margin: 0 auto; filter: drop-shadow(0 2rem 2.5rem rgba(0, 0, 0, .35)); isolation: isolate; }
.portrait-frame { position: relative; z-index: 2; aspect-ratio: 4 / 4.6; overflow: hidden; clip-path: polygon(8% 0, 100% 7%, 92% 100%, 0 93%); background: var(--surface-2); transition: transform var(--duration) var(--ease), clip-path var(--duration) var(--ease); }
.hero-portrait:hover .portrait-frame { clip-path: polygon(3% 3%, 97% 0, 100% 96%, 0 100%); transform: translateY(-.4rem); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: contrast(1.06); transform: scale(1.14) translateY(-1.5%); }
.portrait-accent { position: absolute; z-index: 1; inset: 4% -5% -3% 7%; border: 2px solid #5b5b63; background: #2b2b30; transform: rotate(-5deg); }
.hero-portrait::before { content: ""; position: absolute; z-index: 3; width: 4rem; aspect-ratio: 1; right: -1rem; top: 7%; border-radius: 50%; background: #d8d8dc; opacity: .72; mix-blend-mode: screen; }
.hero-portrait::after { content: ""; position: absolute; z-index: 0; width: 48%; aspect-ratio: 1; left: -10%; bottom: -6%; background-image: radial-gradient(#777780 1.5px, transparent 1.5px); background-size: 12px 12px; }

.works-section { z-index: 2; padding: var(--space-section) 0; border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: #ffffff; color: var(--text); box-shadow: var(--shadow-lg); }
.works-section > .section-heading { padding-inline: var(--space-page); }
.works-section .section-heading > p,
.works-section .project-category { color: var(--text-muted); }
.works-section .eyebrow,
.works-section .project-index { color: #6a6970; }
.works-section em { color: inherit; }
.works-section .section-heading { margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.works-section .section-heading > p { margin-bottom: .4rem; }
.section-heading { display: grid; gap: 1.5rem; margin-bottom: clamp(3rem, 7vw, 6rem); }
.section-heading > p { max-width: 34rem; color: var(--text-muted); font-size: 1.05rem; }
.works-track { display: flex; gap: 1rem; width: 100%; overflow-x: auto; padding: 1rem var(--space-page) 3rem; scroll-snap-type: x mandatory; scrollbar-color: #777780 var(--surface-2); }
.project-card { flex: 0 0 min(82vw, 31rem); scroll-snap-align: center; }
.project-open { width: 100%; padding: 0; border: 0; background: transparent; color: inherit; text-align: left; cursor: pointer; }
.project-open img { width: 100%; aspect-ratio: 3 / 2; border-radius: var(--radius-md); object-fit: cover; box-shadow: var(--shadow-sm); transition: transform var(--duration) var(--ease), filter var(--duration-fast); }
.project-open:hover img { transform: scale(.985); filter: saturate(1.1) brightness(1.04); }
.project-index,
.project-title,
.project-category { display: block; }
.project-index { margin-top: 1rem; color: #6a6970; font-size: .75rem; font-weight: 800; }
.project-title { margin-top: .25rem; font-family: var(--font-display); font-size: clamp(1.4rem, 5vw, 2rem); font-weight: 650; letter-spacing: -.035em; }
.project-category { color: var(--text-muted); }

.about-section { display: grid; gap: clamp(2.5rem, 6vw, 5rem); overflow: hidden; background: linear-gradient(135deg, #f5f3ef 0%, #eeebe5 100%); }
.about-lead { position: relative; align-self: start; padding-bottom: 1rem; }
.about-lead::after { content: "↘"; width: 3.25rem; height: 3.25rem; display: grid; place-items: center; margin-top: 2rem; border-radius: 50%; background: #1d1d20; color: #fff; font-size: 1.15rem; }
.about-lead h2 { max-width: 11ch; margin-bottom: 0; font-size: clamp(3rem, 11vw, 6.5rem); }
.about-copy { position: relative; align-self: end; padding: clamp(1.75rem, 4vw, 3rem); border: 1px solid rgba(21, 21, 21, .08); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .72); box-shadow: 0 1.5rem 4rem rgba(21, 21, 21, .08); backdrop-filter: blur(10px); }
.about-copy p { color: var(--text-muted); font-size: clamp(1.05rem, 2.4vw, 1.35rem); }
.about-copy p:first-child { color: var(--text); font-family: var(--font-display); font-size: clamp(1.25rem, 2.8vw, 1.65rem); font-weight: 550; line-height: 1.45; letter-spacing: -.025em; }
.about-copy p:last-child { margin-bottom: 0; }
.about-copy p + p { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.experience-section { background: #fff; }
.experience-section > .section-heading { margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }
.skill-card p { color: var(--text-muted); }
.skills-grid { display: grid; gap: 1rem; }
.skill-card { position: relative; min-height: 14rem; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: clamp(1.5rem, 3vw, 1.85rem); border: 1px solid var(--border); border-radius: var(--radius-md); background: #f5f3ef; box-shadow: 0 .75rem 2.25rem rgba(21, 21, 21, .045); }
.skill-card h3 { max-width: 13ch; margin-bottom: .75rem; font-size: clamp(1.6rem, 3vw, 2.25rem); }
.skill-card p { max-width: 34rem; margin-bottom: 0; }

.contact-section { display: flex; flex-direction: column; justify-content: center; margin-top: clamp(1rem, 2vw, 1.5rem); padding-block: var(--space-section); border-radius: var(--radius-lg) var(--radius-lg) 0 0; background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .04), transparent 28%), #171719; color: #f7f7f8; }
.contact-section h2 { max-width: 13ch; }
.contact-intro { max-width: 45rem; color: #b9b9c2; font-size: clamp(1.1rem, 3vw, 1.45rem); }
.contact-actions { margin-top: 2rem; }
.contact-actions .button { width: 100%; padding-inline: 1.1rem; }
.contact-actions .button { gap: .65rem; }
.contact-actions .button-icon { width: 1.75rem; height: 1.75rem; padding: .38rem; border-radius: 50%; background: rgba(255, 255, 255, .1); }
.contact-actions .button.primary .button-icon { background: rgba(255, 255, 255, .18); }
.contact-section .eyebrow { color: #aaaab2; }
.contact-section .button.light { border-color: #55555e; color: #f7f7f8; }
.contact-section .button.light:hover { border-color: #8e8e99; background: #242429; }
.contact-meta { display: grid; grid-template-columns: minmax(0, 1fr); gap: .75rem; max-width: 50rem; margin-top: clamp(3rem, 6vw, 5rem); color: #b9b9c2; font-style: normal; }
.contact-detail { min-width: 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1rem 1rem 1.2rem; border: 1px solid #3d3d43; border-radius: var(--radius-md); background: #202023; }
.contact-detail > div { min-width: 0; display: grid; gap: .15rem; }
.contact-label { color: #92929b; font-size: .68rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.contact-detail a { overflow-wrap: anywhere; color: #f7f7f8; font-size: clamp(.95rem, 2vw, 1.1rem); font-weight: 700; }
.contact-detail button { width: 2.5rem; height: 2.5rem; flex: 0 0 auto; display: inline-grid; place-items: center; padding: 0; border: 1px solid #505057; border-radius: 50%; background: #2a2a2f; color: #dedee3; cursor: pointer; transition: border-color var(--duration-fast), background-color var(--duration-fast); }
.contact-detail button:hover { border-color: #777780; background: #242429; }
.contact-detail button.is-copied { border-color: #6f9d7a; background: #1f3024; }
.contact-detail svg { width: .95rem; height: .95rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.contact-detail .check-icon { display: none; color: #8bd29b; }
.contact-detail button.is-copied .copy-icon { display: none; }
.contact-detail button.is-copied .check-icon { display: block; }
[data-copy] .check-icon { display: none; }
[data-copy].is-copied .copy-icon { display: none; }
[data-copy].is-copied .check-icon { display: block; color: #8bd29b; }
.contact-meta a:hover,
.site-footer a:hover { color: var(--accent-hover); }
.site-footer { min-height: 6.25rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 1.75rem; padding: 1.5rem var(--space-page); border-top: 1px solid #303034; background: #171719; color: #b9b9c2; font-size: .9rem; }
.social-links { display: flex; align-items: center; gap: .35rem; }
.social-link { width: 2rem; height: 2rem; display: inline-grid; place-items: center; border: 1px solid #44444a; border-radius: 50%; color: #dedee3; font-family: var(--font-display); font-size: .72rem; font-weight: 700; }
.social-link svg { width: 1rem; height: 1rem; fill: none; stroke: currentColor; stroke-width: 1.7; }
.social-link .social-fill { width: 1.15rem; height: 1.15rem; fill: currentColor; stroke: none; }
.social-link .social-dot { fill: currentColor; stroke: none; }
a.social-link:hover { border-color: #777780; background: #242429; color: #fff; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translate3d(0, 2rem, 0); transition: opacity 600ms var(--ease), transform 700ms var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); }

.case-study { width: 100vw; max-width: none; height: 100svh; max-height: none; margin: 0; padding: 0; border: 0; background: var(--bg); color: var(--text); opacity: 0; transform: translate3d(0, 3rem, 0); transition: opacity 300ms var(--ease), transform var(--duration) var(--ease); }
.case-study[open] { display: grid; grid-template-rows: auto minmax(0, 1fr) auto; }
.case-study.is-open { opacity: 1; transform: translate3d(0, 0, 0); }
.case-study::backdrop { background: rgba(0, 0, 0, .86); opacity: 0; transition: opacity 300ms var(--ease); }
.case-study.is-open::backdrop { opacity: 1; }
.case-toolbar { z-index: 2; display: flex; align-items: center; justify-content: space-between; min-height: var(--header-height); padding: .75rem var(--space-page); background: rgba(245, 243, 239, .92); backdrop-filter: blur(14px); }
.case-count { color: var(--text-muted); font-size: .85rem; font-weight: 750; }
.case-close { width: 2.75rem; min-height: 2.75rem; display: inline-grid; place-items: center; padding: 0; border: 1px solid var(--border); border-radius: 50%; background: #fff; color: #111; cursor: pointer; font-size: 1.7rem; font-weight: 500; line-height: 1; transition: background-color var(--duration-fast), transform var(--duration-fast); }
.case-close:hover { background: var(--surface-2); transform: rotate(5deg); }
.case-content { overflow-y: auto; overscroll-behavior: contain; outline: none; }
.case-hero { min-height: 58svh; display: flex; flex-direction: column; justify-content: end; padding: clamp(4rem, 10vw, 9rem) var(--space-page); }
.case-hero h2 { max-width: 12ch; }
.case-summary { max-width: 44rem; color: var(--text-muted); font-size: clamp(1.1rem, 3vw, 1.45rem); }
.case-image { width: calc(100% - 2 * var(--space-page)); margin-inline: auto; border-radius: var(--radius-md); }
.case-details { display: grid; gap: 3rem; padding: var(--space-section) var(--space-page); }
.case-details section p { max-width: 48rem; color: var(--text-muted); font-size: 1.1rem; }
.case-details dl { margin: 0; }
.case-details dl div { padding-block: 1rem; border-top: 1px solid var(--border); }
.case-details dt { color: var(--text-muted); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.case-details dd { margin: .35rem 0 0; }
.case-process { padding: 0 var(--space-page) var(--space-section); }
.case-process ol { display: grid; gap: 1rem; padding: 0; list-style: none; counter-reset: steps; }
.case-process li { min-height: 11rem; padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--surface); counter-increment: steps; }
.case-process li::before { content: "0" counter(steps); display: block; margin-bottom: 2rem; color: #6a6970; font-weight: 800; }
.case-navigation { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); }
.case-navigation button { min-height: var(--header-height); border: 0; background: var(--surface); cursor: pointer; font-weight: 750; transition: background-color var(--duration-fast); }
.case-navigation button:hover { background: var(--surface-2); }
.case-navigation button + button { border-left: 1px solid var(--border); }

@media (min-width: 36rem) {
  .hero-actions .button,
  .contact-actions .button { width: auto; }
  .hero-phone-group { width: auto; }
  .contact-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 44rem) {
  h1 { font-size: clamp(4.5rem, 9vw, 7rem); }
  h2 { font-size: clamp(3.5rem, 7vw, 7rem); }
  .site-nav .nav-link { display: inline-flex; }
  .site-nav a { padding-inline: .9rem; font-size: .88rem; }
  .site-nav .header-cta { min-height: 2.35rem; padding-inline: 1rem; font-size: .78rem; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(16rem, .7fr); align-items: center; gap: clamp(2rem, 5vw, 5rem); }
  .hero-portrait { width: min(100%, 23rem); }
  .section-heading { grid-template-columns: minmax(0, 1.3fr) minmax(16rem, .7fr); align-items: end; gap: 3rem; }
  .about-section { grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 9vw, 9rem); }
  .about-copy { align-self: end; }
  .skills-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .skill-card { min-height: 14rem; }
  .case-details { grid-template-columns: 1.2fr .8fr; gap: clamp(3rem, 9vw, 9rem); }
  .case-process ol { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 64.0625rem) {
  :root { --header-height: 4.75rem; }
  .site-header { grid-template-columns: 1fr auto; padding-inline: var(--space-page); }
  .brand { width: 2.6rem; }
  .brand img { height: 3.5rem; }
  .hero-stage { height: 110svh; }
  .hero { position: sticky; top: 0; height: calc(100svh - var(--header-height)); min-height: 0; grid-template-columns: minmax(0, 1.12fr) minmax(19rem, .68fr); overflow: hidden; }
  .hero-portrait { width: min(100%, 29rem, 57.6vh); }
  .portrait-frame { aspect-ratio: 4 / 5; }
  .works-section { margin-top: -10svh; }
  .works-stage { height: calc(100svh + var(--track-distance, 150vw)); }
  .works-sticky { position: sticky; top: 0; height: 100svh; display: flex; align-items: center; overflow: clip; }
  .works-track { width: max-content; overflow: visible; gap: clamp(1rem, 2vw, 2rem); padding-block: 2rem; scroll-snap-type: none; transform: translate3d(var(--track-x, 0), 0, 0); will-change: transform; }
  .project-card { flex-basis: clamp(19rem, 34vw, 34rem); }
  .project-card:nth-child(even) { transform: translateY(2.5rem); }
}

@media (min-width: 100rem) {
  :root { --space-page: clamp(5rem, 8vw, 10rem); }
  .hero { grid-template-columns: minmax(0, 1.2fr) minmax(24rem, .6fr); }
  .hero-copy { max-width: 70rem; }
}

@media (max-height: 38.75rem) {
  .hero-stage { height: auto; }
  .hero { position: relative; top: auto; height: auto; min-height: auto; transform: none; opacity: 1; }
  .works-section { margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto; animation-duration: .01ms; animation-iteration-count: 1; transition-duration: .01ms; }
  .hero-stage,
  .works-stage { height: auto; }
  .hero,
  .works-sticky { position: relative; top: auto; height: auto; transform: none; opacity: 1; }
  .works-section { margin-top: 0; }
  .works-track { width: 100%; overflow-x: auto; transform: none; }
  .reveal,
  .js .reveal { opacity: 1; transform: none; }
}
