:root {
  --bg: #070708;
  --bg-elev: #101012;
  --bg-card: #121214;
  --charcoal: #1a1a1e;
  --text: #f3efe6;
  --text-muted: #9a958a;
  --accent: #c9a66b;
  --accent-soft: rgba(201, 166, 107, 0.16);
  --line: rgba(243, 239, 230, 0.08);
  --line-strong: rgba(243, 239, 230, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --glow: 0 0 40px rgba(201, 166, 107, 0.18);
  --radius: 18px;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Space Grotesk", system-ui, sans-serif;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.has-cursor,
body.has-cursor * { cursor: none; }

a, button, .gallery__item, .filters button { cursor: pointer; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 1.08; letter-spacing: -0.03em; margin: 0; }
p { margin: 0 0 1rem; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  z-index: 200;
  background: var(--accent);
  color: #111;
  padding: 8px 12px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

/* Background */
.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bg__noise {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 72%);
  animation: grid-drift 48s linear infinite;
}
.bg__blob {
  position: absolute;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.bg__blob--1 {
  top: -12%;
  left: -10%;
  background: radial-gradient(circle, #2a241c, transparent 70%);
  animation: blob 22s var(--ease) infinite;
}
.bg__blob--2 {
  right: -16%;
  top: 18%;
  background: radial-gradient(circle, #3a2e1c, transparent 68%);
  animation: blob 28s var(--ease) infinite reverse;
}
.bg__blob--3 {
  bottom: -20%;
  left: 30%;
  background: radial-gradient(circle, #1c2230, transparent 70%);
  animation: blob 32s var(--ease) infinite;
}
.bg__light {
  position: absolute;
  inset: auto 20% 10% 20%;
  height: 40%;
  background: radial-gradient(ellipse, rgba(201,166,107,0.08), transparent 70%);
}
.bg__particles { position: absolute; inset: 0; width: 100%; height: 100%; }

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 6%) scale(1.08); }
}
@keyframes grid-drift {
  from { transform: translateY(0); }
  to { transform: translateY(72px); }
}

/* Cursor */
.cursor { position: fixed; inset: 0; pointer-events: none; z-index: 400; display: none; }
body.has-cursor .cursor { display: block; }
.cursor__dot,
.cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
}
.cursor__ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,166,107,0.55);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, border-color 0.25s;
}
body.cursor-grow .cursor__ring {
  width: 64px;
  height: 64px;
  background: var(--accent-soft);
  border-color: var(--accent);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--nav-h);
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 12px;
}
.nav__logo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.nav__links {
  display: flex;
  gap: 4px;
}
.nav__links a {
  position: relative;
  padding: 8px 11px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--text); }
.nav__links a.is-active::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(86vw, 360px);
  background: #0d0d0f;
  z-index: 90;
  padding: 100px 36px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  border-left: 1px solid var(--line);
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer__links { display: flex; flex-direction: column; gap: 8px; }
.nav-drawer__links a {
  font-family: var(--display);
  font-size: 28px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 85;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--gold {
  background: var(--accent);
  color: #16140f;
  box-shadow: var(--glow);
}
.btn--gold:hover { box-shadow: 0 10px 30px rgba(201,166,107,0.28); }
.btn--ghost {
  border-color: var(--line-strong);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--sm { min-height: 40px; padding: 0 16px; font-size: 13px; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 40px 28px 96px;
  max-width: 1320px;
  margin: 0 auto;
}
.hero__watermark {
  position: absolute;
  right: -2%;
  top: 8%;
  font-family: var(--display);
  font-size: clamp(80px, 18vw, 240px);
  font-weight: 700;
  color: rgba(255,255,255,0.035);
  letter-spacing: -0.06em;
  pointer-events: none;
  user-select: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.eyebrow {
  color: var(--accent);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero__title { font-size: clamp(42px, 6vw, 76px); }
.hero__title .reveal-line { display: block; overflow: hidden; }
.hero__title .reveal-line > span {
  display: block;
  transform: translateY(110%);
  animation: rise 1.1s var(--ease) forwards;
}
.hero__title .reveal-line:nth-child(2) > span { animation-delay: 0.12s; }
.hero__name { color: var(--text); }
.hero__roles {
  margin-top: 22px;
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero__lead {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 18px;
  margin-top: 18px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.portrait {
  position: relative;
  width: min(100%, 420px);
  margin-left: auto;
}
.portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
  filter: saturate(0.92) contrast(1.05);
  box-shadow: var(--shadow), 0 0 80px rgba(201,166,107,0.12);
  transition: transform 0.7s var(--ease);
}
.portrait:hover img { transform: translateY(-6px) scale(1.015); }
.portrait__ring {
  position: absolute;
  inset: -10px;
  border-radius: 36px;
  border: 1px solid rgba(201,166,107,0.35);
  animation: ring 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ring {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}
@keyframes rise {
  to { transform: translateY(0); }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-hint__arrow { animation: bounce 2.2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Sections */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 112px 28px;
}
.section__head { margin-bottom: 48px; max-width: 640px; }
.section__head h2 { font-size: clamp(36px, 5vw, 56px); }
.section__intro { color: var(--text-muted); margin-top: 14px; font-size: 17px; }

/* About */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.about__photo { position: relative; }
.about__photo img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.04);
}
.about__caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(7,7,8,0.7);
  padding: 8px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.about__kicker {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 16px;
}
.about__body p { color: var(--text-muted); }
.about__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin-top: 28px;
}
.about__meta dt {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.about__meta dd { margin: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.stat {
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), transparent);
}
.stat__num {
  font-family: var(--display);
  font-size: 36px;
  margin: 0 0 6px;
}
.stat__label { color: var(--text-muted); margin: 0; font-size: 14px; }

/* Cards shared */
.skills,
.work,
.socials,
.projects,
.services {
  display: grid;
  gap: 18px;
}
.skills { grid-template-columns: repeat(4, 1fr); }
.work { grid-template-columns: repeat(3, 1fr); }
.socials { grid-template-columns: repeat(3, 1fr); }
.projects { grid-template-columns: repeat(2, 1fr); }
.services { grid-template-columns: repeat(2, 1fr); }
.services .service-card:last-child { grid-column: 1 / -1; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.45s var(--ease), border-color 0.35s, box-shadow 0.45s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,166,107,0.35);
  box-shadow: var(--glow);
}
.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
}
.card h3 { font-size: 20px; margin-bottom: 8px; }
.card p { color: var(--text-muted); margin: 0; font-size: 14.5px; }

.work-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.work-card::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(201,166,107,0.18), transparent 70%);
  pointer-events: none;
}

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 18px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243,239,230,0.35);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* Portfolio */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.filters button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.3s;
}
.filters button.is-active,
.filters button:hover {
  color: #16140f;
  background: var(--accent);
  border-color: var(--accent);
}

.gallery {
  columns: 3;
  column-gap: 16px;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  border: 1px solid var(--line);
}
.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease), filter 0.8s;
  filter: saturate(0.9);
}
.gallery__item:hover img { transform: scale(1.08); filter: saturate(1.05); }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7,7,8,0.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.4s var(--ease);
}
.gallery__item:hover .gallery__overlay,
.gallery__item:focus-within .gallery__overlay {
  opacity: 1;
  transform: none;
}
.gallery__cat {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 4px;
}
.gallery__overlay h3 { font-size: 20px; margin-bottom: 12px; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(5,5,6,0.92);
  display: grid;
  place-items: center;
  padding: 40px 20px;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { animation: fade 0.35s ease; }
.lightbox__panel {
  width: min(960px, 100%);
  background: #111113;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  animation: pop 0.45s var(--ease);
}
.lightbox__panel img { width: 100%; max-height: 62vh; object-fit: cover; }
.lightbox__meta { padding: 24px 28px 32px; }
.lightbox__cat { color: var(--accent); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 26px;
  cursor: pointer;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav--prev { left: 16px; top: 50%; }
.lightbox__nav--next { right: 16px; top: 50%; }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }

/* Social / project extras */
.social-card .handle { color: var(--accent); font-size: 13px; margin: 4px 0 10px; }
.social-card .btn { margin-top: 18px; }

.project-card { padding: 0; overflow: hidden; }
.project-card img { height: 210px; width: 100%; object-fit: cover; }
.project-card__body { padding: 22px; }
.project-card__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 18px;
}
.project-card__tech span {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--text-muted);
}
.project-card__actions { display: flex; gap: 8px; flex-wrap: wrap; }

.service-card { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.service-card .price {
  grid-column: 2;
  color: var(--text-muted);
  font-size: 13px;
  margin: 8px 0 14px;
}
.service-card .btn { grid-column: 2; justify-self: start; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
}
.contact__item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.contact__item span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact__item svg { color: var(--accent); width: 20px; height: 20px; }

.form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
}
.form__row { margin-bottom: 16px; }
.form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.form input,
.form textarea {
  width: 100%;
  background: #0c0c0e;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s;
}
.form input:focus,
.form textarea:focus { border-color: var(--accent); }
.form__error { color: #d98a7a; font-size: 12px; min-height: 16px; display: block; margin-top: 4px; }
.form__status { margin: 14px 0 0; min-height: 24px; }
.form__status.is-ok { color: #9dba8c; }
.form__status.is-err { color: #d98a7a; }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 28px 32px;
  max-width: 1320px;
  margin: 0 auto;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.footer__name {
  font-family: var(--display);
  letter-spacing: 0.28em;
  font-size: 14px;
  margin: 0 0 8px;
}
.footer__tag { color: var(--text-muted); margin: 0; }
.footer__nav { display: flex; gap: 18px; flex-wrap: wrap; color: var(--text-muted); }
.footer__nav a:hover { color: var(--text); }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: 0.3s;
}
.footer__socials a:hover {
  color: var(--accent);
  border-color: var(--accent);
}
.footer__copy {
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), filter var(--dur) var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

body.is-loading .hero__copy,
body.is-loading .hero__portrait { opacity: 0; }
body:not(.is-loading) .hero__copy,
body:not(.is-loading) .hero__portrait { animation: fade 1s var(--ease); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero__grid,
  .about,
  .contact { grid-template-columns: 1fr; }
  .portrait { margin: 0 auto; }
  .skills { grid-template-columns: repeat(2, 1fr); }
  .work, .socials { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; cursor: pointer; }
  body.has-cursor .nav__toggle { cursor: none; }
}

@media (max-width: 720px) {
  .section { padding: 80px 18px; }
  .hero { padding: 24px 18px 88px; }
  .skills, .work, .socials, .projects, .services { grid-template-columns: 1fr; }
  .about__meta { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .lightbox__nav { display: none; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .nav__inner { padding: 0 16px; }
}

@media (hover: none) {
  .gallery__overlay {
    opacity: 1;
    transform: none;
    background: linear-gradient(180deg, transparent 40%, rgba(7, 7, 8, 0.92));
  }
  body, a, button { cursor: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; filter: none; }
}
