/* ============================================================
   PRANA NATIVA — Ritual Grade Self Care
   ============================================================ */

@font-face {
  font-family: 'Qanelas';
  src: url('../fonts/Qanelas-UltraLight.woff2') format('woff2');
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: 'Qanelas';
  src: url('../fonts/Qanelas-Thin.woff2') format('woff2');
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: 'Qanelas';
  src: url('../fonts/Qanelas-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Qanelas';
  src: url('../fonts/Qanelas-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Qanelas';
  src: url('../fonts/Qanelas-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Qanelas';
  src: url('../fonts/Qanelas-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

:root {
  --black: #1A1714;
  --sand: #E8E0D4;
  --ash: #8A8578;
  --blue: #6B8A9E;
  --moss: #4D5E47;
  --lavender: #7B6E8C;
  --terra: #A05C47;

  --bg: var(--black);
  --fg: var(--sand);

  --pad: clamp(20px, 5vw, 96px);
  --font: 'Qanelas', 'Helvetica Neue', Arial, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: auto;
  scrollbar-color: #44403a #1A1714;
  scrollbar-width: thin;
}
::-webkit-scrollbar { width: 10px; background: #1A1714; }
::-webkit-scrollbar-thumb { background: #44403a; border-radius: 5px; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  font-weight: 400;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

::selection { background: var(--ash); color: var(--black); }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: 0; color: inherit; font: inherit; cursor: pointer; }

/* ---------- Grain ---------- */
.grain {
  position: fixed;
  inset: -100px;
  z-index: 90;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.9s steps(2) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-32px, 18px); }
  100% { transform: translate(14px, -26px); }
}

/* ---------- Cursor ---------- */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor { display: block; }
  .cursor__dot, .cursor__ring {
    position: fixed;
    top: 0; left: 0;
    z-index: 200;
    pointer-events: none;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  .cursor__dot {
    width: 6px; height: 6px;
    background: var(--sand);
    mix-blend-mode: difference;
  }
  .cursor__ring {
    width: 34px; height: 34px;
    border: 1px solid rgba(232, 224, 212, 0.45);
    mix-blend-mode: difference;
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), opacity 0.3s;
  }
  .cursor--active .cursor__ring { width: 56px; height: 56px; opacity: 0.9; }
  body.has-cursor, body.has-cursor a, body.has-cursor button { cursor: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.preloader__mark {
  width: clamp(72px, 12vw, 120px);
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(0.92); opacity: 0.65; }
  50% { transform: scale(1); opacity: 1; }
}
.preloader__breath {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ash);
}
.preloader__counter {
  position: absolute;
  right: var(--pad);
  bottom: calc(var(--pad) - 8px);
  font-weight: 100;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 1;
  color: var(--sand);
  font-variant-numeric: tabular-nums;
}
.preloader__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(232, 224, 212, 0.12);
}
.preloader__bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--sand);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(16px, 2.6vw, 30px) var(--pad);
  mix-blend-mode: difference;
  transition: transform 0.6s var(--ease-out);
}
.header.is-hidden { transform: translateY(-110%); }
.header__logo img { height: clamp(34px, 3.6vw, 44px); width: auto; }
.header__nav { display: flex; gap: clamp(20px, 3vw, 44px); }
.header__nav a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  position: relative;
  padding: 4px 0;
}
.header__nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header__nav a.header__lang {
  padding-left: clamp(20px, 2.4vw, 36px);
  border-left: 1px solid rgba(232, 224, 212, 0.3);
  color: var(--ash);
}
.header__nav a.header__lang::after {
  left: clamp(20px, 2.4vw, 36px);
  width: calc(100% - clamp(20px, 2.4vw, 36px));
}

.header__burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 130;
  margin-right: -10px;
}
.header__burger span {
  position: absolute;
  left: 10px;
  width: 24px; height: 1.5px;
  background: var(--sand);
  transition: transform 0.45s var(--ease-out), top 0.45s var(--ease-out);
}
.header__burger span:nth-child(1) { top: 18px; }
.header__burger span:nth-child(2) { top: 26px; }
body.menu-open .header__burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .header__burger span:nth-child(2) { top: 22px; transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--pad);
  visibility: hidden;
  opacity: 0;
}
.menu__mark {
  position: absolute;
  right: -12%;
  bottom: -6%;
  width: min(72vw, 480px);
  opacity: 0;
  pointer-events: none;
}
.menu__nav { display: flex; flex-direction: column; gap: 6px; }
.menu__nav a {
  font-size: clamp(34px, 9vw, 56px);
  font-weight: 200;
  line-height: 1.25;
  display: flex;
  align-items: baseline;
  gap: 18px;
  overflow: hidden;
}
.menu__nav a i {
  font-style: normal;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ash);
}
.menu__lang {
  display: inline-block;
  margin-top: clamp(28px, 5vh, 48px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  border-bottom: 1px solid rgba(232, 224, 212, 0.25);
  padding-bottom: 4px;
  align-self: flex-start;
}
.menu__foot {
  position: absolute;
  bottom: calc(var(--pad) + env(safe-area-inset-bottom, 0px));
  left: var(--pad); right: var(--pad);
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
}

/* ---------- Shared ---------- */
section { position: relative; }

.section-label {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: clamp(36px, 6vh, 72px);
}
.section-label span {
  font-weight: 600;
  color: inherit;
}
.section-label::after {
  content: '';
  flex: 0 0 clamp(40px, 6vw, 90px);
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  align-self: center;
}
.section-label--dark { color: rgba(26, 23, 20, 0.55); }

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}
html.no-js [data-reveal], html.reduced [data-reveal] { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero {
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,23,20,0.55) 0%, rgba(26,23,20,0.18) 38%, rgba(26,23,20,0.78) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(90px, 16vh, 150px);
  max-width: 1200px;
}
.hero__mark {
  width: clamp(40px, 4.5vw, 60px);
  margin-bottom: clamp(20px, 3vh, 32px);
}
.hero__kicker {
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.8);
  margin-bottom: clamp(20px, 3vh, 36px);
}
.hero__title {
  font-size: clamp(52px, 9.5vw, 152px);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: clamp(24px, 4vh, 44px);
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.hero__title .line span {
  display: block;
  transform: translateY(125%);
}
html.reduced .hero__title .line span { transform: none; }
.hero__sub {
  max-width: 460px;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 300;
  color: rgba(232, 224, 212, 0.82);
}
.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: clamp(90px, 16vh, 150px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero__scroll span:first-child {
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.6);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: rgba(232, 224, 212, 0.25);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--sand);
  animation: scrollHint 2.2s var(--ease-out) infinite;
}
@keyframes scrollHint {
  0% { top: -100%; }
  55% { top: 0; }
  100% { top: 100%; }
}

/* ---------- Manifesto ---------- */
.manifest {
  padding: clamp(120px, 22vh, 240px) var(--pad);
  max-width: 1500px;
}
.manifest__text {
  font-size: clamp(28px, 4.6vw, 68px);
  font-weight: 200;
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.manifest__text .w {
  color: rgba(232, 224, 212, 0.16);
  transition: color 0.3s linear;
}
.manifest__text .w.on { color: var(--sand); }
.manifest__refusals {
  margin-top: clamp(100px, 16vh, 180px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
}
.refusal {
  border-top: 1px solid rgba(232, 224, 212, 0.18);
  padding-top: 28px;
}
.refusal__num {
  display: block;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--ash);
  margin-bottom: 48px;
}
.refusal h3 {
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 300;
  margin-bottom: 16px;
}
.refusal p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(232, 224, 212, 0.62);
  max-width: 34ch;
}

/* ---------- Ritual (horizontal) ---------- */
.ritual {
  background: var(--sand);
  color: var(--black);
}
.ritual__pin {
  height: 100svh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(80px, 12vh, 120px) 0 0;
}
.ritual__head {
  padding: 0 var(--pad);
  margin-bottom: clamp(28px, 5vh, 60px);
}
.ritual__head .section-label { margin-bottom: 18px; }
.ritual__title {
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.015em;
}
.ritual__track {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  padding: 0 var(--pad);
  width: max-content;
  will-change: transform;
}
.phase {
  width: clamp(300px, 38vw, 520px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 26px;
}
.phase__line {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: rgba(26, 23, 20, 0.25);
}
.phase__num {
  font-size: clamp(60px, 7vw, 110px);
  font-weight: 100;
  line-height: 1;
  color: rgba(26, 23, 20, 0.28);
  margin-bottom: clamp(28px, 6vh, 70px);
}
.phase h3 {
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 300;
  margin-bottom: 12px;
}
.phase__items {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 23, 20, 0.5);
  margin-bottom: 22px;
}
.phase__desc {
  font-size: 15px;
  font-weight: 300;
  color: rgba(26, 23, 20, 0.72);
  max-width: 36ch;
}
.phase--end {
  justify-content: center;
  padding-top: 0;
  width: clamp(300px, 34vw, 460px);
}
.phase__mark {
  width: clamp(48px, 5vw, 72px);
  margin-bottom: clamp(24px, 4vh, 40px);
  opacity: 0.85;
}
.phase--end p {
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 300;
  line-height: 1.5;
  color: rgba(26, 23, 20, 0.78);
}
.ritual__progress {
  margin: clamp(32px, 6vh, 64px) var(--pad) clamp(28px, 5vh, 56px);
  height: 1px;
  background: rgba(26, 23, 20, 0.15);
}
.ritual__progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--black);
  transform: scaleX(0);
  transform-origin: left;
}

/* ---------- Aromas ---------- */
.aromas {
  padding: clamp(120px, 20vh, 220px) var(--pad);
  background: var(--bg-aroma, var(--black));
  transition: background 0.8s linear;
}
.aromas__title {
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 200;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: clamp(60px, 10vh, 120px);
}
.aroma {
  display: grid;
  grid-template-columns: clamp(50px, 8vw, 130px) 1fr minmax(0, 420px);
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(24px, 3.6vh, 40px) 0;
  border-top: 1px solid rgba(232, 224, 212, 0.16);
  cursor: pointer;
  outline: none;
}
.aroma:last-child { border-bottom: 1px solid rgba(232, 224, 212, 0.16); }
.aroma__idx {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.26em;
  color: var(--ash);
  transition: color 0.4s;
}
.aroma__name {
  font-size: clamp(30px, 4.6vw, 72px);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: rgba(232, 224, 212, 0.45);
  transition: color 0.45s, transform 0.55s var(--ease-out);
}
.aroma__notes {
  display: grid;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s, transform 0.55s var(--ease-out);
}
.aroma__notes p {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(232, 224, 212, 0.78);
}
.aroma__notes i {
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.45);
  flex: 0 0 64px;
}
.aroma.is-active .aroma__name,
.aroma:hover .aroma__name,
.aroma:focus-visible .aroma__name {
  color: var(--sand);
  transform: translateX(clamp(6px, 1.5vw, 24px));
}
.aroma.is-active .aroma__notes,
.aroma:hover .aroma__notes,
.aroma:focus-visible .aroma__notes {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Breath ---------- */
.breath {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(120px, 18vh, 200px) var(--pad);
}
.breath__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.breath__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.breath__title {
  font-size: clamp(30px, 4vw, 60px);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: clamp(40px, 7vh, 80px);
}
.breath__scale {
  display: flex;
  gap: clamp(6px, 1vw, 14px);
  align-items: flex-end;
  height: 72px;
  margin-bottom: 28px;
}
.breath__scale span {
  flex: 0 0 clamp(20px, 3.4vw, 44px);
  height: 100%;
  position: relative;
}
.breath__scale span::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232, 224, 212, 0.1);
  transform: scaleY(0.35);
  transform-origin: bottom;
}
.breath__scale span::after {
  content: attr(data-v);
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: rgba(232, 224, 212, 0.4);
}
.breath__scale span.lit::before {
  background: var(--blue);
  transform: scaleY(1);
  transition: transform 0.8s var(--ease-out), background 0.6s;
}
.breath__caption {
  margin-top: 44px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(232, 224, 212, 0.62);
  max-width: 48ch;
}
.breath__word {
  margin-top: clamp(40px, 7vh, 72px);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--blue);
}

/* ---------- Quote ---------- */
.quote {
  padding: clamp(140px, 26vh, 280px) var(--pad);
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.quote__mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(340px, 46vw, 720px);
  height: auto;
  transform: translate(-50%, -50%);
  fill: none;
  stroke: var(--sand);
  stroke-width: 2.5;
  opacity: 0.16;
  pointer-events: none;
}
.quote__text {
  position: relative;
  z-index: 1;
  font-size: clamp(30px, 4.8vw, 76px);
  font-weight: 100;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.quote__text .w { display: inline-block; }

/* ---------- Footer ---------- */
.footer {
  padding: clamp(80px, 12vh, 140px) var(--pad) 0;
  border-top: 1px solid rgba(232, 224, 212, 0.12);
  overflow: hidden;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(80px, 14vh, 160px);
}
.footer__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 20px;
}
.footer__col p, .footer__col a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(232, 224, 212, 0.78);
}
.footer__mail {
  position: relative;
  display: inline-block;
}
.footer__mail::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.footer__nav { display: flex; flex-direction: column; gap: 8px; }
.footer__mark {
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding-bottom: clamp(48px, 8vh, 100px);
}
.footer__mark img {
  width: min(560px, 72vw);
  height: auto;
  opacity: 0.92;
  transform: translateY(12%);
}
html.reduced .footer__mark img { transform: none; }
.footer__legal {
  display: flex;
  justify-content: space-between;
  padding: 22px 0 calc(22px + env(safe-area-inset-bottom, 0px));
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(232, 224, 212, 0.4);
  border-top: 1px solid rgba(232, 224, 212, 0.1);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .manifest__refusals { grid-template-columns: 1fr; gap: 0; }
  .refusal { padding: 28px 0; }
  .refusal__num { margin-bottom: 20px; }
  .aroma { grid-template-columns: clamp(36px, 8vw, 60px) 1fr; }
  .aroma__notes {
    grid-column: 2;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-out), opacity 0.45s, transform 0.55s var(--ease-out);
  }
  .aroma.is-active .aroma__notes { max-height: 140px; margin-top: 14px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .header__nav { display: none; }
  .header__burger { display: block; }
  .hero__scroll { display: none; }
  .hero__sub { max-width: 92%; }
  .phase { width: min(78vw, 360px); }
  .phase--end { width: min(78vw, 360px); }
  .breath__scale span::after { font-size: 9px; }
  .quote__text { max-width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .grain { animation: none; }
  .hero__scroll-line::after { animation: none; }
  .preloader__mark { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
