:root {
  --black: #030609;
  --ink: #070b10;
  --anthracite: #141a21;
  --navy: #071a2b;
  --navy-2: #0c2538;
  --ice: #85ddff;
  --ice-strong: #b9f0ff;
  --white: #f7fbff;
  --muted: #a9b5c0;
  --line: rgba(185, 240, 255, 0.18);
  --glass: rgba(255, 255, 255, 0.065);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 8%, rgba(133, 221, 255, 0.12), transparent 30rem),
    linear-gradient(180deg, #030609 0%, #07111c 42%, #030609 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 70%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--ice);
  color: #00121c;
  border-radius: var(--radius);
}

.skip-link:focus { top: 1rem; }

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 2rem));
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(3, 6, 9, 0.66);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 70px rgba(0,0,0,0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-logo {
  width: 3.9rem;
  height: 2.55rem;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(133, 221, 255, 0.24));
}

.brand strong, .brand em {
  display: block;
  font-style: normal;
  line-height: 1.15;
}

.brand em {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  color: #d9e7ef;
  font-size: 0.92rem;
}

.nav-links a {
  opacity: 0.86;
  transition: color 240ms ease, opacity 240ms ease;
}

.nav-links a:hover { color: var(--ice); opacity: 1; }

.nav-cta {
  padding: 0.78rem 1rem;
  border: 1px solid rgba(133, 221, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(133, 221, 255, 0.12);
}

.section-shell,
.section {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
  align-items: end;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 9rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.95) 0%, rgba(3, 6, 9, 0.65) 42%, rgba(3, 6, 9, 0.28) 100%),
    linear-gradient(180deg, transparent 62%, var(--black) 100%),
    url("assets/crystal-clean-hero.png") center right / cover no-repeat;
}

.hero-content { max-width: 62rem; padding-bottom: 2rem; }

.hero-title-lockup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  margin-bottom: 1.25rem;
}

.hero-logo {
  flex: 0 0 auto;
  width: clamp(17.25rem, 32.2vw, 28.75rem);
  height: auto;
  margin: 0 -4vw 0 0;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.5));
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ice);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.08rem;
}

.hero-subtitle,
.section-heading p,
.contact-copy p {
  max-width: 42rem;
  color: #d6e1e8;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  color: #00131d;
  background: linear-gradient(135deg, var(--ice-strong), #5fcfff);
  box-shadow: 0 18px 44px rgba(95, 207, 255, 0.18);
}

.button-ghost {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(16px);
}

.button-whatsapp {
  color: #ffffff;
  border-color: rgba(37, 211, 102, 0.4);
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.2);
}

.button-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.55rem;
  fill: currentColor;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  color: #d7e6ee;
}

.trust-strip span {
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(16px);
}

.hero-panel,
.service-card,
.metric,
.why-item,
.review-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.095), rgba(255,255,255,0.035));
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.hero-panel {
  align-self: end;
  padding: 1.35rem;
}

.panel-kicker {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--ice);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
  line-height: 1.3;
}

.hero-panel p,
.metric p,
.service-card p,
.review-card p {
  color: var(--muted);
  line-height: 1.6;
}

.section {
  padding: clamp(4.8rem, 9vw, 8rem) 0;
}

.section-feature {
  width: min(1280px, calc(100% - 2rem));
}

.section-heading {
  display: grid;
  gap: 0.2rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.comparison-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(20rem, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.compare-card { min-width: 0; }

.compare-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.055);
  backdrop-filter: blur(16px);
}

.compare-title span {
  color: var(--ice);
  font-weight: 900;
}

.compare-title strong {
  color: var(--white);
  font-size: 1rem;
  text-align: right;
}

.comparison-layout > .compare-card {
  grid-column: auto;
}

.result-stack {
  grid-column: 1 / -1;
  grid-row: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-frame {
  position: relative;
  min-height: clamp(26rem, 42vw, 36rem);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(185, 240, 255, 0.22);
  background: #08111a;
  box-shadow: var(--shadow);
}

.compare-side {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  padding: 1.2rem;
}

.compare-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08) 0%, transparent 35%, rgba(0,0,0,0.72) 100%);
}

.compare-before {
  background:
    linear-gradient(135deg, rgba(16,22,29,0.02), rgba(34,40,48,0.02)),
    url("assets/terrassendach-before.jpeg") center / cover no-repeat;
}

.compare-after {
  clip-path: inset(0 0 0 58%);
  background:
    linear-gradient(135deg, rgba(5,18,29,0.04), rgba(133,221,255,0.1)),
    url("assets/terrassendach-after.jpeg") center / cover no-repeat;
}

.compare-after {
  justify-content: flex-end;
}

.compare-window .compare-before {
  background:
    linear-gradient(135deg, rgba(16,22,29,0.02), rgba(34,40,48,0.02)),
    url("assets/window-frame-before.jpeg") center 70% / cover no-repeat;
}

.compare-window .compare-after {
  background:
    linear-gradient(135deg, rgba(5,18,29,0.04), rgba(133,221,255,0.1)),
    url("assets/window-frame-after.jpeg") center bottom / cover no-repeat;
}

.compare-side span {
  position: relative;
  z-index: 1;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.44);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.compare-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.compare-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  z-index: 3;
  width: 2px;
  background: var(--ice-strong);
  box-shadow: 0 0 30px rgba(133,221,255,0.9);
}

.compare-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3.7rem;
  height: 3.7rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(185,240,255,0.8);
  border-radius: 50%;
  background: rgba(3,6,9,0.68);
  backdrop-filter: blur(16px);
}

.result-stack { display: grid; gap: 1rem; }

.metric {
  padding: 1.2rem;
  min-width: 0;
}

.metric-featured {
  background: linear-gradient(160deg, rgba(133,221,255,0.16), rgba(255,255,255,0.045));
  border-color: rgba(133, 221, 255, 0.34);
}

.metric span,
.why-item span {
  display: block;
  color: var(--ice);
  font-weight: 900;
  margin-bottom: 1.6rem;
}

.metric strong,
.why-item strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.metric p,
.why-item p {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.service-grid,
.why-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  min-height: 9.4rem;
  padding: 1.35rem 1.2rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(133,221,255,0.15), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(133,221,255,0.08), transparent 42%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(133, 221, 255, 0.46);
  background: linear-gradient(160deg, rgba(133,221,255,0.13), rgba(255,255,255,0.04));
}

.service-card:hover::after {
  opacity: 1;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 0 0 0.55rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.service-card p {
  margin-bottom: 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: start;
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-item {
  min-height: 10rem;
  padding: 1.15rem;
}

.work-section {
  width: min(1080px, calc(100% - 2rem));
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(14rem, 0.82fr) minmax(18rem, 1.18fr);
  gap: 1rem;
  align-items: stretch;
}

.work-photo {
  position: relative;
  min-height: 23rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(185, 240, 255, 0.18);
  border-radius: var(--radius);
  background: #07101a;
  box-shadow: var(--shadow);
}

.work-photo-feature {
  grid-column: 1 / -1;
  min-height: 28rem;
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
}

.work-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.72) 100%),
    radial-gradient(circle at 80% 12%, rgba(133, 221, 255, 0.16), transparent 18rem);
}

.work-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.46);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-weight: 800;
}

.review-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.review-card {
  min-height: 18rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.stars {
  margin-bottom: 1.35rem;
  color: #fbbc04;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-shadow: 0 0 18px rgba(251, 188, 4, 0.28);
}

.review-card strong {
  color: #dcebf2;
  margin-top: auto;
}

.review-name {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  margin-top: 0.7rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(251, 188, 4, 0.28);
  border-radius: var(--radius);
  background: rgba(251, 188, 4, 0.08);
}

.rating-summary span {
  color: #fbbc04;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  text-shadow: 0 0 18px rgba(251, 188, 4, 0.28);
}

.rating-summary strong {
  color: var(--white);
}

.process-section {
  width: min(1180px, calc(100% - 2rem));
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-step {
  min-height: 14rem;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,0.085), rgba(255,255,255,0.03));
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.process-step span {
  display: block;
  margin-bottom: 1.6rem;
  color: var(--ice);
  font-weight: 900;
}

.process-step strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
}

.process-step p {
  color: var(--muted);
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 1.18fr);
  gap: 1.25rem;
  align-items: start;
  padding: clamp(4rem, 7vw, 6rem);
  border: 1px solid rgba(185, 240, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 15% 20%, rgba(133,221,255,0.14), transparent 24rem),
    linear-gradient(145deg, rgba(8, 21, 33, 0.92), rgba(3, 6, 9, 0.98));
  box-shadow: var(--shadow);
}

.contact-copy {
  grid-column: 1 / -1;
  max-width: 58rem;
}

.contact-lines {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.contact-whatsapp {
  width: fit-content;
  margin-top: 1rem;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ice-strong);
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-lines svg {
  flex: 0 0 auto;
  width: 2.45rem;
  height: 2.45rem;
  padding: 0.62rem;
  border: 1px solid rgba(133, 221, 255, 0.34);
  border-radius: var(--radius);
  fill: var(--ice-strong);
  background: rgba(133, 221, 255, 0.1);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.contact-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  padding: 1rem;
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 0.48rem;
  color: #dce8ee;
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form label:nth-child(4),
.contact-form label:nth-child(6),
.file-field,
.contact-form button {
  grid-column: 1 / -1;
}

input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  background: rgba(2, 7, 12, 0.62);
  color: var(--white);
  padding: 0.95rem;
  font: inherit;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

textarea { resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: rgba(133, 221, 255, 0.72);
  box-shadow: 0 0 0 3px rgba(133, 221, 255, 0.14);
}

input[type="file"] {
  min-height: 3.4rem;
  cursor: pointer;
}

.whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.15rem;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 20px 56px rgba(37, 211, 102, 0.28);
  font-weight: 900;
}

.whatsapp svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0 5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.site-footer strong { color: var(--white); }

.site-footer nav {
  display: flex;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .nav-links { display: none; }

  .hero,
  .comparison-layout,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .comparison-layout > .compare-card,
  .result-stack {
    grid-column: auto;
    grid-row: auto;
  }

  .result-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric {
    padding: 1rem;
  }

  .metric span {
    margin-bottom: 1rem;
  }

  .metric strong {
    font-size: clamp(0.98rem, 4vw, 1.08rem);
  }

  .hero {
    align-items: end;
    padding-top: 8rem;
  }

  .hero-panel { max-width: 32rem; }

  .service-grid,
  .review-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .work-photo {
    min-height: 22rem;
  }

  .work-photo-feature {
    min-height: 25rem;
  }

}

@media (max-width: 640px) {
  .site-header {
    top: 0.75rem;
    width: calc(100% - 1rem);
  }

  .brand em { display: none; }
  .brand strong { display: none; }
  .brand-logo {
    width: 3.45rem;
    height: 2.35rem;
  }
  .nav-cta { padding-inline: 0.85rem; }

  .section-shell,
  .section,
  .section-feature {
    width: min(100% - 1rem, 1180px);
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.7rem);
  }

  .hero-title-lockup {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 1rem;
  }

  .hero-logo {
    width: min(18rem, 78vw);
    margin-inline: auto;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(3,6,9,0.45) 0%, rgba(3,6,9,0.93) 66%, #030609 100%),
      url("assets/crystal-clean-hero.png") center top / cover no-repeat;
  }

  .button {
    width: 100%;
  }

  .trust-strip span { flex: 1 1 100%; }

  .result-stack {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .why-grid,
  .review-grid,
  .process-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .rating-summary,
  .contact-whatsapp {
    width: 100%;
  }

  .rating-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-section {
    width: min(100% - 1rem, 1080px);
  }

  .work-photo {
    min-height: 20rem;
  }

  .work-photo-feature {
    min-height: 22rem;
  }

  .contact-section {
    padding: 3rem 1rem;
  }

  .site-footer {
    flex-direction: column;
  }
}

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