/* ===========================================================================
   Листва — оранжерея комнатных растений. Дизайн-система одного лендинга.
   Палитра: лесная зелень, мята, терракота горшков, кремовый. Только локальные
   ресурсы — без CDN, без внешних шрифтов.
   =========================================================================== */

:root {
  /* цвет — поверхности */
  --cream:    #f6f4ec;   /* основной фон, кремовый */
  --cream-2:  #eef0e2;   /* чуть зеленее, чередование */
  --mint:     #e7efe4;   /* мятные секции */
  --paper:    #fcfbf6;   /* карточки */

  /* цвет — зелень и акценты */
  --leaf:     #2f6b46;   /* основной лесной зелёный */
  --leaf-deep:#1f4a30;   /* тёмная зелень / фон */
  --leaf-soft:#5e9b6f;   /* светлая зелень для иконок */
  --terra:    #c4622f;   /* терракота горшков — тёплый акцент */
  --terra-deep:#a44d20;

  /* цвет — текст */
  --ink:      #232a23;
  --ink-soft: #4f574c;
  --muted:    #828c7e;
  --line:     #dde1d2;

  /* семантика света (фильтр каталога) */
  --light-bright:  #d99a3c;  /* солнце */
  --light-diffuse: #4f9d6b;  /* рассеянный */
  --light-shade:   #5c7f9c;  /* тень */

  /* типографика — чистый современный сан */
  --sans: "Segoe UI", system-ui, -apple-system, "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  --display: "Segoe UI Semibold", "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;

  /* шкала отступов */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 48px; --s-6: 64px; --s-7: 96px; --s-8: 128px;

  --maxw: 1200px;
  --radius: 8px;
  --radius-lg: 18px;     /* мягкие, органичные углы карточек */
  --radius-pill: 999px;
  --shadow:    0 1px 2px rgba(31,74,48,.05), 0 10px 30px rgba(31,74,48,.08);
  --shadow-lg: 0 22px 56px rgba(31,74,48,.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.14; letter-spacing: -.01em; margin: 0; }
p { margin: 0 0 var(--s-2); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s-4); }
.visually-hidden, .skip-link {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link:focus {
  position: fixed; top: 12px; left: 12px; width: auto; height: auto; clip: auto;
  background: var(--leaf-deep); color: var(--cream); padding: 10px 16px; border-radius: var(--radius); z-index: 999;
}

/* ---------- общие секции ---------- */
.section { padding-block: var(--s-7); }
.section--mint  { background: var(--mint); }
.section--leaf  { background: var(--leaf-deep); color: #e6efe6; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 700;
  color: var(--terra);
  margin: 0 0 var(--s-2);
}
.eyebrow--light { color: #e9b07f; }

.section-head { max-width: 680px; margin: 0 auto var(--s-6); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head h2 { font-size: clamp(28px, 4.2vw, 44px); margin-bottom: var(--s-2); color: var(--leaf-deep); }
.section--leaf .section-head h2 { color: #f2f7f0; }
.section-head__lead { color: var(--ink-soft); font-size: 18px; margin: 0; }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--leaf); color: #fff;
  padding: 14px 28px; border: 1.5px solid var(--leaf);
  border-radius: var(--radius-pill); font-weight: 600; font-size: 15px;
  letter-spacing: .01em;
  transition: background .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { background: var(--leaf-deep); border-color: var(--leaf-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid rgba(47,107,70,.35); outline-offset: 2px; }
.btn--small { padding: 9px 20px; font-size: 14px; }
.btn--ghost { background: transparent; color: var(--leaf); }
.btn--ghost:hover { background: rgba(47,107,70,.08); color: var(--leaf-deep); }
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.75); background: transparent; }
.btn--ghost-light:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(246,244,236,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 16px rgba(31,74,48,.06);
}
.header-inner { display: flex; align-items: center; gap: var(--s-3); height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--leaf-deep); letter-spacing: .01em; }
.brand__mark { color: var(--leaf); flex: none; }

/* хедер прозрачный поверх hero — светлый текст до прокрутки */
.site-header:not(.scrolled) .brand,
.site-header:not(.scrolled) .nav a { color: #f3f8f1; }
.site-header:not(.scrolled) .brand__mark { color: #bfe0c4; }

.nav { display: flex; gap: var(--s-4); margin-left: auto; }
.nav a { font-size: 15px; font-weight: 500; position: relative; padding: 6px 0; transition: color .2s var(--ease); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--terra);
  transition: width .25s var(--ease);
}
.nav a:hover { color: var(--terra); }
.nav a:hover::after { width: 100%; }
.nav-cta { flex: none; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; margin-left: auto; }
.burger span { width: 24px; height: 2px; background: var(--leaf-deep); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.site-header:not(.scrolled) .burger span { background: #fff; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 94vh; display: flex; align-items: center; overflow: hidden; margin-top: -76px; padding-top: 76px; }
.hero__bg {
  position: absolute; inset: -8% 0 0 0; background-size: cover; background-position: center 40%;
  z-index: -2; will-change: transform;
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(20,46,28,.78) 0%, rgba(20,46,28,.42) 48%, rgba(20,46,28,.18) 100%),
    linear-gradient(180deg, rgba(20,46,28,.30) 0%, rgba(20,46,28,.10) 35%, rgba(20,46,28,.55) 100%);
}
.hero__content { color: #f4f9f2; max-width: 720px; padding-block: var(--s-7); }
.hero__title { font-size: clamp(42px, 7.4vw, 84px); line-height: 1.02; margin-bottom: var(--s-3); letter-spacing: -.02em; text-shadow: 0 2px 30px rgba(0,0,0,.28); }
.hero__lead { font-size: clamp(17px, 2.2vw, 21px); max-width: 32em; color: #e7efe4; margin-bottom: var(--s-4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.hero__facts { list-style: none; display: flex; flex-wrap: wrap; gap: var(--s-5); padding: 0; margin: var(--s-6) 0 0; }
.hero__facts li { display: flex; flex-direction: column; }
.hero__facts b { font-family: var(--display); font-size: 30px; color: #bfe0c4; line-height: 1; }
.hero__facts span { font-size: 13.5px; color: #cdddcb; margin-top: 6px; max-width: 14ch; }
.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2; }
.hero__scroll span {
  display: block; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; position: relative;
}
.hero__scroll span::after {
  content: ""; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; background: #fff;
  border-radius: 2px; transform: translateX(-50%); animation: scrollcue 1.6s var(--ease) infinite;
}
@keyframes scrollcue { 0% { opacity: 0; transform: translate(-50%,0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%,12px); } 100% { opacity: 0; } }

/* ---------- about (фото слева, асимметрия) ---------- */
.about__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: var(--s-6); align-items: center; }
.about__media { margin: 0; position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; }
.about__media figcaption { font-size: 13px; color: var(--muted); margin-top: 12px; font-style: italic; }
.about__text h2 { font-size: clamp(28px, 3.8vw, 40px); margin-bottom: var(--s-3); color: var(--leaf-deep); }
.about__text p { color: var(--ink-soft); }
.about__points { list-style: none; padding: 0; margin: var(--s-4) 0 0; display: grid; gap: var(--s-2); }
.about__points li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--ink); }
.about__points .dot { flex: none; width: 10px; height: 10px; margin-top: 8px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 4px rgba(196,98,47,.15); }

/* ---------- shop / light filter ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: var(--s-5); }
.filter {
  background: var(--paper); border: 1.5px solid var(--line); color: var(--ink-soft);
  padding: 10px 22px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600;
  transition: all .22s var(--ease);
}
.filter:hover { border-color: var(--leaf-soft); color: var(--leaf); }
.filter.is-active { background: var(--leaf); border-color: var(--leaf); color: #fff; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card.is-hidden { display: none; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card__media { overflow: hidden; aspect-ratio: 4/3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.07); }
.card__body { padding: var(--s-3) var(--s-3) var(--s-4); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { font-size: 21px; color: var(--leaf-deep); }
.card__body p { color: var(--ink-soft); font-size: 15px; margin: 0; flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.size { font-size: 13px; color: var(--muted); letter-spacing: .02em; }
.price { font-family: var(--display); font-size: 19px; font-weight: 700; color: var(--terra); }

.light-tag {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .03em;
  padding: 5px 12px 5px 10px; border-radius: var(--radius-pill);
}
.light-tag::before { content: ""; width: 8px; height: 8px; border-radius: 50%; }
.light-tag--bright  { background: rgba(217,154,60,.14);  color: #9c6913; }
.light-tag--bright::before  { background: var(--light-bright); }
.light-tag--diffuse { background: rgba(79,157,107,.15);  color: #2f6b46; }
.light-tag--diffuse::before { background: var(--light-diffuse); }
.light-tag--shade   { background: rgba(92,127,156,.15);  color: #3f5e78; }
.light-tag--shade::before   { background: var(--light-shade); }

.shop__note { text-align: center; color: var(--ink-soft); max-width: 640px; margin: var(--s-5) auto 0; }

/* ---------- guides ---------- */
.guides__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.guide {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--s-4) var(--s-4) var(--s-4) var(--s-5); position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.guide::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: linear-gradient(var(--leaf-soft), var(--leaf));
}
.guide:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cdd9c3; }
.guide__num { font-family: var(--display); font-size: 14px; font-weight: 700; color: var(--terra); letter-spacing: .12em; }
.guide__icon { width: 46px; height: 46px; display: block; margin: var(--s-2) 0 var(--s-3); }
.guide__icon path, .guide__icon circle, .guide__icon rect { fill: none; stroke: var(--leaf-soft); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.guide h3 { font-size: 21px; margin-bottom: 8px; color: var(--leaf-deep); }
.guide p { color: var(--ink-soft); font-size: 15.5px; margin: 0; }

/* ---------- quote band ---------- */
.quote-band { position: relative; background-size: cover; background-position: center; background-attachment: fixed; padding-block: var(--s-8); }
.quote-band__veil { position: absolute; inset: 0; background: linear-gradient(rgba(20,46,28,.74), rgba(20,46,28,.66)); }
.quote-band blockquote { position: relative; margin: 0; max-width: 900px; text-align: center; color: #f4f9f2; }
.quote-band blockquote p { font-family: var(--display); font-size: clamp(24px, 3.6vw, 40px); line-height: 1.3; font-weight: 600; letter-spacing: -.01em; }
.quote-band cite { display: block; margin-top: var(--s-3); font-style: normal; font-size: 15px; letter-spacing: .06em; color: #bfe0c4; }

/* ---------- delivery (текст слева, фото справа) ---------- */
.delivery__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-6); align-items: center; }
.delivery__text h2 { font-size: clamp(28px, 3.8vw, 40px); margin-bottom: var(--s-3); color: var(--leaf-deep); }
.delivery__text > p { color: var(--ink-soft); }
.delivery__list { list-style: none; padding: 0; margin: var(--s-4) 0; }
.delivery__list li { padding: var(--s-3) 0; border-top: 1px solid var(--line); }
.delivery__list li:last-child { border-bottom: 1px solid var(--line); }
.delivery__head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-2); }
.delivery__head h3 { font-size: 20px; color: var(--ink); }
.delivery__list p { color: var(--ink-soft); font-size: 15px; margin: 6px 0 0; }
.delivery__media { margin: 0; }
.delivery__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); aspect-ratio: 3/4; object-fit: cover; }
.delivery__media figcaption { font-size: 13px; color: var(--muted); margin-top: 12px; font-style: italic; }

/* ---------- subscribe band ---------- */
.subscribe-band__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s-6); align-items: center; }
.subscribe-band__text h2 { font-size: clamp(28px, 3.8vw, 40px); color: #f2f7f0; margin-bottom: var(--s-2); }
.subscribe-band__text p { color: #c4d4c2; }
.subscribe-band__bul { list-style: none; padding: 0; margin: var(--s-3) 0 0; display: grid; gap: 10px; }
.subscribe-band__bul li { position: relative; padding-left: 26px; color: #d6e2d4; font-size: 15px; }
.subscribe-band__bul li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 11px; height: 11px;
  border-radius: 50% 50% 50% 0; background: var(--leaf-soft); transform: rotate(45deg);
}
.subscribe { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: var(--s-4); }
.subscribe__row { display: flex; gap: 10px; }
.subscribe input {
  flex: 1; min-width: 0; padding: 15px 18px; border-radius: var(--radius);
  border: 1.5px solid #3a5742; background: #16331f; color: #eef4ec; font-size: 16px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.subscribe input::placeholder { color: #7d927f; }
.subscribe input:focus { outline: none; border-color: var(--leaf-soft); box-shadow: 0 0 0 3px rgba(94,155,111,.3); }
.subscribe input.invalid { border-color: #d8744f; box-shadow: 0 0 0 3px rgba(216,116,79,.3); }
.subscribe .btn { flex: none; background: var(--terra); border-color: var(--terra); }
.subscribe .btn:hover { background: var(--terra-deep); border-color: var(--terra-deep); }
.subscribe__hint { font-size: 13px; color: #93a691; margin: 12px 0 0; }
.subscribe__ok { font-size: 15px; color: #9bd6a6; margin: 12px 0 0; font-weight: 600; }

/* ---------- reviews ---------- */
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.review { margin: 0; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--s-4); position: relative; }
.review__leaf {
  position: absolute; top: var(--s-3); right: var(--s-3); width: 22px; height: 22px; opacity: .5;
  background: var(--leaf-soft); border-radius: 0 50% 50% 50%; transform: rotate(45deg);
}
.review blockquote { margin: 0 0 var(--s-3); font-size: 16.5px; line-height: 1.6; color: var(--ink); padding-right: var(--s-3); }
.review figcaption { font-size: 14px; color: var(--muted); letter-spacing: .02em; font-weight: 600; }

/* ---------- faq ---------- */
.faq__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: var(--s-6); align-items: start; }
.faq__list details { border-bottom: 1px solid var(--line); padding: var(--s-2) 0; }
.faq__list summary {
  list-style: none; cursor: pointer; font-family: var(--display); font-weight: 600; font-size: 19px;
  color: var(--leaf-deep); padding: 10px 40px 10px 0; position: relative; transition: color .2s var(--ease);
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 14px; height: 14px;
  margin-top: -7px; transition: transform .25s var(--ease);
  background:
    linear-gradient(var(--terra), var(--terra)) center/14px 2px no-repeat,
    linear-gradient(var(--terra), var(--terra)) center/2px 14px no-repeat;
}
.faq__list details[open] summary::after { transform: rotate(135deg); }
.faq__list summary:hover { color: var(--terra); }
.faq__list details p { color: var(--ink-soft); padding: 0 40px 10px 0; margin: 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--leaf-deep); color: #b9cbb8; padding-top: var(--s-7); }
.site-footer .brand { color: #eef4ec; }
.site-footer .brand__mark { color: #bfe0c4; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr 1fr; gap: var(--s-5); padding-bottom: var(--s-6); }
.footer__brand p { margin-top: var(--s-2); font-size: 15px; max-width: 32ch; color: #9bb29a; }
.footer__col h4 { font-family: var(--sans); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; color: #8aa389; margin: 0 0 var(--s-2); }
.footer__col a, .footer__col p { display: block; font-size: 15px; color: #b9cbb8; margin: 0 0 8px; transition: color .2s var(--ease); }
.footer__col a:hover { color: #e9b07f; }
.footer__social a { display: inline; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s-2);
  border-top: 1px solid #2c5238; padding-block: var(--s-3) var(--s-4); font-size: 14px; color: #8aa389;
}
.footer__bottom a:hover { color: #e9b07f; }

/* ---------- reveal-анимация ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- адаптив ---------- */
@media (max-width: 980px) {
  .about__grid, .delivery__grid, .subscribe-band__inner, .faq__inner { grid-template-columns: 1fr; gap: var(--s-4); }
  .about__media, .delivery__media { order: -1; }
  .about__media img, .delivery__media img { aspect-ratio: 16/10; }
  .guides__grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-4); }
  .quote-band { background-attachment: scroll; }
  .hero__facts { gap: var(--s-4); }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding-block: var(--s-6); }
  .wrap { padding-inline: var(--s-3); }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: var(--s-2) var(--s-3) var(--s-3); transform: translateY(-135%);
    transition: transform .35s var(--ease); box-shadow: var(--shadow-lg); margin: 0;
  }
  .site-header.menu-open .nav { transform: translateY(0); }
  .site-header:not(.scrolled).menu-open { background: rgba(246,244,236,.97); backdrop-filter: blur(10px); }
  .site-header:not(.scrolled).menu-open .nav a,
  .site-header:not(.scrolled).menu-open .brand { color: var(--leaf-deep); }
  .site-header:not(.scrolled).menu-open .brand__mark { color: var(--leaf); }
  .site-header:not(.scrolled).menu-open .burger span { background: var(--leaf-deep); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 17px; color: var(--ink); }
  .nav a:last-child { border-bottom: 0; }
  .nav a::after { display: none; }
  .site-header.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.menu-open .burger span:nth-child(2) { opacity: 0; }
  .site-header.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .cards { grid-template-columns: 1fr; }
  .hero__facts { gap: var(--s-3); }
  .hero__facts b { font-size: 26px; }
  .subscribe__row { flex-direction: column; }
  .subscribe .btn { width: 100%; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span::after { animation: none; }
  * { transition-duration: .01ms !important; }
}
