/* ==========================================================================
   Unmastered Media — design system v3 "editorial"
   Patterns adapted from 21st.dev: Editorial Hero (felipemenezes098/hero-05),
   Logo Cloud Marquee (7ovr/logo-cloud-3). See DESIGN.md.
   ========================================================================== */

:root {
  /* Color — warm charcoal, not blue-black */
  --bg: #121110;
  --bg-raise: #181614;
  --card: #1B1916;
  --line: #2B2823;
  --line-strong: #403C34;
  --text: #ECE9E2;
  --muted: #A39E93;
  --faint: #6E6A61;
  --accent: #FF4B1F;

  /* Type */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, "Cascadia Mono", Consolas, Menlo, monospace;

  /* Spacing (4px base) */
  --s-1: 4px;  --s-2: 8px;   --s-3: 12px; --s-4: 16px; --s-5: 24px;
  --s-6: 32px; --s-7: 48px;  --s-8: 64px; --s-9: 96px; --s-10: 128px;

  --radius: 6px;
  --container: 1200px;
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--text); text-decoration: none; }
ul[class], ol[class] { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* Film grain — kills the flat AI-render look */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography ------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.02em;
  font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 6.5vw, 4.75rem); line-height: 1.02; }
h2 { font-size: clamp(1.875rem, 4vw, 3rem); line-height: 1.08; }
h3 { font-size: 1.4375rem; line-height: 1.25; }
h4 { font-size: 1.125rem; line-height: 1.4; }

/* Serif italic emphasis — the one flourish. Use on ONE phrase per heading. */
h1 em, h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.06em;
  color: var(--text);
}

.lead { font-size: 1.125rem; line-height: 1.7; }
.small { font-size: 0.875rem; line-height: 1.6; }

.sec-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--faint);
  display: block;
  margin-bottom: var(--s-4);
}
.sec-label b { color: var(--accent); font-weight: 500; }

/* Layout ----------------------------------------------------------------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.section { padding-block: var(--s-8); }
.section + .section { border-top: 1px solid var(--line); }
.section-head { max-width: 660px; margin-bottom: var(--s-7); }
.section-head p { margin-top: var(--s-4); }

.grid { display: grid; gap: var(--s-5); }

@media (min-width: 768px) {
  .container { padding-inline: 32px; }
  .section { padding-block: var(--s-9); }
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Split head: label left, copy right (Editorial Hero 12-col pattern) */
.split {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 900px) {
  .split { grid-template-columns: repeat(12, 1fr); }
  .split > .split-l { grid-column: 1 / 5; align-self: end; }
  .split > .split-r { grid-column: 6 / 13; }
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-secondary { background: transparent; color: var(--text); }
.btn-secondary:hover { border-color: var(--text); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn .arrow { transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 17, 16, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: var(--s-4);
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
}
.logo .logo-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: var(--accent);
  margin-left: 6px;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: none; border: none;
  cursor: pointer;
  color: var(--text);
}
.site-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bg-raise);
  border-bottom: 1px solid var(--line);
  padding: var(--s-4) 20px var(--s-5);
}
.site-nav.open { display: block; }
.site-nav ul { display: flex; flex-direction: column; gap: var(--s-2); list-style: none; }
.site-nav a {
  display: block;
  padding: var(--s-2) 0;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9375rem;
}
.site-nav a:hover { color: var(--text); }
.site-nav a[aria-current="page"] { color: var(--text); }
.site-nav .nav-cta { margin-top: var(--s-3); }
.site-nav a.btn-primary { color: var(--bg); }
.site-nav a.btn-primary:hover { color: #fff; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .site-nav { display: block; position: static; background: none; border: none; padding: 0; }
  .site-nav ul { flex-direction: row; align-items: center; gap: var(--s-6); }
  .site-nav a { padding: 0; font-size: 0.875rem; }
  .site-nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 6px; text-decoration-color: var(--accent); }
  .site-nav .nav-cta { margin: 0; }
  .site-nav .nav-cta .btn { padding: 9px 18px; font-size: 0.875rem; }
}

/* Hero (Editorial Hero pattern: rail left, headline right) ---------------- */
.hero { padding-block: var(--s-7) var(--s-7); }
.hero .split-l .sec-label { margin-bottom: var(--s-3); }
.hero .tagline {
  font-size: 0.9375rem;
  max-width: 30ch;
  line-height: 1.6;
}
.hero h1 { text-wrap: balance; }
.hero .lead { max-width: 56ch; margin-top: var(--s-5); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-4); margin-top: var(--s-6); }
.hero-note { font-size: 0.8125rem; color: var(--faint); }

/* Left rail: proof stacked under the tagline (Hero 45 separator pattern) */
.hero-rail { display: flex; flex-direction: column; height: 100%; }
.rail-stats { margin-top: var(--s-6); }
.rail-stat {
  padding-block: var(--s-4);
  border-top: 1px solid var(--line);
}
.rail-stat:last-child { border-bottom: 1px solid var(--line); }
.rail-stat .rail-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}
.rail-stat .rail-value i {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.rail-stat .rail-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--faint);
  margin-top: 2px;
}

/* Availability badge — pulsing dot */
.availability {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: var(--s-5);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.availability .dot {
  position: relative;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.availability .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0%   { transform: scale(0.6); opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

/* Mobile: headline leads, rail drops below it */
@media (max-width: 899px) {
  .hero .split > .split-l { order: 2; }
  .hero .split > .split-r { order: 1; }
  .hero .split { gap: var(--s-6); }
}

@media (min-width: 900px) {
  .hero { padding-block: var(--s-8) var(--s-8); }
  /* Rail sits top-aligned and runs the full height of the headline block */
  .hero .split > .split-l { align-self: stretch; padding-right: var(--s-6); border-right: 1px solid var(--line); }
  .rail-stats { margin-top: auto; }
}

/* Logo marquee (21st.dev Logo Cloud Marquee pattern) ---------------------- */
.marquee-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-5);
  overflow: hidden;
}
.marquee-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--faint);
  text-align: center;
  margin-bottom: var(--s-5);
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  padding-inline: var(--s-6);
  flex-shrink: 0;
  min-width: 100%;
  justify-content: space-around;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.marquee-item:hover { opacity: 1; }
.marquee-item img, .marquee-item svg { height: 22px; width: auto; filter: brightness(0) invert(0.92); }
.marquee-item .m-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* Stats strip ------------------------------------------------------------- */
.stat-strip { display: grid; }
.stat {
  padding-block: var(--s-5);
  border-top: 1px solid var(--line);
}
.stat:first-child { border-top: none; }
.stat-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}
.stat-value i { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--accent); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--faint);
  margin-top: var(--s-2);
}

@media (min-width: 768px) {
  .stat-strip { grid-template-columns: repeat(3, 1fr); }
  .stat { border-top: none; border-left: 1px solid var(--line); padding-inline: var(--s-6); }
  .stat:first-child { border-left: none; padding-left: 0; }
}

/* Index list — services as an editorial table of contents ------------------ */
.index-list { border-top: 1px solid var(--line); }
.index-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: var(--s-4);
  padding-block: var(--s-5);
  border-bottom: 1px solid var(--line);
  color: inherit;
  transition: background-color 0.18s ease;
  position: relative;
}
.index-row:hover { background: rgba(255, 255, 255, 0.025); }
.index-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--faint);
  min-width: 3ch;
}
.index-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.375rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
  transition: transform 0.18s ease;
}
.index-row:hover .index-title { transform: translateX(8px); }
.index-desc {
  grid-column: 2;
  font-size: 0.9375rem;
  max-width: 60ch;
  margin-top: var(--s-1);
}
.index-arrow {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--faint);
  transition: color 0.18s ease, transform 0.18s ease;
}
.index-row:hover .index-arrow { color: var(--accent); transform: translate(4px, -4px); }

@media (min-width: 768px) {
  .index-row { grid-template-columns: 64px 1.2fr 1.6fr auto; column-gap: var(--s-6); }
  .index-desc { grid-column: 3; grid-row: 1; margin-top: 0; align-self: center; }
  .index-arrow { grid-column: 4; }
}

/* Cards (used sparingly) --------------------------------------------------- */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--s-6);
  transition: border-color 0.18s ease;
}
.card:hover { border-color: var(--line-strong); }
.card h3, .card h4 { margin-bottom: var(--s-3); }
.card p + p { margin-top: var(--s-3); }

.card-list { display: grid; gap: var(--s-2); margin-top: var(--s-3); }
.card-list li {
  position: relative;
  padding-left: var(--s-5);
  font-size: 0.9375rem;
}
.card-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Case studies — editorial articles ---------------------------------------- */
.case {
  display: grid;
  gap: var(--s-5);
  padding-block: var(--s-7);
  border-top: 1px solid var(--line);
}
.case:first-of-type { border-top: none; padding-top: 0; }
.case-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--faint);
}
.case h3 { font-size: clamp(1.5rem, 3vw, 2.125rem); max-width: 20ch; }
.case dt {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: var(--s-2);
}
.case dd { font-size: 0.9375rem; max-width: 52ch; }
.case dl { display: grid; gap: var(--s-5); }
.case-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  color: var(--text);
}
.case-num-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--faint);
  margin-top: var(--s-2);
  max-width: 30ch;
}

@media (min-width: 900px) {
  .case { grid-template-columns: repeat(12, 1fr); }
  .case > .case-head { grid-column: 1 / 5; }
  .case > .case-body { grid-column: 5 / 10; }
  .case > .case-outcome { grid-column: 10 / 13; text-align: right; }
  .case > .case-outcome .case-num-label { margin-left: auto; }
}

/* Screenshots — the receipts ------------------------------------------------ */
.shot-grid { display: grid; gap: var(--s-5); }
.shot { margin: 0; }
.shot-frame {
  aspect-ratio: 16 / 10;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.18s ease;
}
.shot:hover .shot-frame { border-color: var(--line-strong); }
.shot-frame img { width: 100%; height: 100%; object-fit: contain; padding: var(--s-2); }
.shot-frame .shot-placeholder {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--faint);
  text-align: center;
  padding: var(--s-5);
  max-width: 30ch;
}
.shot figcaption {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--faint);
  margin-top: var(--s-3);
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
}
.shot figcaption .shot-note { color: var(--muted); text-transform: none; letter-spacing: 0; }

@media (min-width: 768px) {
  .shot-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Lightbox ------------------------------------------------------------------ */
.shot-frame { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  padding: var(--s-5);
  background: rgba(18, 17, 16, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(1400px, 94vw);
  max-height: 82vh;
  width: auto;
  height: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
}
.lightbox-caption {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 70ch;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: var(--s-5);
  right: var(--s-5);
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.lightbox-close:hover { border-color: var(--accent); color: var(--accent); }

/* Process — numbered editorial rows ---------------------------------------- */
.step-row {
  display: grid;
  gap: var(--s-4);
  padding-block: var(--s-6);
  border-top: 1px solid var(--line);
}
.step-row:last-of-type { border-bottom: 1px solid var(--line); }
.step-row .step-no {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--faint);
}
.step-row h3 { font-size: 1.5rem; }
.step-row .step-get { font-size: 0.875rem; color: var(--text); margin-top: var(--s-3); }
.step-row .step-get b { color: var(--accent); font-weight: 600; }

@media (min-width: 900px) {
  .step-row { grid-template-columns: 100px 1fr 1.4fr; column-gap: var(--s-6); }
}

/* Definition rows ---------------------------------------------------------- */
.def-row {
  border-top: 1px solid var(--line);
  padding-block: var(--s-5);
}
.def-row:last-of-type { border-bottom: 1px solid var(--line); }
.def-row h4 { margin-bottom: var(--s-2); }
@media (min-width: 768px) {
  .def-row { display: grid; grid-template-columns: 280px 1fr; gap: var(--s-6); }
  .def-row h4 { margin-bottom: 0; }
}

/* CTA band ----------------------------------------------------------------- */
.cta-band { text-align: left; }
.cta-band h2 { max-width: 22ch; }
.cta-band p { max-width: 54ch; margin-top: var(--s-4); }
.cta-band .btn { margin-top: var(--s-6); }

/* Calendly placeholder ------------------------------------------------------ */
.calendly-embed {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--card);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--s-6);
}
.calendly-embed p { max-width: 40ch; }
.calendly-embed .strong { color: var(--text); font-weight: 600; }

/* Footer -------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding-top: var(--s-8);
  font-size: 0.875rem;
  color: var(--faint);
  overflow: hidden;
}
.site-footer .footer-grid { display: grid; gap: var(--s-6); }
.site-footer h5 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text);
  margin-bottom: var(--s-3);
}
.site-footer ul { display: grid; gap: var(--s-2); list-style: none; }
.site-footer a { color: var(--faint); transition: color 0.18s ease; }
.site-footer a:hover { color: var(--text); }
.footer-bottom {
  margin-top: var(--s-7);
  padding-block: var(--s-5);
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: space-between;
  font-size: 0.8125rem;
}
/* Oversized closing wordmark — editorial signature */
.footer-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3rem, 11vw, 9.5rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text);
  opacity: 0.14;
  white-space: nowrap;
  margin-top: var(--s-7);
  user-select: none;
}

@media (min-width: 768px) {
  .site-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* Scroll-reveal (subtle) ---------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }

/* Utilities ------------------------------------------------------------------ */
.mt-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.text-strong { color: var(--text); }
.link { color: var(--text); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--line-strong); }
.link:hover { text-decoration-color: var(--accent); }
.placeholder-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}

/* Reduced motion -------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
