/* =============================================
   ASSMANN PVR – Stylesheet (faithfully rebuilt from PDF design)
   ============================================= */

:root {
  --navy:        #0d1b2a;
  --navy-mid:    #112240;
  --blue:        #1B5FA8;
  --blue-dark:   #154d8a;
  --blue-light:  #2171c1;
  --yellow:      #F5C518;
  --yellow-dark: #d4a800;
  --white:       #ffffff;
  --grey-bg:     #f4f6f9;
  --text:        #1a1a2e;
  --text-mid:    #444;
  --text-muted:  #777;
  --border:      #e0e5ec;
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --radius:      6px;
  --shadow:      0 4px 24px rgba(0,0,0,.12);
  --shadow-md:   0 8px 40px rgba(0,0,0,.18);
  --t:           .28s cubic-bezier(.4,0,.2,1);
  --container:   1240px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 4px; }

/* ── Skip link ── */
.skip-link { position: fixed; top: -100%; left: 1rem; z-index: 9999; background: var(--yellow); color: var(--navy); padding: .6rem 1.2rem; border-radius: var(--radius); font-weight: 700; transition: top .2s; }
.skip-link:focus { top: 1rem; }

/* ── Container ── */
.container { width: min(var(--container), 100% - 2rem); margin-inline: auto; }

/* ── Scroll Reveal ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
  transition-delay: var(--d, 0s);
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 999px;
  font-size: .95rem; font-weight: 700; line-height: 1;
  transition: background var(--t), color var(--t), transform var(--t), box-shadow var(--t);
  white-space: nowrap; cursor: pointer;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--yellow { background: var(--yellow); color: var(--navy); box-shadow: 0 4px 20px rgba(245,197,24,.3); }
.btn--yellow:hover { background: var(--yellow-dark); box-shadow: 0 8px 28px rgba(245,197,24,.45); }

.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 4px 20px rgba(27,95,168,.25); }
.btn--blue:hover { background: #164f8f; box-shadow: 0 8px 28px rgba(27,95,168,.4); }

.btn--outline-dark {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy); border-radius: 999px;
}
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }

.btn--outline-white {
  background: transparent; color: var(--white);
  border: 2px solid var(--white); border-radius: 999px;
}
.btn--outline-white:hover { background: var(--white); color: var(--navy); }

/* ── Back to top ── */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(27,95,168,.35);
  opacity: 0; translate: 0 16px;
  transition: opacity var(--t), translate var(--t), transform var(--t);
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; translate: 0 0; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============================================================
   HEADER
   ============================================================ */

/* Top bar */
.topbar {
  background: var(--navy);
  padding: .6rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
}
.topbar__inner {
  display: flex; align-items: center; gap: .75rem;
  justify-content: flex-end;
}
.topbar__item { display: flex; align-items: center; gap: .35rem; }
.topbar__item a { color: rgba(255,255,255,.85); transition: color var(--t); }
.topbar__item a:hover { color: var(--yellow); }
.topbar__divider { opacity: .35; }

/* Nav */
.nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  position: sticky;
  top: 0; z-index: 900;
  overflow: visible;
  transition: box-shadow var(--t);
}
.site-header { position: relative; z-index: 900; }

.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 88px; gap: 1rem;
  overflow: visible;
}

.nav__logo {
  position: relative;
  top: -28px;
  z-index: 910;
  flex-shrink: 0;
}
.nav__logo img { height: 120px; width: auto; transition: opacity var(--t); }
.nav__logo:hover img { opacity: .85; }

.nav__menu { display: flex; align-items: center; gap: .1rem; }

.nav__link {
  padding: .45rem .85rem;
  font-size: 1.14rem; font-weight: 500;
  color: var(--text-mid);
  border-radius: var(--radius);
  transition: color var(--t), background var(--t);
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 0; left: .85rem; right: .85rem;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.nav__link:hover { color: var(--blue); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.active { color: var(--blue); }
.nav__link.active::after { transform: scaleX(1); }

.nav__link--faq {
  color: var(--blue); font-weight: 700;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: .4rem 1rem;
  margin-left: 1.75rem;
}
.nav__link--faq::after { display: none; }
.nav__link--faq:hover { background: var(--blue); color: var(--white); }

.nav__toggle {
  display: none; flex-direction: column;
  justify-content: space-between; width: 26px; height: 19px;
}
.nav__bar {
  display: block; width: 100%; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,.88) 0%,
    rgba(10,22,40,.65) 50%,
    rgba(10,22,40,.15) 100%
  );
}
.hero__content {
  position: relative; z-index: 1;
  padding-block: 100px 80px;
}
.hero__text { max-width: 560px; }

.hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ============================================================
   MARQUEE BANNER
   ============================================================ */
.marquee-bar {
  background: var(--navy);
  padding: .75rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-bar__track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee-bar__text {
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .03em;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.33%); }
}

/* ============================================================
   SPLIT SECTION (Bild + Text)
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.split-section__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.split-section__content {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.split-section__title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; line-height: 1.2;
  color: var(--navy); margin-bottom: 1.25rem;
}
.split-section__content p {
  font-size: .97rem; color: var(--text-mid);
  line-height: 1.8; margin-bottom: 1rem;
}
.split-section__content p:last-child { margin-bottom: 0; }

.split-section__list {
  list-style: none; padding: 0; margin: 1.25rem 0 2rem;
  display: flex; flex-direction: column; gap: .65rem;
}
.split-section__list li {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .97rem; color: var(--text-mid); line-height: 1.6;
}
.split-section__list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px; margin-top: .1rem;
  background: var(--blue);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 13px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ============================================================
   BENEFITS – dark banner + 3 columns
   ============================================================ */
.benefits { background: var(--white); }

.benefits__banner {
  background: var(--navy-mid);
  padding: 1.75rem 0;
}
.benefits__banner-text {
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--white);
  text-align: center;
  line-height: 1.5;
}
.benefits__banner-text strong { color: var(--yellow); }

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 4rem 0 2.5rem;
}

.benefit-card {
  display: flex; flex-direction: column; gap: 1rem;
}
.benefit-card__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.benefit-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.benefit-card:hover .benefit-card__img { transform: scale(1.04); }

.benefit-card__title {
  font-size: 1rem; font-weight: 700;
  color: var(--navy);
}
.benefit-card__text {
  font-size: .88rem; color: var(--text-mid);
  line-height: 1.7;
}
.benefits__cta {
  text-align: center;
  padding-bottom: 4rem;
}

/* ============================================================
   METHOD – Reinstwasser
   ============================================================ */
.method {
  background: var(--white);
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.method__header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}
.method__title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: .04em; color: var(--navy);
  margin-bottom: 1.25rem;
}
.method__subtitle {
  font-size: .9rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: .75rem;
}

.method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.method__item { display: flex; flex-direction: column; gap: .75rem; }
.method__label {
  font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--navy);
}
.method__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.method__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.method__item:hover .method__img { transform: scale(1.04); }

/* ============================================================
   EINSATZBEREICHE
   ============================================================ */
.einsatz { background: var(--navy); }

.einsatz__heading {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: var(--white);
  text-align: center;
  padding: 4rem 0 2rem;
}

/* Full-width Solarpark */
.einsatz__full {
  position: relative; overflow: hidden;
  height: clamp(300px, 42vw, 520px);
}
.einsatz__halves {
  display: grid; grid-template-columns: 1fr 1fr;
}
.einsatz__half {
  position: relative; overflow: hidden;
  height: clamp(260px, 32vw, 420px);
}

.einsatz__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.einsatz__full:hover .einsatz__bg-img,
.einsatz__half:hover .einsatz__bg-img { transform: scale(1.04); }

.einsatz__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,40,.85) 0%,
    rgba(10,22,40,.35) 60%,
    transparent 100%
  );
}
.einsatz__text {
  position: absolute; bottom: 0; left: 0;
  padding: 2rem 2.5rem; z-index: 1;
  max-width: 500px;
}
.einsatz__type-title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800; color: var(--white);
  margin-bottom: .5rem;
}
.einsatz__type-text {
  font-size: .88rem; color: rgba(255,255,255,.82);
  line-height: 1.65;
}

/* ============================================================
   WIRTSCHAFTLICHKEIT
   ============================================================ */
.wirtschaft {
  background: var(--white);
  padding: 6rem 0;
}
.wirtschaft__header {
  text-align: center; margin-bottom: 3.5rem;
}
.wirtschaft__title {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800; text-transform: uppercase;
  letter-spacing: .06em; color: var(--navy);
  margin-bottom: .5rem;
}
.wirtschaft__sub {
  font-size: .95rem; color: var(--text-muted);
}

.wirtschaft__grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem; align-items: start;
  margin-bottom: 3.5rem;
}

/* Left: big 25% */
.wirtschaft__stat {
  margin-bottom: 1.75rem;
  line-height: 1;
}
.wirtschaft__stat-label {
  display: block;
  font-size: 1rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: .2rem;
}
.wirtschaft__stat-number {
  display: block;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900; color: var(--yellow);
  letter-spacing: -.02em; line-height: 1;
}
.wirtschaft__stat-suffix {
  display: block;
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-top: .2rem;
}

.wirtschaft__left p {
  font-size: .9rem; color: var(--text-mid);
  line-height: 1.75; margin-bottom: 1rem;
}
.wirtschaft__box {
  background: var(--grey-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.25rem;
}
.wirtschaft__box-title {
  font-size: .9rem; font-weight: 700;
  color: var(--navy); margin-bottom: .5rem;
}
.wirtschaft__box p {
  font-size: .85rem; color: var(--text-mid);
  line-height: 1.65; margin: 0;
}

/* Right: checklist */
.wirtschaft__list {
  display: flex; flex-direction: column; gap: 1.25rem;
}
.wirtschaft__list-item {
  display: flex; gap: .85rem; align-items: flex-start;
}
.wirtschaft__check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-top: .15rem;
}
.wirtschaft__list-item strong {
  display: block; font-size: .92rem; font-weight: 700;
  color: var(--navy); margin-bottom: .25rem;
}
.wirtschaft__list-item p {
  font-size: .85rem; color: var(--text-mid); line-height: 1.65;
}

.wirtschaft__cta { text-align: center; }

/* ============================================================
   PROCESS (Ablauf)
   ============================================================ */
.process {
  background: var(--grey-bg);
  padding: 6rem 0;
}
.process__title {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 400; color: var(--navy);
  text-align: center; line-height: 1.4;
  margin-bottom: 3.5rem;
}
.process__title strong { font-weight: 900; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.process__step-head {
  background: var(--navy);
  color: var(--white);
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 50%, calc(100% - 16px) 100%, 0 100%);
  margin-bottom: 1.25rem;
  display: flex; gap: .5rem; align-items: flex-start;
}
/* last step: no arrow */
.process__step:last-child .process__step-head {
  clip-path: none;
}
.process__step-num {
  font-size: .85rem; font-weight: 700;
  color: var(--yellow); flex-shrink: 0;
  margin-top: .05rem;
}
.process__step-title {
  font-size: .88rem; font-weight: 700;
  line-height: 1.4;
}
.process__step-text {
  font-size: .83rem; color: var(--text-mid);
  line-height: 1.7;
}
.process__cta { text-align: center; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--white);
  padding: 6rem 0;
}
.faq__title {
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 800; color: var(--yellow);
  text-align: center;
  margin-bottom: 3rem;
  font-style: italic;
}
.faq__list {
  max-width: 820px; margin-inline: auto;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--border);
}
.faq__item { border-bottom: 1px solid var(--border); }
.faq__btn {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; width: 100%; padding: 1.2rem 0;
  text-align: left; font-size: .95rem; font-weight: 500;
  color: var(--text); background: none; border: none; cursor: pointer;
  transition: color var(--t);
}
.faq__btn:hover { color: var(--blue); }
.faq__btn[aria-expanded="true"] { color: var(--blue); }
.faq__icon {
  flex-shrink: 0; color: var(--navy);
  transition: transform var(--t);
  background: var(--navy); color: var(--white);
  border-radius: 50%; padding: 2px;
}
.faq__btn[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  padding: 0 0 1.2rem;
  font-size: .9rem; color: var(--text-mid); line-height: 1.75;
  animation: fadeIn .25s ease;
}
.faq__answer[hidden] { display: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ============================================================
   CTA BANNER (blau)
   ============================================================ */
.cta-banner {
  background: var(--blue);
  padding: 5rem 0;
}
.cta-banner__inner {
  display: flex; align-items: center;
  gap: 4rem;
}
.cta-banner__icon {
  flex-shrink: 0;
}
.cta-banner__icon img {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.2; margin-bottom: 1rem;
}
.cta-banner__text {
  font-size: .92rem; color: rgba(255,255,255,.8);
  line-height: 1.7; margin-bottom: 2rem;
  max-width: 480px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 2.5rem 0;
}
.footer__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.footer__logo img { height: 48px; width: auto; }
.footer__copy {
  font-size: .82rem; color: rgba(255,255,255,.5);
}
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a {
  font-size: .82rem; color: rgba(255,255,255,.5);
  transition: color var(--t);
}
.footer__legal a:hover { color: var(--yellow); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .wirtschaft__grid { grid-template-columns: 1fr; gap: 3rem; }
  .wirtschaft__stat-number { font-size: 5rem; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__step-head { clip-path: none !important; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 113px 0 0;
    background: var(--white);
    flex-direction: column; align-items: stretch;
    padding: 1.5rem; gap: .4rem;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    overflow-y: auto; box-shadow: -4px 0 24px rgba(0,0,0,.1);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link {
    padding: .9rem 1rem; font-size: .95rem;
    border: 1px solid var(--border); border-radius: var(--radius);
  }
  .nav__link--faq { margin-top: .5rem; text-align: center; }

  .hero { min-height: 80vh; }
  .hero__title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  .split-section { grid-template-columns: 1fr; }
  .split-section__img { height: 320px; }
  .split-section__img img { height: 100%; }
  .split-section__content { padding: 2.5rem 1.5rem; }

  .benefits__grid { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }

  .method__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .einsatz__halves { grid-template-columns: 1fr; }
  .einsatz__full, .einsatz__half { height: 300px; }

  .process__steps { grid-template-columns: 1fr; }

  .cta-banner__inner { flex-direction: column; text-align: center; gap: 2rem; }
  .cta-banner__text { max-width: none; }

  .footer__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .topbar__inner { justify-content: center; flex-wrap: wrap; gap: .5rem; }
  .method__grid { grid-template-columns: 1fr; }
  .wirtschaft__stat-number { font-size: 4rem; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .marquee-bar__track { animation: none; }
  .hero__img { will-change: auto; }
}

/* ── Print ── */
@media print {
  .site-header, .back-to-top, .marquee-bar { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: auto; }
  .hero__bg { display: none; }
  .hero__overlay { display: none; }
  .hero__title, .hero__sub { color: black; }
}
