
/* ════════════════════════════════════════
   Anastasia Mativetskaya — style.css
════════════════════════════════════════ */

:root {
  --bg:      #080705;
  --surface: #100e0b;
  --paper:   #f7f3ee;
  --muted:   rgba(247,243,238,.5);
  --accent:  #b56b45;
  --line:    rgba(247,243,238,.1);
  --serif:   'Fraunces', Georgia, serif;
  --sans:    'Outfit', system-ui, sans-serif;
  --ease:    cubic-bezier(.16,1,.3,1);
  --r:       6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--paper);
  font-family: var(--sans); font-size: 16px; line-height: 1.55;
  overflow-x: hidden; cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font: inherit; }

body::before {
  content: ''; position: fixed; inset: 0; z-index: 9990;
  pointer-events: none; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 32px;
  transition: opacity .7s var(--ease), visibility .7s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.pre-name {
  font-family: var(--serif); font-size: clamp(20px,3.5vw,44px);
  font-weight: 300; letter-spacing: .16em; overflow: hidden;
  font-variation-settings: 'opsz' 72;
}
.pre-name span { display: inline-block; transform: translateY(110%); transition: transform .8s var(--ease); }
#preloader.reveal .pre-name span { transform: translateY(0); }
#preloader.reveal .pre-name span:nth-child(2){ transition-delay:.08s; }
#preloader.reveal .pre-name span:nth-child(3){ transition-delay:.16s; }
.pre-line { width: 200px; height: 1px; background: var(--line); overflow: hidden; }
.pre-bar  { height: 100%; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 1.6s var(--ease); }
#preloader.reveal .pre-bar { transform: scaleX(1); }

/* ── CURSOR ── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(247,243,238,.35);
  background: transparent;
  pointer-events: none; transform: translate(-50%,-50%);
  transition: width .5s var(--ease), height .5s var(--ease),
              border-color .3s, background .3s, opacity .3s;
}
#cursor.hover {
  width: 64px; height: 64px;
  border-color: rgba(181,107,69,.7);
  background: rgba(181,107,69,.06);
}
#cursor.click {
  width: 22px; height: 22px;
  background: rgba(181,107,69,.15);
  border-color: rgba(181,107,69,.9);
}
#cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  pointer-events: none; transform: translate(-50%,-50%);
  transition: transform .1s, width .3s var(--ease), height .3s var(--ease);
}
#cursor.hover ~ #cursor-dot,
body.cursor-hover #cursor-dot {
  width: 4px; height: 4px;
}

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 9995;
  height: 2px; width: 100%; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .1s linear;
}

/* ── HEADER ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px,4vw,60px);
  transition: background .4s, padding .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(8,7,5,.92); backdrop-filter: blur(16px);
  padding-top: 14px; padding-bottom: 14px;
}
.brand { font-family: var(--serif); font-size: 18px; font-weight: 400; letter-spacing: .04em; line-height: 1; font-variation-settings: 'opsz' 24; }
.brand small { display: block; font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 13px; color: var(--muted); letter-spacing: .06em; transition: color .2s; position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent); transition: width .3s var(--ease); }
.nav a:hover { color: var(--paper); }
.nav a:hover::after { width: 100%; }
.nav-cta { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border: 1px solid rgba(247,243,238,.3); padding: 9px 20px; border-radius: 999px; transition: background .2s, border-color .2s, color .2s; }
.nav-cta:hover { background: var(--paper); color: var(--bg); border-color: var(--paper); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 0; }
.menu-toggle span { display: block; height: 1px; background: var(--paper); transition: transform .3s var(--ease), opacity .3s; }
.menu-toggle.active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2){ opacity: 0; }
.menu-toggle.active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ── */
#hero { position: relative; height: 100svh; min-height: 600px; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: -10%; background-size: cover; background-position: center 30%; will-change: transform; contain: strict; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,7,5,.93) 0%, rgba(8,7,5,.45) 55%, rgba(8,7,5,.18) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; padding: 0 clamp(20px,5vw,80px) clamp(48px,7vh,90px); display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px; }
.hero-title { font-family: var(--serif); font-size: clamp(52px,10vw,148px); font-weight: 300; font-style: italic; line-height: .92; letter-spacing: -.02em; font-variation-settings: 'opsz' 144; }
.hero-title .ln { display: block; overflow: hidden; }
.hero-title .ln span { display: block; transform: translateY(110%); transition: transform 1s var(--ease); }
.hero-title .ln:nth-child(2) span { transition-delay: .1s; }
.hero-title .ln:nth-child(3) span { transition-delay: .2s; }
.loaded .hero-title .ln span { transform: translateY(0); }
.hero-right { display: flex; flex-direction: column; align-items: flex-end; gap: 24px; padding-bottom: 12px; }
.hero-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-desc { max-width: 280px; text-align: right; font-size: 14px; color: var(--muted); line-height: 1.7; opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease) .5s, transform .8s var(--ease) .5s; }
.loaded .hero-desc { opacity: 1; transform: none; }
.hero-cta { display: flex; gap: 12px; opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease) .65s, transform .8s var(--ease) .65s; }
.loaded .hero-cta { opacity: 1; transform: none; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 46px; padding: 0 24px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: transform .3s var(--ease), box-shadow .3s; cursor: none; }
.btn-primary { background: var(--paper); color: var(--bg); }
.btn-primary:hover { box-shadow: 0 14px 36px rgba(247,243,238,.22); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(247,243,238,.35); color: var(--paper); }
.btn-ghost:hover { border-color: var(--paper); background: rgba(247,243,238,.06); transform: translateY(-2px); }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); z-index: 2; animation: scrollBounce 2s ease-in-out infinite; }
.hero-scroll::before { content: ''; display: block; width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--muted)); }
@keyframes scrollBounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* ── MARQUEE ── */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; padding: 18px 0; background: var(--surface); }
.marquee-track { display: flex; width: max-content; animation: marquee 22s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 40px; padding: 0 40px; font-family: var(--serif); font-size: clamp(18px,2.6vw,28px); font-style: italic; font-weight: 300; white-space: nowrap; font-variation-settings: 'opsz' 40; }
.mdot { color: var(--accent); font-style: normal; }
@keyframes marquee { from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border-bottom: 1px solid var(--line); }
.stat { background: var(--bg); padding: clamp(32px,4vw,56px) clamp(20px,3vw,48px); position: relative; overflow: hidden; transition: background .3s; }
.stat:hover { background: var(--surface); }
.stat::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--accent); transition: height .6s var(--ease); }
.stat.visible::before { height: 100%; }
.stat-num { font-family: var(--serif); font-size: clamp(42px,6vw,84px); font-weight: 300; line-height: 1; color: var(--paper); font-variation-settings: 'opsz' 100; }
.stat-num sup { font-size: .45em; vertical-align: super; color: var(--accent); }
.stat-label { margin-top: 10px; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ── UTILS ── */
.pad { padding: clamp(80px,10vw,140px) clamp(20px,5vw,80px); }
.intro { margin-bottom: clamp(40px,5vw,72px); }
.eyebrow { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.h2 { font-family: var(--serif); font-size: clamp(32px,4.8vw,68px); font-weight: 400; line-height: 1.06; font-variation-settings: 'opsz' 72; }
.h2 em { font-style: italic; color: rgba(181,107,69,.65); }
[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].visible { opacity: 1; transform: none; }
[data-scale] { opacity: 0; transform: scale(.94); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-scale].visible { opacity: 1; transform: none; }

/* ── SERVICES ── */
#services { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.svc { position: relative; overflow: hidden; padding: clamp(28px,3.5vw,48px); background: var(--surface); transition: background .4s; cursor: none; }
.svc:hover { background: #16120e; }
.svc-num { font-family: var(--serif); font-size: 13px; color: var(--accent); letter-spacing: .1em; margin-bottom: 28px; }
.svc-title { font-family: var(--serif); font-size: clamp(20px,2.2vw,28px); font-weight: 400; line-height: 1.15; margin-bottom: 16px; font-variation-settings: 'opsz' 36; }
.svc-text { font-size: 14px; color: var(--muted); line-height: 1.75; }
.svc-img { position: absolute; right: 0; bottom: 0; width: 45%; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--r) 0 0 0; transform: translateX(105%); transition: transform .6s var(--ease); pointer-events: none; }
.svc:hover .svc-img { transform: translateX(0); }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform .8s var(--ease); }
.svc:hover .svc-img img { transform: scale(1); }
.svc-arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); transition: gap .3s var(--ease); }
.svc:hover .svc-arrow { gap: 16px; }

/* ── PORTFOLIO ── */
.port-header { padding: clamp(60px,8vw,100px) clamp(20px,5vw,80px) 0; display: flex; justify-content: space-between; align-items: flex-end; }
.port-scroll { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; padding: clamp(32px,4vw,56px) clamp(20px,5vw,80px); padding-right: 0; cursor: grab; }
.port-scroll:active { cursor: grabbing; }
.port-scroll::-webkit-scrollbar { display: none; }
.port-track { display: flex; gap: 16px; width: max-content; }
.port-item { position: relative; overflow: hidden; flex-shrink: 0; border-radius: var(--r); cursor: none; }
.port-item:nth-child(3n+1){ width: 320px; }
.port-item:nth-child(3n+2){ width: 260px; }
.port-item:nth-child(3n)  { width: 400px; }
.port-item img { width: 100%; height: 440px; object-fit: cover; transition: transform .6s var(--ease); display: block; }
.port-item:hover img { transform: scale(1.05); }
.port-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 48px 18px 18px; background: linear-gradient(to top, rgba(8,7,5,.8), transparent); font-size: 12px; letter-spacing: .06em; opacity: 0; transition: opacity .3s; }
.port-item:hover .port-caption { opacity: 1; }
.port-progress { margin: 0 clamp(20px,5vw,80px) clamp(40px,5vw,60px); height: 1px; background: var(--line); position: relative; }
.port-bar { position: absolute; top: 0; left: 0; height: 100%; width: 0; background: var(--accent); transition: width .1s linear; }
.drag-hint { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); letter-spacing: .1em; text-transform: uppercase; }

/* ── REEL BAND ── */
.reel { position: relative; overflow: hidden; height: clamp(200px,35vw,480px); }
.reel-inner { position: absolute; inset: -5%; background-size: cover; background-position: center; will-change: transform; }
.reel::after { content: ''; position: absolute; inset: 0; background: rgba(8,7,5,.55); }
.reel-quote { position: relative; z-index: 2; font-family: var(--serif); font-size: clamp(22px,4.2vw,62px); font-weight: 300; font-style: italic; text-align: center; display: flex; align-items: center; justify-content: center; height: 100%; opacity: 0; transform: translateY(20px); transition: opacity .8s var(--ease), transform .8s var(--ease); padding: 0 clamp(20px,5vw,80px); font-variation-settings: 'opsz' 80; }
.reel-quote.visible { opacity: 1; transform: none; }

/* ── ABOUT ── */
#about { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
.about-text { padding: clamp(60px,8vw,120px) clamp(20px,5vw,80px); display: flex; flex-direction: column; justify-content: center; background: var(--surface); }
.about-quote { font-family: var(--serif); font-size: clamp(22px,2.6vw,38px); font-weight: 400; line-height: 1.25; margin-bottom: 28px; font-variation-settings: 'opsz' 48; }
.about-quote em { font-style: italic; color: var(--accent); }
.about-body { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 480px; }
.about-body + .about-body { margin-top: 16px; }
.about-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.about-link { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; border: 1px solid var(--line); padding: 10px 18px; border-radius: 999px; transition: border-color .2s, color .2s; color: var(--muted); }
.about-link:hover { border-color: var(--accent); color: var(--paper); }
.about-img { position: relative; overflow: hidden; min-height: 500px; }
.about-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.about-img:hover img { transform: scale(1.04); }

/* ── PROJECTS ── */
#projects { background: var(--surface); }
.proj-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.proj { position: relative; overflow: hidden; border-radius: var(--r); aspect-ratio: 3/4; cursor: none; background: var(--bg); }
.proj img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.proj:hover img { transform: scale(1.07); }
.proj-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,7,5,.85) 0%, transparent 55%); opacity: 0; transition: opacity .4s; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.proj:hover .proj-overlay { opacity: 1; }
.proj-label { font-size: 12px; color: var(--accent); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.proj-title { font-family: var(--serif); font-size: clamp(15px,1.8vw,20px); font-weight: 300; font-variation-settings: 'opsz' 24; }

/* ── CONTACT ── */
#contact { padding: clamp(80px,10vw,140px) clamp(20px,5vw,80px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,100px); align-items: start; border-top: 1px solid var(--line); }
.contact-heading { font-family: var(--serif); font-size: clamp(32px,4.8vw,68px); font-weight: 300; line-height: 1.06; margin-bottom: 24px; font-variation-settings: 'opsz' 80; }
.contact-heading em { font-style: italic; color: var(--accent); }
.contact-sub { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 420px; }
.channels { display: flex; flex-direction: column; gap: 1px; margin-top: 36px; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.channel { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; background: var(--surface); font-size: 14px; color: var(--muted); transition: background .2s, color .2s; }
.channel:hover { background: #1a1510; color: var(--paper); }
.channel span:last-child { font-size: 18px; transition: transform .3s var(--ease); }
.channel:hover span:last-child { transform: translate(3px,-3px); }
.form { display: grid; gap: 14px; }
.form input, .form textarea, .form select { width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); color: var(--paper); font: inherit; font-size: 14px; padding: 14px 18px; outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; }
.form input:focus, .form textarea:focus, .form select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(181,107,69,.15); }
.form textarea { resize: vertical; min-height: 120px; }
.form select option { background: #1a1510; }
.form label { display: grid; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.form .submit { height: 52px; width: 100%; background: var(--accent); color: var(--paper); border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; cursor: none; transition: background .2s, transform .2s var(--ease), box-shadow .2s; }
.form .submit:hover { background: #c97850; box-shadow: 0 10px 30px rgba(181,107,69,.3); transform: translateY(-2px); }
.form-status { min-height: 20px; font-size: 13px; color: var(--accent); }

/* ── FOOTER ── */
footer { padding: clamp(40px,5vw,72px) clamp(20px,5vw,80px) clamp(24px,3vw,36px); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 32px; }
.footer-brand { font-family: var(--serif); font-size: clamp(22px,3vw,42px); font-weight: 300; line-height: 1.1; font-variation-settings: 'opsz' 60; }
.footer-brand em { font-style: italic; color: var(--muted); }
.footer-copy { font-size: 12px; color: var(--muted); margin-top: 14px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--paper); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  /* Мобильное меню — анимация вместо display:none */
  .nav {
    flex-direction: column; align-items: flex-start;
    position: fixed; inset: 0; z-index: 99;
    background: var(--bg); padding: 100px clamp(20px,5vw,60px) 60px; gap: 24px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateX(4%);
    transition: opacity .45s var(--ease), visibility .45s, transform .45s var(--ease);
  }
  .nav.open {
    opacity: 1; visibility: visible; pointer-events: all;
    transform: translateX(0);
  }
  /* Ссылки меню — крупные, серифные, с задержкой */
  .nav a {
    font-family: var(--serif); font-size: clamp(28px,6vw,48px);
    font-weight: 300; font-style: italic;
    color: var(--muted); letter-spacing: .02em;
    opacity: 0; transform: translateX(20px);
    transition: color .2s, opacity .4s var(--ease), transform .4s var(--ease);
  }
  .nav.open a { opacity: 1; transform: translateX(0); }
  .nav.open a:nth-child(1){ transition-delay: .08s; }
  .nav.open a:nth-child(2){ transition-delay: .14s; }
  .nav.open a:nth-child(3){ transition-delay: .20s; }
  .nav.open a:nth-child(4){ transition-delay: .26s; }
  .nav.open a:nth-child(5){ transition-delay: .32s; }
  .nav a:hover { color: var(--paper); }
  .nav a::after { display: none; }
  /* CTA в мобильном меню */
  .nav-cta {
    font-family: var(--sans) !important; font-size: 12px !important;
    font-style: normal !important; font-weight: 700 !important;
    letter-spacing: .12em !important;
    border: 1px solid rgba(247,243,238,.3) !important;
    padding: 10px 24px !important; border-radius: 999px !important;
    color: var(--paper) !important;
  }

  .menu-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { align-items: flex-start; }
  .hero-eyebrow { writing-mode: horizontal-tb; transform: none; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .svc-img { display: none; }
  #about { grid-template-columns: 1fr; }
  .about-img { min-height: 360px; }
  .proj-grid { grid-template-columns: repeat(2,1fr); }
  #contact { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
}

/* ── СРЕДНИЙ ПЛАНШЕТ ── */
@media (max-width: 680px) {
  .stats { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { cursor: auto; }
  #cursor, #cursor-dot { display: none; }
  .hero-title { font-size: clamp(44px,14vw,78px); }
  .proj-grid { grid-template-columns: 1fr; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .marquee-track { animation: none; }
  .hero-scroll { animation: none; }
}
