/* ============================================================
   Portfolio — light editorial theme, clay accent
   ============================================================ */

:root {
  --paper: #f6f3ec;
  --paper-2: #ece7db;
  --surface: #fffdf9;
  --ink: #17150f;
  --ink-dim: #5c564a;
  --ink-faint: #98917f;
  --line: rgba(23, 21, 15, 0.13);
  --line-soft: rgba(23, 21, 15, 0.07);
  --accent: #b1462b;
  --accent-deep: #8a3520;
  --accent-soft: rgba(177, 70, 43, 0.10);

  --font-display: "Bodoni Moda", "Didot", Georgia, serif;
  --font-body: "Karla", "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px), (pointer: coarse) {
  body { cursor: auto; }
}

::selection { background: var(--accent); color: var(--paper); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.3rem;
  display: block;
}

/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 7px; height: 7px;
  background: var(--accent);
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid var(--accent);
  opacity: 0.45;
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              opacity 0.25s var(--ease), background 0.25s var(--ease);
}
.cursor-ring.is-hover {
  width: 54px; height: 54px;
  background: var(--accent-soft);
  opacity: 0.85;
}
@media (max-width: 768px), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- scroll progress ---------- */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem clamp(1.5rem, 5vw, 4rem);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.nav.is-scrolled {
  background: rgba(246, 243, 236, 0.88);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding-top: 0.95rem;
  padding-bottom: 0.95rem;
}
.nav__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.nav__links a {
  color: var(--ink-dim);
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0%; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--ink); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--ink);
  color: var(--ink) !important;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper) !important;
}

@media (max-width: 720px) {
  .nav { padding: 1rem 1.1rem; }
  .nav__links { gap: 0.9rem; font-size: 0.7rem; }
  .nav__links a[href="#process"] { display: none; }
  .nav__cta { padding: 0.42rem 0.85rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__wash {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 50% 45% at 22% 28%, rgba(177,70,43,0.09), transparent 70%),
    radial-gradient(ellipse 45% 40% at 80% 70%, rgba(23,21,15,0.06), transparent 70%);
  background-size: 180% 180%;
  animation: washDrift 26s ease-in-out infinite alternate;
}
@keyframes washDrift {
  0%   { background-position: 0% 0%, 100% 100%; }
  100% { background-position: 18% 14%, 82% 86%; }
}
.hero__rule {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--line-soft);
}
.hero__rule--1 { top: 30%; }
.hero__rule--2 { top: 70%; }

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.8rem;
}
.hero__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 8.5vw, 5.6rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.hero__tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 auto 1.2rem;
  max-width: 620px;
}
.hero__subline {
  font-size: 1rem;
  color: var(--ink-dim);
  max-width: 500px;
  margin: 0 auto 2.8rem;
}
.hero__cta {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll-cue span {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--ink-faint), transparent);
  animation: scrollCue 2s ease-in-out infinite;
}
.hero__scroll-cue em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
@keyframes scrollCue {
  0%, 100% { transform: scaleY(0.55); opacity: 0.35; }
  50%      { transform: scaleY(1);    opacity: 1; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.9rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 100px;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn--ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--surface);
}
.btn--solid {
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
}
.btn--solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 12px 28px -12px rgba(177,70,43,0.55);
}
.btn--large { padding: 1.1rem 2.4rem; font-size: 0.9rem; }

/* ---------- day job ---------- */
.dayjob {
  padding: 6rem 1.5rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.dayjob__inner { max-width: 720px; margin: 0 auto; text-align: center; }
.dayjob__text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.55;
  color: var(--ink);
}
.inline-link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-soft);
  transition: border-color 0.25s var(--ease);
}
.inline-link:hover { border-bottom-color: var(--accent); }

/* ---------- projects ---------- */
.project { padding: 7.5rem 1.5rem 5rem; }
.project--alt {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.project__inner { max-width: 1080px; margin: 0 auto; }
.project__head { max-width: 660px; margin-bottom: 3.6rem; }
.project__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 1.06;
  color: var(--ink);
}
.project__handle {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  margin: 0.7rem 0 1.4rem;
  display: inline-block;
}
.project__handle--link { transition: opacity 0.25s var(--ease); }
.project__handle--link:hover { opacity: 0.65; }
.project__desc {
  color: var(--ink-dim);
  font-size: 1.02rem;
  margin-bottom: 1.6rem;
  max-width: 540px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  background: var(--surface);
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #3f9a5c;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.82); }
}

/* phones */
.phones { margin-bottom: 3.2rem; }
.phones__track {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  padding: 1.5rem 0.5rem 1rem;
  scroll-snap-type: x mandatory;
  cursor: grab;
  perspective: 1400px;
  scrollbar-width: none;
}
.phones__track::-webkit-scrollbar { display: none; }
.phones__track:active { cursor: grabbing; }

.phone-item {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phone {
  width: 236px;
  height: 500px;
  border-radius: 34px;
  background: #1b1a17;
  padding: 10px;
  box-shadow: 0 26px 50px -22px rgba(23,21,15,0.45), 0 2px 8px rgba(23,21,15,0.08);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
}
.phone__screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.phone__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1rem;
}
.phones__hint {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.6rem;
}

/* browser mockup */
.browser {
  display: block;
  max-width: 900px;
  margin: 0 auto 3.2rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 26px 60px -26px rgba(23,21,15,0.4);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.15s ease-out, box-shadow 0.4s var(--ease);
}
.browser:hover { box-shadow: 0 34px 70px -24px rgba(23,21,15,0.48); }
.browser__bar {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.7rem 0.9rem;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.browser__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(23,21,15,0.16);
  flex: 0 0 auto;
}
.browser__url {
  margin-left: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-faint);
}
.browser__screen { line-height: 0; background: #0b0b0b; }
.browser__screen img { width: 100%; height: auto; }

/* ---------- ML pipeline diagram ---------- */
.pipeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: nowrap;
  margin-bottom: 2.4rem;
}
.pipe-group {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  flex: 1 1 0;
  min-width: 0;
}
.pipe-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.2rem;
}
.pipe-item {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.35;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.pipe-item em {
  display: block;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-faint);
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}
.pipe-item:hover { border-color: var(--accent); transform: translateY(-2px); }
.pipe-item--accent { border-color: rgba(177,70,43,0.35); }
.pipe-item--out {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  font-weight: 500;
}
.pipe-arrow {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  flex: 0 0 auto;
  /* line up with the vertical centre of the first box in each column */
  padding-top: 3.05rem;
}
.project__note {
  max-width: 640px;
  margin: 0 auto 2.6rem;
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.93rem;
}

@media (max-width: 780px) {
  .pipeline { flex-direction: column; align-items: stretch; gap: 0.9rem; }
  .pipe-arrow { transform: rotate(90deg); align-self: center; padding: 0; }
  .pipe-label { margin-top: 0.4rem; }
}

/* general meta row */
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  border-top: 1px solid var(--line);
  padding-top: 2.4rem;
}
.meta__item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  background: var(--surface);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.meta__item:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- process ---------- */
.process { padding: 7.5rem 1.5rem; }
.process__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.process__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.2vw, 2.7rem);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.process__text {
  color: var(--ink-dim);
  max-width: 580px;
  margin: 0 auto 4rem;
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}
.step {
  border-top: 2px solid var(--ink);
  padding-top: 1.4rem;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.step:hover { border-top-color: var(--accent); transform: translateY(-4px); }
.step__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.7rem;
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}
.step p { color: var(--ink-dim); font-size: 0.93rem; }

@media (max-width: 820px) {
  .process__steps { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ---------- skills ---------- */
.skills {
  padding: 6rem 1.5rem;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.skills__inner { max-width: 860px; margin: 0 auto; text-align: center; }
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.chip {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.6rem 1.15rem;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.chip:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- what I can build ---------- */
.services { padding: 7rem 1.5rem; }
.services__inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  text-align: left;
  margin-top: 0.6rem;
}
.service {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 1.9rem 1.7rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 18px 38px -22px rgba(23,21,15,0.4);
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.service p { color: var(--ink-dim); font-size: 0.93rem; }

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

.services__grid .service:nth-child(1) { transition-delay: 0.05s; }
.services__grid .service:nth-child(2) { transition-delay: 0.12s; }
.services__grid .service:nth-child(3) { transition-delay: 0.19s; }
.services__grid .service:nth-child(4) { transition-delay: 0.26s; }

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

/* clickable status pill */
.status-pill--link {
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.status-pill--link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ---------- contact ---------- */
.contact { padding: 7.5rem 1.5rem 5rem; text-align: center; }
.contact__headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.1rem);
  color: var(--ink);
  margin-bottom: 2.4rem;
}
.contact__actions {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn--whatsapp {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--surface);
  gap: 0.55rem;
}
.btn--whatsapp:hover {
  background: #25d366;
  border-color: #25d366;
  color: #0b3d1f;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -12px rgba(37, 211, 102, 0.6);
}
.btn__icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

@media (max-width: 560px) {
  .contact__actions .btn { width: 100%; }
}

.contact__socials {
  margin-top: 2.4rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.social-link {
  color: var(--ink-dim);
  position: relative;
  padding-bottom: 3px;
}
.social-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.social-link:hover { color: var(--accent); }
.social-link:hover::after { width: 100%; }

/* ---------- footer ---------- */
.footer {
  padding: 2.4rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-faint);
}

/* ---------- scroll reveal ---------- */
.reveal-item, .reveal-section {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-item.is-visible, .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__content .reveal-item:nth-child(1) { transition-delay: 0.05s; }
.hero__content .reveal-item:nth-child(2) { transition-delay: 0.15s; }
.hero__content .reveal-item:nth-child(3) { transition-delay: 0.25s; }
.hero__content .reveal-item:nth-child(4) { transition-delay: 0.35s; }
.hero__content .reveal-item:nth-child(5) { transition-delay: 0.45s; }
.process__steps .step:nth-child(1) { transition-delay: 0.05s; }
.process__steps .step:nth-child(2) { transition-delay: 0.15s; }
.process__steps .step:nth-child(3) { transition-delay: 0.25s; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
    scroll-behavior: auto !important;
  }
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
  .reveal-item, .reveal-section { opacity: 1 !important; transform: none !important; }
  .hero__wash, .hero__scroll-cue span, .status-dot { animation: none !important; }
  .tilt { transform: none !important; }
}
