/* ============================================================
   GOURGEL TECH — Creative Technology Studio
   Style: dark / brutalist / acid accent
   ============================================================ */

:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --ink: #f2f2ef;
  --ink-dim: #8a8a85;
  --acid: #ccff00;
  --acid-dim: rgba(204, 255, 0, 0.12);
  --line: rgba(242, 242, 239, 0.12);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--acid); color: #050505; }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__text {
  font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.35em;
  color: var(--acid);
  animation: blink 1s steps(2) infinite;
}
.loader__bar {
  width: 180px; height: 1px; background: var(--line); overflow: hidden;
}
.loader__bar span {
  display: block; height: 100%; width: 40%;
  background: var(--acid);
  animation: load 1.1s var(--ease) infinite;
}
@keyframes load { 0% { transform: translateX(-100%); } 100% { transform: translateX(280%); } }
@keyframes blink { 50% { opacity: 0.25; } }

/* ---------- Background grid canvas ---------- */
#bg-grid {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: 0.55;
}

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 20px 32px;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header__logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-weight: 800; letter-spacing: 0.04em; font-size: 15px;
  margin-right: auto;
}
.logo-mark {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  background: var(--acid); color: #050505;
  font-family: var(--font-mono); font-weight: 700; font-size: 16px;
}
.logo-word em { font-style: normal; color: var(--acid); }

.header__nav { display: flex; gap: 26px; align-items: center; }
.header__nav a {
  color: var(--ink-dim); text-decoration: none;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.header__nav a:hover { color: var(--acid); }
.header__nav .nav-cta {
  color: #050505; background: var(--acid);
  padding: 8px 16px;
  transition: transform 0.25s var(--ease), background 0.25s;
}
.header__nav .nav-cta:hover { color: #050505; transform: translateY(-2px); }

.header__lang {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: var(--ink-dim);
  font-family: inherit; font-size: inherit; letter-spacing: 0.1em;
  padding: 4px 2px;
  transition: color 0.25s;
}
.lang-btn:hover { color: var(--ink); }
.lang-btn.is-active { color: var(--acid); text-decoration: underline; text-underline-offset: 4px; }
.lang-sep { color: var(--line); }

.sfx-btn {
  background: none; border: 1px solid var(--line); cursor: pointer;
  color: var(--acid);
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
  padding: 5px 8px;
  transition: color 0.25s, border-color 0.25s, opacity 0.25s;
}
.sfx-btn:hover { border-color: var(--acid); }
.sfx-btn.is-muted { color: var(--ink-dim); opacity: 0.6; }

.header__burger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 34px; height: 26px; position: relative; z-index: 51;
}
.header__burger span {
  position: absolute; left: 4px; right: 4px; height: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}
.header__burger span:nth-child(1) { top: 7px; }
.header__burger span:nth-child(2) { top: 17px; }
.header__burger.is-open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.header__burger.is-open span:nth-child(2) { top: 12px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 120px 32px 80px;
}
.hero__slideshow {
  position: relative; width: 100%; height: clamp(200px, 30vw, 400px);
  border: 1px solid var(--line); overflow: hidden; margin-bottom: 44px;
  background: var(--bg-2);
}
.slideshow__track { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.slide.is-active { opacity: 1; }
.slide::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,0.28) 3px 4px);
  pointer-events: none;
}
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide--fallback img { display: none; }
.slide--a { background: radial-gradient(120% 130% at 20% 15%, #2a3d00 0%, #0c1200 45%, #050505 100%); }
.slide--b { background: radial-gradient(120% 130% at 80% 20%, #3d2e00 0%, #141000 45%, #050505 100%); }
.slide--c { background: radial-gradient(120% 130% at 25% 80%, #00323d 0%, #001014 45%, #050505 100%); }
.slide--d { background: radial-gradient(120% 130% at 75% 75%, #2d003d 0%, #100014 45%, #050505 100%); }
.slide--e { background: radial-gradient(120% 130% at 50% 50%, #3d0018 0%, #14000a 45%, #050505 100%); }
.slide figcaption {
  position: absolute; left: 22px; bottom: 18px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink);
}
.slide__tag { color: var(--acid); }
.slideshow__dots {
  position: absolute; right: 20px; bottom: 18px; z-index: 2;
  display: flex; gap: 8px;
}
.slideshow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 1px solid var(--ink-dim); background: transparent; padding: 0; cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}
.slideshow__dot.is-active { background: var(--acid); border-color: var(--acid); transform: scale(1.3); }

.hero__label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.35em; color: var(--ink-dim);
  margin-bottom: 28px;
}
.tick { color: var(--acid); animation: blink 1.6s steps(2) infinite; }

.hero__title {
  font-weight: 900;
  font-stretch: 75%;
  font-size: clamp(64px, 14.5vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero__line { display: block; overflow: hidden; }
.hero__word { display: inline-block; }
.hero__line--accent { color: var(--acid); }
.hero__title sup { font-size: 0.18em; vertical-align: super; letter-spacing: 0; }

.hero__foot {
  margin-top: 48px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
}
.hero__tagline {
  max-width: 460px;
  color: var(--ink-dim);
  font-size: 17px; line-height: 1.6;
}
.hero__scroll {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--ink-dim); text-decoration: none;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.3em;
}
.hero__scroll-line {
  width: 1px; height: 56px; background: var(--line);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 100%; height: 50%; background: var(--acid);
  animation: drip 1.8s var(--ease) infinite;
}
@keyframes drip { 0% { top: -50%; } 100% { top: 110%; } }

.hero__coords {
  position: absolute; right: 32px; top: 50%;
  transform: rotate(90deg) translateX(-50%);
  transform-origin: right center;
  display: flex; gap: 32px;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.25em; color: var(--ink-dim);
  white-space: nowrap;
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 18px 0;
  background: var(--bg-2);
}
.marquee__track {
  display: flex; gap: 40px; align-items: center;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-weight: 800; font-size: 22px; letter-spacing: 0.12em;
  text-transform: uppercase; white-space: nowrap;
}
.marquee__track i { color: var(--acid); font-style: normal; font-size: 14px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section {
  position: relative; z-index: 1;
  padding: 130px 32px;
  max-width: 1440px; margin: 0 auto;
}
.section__head { margin-bottom: 64px; }
.section__index {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--acid); letter-spacing: 0.3em;
}
.section__title {
  font-weight: 900; font-stretch: 80%;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1; text-transform: uppercase;
  margin-top: 12px;
}
.section__sub {
  margin-top: 14px; color: var(--ink-dim);
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em;
}

/* ---------- Work ---------- */
.work__filters { display: flex; flex-wrap: wrap; gap: 10px; margin: -28px 0 44px; }
.work__filter {
  background: none; border: 1px solid var(--line); color: var(--ink-dim); cursor: pointer;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 16px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.work__filter:hover { color: var(--ink); border-color: var(--ink-dim); }
.work__filter.is-active { color: #050505; background: var(--acid); border-color: var(--acid); }

.work__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.project {
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: border-color 0.35s, transform 0.35s var(--ease);
}
.project:hover { border-color: var(--acid); transform: translateY(-6px); }
.project__media {
  position: relative; height: 260px; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.project__media::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,0.28) 3px 4px);
  pointer-events: none;
}
.project__media--a { background: radial-gradient(120% 130% at 20% 15%, #2a3d00 0%, #0c1200 45%, #050505 100%); }
.project__media--b { background: radial-gradient(120% 130% at 80% 20%, #3d2e00 0%, #141000 45%, #050505 100%); }
.project__media--c { background: radial-gradient(120% 130% at 25% 80%, #00323d 0%, #001014 45%, #050505 100%); }
.project__media--d { background: radial-gradient(120% 130% at 75% 75%, #2d003d 0%, #100014 45%, #050505 100%); }
.project__media--e { background: radial-gradient(120% 130% at 30% 70%, #3d0018 0%, #14000a 45%, #050505 100%); }
.project__media--f { background: radial-gradient(120% 130% at 70% 30%, #003d2e 0%, #001410 45%, #050505 100%); }
.project__media--g { background: radial-gradient(120% 130% at 50% 50%, #1a1a3d 0%, #0a0a1a 45%, #050505 100%); }
.project__media--h { background: radial-gradient(120% 130% at 60% 60%, #3d1a00 0%, #140a00 45%, #050505 100%); }
.project__num {
  position: absolute; top: 16px; left: 18px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.3em; color: var(--acid);
}
.project__body { padding: 26px; }
.project__body h3 {
  font-size: 24px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 10px;
}
.project__body p { color: var(--ink-dim); font-size: 15px; max-width: 46ch; }
.project__tags {
  display: flex; gap: 8px; flex-wrap: wrap;
  list-style: none; margin-top: 18px;
}
.project__tags li {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.18em;
  color: var(--acid); border: 1px solid var(--acid-dim);
  background: var(--acid-dim);
  padding: 5px 10px;
}

/* ---------- Studio ---------- */
.studio__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.studio__statement {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600; line-height: 1.35;
}
.studio__stats { display: grid; gap: 0; border-top: 1px solid var(--line); }
.stat {
  display: flex; align-items: baseline; gap: 6px;
  padding: 26px 0; border-bottom: 1px solid var(--line);
}
.stat__num {
  font-weight: 900; font-size: 56px; line-height: 1;
  font-stretch: 80%; color: var(--acid);
}
.stat__plus { color: var(--acid); font-size: 26px; font-weight: 700; }
.stat__label {
  margin-left: auto; color: var(--ink-dim);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; text-align: right;
}

/* ---------- Brands (accordion) ---------- */
.brands__list { border-top: 1px solid var(--line); }
.brand { border-bottom: 1px solid var(--line); }

.brand__head {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 24px;
  align-items: center;
  width: 100%; padding: 34px 0;
  background: none; border: none; cursor: pointer;
  color: var(--ink); text-align: left;
  transition: background 0.3s, padding-left 0.3s var(--ease);
}
.brand__head:hover { background: linear-gradient(90deg, var(--acid-dim), transparent 60%); padding-left: 18px; }
.brand__num {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--acid); letter-spacing: 0.3em;
}
.brand__name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 800; text-transform: uppercase; line-height: 1.1;
}
.brand__name .accent { font-style: normal; color: var(--acid); }

.brand__toggle {
  position: relative; width: 22px; height: 22px; margin-right: 6px;
}
.brand__toggle::before, .brand__toggle::after {
  content: ""; position: absolute; background: var(--acid);
  top: 50%; left: 0; width: 100%; height: 2px; margin-top: -1px;
  transition: transform 0.4s var(--ease);
}
.brand__toggle::after { transform: rotate(90deg); }
.brand.is-open .brand__toggle::after { transform: rotate(0deg); }

.brand__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease);
}
.brand.is-open .brand__body { grid-template-rows: 1fr; }
.brand__inner { overflow: hidden; min-height: 0; }
.brand__desc {
  color: var(--ink-dim); font-size: 15.5px; max-width: 60ch;
  margin: 0 0 24px; padding-left: 144px;
}
.brand__services {
  list-style: none;
  margin: 0 0 38px 144px;
  border-top: 1px solid var(--line);
}

/* Service rows — each clickable to reveal detail */
.service-row { border-bottom: 1px solid var(--line); }
.service-row__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 16px 20px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.06em;
  color: var(--ink-dim);
  transition: color 0.25s, background 0.25s;
}
.service-row__head::before { content: "→ "; color: var(--acid); }
.service-row__head:hover { color: var(--ink); background: var(--acid-dim); }
.service-row.is-open .service-row__head { color: var(--ink); background: var(--acid-dim); }

.service-row__plus { position: relative; width: 14px; height: 14px; flex-shrink: 0; }
.service-row__plus::before, .service-row__plus::after {
  content: ""; position: absolute; background: var(--acid);
  top: 50%; left: 0; width: 100%; height: 2px; margin-top: -1px;
  transition: transform 0.35s var(--ease);
}
.service-row__plus::after { transform: rotate(90deg); }
.service-row.is-open .service-row__plus::after { transform: rotate(0deg); }

.service-row__body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.service-row.is-open .service-row__body { grid-template-rows: 1fr; }
.service-row__inner { overflow: hidden; min-height: 0; }
.service-row__inner p {
  color: var(--ink-dim); font-size: 14px; line-height: 1.6; max-width: 60ch;
  padding: 4px 20px 22px;
}
.service-row__inner .artist-grid,
.service-row__inner .stream-links { margin: 0 20px 24px; }

/* Artist roster */
.artist-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 16px;
}
.artist-card { text-align: center; }
.artist-card__photo {
  aspect-ratio: 1 / 1;
  background: radial-gradient(120% 130% at 30% 20%, #2a3d00 0%, #0c1200 45%, #050505 100%);
  border: 1px solid var(--line); margin-bottom: 10px;
}
.artist-card__name {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--ink-dim); text-transform: uppercase;
}

/* Streaming links */
.stream-links { display: flex; flex-wrap: wrap; gap: 12px; }
.stream-link {
  display: inline-flex; align-items: center;
  padding: 10px 18px; border: 1px dashed var(--line);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-dim); text-decoration: none;
  opacity: 0.5; cursor: not-allowed;
}
.stream-link.is-soon { pointer-events: none; }

/* Coming soon note */
.soon-note {
  display: inline-block; margin: 4px 20px 22px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--acid);
  border: 1px dashed var(--acid-dim); padding: 10px 16px;
}

/* ---------- Tech ---------- */
.tech__grid {
  list-style: none;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line); border-top: 1px solid var(--line);
}
.tech__grid li {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 30px 22px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.15em;
  color: var(--ink-dim);
  transition: color 0.25s, background 0.25s;
}
.tech__grid li:hover { color: #050505; background: var(--acid); }

/* ---------- Contact ---------- */
.contact { text-align: center; padding-bottom: 160px; }
.contact__label {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.35em; color: var(--ink-dim); margin-bottom: 30px;
}
.contact__title {
  font-weight: 900; font-stretch: 78%;
  font-size: clamp(38px, 7vw, 100px);
  line-height: 0.95; text-transform: uppercase;
  max-width: 14ch; margin: 0 auto 44px;
}
.contact__mail {
  display: inline-block;
  font-family: var(--font-mono); font-size: clamp(16px, 2.4vw, 26px);
  color: var(--acid); text-decoration: none;
  border-bottom: 1px solid var(--acid);
  padding-bottom: 6px;
  transition: letter-spacing 0.35s var(--ease);
}
.contact__mail:hover { letter-spacing: 0.06em; }
.contact__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; max-width: 960px; margin: 64px auto 0;
  border: 1px solid var(--line);
  text-align: left;
}
.contact__card {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}
.contact__card:last-child { border-right: none; }
.contact__card h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--acid); margin-bottom: 8px;
}
.contact__card a, .contact__card p {
  color: var(--ink-dim); text-decoration: none;
  font-size: 14.5px; line-height: 1.55;
}
.contact__card a { transition: color 0.25s; width: fit-content; }
.contact__card a:hover { color: var(--acid); }

.contact__meta {
  margin-top: 36px; color: var(--ink-dim);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.15em;
}

/* ---------- Footer ---------- */
.footer {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 32px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--ink-dim);
}
.footer a { color: var(--ink-dim); text-decoration: none; transition: color 0.25s; }
.footer a:hover { color: var(--acid); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-line {
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
body.is-loaded .reveal-line { transform: none; }
.hero__line--accent .reveal-line { transition-delay: 0.12s; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .work__grid { grid-template-columns: 1fr; }
  .studio__grid { grid-template-columns: 1fr; gap: 40px; }
  .brand__head { grid-template-columns: 70px 1fr auto; }
  .brand__desc { padding-left: 0; }
  .brand__services { margin-left: 0; }
  .tech__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__coords { display: none; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__card { border-right: none; border-bottom: 1px solid var(--line); }
  .contact__card:last-child { border-bottom: none; }
}

@media (max-width: 720px) {
  .header { padding: 16px 20px; gap: 16px; }
  .header__burger { display: block; }
  .header.nav-open { background: rgba(5, 5, 5, 0.97); border-bottom-color: var(--line); }
  .header__nav {
    position: fixed; inset: 0; z-index: -1;
    height: 100vh; height: 100dvh;
    flex-direction: column; justify-content: center; gap: 34px;
    background: rgba(5, 5, 5, 0.96);
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease), visibility 0.4s;
  }
  .header__nav a { font-size: 18px; }
  .header__nav.is-open { opacity: 1; visibility: visible; z-index: 49; }
  html.nav-locked, body.nav-locked { overflow: hidden; }
  .hero { padding: 110px 20px 60px; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .hero__scroll { display: none; }
  .section { padding: 90px 20px; }
  .footer { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
