:root {
  --ink: #101010;
  --paper: #ffffff;
  --grey: #6b6b6b;
  --line: #e6e6e6;
  --line-dark: rgba(255, 255, 255, 0.16);
  --accent: #ff4b2b;
  --max: 1320px;
  --gut: clamp(20px, 5vw, 72px);
  --mono: "IBM Plex Mono", ui-monospace, "Cascadia Code", "SF Mono", "Segoe UI Mono", Menlo, Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-micro: 0.2s;
  --dur-mid: 0.45s;
  --dur-macro: 0.7s;
  --dur-slow: 0.9s;
}

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

.skip {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 0.22s var(--ease);
}
.skip:focus { transform: translateY(0); outline: 2px solid var(--accent); outline-offset: 3px; }

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: "Archivo", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
}

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

.label {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
}
.label.light { color: rgba(255, 255, 255, 0.72); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px var(--gut);
  mix-blend-mode: difference;
  color: #fff;
  transition: transform 0.45s var(--ease);
}
.nav--hidden { transform: translateY(-115%); }
/* JS enhances the difference-blend fallback into precise theme-aware colours */
.js .nav { mix-blend-mode: normal; transition: transform 0.45s var(--ease), color 0.35s var(--ease), text-shadow 0.35s var(--ease); }
.js .nav.nav--light { color: var(--ink); text-shadow: none; }
/* dark nav sits over photography — a soft shadow keeps it legible over bright image regions */
.js .nav.nav--dark { color: #fff; text-shadow: 0 1px 14px rgba(0, 0, 0, 0.42); }
.nav__name {
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.9;
  transition: opacity 0.3s var(--ease);
  /* enlarge tap target to ~44px without shifting layout */
  padding: 13px 6px;
  margin: -13px -6px;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 6px; right: 6px; bottom: 9px;
  height: 1.5px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-micro) var(--ease), opacity var(--dur-micro) var(--ease);
}
.nav__links a:hover::after { opacity: 0.6; transform: scaleX(1); }
.nav__links a.is-active { opacity: 1; }
.nav__links a.is-active::after { opacity: 1; transform: scaleX(1); background: var(--accent); }
.nav__name { padding: 10px 4px; margin: -10px -4px; }
.nav__name-short { display: none; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: #0c0c0c;
}
.hero__media {
  position: absolute; inset: 0;
  background: #0c0c0c url("assets/hero.jpg?2") center 28% / cover no-repeat;
  background-image: image-set(url("assets/hero.webp?2") type("image/webp"), url("assets/hero.jpg?2") type("image/jpeg"));
  opacity: 1;
  transition: opacity 1.2s ease;
}
.js .hero__media { opacity: 0; }
body.is-loaded .hero__media { opacity: 1; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.18) 38%, rgba(0,0,0,0.46) 66%, rgba(0,0,0,0.82) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: var(--gut);
  padding-bottom: clamp(44px, 6vw, 84px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
}
.hero__title {
  font-size: clamp(44px, 8.5vw, 132px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.035em;
}
.hero__title .ln {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero__title .ln > span {
  display: block;
  transform: translateY(0);
}
.js .hero__title .ln > span {
  transform: translateY(120%);
  transition: transform 0.95s var(--ease);
}
body.is-loaded .hero__title .ln > span { transform: translateY(0); }
.hero__title .ln:nth-child(2) > span { transition-delay: 0.07s; }
.hero__title .ln:nth-child(3) > span { transition-delay: 0.14s; }
.hero__title .ln:nth-child(4) > span { transition-delay: 0.21s; }
.hero__lead {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 22px rgba(0, 0, 0, 0.35);
  max-width: 44ch;
  padding-bottom: 8px;
}
/* The hero lead is the LCP element: keep it painted immediately (opacity 1) and
   animate only its transform, so the reveal never delays Largest Contentful Paint. */
.js .hero__lead { transform: translateY(14px); transition: transform 0.9s var(--ease) 0.12s; }
body.is-loaded .hero__lead { transform: none; }
.accent-dot { color: var(--accent); }

/* ---------- BLOCKS ---------- */
.block {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 160px) var(--gut);
}
.block--light { background: var(--paper); }
.block__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 6vw, 90px);
  margin-top: 52px;
  align-items: start;
}
.statement {
  font-size: clamp(30px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.prose p { color: var(--grey); margin-bottom: 20px; max-width: 50ch; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- EXPERIENCE ---------- */
.exp { list-style: none; margin-top: 56px; border-top: 1px solid var(--line); }
.exp__item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(24px, 5vw, 80px);
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.exp__item:nth-child(1) { transition-delay: 0s; }
.exp__item:nth-child(2) { transition-delay: 0.06s; }
.exp__item:nth-child(3) { transition-delay: 0.12s; }
.exp__item:nth-child(4) { transition-delay: 0.18s; }
.exp__co {
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}
.exp__item--lead .exp__co { font-size: clamp(34px, 4.4vw, 64px); }
.exp__role {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.exp__desc p { color: var(--grey); margin-bottom: 16px; }
.exp__desc p:last-child { margin-bottom: 0; }
.exp__item[data-thumb] .exp__co::after {
  content: "";
  display: inline-block;
  width: 7px; height: 7px;
  margin-left: 14px;
  border-radius: 50%;
  background: var(--ink);
  vertical-align: middle;
  opacity: 0.25;
  transition: opacity 0.3s var(--ease), background-color 0.3s var(--ease);
}
.exp__item[data-thumb]:hover .exp__co::after { opacity: 1; background: var(--accent); }
.exp__media { display: none; }

/* floating cursor thumbnail (desktop) */
.exp-hover {
  position: fixed; top: 0; left: 0;
  width: 280px; height: 210px;
  z-index: 60;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate(-9999px, -9999px);
  transition: opacity 0.35s var(--ease);
}
.exp-hover img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.exp-hover.show { opacity: 1; }

/* ---------- SOBRE (photo left · text right) ---------- */
.sobre {
  margin-top: clamp(32px, 5vw, 52px);
  display: grid;
  grid-template-columns: 0.8fr 1.5fr;
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}
.sobre__figure {
  --fig-w: clamp(220px, 30vw, 340px);
  --shape-d: clamp(170px, 23vw, 270px);
  position: relative;
}
.sobre__shape {
  position: absolute;
  z-index: 0;
  width: var(--shape-d);
  height: var(--shape-d);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 75, 43, 0.62) 58%, rgba(255, 75, 43, 0) 100%);
  left: 50%;
  top: -2%;
  transform: translateX(-50%);
  transition: transform 0.6s var(--ease);
}
.sobre__figure:hover .sobre__shape { transform: translateX(-50%) scale(1.04); }
.sobre__figure picture {
  position: relative;
  z-index: 1;
  display: block;
  width: var(--fig-w);
  max-width: 100%;
  margin: 0 auto;
}
.sobre__figure img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(1.02) saturate(1.03);
}
.sobre__name {
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.sobre__role {
  margin-top: clamp(12px, 1.4vw, 18px);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.35;
  color: var(--grey);
  max-width: 42ch;
}
.sobre__main .prose { margin-top: clamp(24px, 3vw, 36px); }

/* ---------- PROJECTS (carousel) ---------- */
.proj-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.proj-nav { display: flex; gap: 12px; }
.proj-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.proj-arrow:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

.proj-track {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-top: 44px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 14px 2px 54px;
  scrollbar-width: none;
  cursor: grab;
}
.proj-track::-webkit-scrollbar { display: none; }
.proj-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.proj-track.dragging .pcard { pointer-events: none; }

.pcard {
  flex: 0 0 auto;
  width: min(85vw, 440px);
  scroll-snap-align: start;
}
.pcard:nth-child(1) { transition-delay: 0s; }
.pcard:nth-child(2) { transition-delay: 0.05s; }
.pcard:nth-child(3) { transition-delay: 0.1s; }
.pcard:nth-child(4) { transition-delay: 0.15s; }
.pcard:nth-child(5) { transition-delay: 0.2s; }
.pcard:nth-child(6) { transition-delay: 0.25s; }
.pcard:nth-child(7) { transition-delay: 0.3s; }
.pcard__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #0c0c0c;
  overflow: hidden;
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}
/* flat editorial hover: the frame stays put, the image eases in */
.pcard:hover .pcard__media img { transform: scale(1.04); }
/* covers rest in B&W to match the editorial imagery, then bloom to colour on hover.
   Guarded to fine-pointer devices so touch screens always show full colour. */
@media (hover: hover) and (pointer: fine) {
  .pcard__media img { filter: grayscale(1) contrast(1.04); }
  .pcard:hover .pcard__media img { filter: grayscale(0) contrast(1); }
}
.pcard__cat {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey);
}
.pcard h3 {
  margin-top: 7px;
  font-size: 21px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15;
}
.pcard p { margin-top: 8px; color: var(--grey); font-size: 15px; line-height: 1.5; }
.pcard__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}
.pcard__tags li {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--grey);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.pcard:hover .pcard__tags li { border-color: #d8d8d8; }

/* ---------- ALÉM DO TRABALHO (split) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88svh;
  background: var(--ink);
  color: #fff;
}
.split__media {
  position: relative;
  background: #0c0c0c url("assets/muaythai-champ.jpg") center 30% / cover no-repeat;
  background-image: image-set(url("assets/muaythai-champ.webp") type("image/webp"), url("assets/muaythai-champ.jpg") type("image/jpeg"));
  filter: contrast(1.05);
}
/* suaviza a costura entre a foto e o painel (mobile: funde-se para baixo) */
.split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 78%, rgba(16,16,16,0.28) 93%, var(--ink) 100%);
}
@media (min-width: 821px) {
  /* desktop: a foto dissolve-se para a direita, para dentro do painel do texto */
  .split__media::after {
    background: linear-gradient(to right, transparent 85%, rgba(16,16,16,0.26) 95%, var(--ink) 100%);
  }
}
.split__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 96px) var(--gut);
}
.split__statement {
  margin-top: 24px;
  font-size: clamp(28px, 3.4vw, 54px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 17ch;
}
.split__text {
  margin-top: 26px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 48ch;
}

/* ---------- FERRAMENTAS (banda marquee) ---------- */
.toolband {
  padding: clamp(46px, 7vw, 84px) 0;
  border-block: 1px solid var(--line);
  background: #fafafa;
  overflow: hidden;
}
.toolband__label {
  text-align: center;
  margin-bottom: clamp(26px, 4vw, 40px);
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__row {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee:hover .marquee__row { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4.5vw, 54px);
  padding-right: clamp(28px, 4.5vw, 54px);
  list-style: none;
}
.tool {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  opacity: 0.7;
  transition: opacity 0.35s var(--ease);
}
.marquee:hover .tool { opacity: 0.4; }
.marquee .tool:hover { opacity: 1; }
.tool__i {
  width: 22px; height: 22px;
  flex-shrink: 0;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.tool__n {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
@keyframes marquee-scroll { to { transform: translateX(-50%); } }

/* ---------- EXPLORE ---------- */
.explore {
  list-style: none;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}
.explore li {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(30px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  transition: padding-left var(--dur-mid) var(--ease), color var(--dur-micro) var(--ease),
    opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.explore li::before {
  content: "\2192";
  position: absolute;
  left: 2px; top: 50%;
  transform: translateY(-50%) translateX(-14px);
  font-size: 0.42em;
  line-height: 1;
  color: var(--accent);
  opacity: 0;
  transition: opacity var(--dur-micro) var(--ease), transform var(--dur-micro) var(--ease);
}
.explore li:hover { padding-left: 52px; }
.explore li:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
.explore li:nth-child(1) { transition-delay: 0s; }
.explore li:nth-child(2) { transition-delay: 0.05s; }
.explore li:nth-child(3) { transition-delay: 0.1s; }
.explore li:nth-child(4) { transition-delay: 0.15s; }
.explore li:nth-child(5) { transition-delay: 0.2s; }
.explore li:hover { transition-delay: 0s; }
.explore__note {
  margin-top: 40px;
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--grey);
  max-width: 40ch;
}

/* ---------- CONTACT (dark close) ---------- */
.contact {
  background: var(--ink);
  color: #fff;
  padding: clamp(90px, 13vw, 190px) var(--gut);
}
.contact > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.contact__title {
  margin-top: 36px;
  font-size: clamp(32px, 5.2vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  max-width: 20ch;
}
.contact__links {
  display: flex;
  gap: clamp(24px, 4vw, 56px);
  margin-top: 56px;
  flex-wrap: wrap;
}
.contact__links a {
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 6px;
  transition: border-color 0.3s var(--ease), opacity 0.3s var(--ease),
    transform var(--dur-mid) var(--ease-io);
}
.contact__links a:hover { border-color: var(--accent); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: clamp(30px, 4vw, 48px) var(--gut);
  border-top: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer__row {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 28px;
}
.footer__links { display: flex; gap: clamp(18px, 3vw, 34px); flex-wrap: wrap; }
.footer__links a, .footer__top {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--dur-micro) var(--ease), transform var(--dur-mid) var(--ease-io);
}
.footer__links a:hover, .footer__top:hover { color: #fff; }
.footer__top { display: inline-flex; align-items: center; gap: 8px; }
.footer__meta { margin-top: 22px; color: rgba(255, 255, 255, 0.55); }

/* ---------- PHOTO BAND ---------- */
.band {
  position: relative;
  height: clamp(420px, 78vh, 760px);
  background: #0c0c0c;
  overflow: hidden;
}
.band__bg {
  position: absolute; left: 0; right: 0; top: -5%; height: 110%;
  z-index: 0;
  background: #0c0c0c url("assets/band-bw.jpg?2") 62% 30% / cover no-repeat;
  background-image: image-set(url("assets/band-bw.webp?2") type("image/webp"), url("assets/band-bw.jpg?2") type("image/jpeg"));
  will-change: transform;
}
.band::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.42));
}
.band__cap {
  position: absolute;
  z-index: 2;
  left: var(--gut);
  bottom: clamp(24px, 4vw, 48px);
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- REVEAL ---------- */
[data-reveal] {
  transition: opacity var(--dur-macro) var(--ease), transform var(--dur-macro) var(--ease),
    clip-path var(--dur-slow) var(--ease);
}
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}
.js [data-reveal].is-in { opacity: 1; transform: none; clip-path: none; }
/* body copy: fade only, no travel */
.js [data-reveal="fade"] { transform: none; }
/* display headlines: a longer, more deliberate rise */
.js [data-reveal="up"] { transform: translateY(30px); }
/* media: a top-to-bottom clip wipe instead of a fade */
.js [data-reveal="img"] { opacity: 1; transform: none; clip-path: inset(0 0 101% 0); }
.js [data-reveal="img"].is-in { clip-path: inset(0 0 0 0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .nav__links { gap: 14px; }
  .nav__links a { font-size: 13px; }
  .hero__inner { grid-template-columns: 1fr; gap: 22px; }
  .block__body { grid-template-columns: 1fr; }
  .exp__item { grid-template-columns: 1fr; gap: 16px; }
  .sobre { grid-template-columns: 1fr; gap: clamp(22px, 5vw, 34px); }
  .sobre__figure { --fig-w: min(72vw, 280px); --shape-d: clamp(160px, 46vw, 240px); }
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 62svh; }
  .exp-hover { display: none; }
  .exp__item[data-thumb] .exp__co::after { display: none; }
  .exp__media { display: block; margin-top: 18px; width: 100%; max-width: 360px; aspect-ratio: 4 / 3; }
  .exp__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.04); }
}

@media (max-width: 560px) {
  .nav__name-full { display: none; }
  .nav__name-short { display: inline; }
  .nav__links { gap: 10px; }
  .nav__links a { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; clip-path: none; transition: none; }
  [data-magnetic] { transform: none !important; }
  .hero__media { opacity: 1 !important; transition: none; }
  .hero__title .ln > span { transform: none !important; transition: none; }
  .hero__lead { transform: none !important; transition: none; }
  .nav { transition: none; }
  [data-parallax] { transform: none !important; }
  .marquee__row { animation: none; width: 100%; }
  .marquee__group:nth-child(2) { display: none; }
  .marquee__group { flex-wrap: wrap; justify-content: center; gap: 18px 32px; }
  .tool { opacity: 1; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
}

/* ---------- CUSTOM CURSOR (fine pointer only) ---------- */
@media (hover: hover) and (pointer: fine) {
  body.has-cursor,
  body.has-cursor * { cursor: none !important; }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    mix-blend-mode: difference;
    opacity: 0;
    will-change: transform;
  }
  body.cursor-ready .cursor-dot,
  body.cursor-ready .cursor-ring { opacity: 1; }

  .cursor-dot {
    width: 7px; height: 7px;
    background: #fff;
    transition: opacity 0.3s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
  }
  .cursor-ring {
    width: 38px; height: 38px;
    border: 1.5px solid #fff;
    transition: opacity 0.3s var(--ease), width 0.4s var(--ease), height 0.4s var(--ease);
  }

  /* over interactive elements: the ring opens up and the dot recedes */
  body.cursor-hover .cursor-ring { width: 60px; height: 60px; }
  body.cursor-hover .cursor-dot { width: 0; height: 0; }
}
