/* ============================================================
   TOLVA ROASTERS — styles
   Tokens from docs/BRIEF.md §6. Dark base, light footer reveal.
   ============================================================ */

:root {
  --ink: #0B0A08;
  --ink-soft: #14120E;
  --bone: #F2EDE4;
  --ember: #FF4D00;
  --smoke: #8A857C;
  --line: rgba(242, 237, 228, 0.14);
  --line-dark: rgba(11, 10, 8, 0.16);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-text: "Inter", system-ui, sans-serif;

  --radius: 24px;
  --pad-x: clamp(20px, 4vw, 64px);

  --step-giant: clamp(3.4rem, 11.5vw, 11rem);
  --step-h2: clamp(2.2rem, 6vw, 4.8rem);
  --step-h3: clamp(1.35rem, 2.6vw, 2.1rem);
  --step-body: clamp(1rem, 1.1vw, 1.125rem);
  --step-small: 0.875rem;

  --footer-h: 100vh; /* overwritten by JS measurement */
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-text);
  font-size: var(--step-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

::selection { background: var(--ember); color: var(--ink); }

/* ============ Footer reveal architecture ============ */

.site-main {
  position: relative;
  z-index: 1;
  background: var(--ink);
  border-radius: 0 0 var(--radius) var(--radius);
  margin-bottom: var(--footer-h);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.55);
}

.site-footer {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 0;
  background: var(--bone);
  color: var(--ink);
}

/* ============ Header ============ */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  mix-blend-mode: difference;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.header-actions { display: flex; align-items: center; gap: 12px; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 0.25s, background-color 0.25s;
}
.icon-btn svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.icon-btn svg .dot { fill: currentColor; stroke: none; }
.icon-btn:hover { border-color: var(--bone); background: rgba(242, 237, 228, 0.08); }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: border-color 0.25s, background-color 0.25s;
}
.menu-btn:hover { border-color: var(--bone); background: rgba(242, 237, 228, 0.08); }
.menu-lines { display: inline-flex; flex-direction: column; gap: 5px; }
.menu-lines i {
  width: 18px; height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-btn[aria-expanded="true"] .menu-lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ============ Overlay menu ============ */

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background: rgba(11, 10, 8, 0.96);
  backdrop-filter: blur(8px);
}
.site-menu[hidden] { display: none; }
.site-menu ul { display: grid; gap: clamp(8px, 2vh, 20px); text-align: center; }
.site-menu a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--smoke);
  transition: color 0.25s;
}
.site-menu a:hover, .site-menu a:focus-visible { color: var(--ember); }

/* ============ Hero ============ */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 120px var(--pad-x) 60px;
  overflow: clip;
}

.hero-media {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, -50%);
  width: min(38vw, 460px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 1;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: var(--step-giant);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
  mix-blend-mode: difference;
}
.hero-line { display: inline-block; }

.hero-sub {
  position: absolute;
  z-index: 2;
  bottom: clamp(88px, 14vh, 130px);
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--smoke);
  white-space: nowrap;
}

.hero-socials {
  position: absolute;
  z-index: 2;
  left: var(--pad-x);
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.hero-mail {
  position: absolute;
  z-index: 2;
  right: var(--pad-x);
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: border-color 0.25s, color 0.25s;
}
.hero-mail svg {
  width: 18px; height: 18px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.hero-mail:hover { border-color: var(--ember); color: var(--ember); }

/* ============ Image marquee ============ */

.marquee {
  position: relative;
  padding: clamp(60px, 10vh, 120px) 0;
  overflow: clip;
}

.marquee-ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 20rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 237, 228, 0.12);
  pointer-events: none;
  user-select: none;
}

.marquee-rows { display: grid; gap: clamp(14px, 2vw, 24px); }

.marquee-row {
  display: flex;
  gap: clamp(14px, 2vw, 24px);
  width: max-content;
}
.marquee-row figure {
  width: clamp(180px, 22vw, 320px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  flex: none;
}
.marquee-row img { width: 100%; height: 100%; object-fit: cover; }

/* ============ About ============ */

.about {
  display: grid;
  grid-template-columns: 1fr minmax(0, 1.4fr);
  grid-template-areas: "title title" "media copy";
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(80px, 14vh, 160px) var(--pad-x);
  max-width: 1240px;
  margin: 0 auto;
}

.about-title {
  grid-area: title;
  font-family: var(--font-display);
  font-size: var(--step-h2);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.about-media {
  grid-area: media;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 420px;
}
.about-media img { width: 100%; height: auto; }

.about-copy {
  grid-area: copy;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  line-height: 1.5;
  font-weight: 400;
  color: var(--bone);
  max-width: 26em;
}

/* ============ Current lots (pinned carousel) ============ */

.lots { padding-top: clamp(60px, 10vh, 140px); }

.lots-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 0 var(--pad-x) clamp(32px, 6vh, 64px);
}

.lots-title {
  font-family: var(--font-display);
  font-size: var(--step-giant);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.lots-head-media {
  width: clamp(120px, 14vw, 210px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  flex: none;
}
.lots-head-media img { width: 100%; height: 100%; object-fit: cover; }

.lots-pin {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  perspective: 1400px;
}

.lots-track {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: 0 var(--pad-x);
  width: max-content;
  transform-style: preserve-3d;
}

.lot-card {
  position: relative;
  width: clamp(240px, 30vw, 420px);
  flex: none;
  transform-style: preserve-3d;
}
.lot-card > img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.lot-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(11, 10, 8, 0.72);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lot-name {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 600;
  text-transform: uppercase;
}

.lot-more {
  position: absolute;
  right: 16px;
  bottom: 72px;
  width: clamp(72px, 7vw, 96px);
  height: clamp(72px, 7vw, 96px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 10, 8, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s, transform 0.35s;
}
.lot-card.is-center .lot-more,
.lot-card:hover .lot-more,
.lot-more:focus-visible { opacity: 1; transform: scale(1); }

.spin-text { width: 100%; height: 100%; animation: spin 12s linear infinite; }
.spin-text text {
  fill: var(--bone);
  font-size: 11.5px;
  font-family: var(--font-text);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(1turn); } }

.lot-card--all {
  display: grid;
  place-items: center;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: var(--step-h3);
  font-weight: 600;
  transition: border-color 0.3s, color 0.3s;
}
.lot-card--all span { display: inline-flex; align-items: center; gap: 12px; }
.lot-card--all svg {
  width: 0.9em; height: 0.9em;
  fill: none; stroke: currentColor;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.lot-card--all:hover { border-color: var(--ember); color: var(--ember); }

/* ============ Services ============ */

.services {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 100px);
  padding: clamp(90px, 16vh, 180px) var(--pad-x);
  max-width: 1240px;
  margin: 0 auto;
}

.services-media {
  position: sticky;
  top: 12vh;
  align-self: start;
  aspect-ratio: 3 / 4;
  max-height: 76vh;
  border-radius: var(--radius);
  overflow: hidden;
}
.services-media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.services-media img.is-active { opacity: 1; }

.section-label {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: clamp(24px, 4vh, 48px);
}

.service {
  padding: clamp(28px, 5vh, 48px) 0;
  border-top: 1px solid var(--line);
  opacity: 0.35;
  transition: opacity 0.4s;
}
.service:last-child { border-bottom: 1px solid var(--line); }
.service.is-active { opacity: 1; }

.service h3 {
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.service-num {
  font-size: 0.5em;
  font-weight: 500;
  color: var(--ember);
}
.service p {
  margin-top: 14px;
  max-width: 34em;
  color: var(--smoke);
}

/* ============ Cupping (holographic foil cards) ============ */

.cupping { padding: clamp(60px, 10vh, 140px) 0 0; }

.cupping-title {
  font-family: var(--font-display);
  font-size: var(--step-h2);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 var(--pad-x) clamp(28px, 5vh, 56px);
}

.cupping-pin {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
}

.cupping-track {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  padding: 0 var(--pad-x);
  width: max-content;
}

.foil-card { width: clamp(230px, 26vw, 360px); flex: none; }

.foil-art {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(120% 90% at 20% 10%,
      hsl(var(--foil-hue) 74% 56% / 0.85),
      hsl(calc(var(--foil-hue) + 22) 68% 48% / 0.55) 40%,
      hsl(calc(var(--foil-hue) - 14) 60% 34% / 0.5) 75%,
      hsl(var(--foil-hue) 55% 16% / 0.92)),
    var(--ink-soft);
}
.foil-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.14) 0 2px,
    rgba(255, 255, 255, 0) 2px 7px
  );
  mix-blend-mode: overlay;
}
.foil-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.32), rgba(255,255,255,0) 42%);
}

.foil-score {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: var(--ink);
  mix-blend-mode: screen;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.foil-card > p {
  margin-top: 14px;
  font-size: var(--step-small);
  color: var(--smoke);
}

/* ============ Origin partners ============ */

.partners {
  padding: clamp(90px, 16vh, 180px) var(--pad-x);
  max-width: 1240px;
  margin: 0 auto;
}

.partner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 24px;
  padding: clamp(24px, 4vh, 40px) 0;
  border-top: 1px solid var(--line);
}
.partners-list .partner:last-child { border-bottom: 1px solid var(--line); }

.partner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.partner div > p { color: var(--smoke); font-size: var(--step-small); margin-top: 6px; }

.partner-more {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 0.25s, color 0.25s;
}
.partner-more:hover { border-color: var(--ember); color: var(--ember); }
.partner-more[aria-expanded="true"] { border-color: var(--ember); color: var(--ember); }

.partner-detail {
  grid-column: 1 / -1;
  max-width: 46em;
  color: var(--smoke);
}

/* ============ Brew methods ============ */

.methods {
  padding: 0 var(--pad-x) clamp(90px, 16vh, 180px);
  max-width: 1240px;
  margin: 0 auto;
}

.methods-title {
  font-family: var(--font-display);
  font-size: var(--step-h2);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: clamp(28px, 5vh, 56px);
}

.pill-list { display: flex; flex-wrap: wrap; gap: 14px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
}
.pill svg {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.pill--accent { border-color: var(--ember); color: var(--ember); }

/* ============ Reviews ============ */

.reviews { padding: 0 0 clamp(110px, 18vh, 200px); overflow: clip; }

.reviews-title {
  font-family: var(--font-display);
  font-size: var(--step-h2);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 var(--pad-x) clamp(28px, 5vh, 56px);
  max-width: 1240px;
  margin: 0 auto;
}

.reviews-marquee {
  overflow: clip;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.reviews-row {
  display: flex;
  gap: clamp(18px, 2.5vw, 32px);
  width: max-content;
  animation: reviews-scroll 55s linear infinite;
}
.reviews-marquee:hover .reviews-row { animation-play-state: paused; }
@keyframes reviews-scroll { to { transform: translateX(-50%); } }

.review-card {
  width: clamp(300px, 32vw, 440px);
  flex: none;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-soft);
}

.review-card header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.review-card header strong { display: block; font-size: 1rem; }
.review-card header span:not(.avatar) { font-size: 0.8rem; color: var(--smoke); }

.avatar {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  flex: none;
  border-radius: 50%;
  background: var(--a, var(--ember));
  color: var(--ink);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.review-card blockquote {
  color: var(--smoke);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* ============ Footer ============ */

.site-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding: clamp(80px, 14vh, 150px) var(--pad-x) 40px;
}

.footer-cta { text-align: center; }

.footer-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 8.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1;
}
.footer-title span { display: inline-block; }

.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 4vh, 44px);
  height: 52px;
  padding: 0 26px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-weight: 500;
  transition: border-color 0.25s, color 0.25s;
}
.footer-mail svg {
  width: 20px; height: 20px;
  fill: none; stroke: currentColor;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.footer-mail:hover { border-color: var(--ember); color: var(--ember); }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: end;
  margin-top: clamp(60px, 10vh, 120px);
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}

.footer-grid h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 10, 8, 0.5);
  margin-bottom: 16px;
}

.footer-pages ul { display: grid; gap: 8px; }
.footer-pages a { font-weight: 500; transition: color 0.25s; }
.footer-pages a:hover { color: var(--ember); }

.footer-socials ul { display: flex; gap: 10px; }
.icon-btn--light { border-color: var(--line-dark); }
.icon-btn--light:hover { border-color: var(--ink); background: rgba(11, 10, 8, 0.06); }

.footer-brand { text-align: right; }
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.footer-wordmark span {
  display: block;
  font-family: var(--font-text);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(11, 10, 8, 0.5);
  margin-top: 4px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-weight: 500;
  transition: background-color 0.25s;
}
.btn-dark:hover { background: var(--ember); color: var(--ink); }

/* ============ Responsive ============ */

@media (max-width: 1024px) {
  .services { grid-template-columns: 1fr; }
  .services-media { position: relative; top: 0; max-width: 480px; }
}

@media (max-width: 760px) {
  .hero-media { width: min(64vw, 340px); }
  .hero-sub { bottom: 84px; }
  .hero-socials { bottom: 24px; }
  .hero { padding-bottom: 96px; }
  .hero-mail { bottom: 24px; padding: 0 14px; font-size: 0.78rem; }

  .about { grid-template-columns: 1fr; grid-template-areas: "title" "media" "copy"; }
  .about-media { max-width: 320px; }

  .lots-head { flex-direction: column; align-items: flex-start; }

  .partner { grid-template-columns: 1fr; align-items: start; }
  .partner-more { justify-self: start; }

  .footer-grid { grid-template-columns: 1fr; align-items: start; gap: 32px; }
  .footer-brand { text-align: left; }
}

@media (max-width: 400px) {
  .menu-btn-label { display: none; }
  .menu-btn { padding: 0 14px; }
}

/* ============ Reduced motion ============ */

@media (prefers-reduced-motion: reduce) {
  .spin-text { animation: none; }
  .reviews-row { animation: none; flex-wrap: wrap; width: auto; padding: 0 var(--pad-x); }
  .reviews-marquee { mask-image: none; -webkit-mask-image: none; }
  .lot-more { opacity: 1; transform: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
