/* ============================================================
   Ciesielski Bogdan — Wynajem Limuzyn
   System wizualny: dark luxury, akcent szampana (subtelny)
   Fonty: Cormorant Garamond (nagłówki) + Manrope (treść)
   ============================================================ */

:root {
  /* Tła */
  --bg:      #0B0B0D;
  --bg-2:    #111013;
  --bg-3:    #17161A;
  --bg-card: #131217;

  /* Tekst (ciepła biel, desaturowany) */
  --ink:   #ECE8E1;
  --ink-2: #B6B0A4;
  --ink-3: #837D71;

  /* Akcent — szampan/złoto (tylko przyciski, ikony, linie) */
  --gold:      #C9A96A;
  --gold-soft: #DCC38C;
  --gold-deep: #A5854B;

  /* Linie i cienie */
  --line:      rgba(201,169,106,0.22);
  --line-soft: rgba(236,232,225,0.08);
  --shadow:    0 30px 80px -40px rgba(0,0,0,0.9);

  /* Fonty */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 11vw, 9rem); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 8vw, 6rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); opacity: 0.7; }

.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(2.1rem, 5.2vw, 3.5rem); color: var(--ink); }
.section-head p { margin-top: 1.2rem; color: var(--ink-2); font-size: 1.05rem; max-width: 42rem; }
.section-head--center p { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: transform .35s ease, background .35s ease, color .35s ease, border-color .35s ease, box-shadow .35s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--gold);
  color: #0B0B0D;
  box-shadow: 0 14px 40px -18px rgba(201,169,106,0.55);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,11,13,0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; flex-direction: column; line-height: 1.05; min-width: 0; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links.mobile { display: none; }
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  transition: color .3s ease;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--gold-soft); font-weight: 600; letter-spacing: 0.04em; font-size: 0.9rem;
}
.nav-phone svg { width: 17px; height: 17px; }

.nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 24px; height: 2px; background: var(--ink); transition: transform .3s ease, top .3s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.15) 30%, rgba(11,11,13,0.55) 62%, var(--bg) 100%),
    linear-gradient(90deg, rgba(11,11,13,0.7) 0%, rgba(11,11,13,0.1) 60%);
}
.hero-inner { padding-bottom: clamp(4rem, 9vw, 7rem); padding-top: 8rem; max-width: 52rem; margin-inline: 0; padding-left: clamp(1.25rem, 3vw, 2.25rem); }
.hero h1 {
  font-size: clamp(2.8rem, 8vw, 6rem);
  color: #fff;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero p {
  margin-top: 1.6rem;
  max-width: 40rem;
  color: rgba(236,232,225,0.86);
  font-size: clamp(1rem, 2vw, 1.18rem);
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-scroll {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-3);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.hero-scroll::after {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollpulse 2.4s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100% { opacity: .3; transform: scaleY(.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Reasons (Dlaczego my) ---------- */
.reasons-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-soft); border: 1px solid var(--line-soft);
}
.reason {
  background: var(--bg);
  padding: clamp(2rem, 3.5vw, 3rem) clamp(1.5rem, 2.5vw, 2.2rem);
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: background .4s ease;
}
.reason:hover { background: var(--bg-2); }
.reason-ico {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line); color: var(--gold);
}
.reason-ico svg { width: 24px; height: 24px; }
.reason h3 { font-size: 1.5rem; color: var(--ink); }
.reason p { color: var(--ink-2); font-size: 0.95rem; }

/* ---------- About (O nas) ---------- */
.about { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.about-media { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media::after {
  content: ""; position: absolute; inset: 0;
  border: 1px solid var(--line); border-radius: var(--radius); pointer-events: none;
}
.about-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 1s ease; }
.about-media:hover img { transform: scale(1.05); }
.about-body h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); color: var(--ink); }
.about-body p { margin-top: 1.4rem; color: var(--ink-2); font-size: 1.06rem; }
.about-quote {
  margin-top: 2rem; padding-left: 1.4rem; border-left: 2px solid var(--gold);
  font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--ink); line-height: 1.35;
}

/* ---------- Fleet (Nasza flota) — selektor ---------- */
.fleet-tabs {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; justify-content: center;
}
.fleet-tab {
  padding: 0.7rem 1.4rem; border: 1px solid var(--line-soft); border-radius: 999px;
  color: var(--ink-2); font-size: 0.82rem; letter-spacing: 0.04em;
  transition: all .35s ease;
}
.fleet-tab[aria-selected="true"] { border-color: var(--gold); color: var(--gold-soft); background: rgba(201,169,106,0.06); }
.fleet-tab:hover { color: var(--ink); }

.fleet-panel { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.fleet-panel[hidden] { display: none; }
.fleet-media { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.fleet-media::after { content: ""; position: absolute; inset: 0; border: 1px solid var(--line); border-radius: var(--radius); pointer-events: none; }
.fleet-media img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 1.1s ease; }
.fleet-media:hover img { transform: scale(1.06); }
.fleet-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: rgba(11,11,13,0.72); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--gold-soft);
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.45rem 0.9rem; border-radius: 999px;
}
.fleet-info h3 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--ink); }
.fleet-info .fleet-model { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.8rem; }
.fleet-info p { margin-top: 1rem; color: var(--ink-2); }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.8rem; }
.fleet-spec { display: flex; flex-direction: column; }
.fleet-spec .num { font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); }
.fleet-spec .lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.fleet-info .btn { margin-top: 2rem; }

/* ---------- Amenities (Wyposażenie) ---------- */
.amenities { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.amen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.amen {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.2rem 1.3rem; background: var(--bg-card);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  transition: border-color .35s ease, transform .35s ease;
}
.amen:hover { border-color: var(--line); transform: translateY(-3px); }
.amen svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.amen span { font-size: 0.95rem; color: var(--ink); }

/* ---------- Occasions (Na jakie okazje) ---------- */
.occ-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); }
.occ {
  background: var(--bg); aspect-ratio: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.9rem; text-align: center; padding: 1rem;
  transition: background .4s ease;
}
.occ:hover { background: var(--bg-2); }
.occ svg { width: 30px; height: 30px; color: var(--gold); transition: transform .4s ease; }
.occ:hover svg { transform: translateY(-4px); }
.occ span { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }

/* ---------- Steps (Jak wygląda wynajem) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); counter-reset: step; }
.step { position: relative; padding-top: 2.5rem; }
.step-num {
  font-family: var(--serif); font-size: 3.4rem; color: var(--gold); line-height: 1;
  display: flex; align-items: baseline; gap: 0.6rem;
}
.step-num::after { content: ""; flex: 1; height: 1px; background: var(--line-soft); }
.step h3 { font-size: 1.6rem; color: var(--ink); margin-top: 1rem; }
.step p { margin-top: 0.6rem; color: var(--ink-2); font-size: 0.98rem; }

/* ---------- Reviews (Opinie) ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review {
  background: var(--bg-card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1.2rem;
  transition: border-color .4s ease, transform .4s ease;
}
.review:hover { border-color: var(--line); transform: translateY(-4px); }
.review-stars { display: flex; gap: 3px; color: var(--gold); }
.review-stars svg { width: 17px; height: 17px; }
.review p { color: var(--ink); font-size: 1rem; font-style: italic; font-family: var(--serif); font-size: 1.28rem; line-height: 1.4; }
.review-author { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--bg-3);
  border: 1px solid var(--line); display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.1rem; color: var(--gold-soft);
}
.review-meta { display: flex; flex-direction: column; }
.review-name { font-size: 0.92rem; color: var(--ink); font-weight: 600; }
.review-src { font-size: 0.72rem; color: var(--ink-3); letter-spacing: 0.04em; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 50rem; margin-inline: auto; border-top: 1px solid var(--line-soft); }
.faq-item { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.6rem 0; text-align: left; font-family: var(--serif); font-size: 1.4rem; color: var(--ink);
  transition: color .3s ease;
}
.faq-q:hover { color: var(--gold-soft); }
.faq-icon { flex: none; width: 26px; height: 26px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--gold); transition: transform .35s ease, opacity .3s ease;
}
.faq-icon::before { width: 14px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 14px; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { overflow: hidden; }
.js .faq-a { max-height: 0; transition: max-height .45s ease; }
.faq-a p { padding-bottom: 1.6rem; color: var(--ink-2); max-width: 44rem; }

/* ---------- Stats strip ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.6rem, 6vw, 4rem); color: var(--gold-soft); line-height: 1; }
.stat .lbl { margin-top: 0.7rem; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }

/* ---------- CTA final ---------- */
.cta-final { position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.cta-final .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-final .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-final::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(rgba(11,11,13,0.82), rgba(11,11,13,0.9));
}
.cta-final h2 { font-size: clamp(2.4rem, 6vw, 4.2rem); color: #fff; }
.cta-final p { margin: 1.4rem auto 0; max-width: 34rem; color: var(--ink-2); font-size: 1.1rem; }
.cta-final .btn { margin-top: 2.4rem; }
.cta-phone { margin-top: 1.6rem; font-family: var(--serif); font-size: 2rem; color: var(--gold-soft); display: inline-block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line-soft); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(2rem, 4vw, 4rem); }
.footer-brand .brand-name { font-size: 1.8rem; }
.footer-brand p { margin-top: 1.2rem; color: var(--ink-2); max-width: 24rem; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.3rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a, .footer-col li { color: var(--ink-2); font-size: 0.95rem; transition: color .3s ease; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-nap { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-nap .row { display: flex; gap: 0.75rem; align-items: flex-start; color: var(--ink-2); font-size: 0.95rem; }
.footer-nap svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }
.footer-map { margin-top: 1.4rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); }
.footer-map iframe { width: 100%; height: 200px; border: 0; display: block; filter: grayscale(1) invert(0.9) contrast(0.85); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.8rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  color: var(--ink-3); font-size: 0.82rem;
}
.footer-note { color: var(--ink-3); font-size: 0.78rem; max-width: 30rem; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; inset: auto 0 0 0; z-index: 55;
  display: none; grid-template-columns: 1fr 1fr; gap: 0.6rem;
  padding: 0.7rem; background: rgba(11,11,13,0.9); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-soft);
  transform: translateY(120%); transition: transform .4s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { padding: 0.85rem 1rem; font-size: 0.75rem; }

/* ---------- Reveal animation (progressive enhancement: hidden only with JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s cubic-bezier(.16,.7,.3,1), transform 1s cubic-bezier(.16,.7,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav-links:not(.mobile), .nav-phone.desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.mobile {
    display: flex;
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(11,11,13,0.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line-soft);
    max-height: 0; overflow: hidden; transition: max-height .45s ease;
  }
  .nav.open .nav-links.mobile { max-height: 80vh; }
  .nav-links.mobile a { padding: 1.15rem var(--gutter); border-bottom: 1px solid var(--line-soft); font-size: 1rem; color: var(--ink); }
  .nav-links.mobile a::after { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 30rem; }
  .about-media img { aspect-ratio: 4/3; }
  .fleet-panel { grid-template-columns: 1fr; }
  .fleet-info { order: 2; }
  .steps { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .fleet-tabs { flex-direction: column; }
  .fleet-tab { text-align: center; }
  .sticky-cta { display: grid; }
  body { padding-bottom: 68px; }
}
@media (max-width: 480px) {
  .reasons-grid { grid-template-columns: 1fr; }
  .amen-grid { grid-template-columns: 1fr; }
  .occ-grid { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

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