@charset "UTF-8";
/* ============================================================
   Toiture J.S Pro Inc. — Style "Blueprint" (v2)
   Same color tokens as v1, entirely new layout language:
   split hero, bracket-framed imagery, mono index labels,
   bento service grid, marquee tickers, diagonal dividers.
   ============================================================ */
:root {
  --charcoal: #1b1d1f;
  --charcoal-2: #24272a;
  --charcoal-3: #2f3336;
  --cream: #f5f1e8;
  --cream-2: #ece5d6;
  --paper: #fffdf9;
  --rust: #6a5746;
  --rust-dark: #4e3f33;
  --copper: #c08a3e;
  --steel: #52616b;
  --steel-light: #8a99a3;
  --white: #ffffff;
  --ink: #1b1d1f;
  --line: rgba(27, 29, 31, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);

  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "Space Mono", "Courier New", monospace;

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.02;
  margin: 0;
  text-transform: none;
}

.mono-tag {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--rust);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  text-transform: uppercase;
}

.mono-tag .num {
  color: var(--steel-light);
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  margin: 14px 0 20px;
  color: var(--charcoal);
}

.section-lede {
  font-size: 1.05rem;
  color: var(--steel);
  max-width: 560px;
  margin: 0 0 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.section-head-right {
  max-width: 340px;
  text-align: right;
  padding-bottom: 6px;
}

.section-head-right p {
  color: var(--steel);
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 16px 26px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
  border-color: var(--rust);
}
.btn-primary:hover {
  background: var(--rust-dark);
  border-color: var(--rust-dark);
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
}

.btn-block { width: 100%; justify-content: center; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}
.btn:hover .btn-arrow { gap: 14px; }

/* ============================================================
   Header / Nav — minimal
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 26px 0;
  transition: padding 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
  padding: 14px 0;
}

.site-header.is-scrolled .nav-logo,
.site-header.is-scrolled .nav-links a,
.site-header.is-scrolled .nav-phone,
.site-header.is-scrolled .lang-toggle button,
.site-header.is-scrolled .nav-toggle {
  color: var(--charcoal);
}

.site-header.is-scrolled .lang-toggle { border-color: var(--line); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img { height: 64px; width: auto; transition: height 0.3s ease; }
.site-header.is-scrolled .nav-logo img { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.nav-links a span.idx {
  color: var(--rust);
  margin-right: 6px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-light);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.lang-toggle button {
  background: none;
  border: none;
  color: var(--white);
  opacity: 0.55;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
}
.lang-toggle button.active { opacity: 1; color: var(--rust); }
.lang-toggle .sep { color: var(--steel-light); opacity: 0.5; }

.nav-phone {
  display: none;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}

/* ============================================================
   Hero — split screen
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  background: linear-gradient(rgba(27, 29, 31, 0.82), rgba(27, 29, 31, 0.95)), url("../assets/img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 0;
  padding-top: 90px;
}

.hero-left {
  padding: 40px 56px 40px 0;
  margin-left: max(28px, calc((100vw - var(--container)) / 2 + 28px));
  color: var(--white);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rust);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}
.hero-eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--rust);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--rust);
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--cream-2);
  max-width: 460px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.hero-specs {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  border-top: 1px solid var(--line-light);
  padding-top: 26px;
}

.hero-spec-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  display: block;
}

.hero-spec-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--steel-light);
  margin-top: 4px;
}

.hero-right {
  position: relative;
  height: 100%;
  min-height: 560px;
  padding: 40px 28px 40px 0;
}

.hero-frame {
  position: relative;
  height: 100%;
  min-height: 520px;
  border: 1px solid var(--line-light);
  padding: 18px;
}

.hero-frame video,
.hero-frame .hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-fallback {
  background: repeating-linear-gradient(115deg, #2b2f32 0 26px, #24272a 26px 52px);
}

.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--rust);
}
.corner.tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.corner.tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.corner.bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.corner.br { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.hero-frame-tag {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--rust);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  z-index: 3;
}

/* ============================================================
   Marquee ticker
   ============================================================ */
.ticker-strip {
  background: var(--rust);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
  z-index: 3;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: ticker 26s linear infinite;
}

.ticker-track span {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--white);
  padding: 0 26px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 26px;
}

.ticker-track span::after {
  content: "—";
  color: rgba(255, 255, 255, 0.5);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Section base
   ============================================================ */
.section { padding: 130px 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark .section-lede { color: var(--steel-light); }
.section-dark .section-head { border-bottom-color: var(--line-light); }
.section-dark .section-head-right p { color: var(--steel-light); }

/* ============================================================
   About — asymmetric
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: start;
}

.about-media {
  position: relative;
  border: 1px solid var(--line);
  padding: 14px;
}

.about-media video,
.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  background: var(--cream-2);
}

.about-media .corner { border-color: var(--rust); }

.about-text p {
  color: var(--steel);
  margin: 0 0 20px;
  font-size: 1.02rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.about-stat {
  flex: 1;
  min-width: 140px;
  padding: 24px 22px 0 0;
  border-right: 1px solid var(--line);
}
.about-stat:last-child { border-right: none; }

.about-stat .stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--charcoal);
  display: block;
}

.about-stat .stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--steel);
  margin-top: 6px;
  display: block;
}

/* ============================================================
   Services — bento grid
   ============================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(210px, auto);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.bento-item {
  background: var(--paper);
  padding: 34px 30px;
  position: relative;
  transition: background 0.25s ease, color 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-item.big {
  grid-column: span 2;
}

.bento-item:hover {
  background: var(--charcoal);
  color: var(--white);
}

.bento-item:hover .bento-desc { color: var(--cream-2); }
.bento-item:hover .mono-tag { color: var(--rust); }
.bento-item:hover .mono-tag .num { color: var(--steel-light); }

.bento-item h3 {
  font-size: 1.25rem;
  margin: 20px 0 10px;
  font-weight: 700;
}

.bento-desc {
  color: var(--steel);
  font-size: 0.92rem;
  transition: color 0.25s ease;
}

.bento-item .arrow {
  align-self: flex-end;
  font-size: 1.4rem;
  color: var(--rust);
  margin-top: 16px;
}
.bento::after {
  content: "";
  grid-column: span 2;
  background: url("../assets/img/bento-fill.webp") center/cover no-repeat;
  border: 1px solid var(--line);
}
/* ============================================================
   Process — connected timeline
   ============================================================ */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--line-light);
}

.process-step {
  padding-right: 30px;
  position: relative;
}

.process-dot {
  width: 22px;
  height: 22px;
  border: 2px solid var(--rust);
  border-radius: 50%;
  background: var(--charcoal);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.process-step p {
  color: var(--steel-light);
  font-size: 0.92rem;
}

/* ============================================================
   Réalisations — masonry-ish
   ============================================================ */
.masonry {
  columns: 3;
  column-gap: 18px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.06); }

.masonry-item .cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(0deg, rgba(27,29,31,0.88), transparent);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.masonry-item:hover .cap { opacity: 1; }

/* ============================================================
   Brand marquee (outlined logos)
   ============================================================ */
.brand-strip {
  background: var(--paper);
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.brand-strip-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.74rem;
  color: var(--steel);
  text-align: center;
  margin-bottom: 36px;
}

.brand-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: brandscroll 30s linear infinite;
}
.brand-track:hover { animation-play-state: paused; }

.brand-logo {
  border: 1px solid var(--line);
  padding: 20px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-track img {
  height: 30px;
  width: auto;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.25s ease;
}
.brand-track img:hover { filter: grayscale(0) opacity(1); }

@keyframes brandscroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   Contact + Quote — split, minimal underline form
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.contact-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.contact-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
}
.contact-list li:last-child { border-bottom: 1px solid var(--line); }

.contact-list .ci-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--steel);
}

.contact-list a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: right;
}
.contact-list a:hover { color: var(--rust); }

.contact-social {
  margin-top: 30px;
  display: flex;
  gap: 12px;
}
.contact-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: var(--charcoal);
  transition: all 0.2s ease;
}
.contact-social a:hover { background: var(--charcoal); color: var(--white); }

.quote-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 50px;
}

.quote-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.quote-panel .mono-tag { margin-bottom: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.form-group { margin-bottom: 26px; }
.form-group.full { grid-column: 1 / -1; }

label {
  display: block;
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: var(--steel);
  margin-bottom: 10px;
}

input, select, textarea {
  width: 100%;
  padding: 10px 2px;
  border: none;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  border-radius: 0;
  transition: border-color 0.2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--rust);
}
textarea { resize: vertical; min-height: 90px; }

.form-note {
  font-size: 0.8rem;
  color: var(--steel-light);
  margin-top: 18px;
  text-align: center;
}

/* ============================================================
   Footer — big CTA + minimal grid
   ============================================================ */
.cta-banner {
  background: var(--charcoal);
  color: var(--white);
  padding: 110px 0;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 30px;
}
.cta-banner .mono-tag { justify-content: center; display: flex; margin-bottom: 20px; }

.site-footer {
  background: var(--cream);
  padding: 70px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.footer-logo { height: 36px; margin-bottom: 18px; }
.footer-grid p { color: var(--steel); font-size: 0.92rem; max-width: 320px; }

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--charcoal);
}

.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--steel); text-decoration: none; font-size: 0.92rem; }
.footer-col a:hover { color: var(--rust); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================================
   Mobile call bar + drawer
   ============================================================ */
.mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 400;
  background: var(--rust);
}
.mobile-callbar a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px;
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.85rem;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.nav-drawer.is-open { transform: translateY(0); }
.nav-drawer a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
}
.nav-drawer-close {
  position: absolute;
  top: 24px; right: 24px;
  background: none; border: none;
  color: var(--white);
  font-size: 1.6rem;
  cursor: pointer;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { margin-left: 28px; padding-right: 28px; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .bento-item.big { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .masonry { columns: 2; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 84px 0; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-item.big { grid-column: span 2; }
  .process-row { grid-template-columns: 1fr 1fr; row-gap: 46px; }
  .process-row::before { display: none; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head-right { text-align: left; }
  .masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-panel { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .mobile-callbar { display: block; }
  body { padding-bottom: 56px; }
.nav-logo { flex-shrink: 0; }
  .nav-logo img { max-width: none; width: 170px; height: auto; }
  .site-header.is-scrolled .nav-logo img { width: 110px; }
}

@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
  .bento-item.big { grid-column: span 1; }
  .hero-specs { grid-template-columns: repeat(3, auto); gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brand-track, .ticker-track { animation: none; }
}
