.zq-page {
  --zq-ink: #171717;
  --zq-muted: #555555;
  --zq-bg: #faf8f3;
  --zq-card: #ffffff;
  --zq-soft: #eef2ea;
  --zq-accent: #5f6f52;
  --zq-accent-light: #7a8a72;
  --zq-warm: #d6b88d;
  --zq-line: #e5e1d8;
  --zq-footer: #111111;
  --zq-radius: 8px;
  --zq-shadow: 0 24px 70px rgba(23, 23, 23, 0.08);
  color: var(--zq-ink);
  background: var(--zq-bg);
  overflow: hidden;
}

.zq-page * {
  box-sizing: border-box;
}

.zq-page img {
  display: block;
  max-width: 100%;
}

.zq-container {
  width: min(100% - 40px, 1280px);
  margin-inline: auto;
}

.zq-section {
  position: relative;
  padding: 112px 0;
}

.zq-section--soft {
  background: var(--zq-soft);
}

.zq-section--white {
  background: #ffffff;
}

.zq-kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(95, 111, 82, 0.22);
  border-radius: 999px;
  color: var(--zq-accent);
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.zq-h1,
.zq-h2,
.zq-h3,
.zq-h4 {
  margin: 0;
  color: var(--zq-ink);
  font-family: var(--sort-title-font), Arial, sans-serif;
  font-weight: 650;
  letter-spacing: 0;
}

.zq-h1 {
  max-width: 880px;
  font-size: 6.25rem;
  line-height: 0.98;
}

.zq-h2 {
  max-width: 880px;
  font-size: 4.25rem;
  line-height: 1.02;
}

.zq-h3 {
  font-size: 2rem;
  line-height: 1.12;
}

.zq-h4 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.zq-text {
  margin: 18px 0 0;
  color: var(--zq-muted);
  font-size: 1.125rem;
  line-height: 1.62;
}

.zq-text--large {
  max-width: 760px;
  font-size: 1.3rem;
  line-height: 1.58;
}

.zq-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.zq-section-head .zq-kicker {
  margin-bottom: 18px;
}

.zq-section-head .zq-text {
  margin-bottom: 6px;
}

.zq-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.zq-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition: background-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

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

.zq-button--primary {
  color: #ffffff;
  background: var(--zq-ink);
  box-shadow: 0 16px 34px rgba(23, 23, 23, 0.16);
}

.zq-button--primary:hover {
  background: var(--zq-accent);
}

.zq-button--secondary {
  border: 1px solid var(--zq-line);
  color: var(--zq-ink);
  background: rgba(255, 255, 255, 0.72);
}

.zq-card {
  border: 1px solid var(--zq-line);
  border-radius: var(--zq-radius);
  background: var(--zq-card);
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.zq-card:hover {
  border-color: rgba(95, 111, 82, 0.28);
  box-shadow: var(--zq-shadow);
  transform: translateY(-3px);
}

.zq-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--zq-radius);
  background: #f2f0ea;
}

.zq-media img,
.zq-media .zq-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.zq-card:hover .zq-media img,
.zq-card:hover .zq-media .zq-image,
.zq-media:hover img,
.zq-media:hover .zq-image {
  transform: translateY(-4px) scale(1.015);
}

.zq-image--contain {
  object-fit: contain !important;
}

.zq-placeholder {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 26px;
  border: 1px dashed rgba(95, 111, 82, 0.38);
  border-radius: var(--zq-radius);
  color: var(--zq-accent);
  background:
    linear-gradient(135deg, rgba(250, 248, 243, 0.92), rgba(238, 242, 234, 0.92)),
    repeating-linear-gradient(45deg, rgba(95, 111, 82, 0.08) 0, rgba(95, 111, 82, 0.08) 1px, transparent 1px, transparent 18px);
  text-align: center;
}

.zq-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: var(--zq-ink);
  font-size: 1rem;
  line-height: 1.25;
}

.zq-placeholder span {
  display: block;
  max-width: 460px;
  color: var(--zq-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

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

.zq-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.zq-stat {
  padding: 16px;
  border-top: 1px solid var(--zq-line);
}

.zq-stat strong {
  display: block;
  color: var(--zq-ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

.zq-stat span {
  display: block;
  margin-top: 4px;
  color: var(--zq-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.zq-fine-print {
  color: var(--zq-muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

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

  .zq-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1199px) {
  .zq-h1 {
    font-size: 4.85rem;
  }

  .zq-h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 959px) {
  .zq-container {
    width: min(100% - 28px, 720px);
  }

  .zq-section {
    padding: 78px 0;
  }

  .zq-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .zq-h1 {
    font-size: 3.55rem;
    line-height: 1;
  }

  .zq-h2 {
    font-size: 2.8rem;
    line-height: 1.04;
  }

  .zq-h3 {
    font-size: 1.62rem;
  }

  .zq-text,
  .zq-text--large {
    font-size: 1.05rem;
  }

  .zq-button {
    min-height: 52px;
  }
}

@media (max-width: 620px) {
  .zq-container {
    width: min(100% - 24px, 520px);
  }

  .zq-section {
    padding: 66px 0;
  }

  .zq-h1 {
    font-size: 2.75rem;
  }

  .zq-h2 {
    font-size: 2.22rem;
  }

  .zq-h3 {
    font-size: 1.45rem;
  }

  .zq-button-row,
  .zq-button {
    width: 100%;
  }

  .zq-stat-row {
    grid-template-columns: 1fr;
  }

  .zq-stat {
    padding-inline: 0;
  }
}
