/* ============================================================
   SACHRAAS ENTERPRISES — cinematic dark-stage system
   Per DESIGN.md: black canvas, achromatic palette, editorial
   serif display, weight-300 sans body, pill controls.
   ============================================================ */

:root {
  /* Colors */
  --color-void-black: #000000;
  --color-carbon: #202020;
  --color-graphite: #333333;
  --color-bone: #c0c0c0;
  --color-smoke: #999999;
  --color-ash: #b3b3b3;
  --color-fog: #cccccc;
  --color-chalk: #ffffff;
  --color-linen: #f5f5f0;

  /* Type — Fraunces stands in for Bradford, Hanken Grotesk for VisueltPro */
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-ui: 'Hanken Grotesk', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Spacing & layout */
  --page-max-width: 1280px;
  --section-gap: 96px;
  --element-gap: 16px;

  /* Radii — binary per system: 10px cards, 9999px pills */
  --radius-cards: 10px;
  --radius-pills: 9999px;

  /* Shadows */
  --shadow-xl: rgba(0, 0, 0, 0.35) 0px 10px 30px 0px, rgba(255, 255, 255, 0.08) 0px 1px 0px 0px inset;
  --shadow-lg: rgba(0, 0, 0, 0.15) 0px 4px 20px 0px;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-void-black);
  color: var(--color-chalk);
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
}

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

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

::selection { background: var(--color-linen); color: var(--color-void-black); }

/* ---------- Typography ---------- */
.serif {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
}

.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(52px, 9.5vw, 128px);
  line-height: 1.0;
  letter-spacing: -0.05em;
  color: var(--color-chalk);
}

.heading-lg {
  font-size: clamp(38px, 5.5vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: var(--color-chalk);
}

.meta {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-smoke);
}

.meta--dark { color: var(--color-graphite); }

.lede {
  max-width: 560px;
  margin: 24px auto 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-bone);
}

/* ---------- Buttons: pills only ---------- */
.btn {
  display: inline-block;
  border-radius: var(--radius-pills);
  padding: 16px 24px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  border: 0;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.btn--primary {
  background: var(--color-chalk);
  color: var(--color-void-black);
  box-shadow: var(--shadow-lg);
}
.btn--primary:hover { background: var(--color-linen); transform: translateY(-1px); }

.btn--ghost {
  background: transparent;
  color: var(--color-chalk);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover { border-color: var(--color-chalk); }

.btn--inverted {
  background: var(--color-void-black);
  color: var(--color-linen);
}
.btn--inverted:hover { background: var(--color-carbon); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background: transparent;
  transition: background-color .35s ease;
}
.nav.is-scrolled { background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(12px); }

.nav__logo { display: inline-flex; align-items: baseline; gap: 8px; }

.nav__wordmark {
  font-family: var(--font-ui);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--color-chalk);
  text-transform: lowercase;
}

.nav__bars { display: inline-flex; gap: 3px; align-self: center; }
.nav__bars i { display: block; width: 2px; height: 14px; background: var(--color-chalk); }

.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-bone);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--color-chalk); }

.nav .btn--ghost { padding: 12px 20px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  /* near-monochrome with the warm light source preserved */
  filter: grayscale(0.82) contrast(1.08) brightness(0.62);
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% 45%, transparent 30%, rgba(0,0,0,0.72) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.55) 80%, #000000 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--page-max-width);
  padding: 128px 24px 96px;
}

.hero__content .meta { color: var(--color-fog); }
.hero__content .display { margin-top: 24px; }

.hero__sub {
  max-width: 560px;
  margin: 28px auto 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-fog);
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollHint 2.2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Shared section shell ---------- */
.statement, .equipment, .process, .quote, .faq {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: var(--section-gap) 24px;
  text-align: center;
}

.statement .heading-lg,
.equipment .heading-lg,
.process .heading-lg,
.faq .heading-lg,
.quote .heading-lg { margin-top: 16px; }

/* ---------- FAQ ---------- */
.faq__list {
  margin: 56px auto 0;
  max-width: 760px;
  text-align: left;
  border-top: 1px solid var(--color-graphite);
}
.faq__item {
  border-bottom: 1px solid var(--color-graphite);
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 4px;
  font-size: 17px;
  font-weight: 400;
  color: var(--color-chalk);
  position: relative;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 300;
  color: var(--color-smoke);
  transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { color: var(--color-fog); }
.faq__item p {
  padding: 0 40px 24px 4px;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-ash);
}
.faq__item p a { color: var(--color-chalk); text-underline-offset: 3px; }

/* ---------- Stats ---------- */
.stats {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--color-graphite);
}

.stats__item { padding: 32px 16px 0; }
.stats__item + .stats__item { border-left: 1px solid var(--color-graphite); }

.stats__item dt {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-smoke);
}

.stats__item dd {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--color-chalk);
}
.stats__item dd span { color: var(--color-smoke); }

/* ---------- Equipment cards ---------- */
.cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.card {
  position: relative;
  border-radius: var(--radius-cards);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
  background: var(--color-carbon);
}

.card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.82) contrast(1.05) brightness(0.72);
  transition: transform .8s cubic-bezier(.2, .6, .2, 1), filter .8s ease;
}
.card:hover img { transform: scale(1.04); filter: grayscale(0.6) contrast(1.05) brightness(0.78); }

.badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 1;
  padding: 5px 11px;
  border-radius: var(--radius-pills);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: rgba(255, 255, 255, 0.08) 0 1px 0 inset;
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-chalk);
}

.card__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 1;
  padding: 19px;
  background: linear-gradient(to top, rgba(0,0,0,0.78), transparent);
}

.card__caption h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-chalk);
}

.card__caption p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--color-ash);
}

/* ---------- Inverted linen panel ---------- */
.panel {
  background: var(--color-linen);
  color: var(--color-void-black);
  padding: var(--section-gap) 24px;
  text-align: center;
}

.panel__inner { max-width: 720px; margin: 0 auto; }

.panel .heading-lg { color: var(--color-void-black); margin-top: 16px; }

.panel__body {
  margin: 24px auto 0;
  max-width: 560px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-graphite);
}

.panel .btn { margin-top: 40px; }

/* ---------- Process ---------- */
.process__steps {
  margin-top: 64px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.process__steps li {
  border-top: 1px solid var(--color-graphite);
  padding-top: 28px;
}

.process__num {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-smoke);
}

.process__steps h3 {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--color-chalk);
}

.process__steps p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-smoke);
}

/* ---------- Quote form ---------- */
.quote__form {
  margin: 64px auto 0;
  max-width: 720px;
  text-align: left;
  background: var(--color-carbon);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field { display: flex; flex-direction: column; gap: 8px; }

.field span {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-smoke);
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--color-chalk);
  background: var(--color-void-black);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius-cards);
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999999' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.field input::placeholder,
.field textarea::placeholder { color: var(--color-smoke); opacity: .7; }

.field input:focus,
.field select:focus,
.field textarea:focus { border-color: rgba(255, 255, 255, 0.5); }

.field textarea { resize: vertical; min-height: 120px; }

.quote__form .btn { align-self: flex-start; margin-top: 8px; }

.quote__note {
  font-size: 14px;
  color: var(--color-bone);
  min-height: 1.5em;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--color-graphite);
  margin-top: var(--section-gap);
  padding: 64px 24px 32px;
}

.footer__top {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__contact { text-align: right; font-size: 15px; line-height: 1.5; color: var(--color-bone); }
.footer__contact a:hover { color: var(--color-chalk); }

.footer__label {
  margin-top: 16px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-smoke);
}
.footer__label:first-child { margin-top: 0; }

.footer__bottom {
  max-width: var(--page-max-width);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--color-graphite);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.036em;
  color: var(--color-smoke);
}

/* ---------- Brands strip ---------- */
.brands {
  max-width: var(--page-max-width);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.brands__row {
  list-style: none;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-graphite);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
}

.brands__row li {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--color-smoke);
  transition: color .25s ease;
}
.brands__row li:hover { color: var(--color-chalk); }

/* ---------- Catalog ---------- */
.catalog__controls {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.catalog__search {
  flex: 1 1 380px;
  max-width: 560px;
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--color-chalk);
  background: var(--color-carbon);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius-pills);
  padding: 14px 24px;
  outline: none;
  transition: border-color .2s ease;
}
.catalog__search::placeholder { color: var(--color-smoke); opacity: .7; }
.catalog__search:focus { border-color: rgba(255, 255, 255, 0.5); }

.catalog__sort {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--color-chalk);
  background: var(--color-carbon);
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius-pills);
  padding: 14px 40px 14px 20px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999999' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
}

.catalog__filters {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.pill {
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: var(--color-bone);
  background: transparent;
  border: 1px solid var(--color-graphite);
  border-radius: var(--radius-pills);
  padding: 10px 18px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.pill span { color: var(--color-smoke); font-weight: 300; margin-left: 4px; }
.pill:hover { border-color: rgba(255, 255, 255, 0.5); color: var(--color-chalk); }
.pill.is-active { background: var(--color-chalk); color: var(--color-void-black); border-color: var(--color-chalk); }
.pill.is-active span { color: var(--color-graphite); }

.catalog__count {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-smoke);
}

.catalog__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}

.product {
  display: flex;
  flex-direction: column;
  font-family: var(--font-ui);
  text-align: left;
  background: var(--color-carbon);
  border: 0;
  border-radius: var(--radius-cards);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: pointer;
  padding: 0;
  transition: transform .35s cubic-bezier(.2, .6, .2, 1), box-shadow .35s ease;
  animation: productIn .5s cubic-bezier(.2, .6, .2, 1) both;
}
.product:hover { transform: translateY(-4px); }

@keyframes productIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.product__media {
  display: block;
  aspect-ratio: 1;
  background: #ffffff;
  overflow: hidden;
}
.product__media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform .5s cubic-bezier(.2, .6, .2, 1);
}
.product:hover .product__media img { transform: scale(1.05); }

.product__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 19px 19px;
}

.product__cat {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-smoke);
}

.product__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-chalk);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product__price {
  margin-top: 2px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--color-chalk);
}
.product__price em {
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  color: var(--color-smoke);
}

.catalog__more { margin-top: 40px; }

/* ---------- Product modal ---------- */
.modal { position: fixed; inset: 0; z-index: 200; }

.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}

.modal__card {
  position: relative;
  margin: 5vh auto;
  max-width: 920px;
  width: calc(100% - 32px);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-carbon);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  animation: modalIn .35s cubic-bezier(.2, .6, .2, 1);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 1;
  width: 40px; height: 40px;
  border: 0;
  border-radius: var(--radius-pills);
  background: rgba(0, 0, 0, 0.55);
  color: var(--color-chalk);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal__media {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.modal__media img { width: 100%; height: 100%; max-height: 560px; object-fit: contain; padding: 24px; }

.modal__body { padding: 32px; }
.modal__body .badge { position: static; }

.modal__title {
  margin-top: 16px;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-chalk);
  line-height: 1.3;
}

.modal__price {
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.025em;
  color: var(--color-chalk);
}
.modal__price em {
  font-family: var(--font-ui);
  font-style: normal;
  font-weight: 300;
  font-size: 13px;
  color: var(--color-smoke);
}

.modal__desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-bone);
}

.modal__specs { margin: 20px 0 24px; border-top: 1px solid var(--color-graphite); }
.modal__specs div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-graphite);
}
.modal__specs dt { font-size: 12px; font-weight: 500; color: var(--color-smoke); text-transform: uppercase; letter-spacing: 0.05em; }
.modal__specs dd { font-size: 13px; font-weight: 300; color: var(--color-fog); text-align: right; }

/* ---------- Reviews marquee ---------- */
.reviews {
  max-width: 100%;
  overflow: hidden;
  padding: var(--section-gap) 0;
  text-align: center;
}
.reviews .meta, .reviews .heading-lg, .reviews .lede { padding: 0 24px; }
.reviews .heading-lg { margin-top: 16px; }
.reviews .lede strong { font-weight: 500; color: var(--color-chalk); }

.reviews__marquee {
  margin-top: 48px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.reviews__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.reviews__marquee:hover .reviews__track { animation-play-state: paused; }

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

.review {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  background: var(--color-carbon);
  border-radius: var(--radius-cards);
  box-shadow: var(--shadow-xl);
  padding: 19px 24px;
  min-width: 240px;
}

.review__stars { font-size: 12px; letter-spacing: 0.2em; color: var(--color-chalk); }
.review__product { font-size: 15px; font-weight: 500; letter-spacing: -0.02em; color: var(--color-chalk); }
.review__who { font-size: 12px; font-weight: 300; color: var(--color-smoke); }

/* ---------- Footer tag ---------- */
.footer__tag {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-smoke);
}

.quote__tel { color: var(--color-chalk); border-bottom: 1px solid var(--color-graphite); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2, .6, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  .card img { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats__item:nth-child(3) { border-left: 0; }
  .stats__item { padding-bottom: 24px; }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .modal__card { grid-template-columns: 1fr; margin: 4vh auto; }
  .modal__media { min-height: 240px; }
  .modal__media img { max-height: 320px; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .quote__form { padding: 24px; }
  .footer__top { flex-direction: column; }
  .footer__contact { text-align: left; }
  .stats { grid-template-columns: 1fr 1fr; }
  .catalog__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product__info { padding: 12px 14px 14px; }
  .product__name { font-size: 13px; }
  .product__price { font-size: 16px; }
}
