*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --ink: #1a120c;
  --bark: #3d2a1a;
  --wood: #6b4423;
  --copper: #c4703a;
  --copper-light: #e8a066;
  --cream: #f7f0e6;
  --sand: #ebe0d0;

  /* aliases used across the stylesheet */
  --forest: var(--bark);
  --forest-deep: #1a120c;
  --forest-soft: var(--wood);
  --amber: var(--copper);
  --amber-hover: var(--copper-light);
  --amber-soft: rgba(196, 112, 58, 0.14);
  --mist: var(--cream);
  --mist-2: var(--sand);
  --ink-soft: rgba(26, 18, 12, 0.62);
  --ink-mute: rgba(26, 18, 12, 0.42);
  --paper: #fffcf8;
  --line: rgba(26, 18, 12, 0.1);
  --line-dark: rgba(255, 255, 255, 0.14);
  --radius: 4px;
  --radius-lg: 12px;
  --radius-pill: 999px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow: 0 20px 50px rgba(26, 18, 12, 0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--mist);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.is-menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; color: inherit; cursor: pointer; font: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section--mist {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(196, 112, 58, 0.08), transparent 55%),
    linear-gradient(180deg, #faf4eb 0%, var(--cream) 100%);
}
.section--forest {
  background:
    radial-gradient(ellipse 70% 60% at 90% 20%, rgba(196, 112, 58, 0.18), transparent 50%),
    linear-gradient(165deg, #4a3424 0%, #1a120c 100%);
  color: #F7F0E6;
}
.section__header { max-width: 640px; margin-bottom: 56px; }
.section__header--center { text-align: center; margin-left: auto; margin-right: auto; }
.section__header h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 14px;
}
.section--forest .section__header h2 { color: #FFFCFA; }
.section__header p {
  font-size: 17px;
  color: var(--ink-soft);
}
.section--forest .section__header p { color: rgba(255, 252, 250, 0.62); }

.overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
}
.overline span {
  width: 28px;
  height: 1px;
  background: var(--amber);
}

/* HEADER */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 16px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.header.is-scrolled {
  background: rgba(26, 18, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-dark);
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand svg { width: 30px; height: 30px; fill: var(--amber); }
.brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: #FFFCFA;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.brand small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 10px;
  color: rgba(255, 252, 250, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 252, 250, 0.58);
  transition: color .2s;
}
.nav a:hover,
.nav a.active { color: #FFFCFA; }
.header__right { display: flex; align-items: center; gap: 18px; }
.phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: 600;
  font-size: 14px;
  color: #FFFCFA;
  line-height: 1.25;
}
.phone small {
  font-weight: 400;
  font-size: 10px;
  color: rgba(255, 252, 250, 0.4);
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  cursor: pointer;
}
.button--accent {
  background: var(--copper);
  color: #fff;
}
.button--accent:hover {
  background: var(--copper-light);
  color: var(--ink);
  transform: translateY(-1px);
}
.button--ghost {
  border: 1px solid rgba(255, 252, 250, 0.4);
  color: #FFFCFA;
  background: transparent;
}
.button--ghost:hover { border-color: rgba(255, 252, 250, 0.7); background: rgba(255, 252, 250, 0.06); }
.button--outline {
  border: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.button--outline:hover { border-color: var(--copper); color: var(--copper); }
.button--small { padding: 10px 18px; font-size: 13px; }
.button--big { padding: 18px 36px; font-size: 15px; }
.button--full { width: 100%; }
.menu { display: none; flex-direction: column; gap: 6px; padding: 6px; }
.menu i { display: block; width: 22px; height: 2px; background: #FFFCFA; border-radius: 2px; transition: transform .25s; }

/* HERO */
/* ——— Hero 1:1 from Netlify reference ——— */
.hero {
  position: relative;
  min-height: 105vh;
  min-height: 105dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(96px, 18vh, 200px);
  color: #fff;
  overflow: hidden;
  background: #1a120c;
}
.hero__media {
  position: absolute;
  inset: 0;
  background: url("img/hero.jpg") center / cover no-repeat;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 18, 12, 0.9) 0%,
    rgba(26, 18, 12, 0.5) 50%,
    rgba(26, 18, 12, 0.18) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 24px 40px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.hero__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper-light);
  margin-bottom: 24px;
}
.hero__tag a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232, 160, 102, 0.45);
}
.hero__tag a:hover { text-decoration-color: var(--copper-light); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(46px, 7.8vw, 92px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 11ch;
  margin-bottom: 28px;
  color: #fff;
}
.hero__lead {
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.55;
  max-width: 560px;
  opacity: 0.88;
  margin-bottom: 40px;
  color: #fff;
}
.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 32px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.hero__btn:hover { transform: translateY(-2px); }
.hero__btn--fill {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 12px 40px rgba(196, 112, 58, 0.35);
}
.hero__btn--fill:hover { background: var(--copper-light); color: var(--ink); }
.hero__btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero__btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 48px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.hero__stats div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--copper-light);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.hero__stats div span {
  font-size: 14px;
  opacity: 0.7;
  color: #fff;
}

/* PROOF (below fold) */
.proof {
  padding: 36px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.proof__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  border-left: 2px solid var(--amber);
}
.proof__item strong {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--copper);
  letter-spacing: -0.02em;
}
.proof__item span {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
}

/* TICKER under hero */
.ticker {
  background: var(--bark);
  color: var(--cream);
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 3px solid var(--copper);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: tick 28s linear infinite;
}
.ticker-track span {
  padding: 0 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track span::before {
  content: "◆";
  margin-right: 12px;
  color: var(--copper);
  font-size: 8px;
  vertical-align: middle;
}
@keyframes tick {
  to { transform: translateX(-50%); }
}

/* MARQUEE (legacy) */
.marquee {
  overflow: hidden;
  padding: 18px 0;
  background: var(--forest);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.marquee__track {
  display: flex;
  gap: 56px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee__track span {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 252, 250, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* FORMATS */
.formats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1200px) {
  .formats__grid { grid-template-columns: repeat(3, 1fr); }
}
.formats__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 920px;
  margin: 0 auto;
}
.formats__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s;
}
a.formats__card:hover { transform: translateY(-4px); }
.formats__card-media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--mist-2);
}
.formats__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transform-origin: center;
}

.section__more {
  margin-top: 40px;
  text-align: center;
}
.formats__card-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.formats__card-body p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.55;
}
.formats__price {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 16px;
}

/* WORKS */
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.works__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: zoom-in;
}
.works__item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .55s ease;
}
.works__item:hover img { transform: scale(1.05); }
.works__item p {
  position: absolute;
  inset: auto 0 0;
  padding: 40px 16px 16px;
  background: linear-gradient(0deg, rgba(18, 32, 26, 0.85) 0%, transparent 100%);
  font-size: 13px;
  font-weight: 500;
  color: #FFFCFA;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.works__item:hover p { opacity: 1; transform: translateY(0); }

/* INCLUDED */
.included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.included__item { padding: 0; }
.included__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: rgba(184, 137, 90, 0.35);
  margin-bottom: 12px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.included__item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.included__item p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* PROCESS */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, var(--amber), rgba(184, 137, 90, 0.15));
}
.process__step { position: relative; }
.process__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--amber);
  background: var(--mist);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.process__step p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 240px;
}

/* CONFIGS — interactive cards OK */
.configs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.configs__card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.configs__card--hit {
  border-color: var(--amber);
  background: linear-gradient(180deg, #FFF9F2 0%, var(--paper) 100%);
}
.configs__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  width: fit-content;
}
.configs__card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.configs__price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 20px;
}
.configs__card ul { list-style: none; margin-bottom: 24px; flex: 1; }
.configs__card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-soft);
}
.configs__card li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  margin-right: 10px;
  vertical-align: middle;
}

/* REVIEWS — Netlify marquee */
.reviews-sec {
  padding: 64px 0 72px;
  background: var(--sand);
  overflow: hidden;
}
.reviews-sec__head { margin-bottom: 36px; }
.reviews-sec__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.reviews-sec__head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  max-width: none;
  color: var(--ink);
}
.reviews-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.reviews-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviewsMarquee 42s linear infinite;
}
@keyframes reviewsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 min(320px, 82vw);
  padding: 22px 24px;
  background: var(--cream);
  border: 1px solid rgba(61, 42, 26, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(26, 18, 12, 0.06);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(145deg, var(--wood), var(--copper));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: grid;
  place-items: center;
}
.review-meta strong { display: block; font-size: 14px; color: var(--ink); }
.review-meta span { font-size: 11px; color: #7a6b5c; }
.review-stars {
  color: var(--copper);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 13px;
}
.review-text {
  font-size: 14px;
  color: #4a3f36;
  line-height: 1.55;
}
.review-badge {
  display: inline-flex;
  margin-top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(196, 112, 58, 0.12);
  font-size: 10px;
  font-weight: 700;
  color: var(--wood);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* FAQ */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq__item { border-bottom: 1px solid var(--line); background: transparent; overflow: hidden; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 16px;
}
.faq__q span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
  flex-shrink: 0;
  transition: border-color .3s, background .3s;
}
.faq__q span::before,
.faq__q span::after {
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}
.faq__q span::before { width: 10px; height: 1.5px; top: 10px; left: 5px; }
.faq__q span::after { width: 1.5px; height: 10px; top: 5.5px; left: 9.5px; transition: opacity .3s, transform .3s; }
.faq__item.is-open .faq__q span { border-color: var(--amber); background: var(--amber-soft); }
.faq__item.is-open .faq__q span::after { opacity: 0; transform: rotate(90deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__item.is-open .faq__a { max-height: 220px; }
.faq__a p {
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* CTA */
.cta {
  background:
    linear-gradient(135deg, rgba(196, 112, 58, 0.22), transparent 50%),
    linear-gradient(165deg, #4a3424 0%, #1a120c 100%);
  border-top: 1px solid rgba(196, 112, 58, 0.25);
}
.cta__inner { text-align: center; }
.cta__content h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: #FFFCFA;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.cta__content p {
  font-size: 16px;
  color: rgba(255, 252, 250, 0.6);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  padding: 32px 0;
  background: var(--forest-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand { display: flex; align-items: center; gap: 8px; }
.footer__brand svg { width: 22px; height: 22px; fill: var(--amber); }
.footer__brand span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: #FFFCFA;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: rgba(255, 252, 250, 0.35);
}
.footer__info a {
  color: rgba(255, 252, 250, 0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__info a:hover { color: var(--copper-light); }
.footer__contacts { display: flex; flex-direction: column; gap: 4px; }
.footer__contacts a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 252, 250, 0.6);
}
.footer__contacts a:hover { color: var(--amber); }
.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.footer__social a {
  font-size: 12px;
  color: var(--copper-light) !important;
}

/* FAB */
.fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 90;
}
.fab__btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(26, 18, 12, 0.28);
  transition: transform .2s;
}
.fab__btn:hover { transform: scale(1.08); }
.fab__btn--phone { background: var(--copper); }
.fab__btn--wa { background: #25D366; }
.fab-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--copper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(196, 112, 58, 0.4);
  z-index: 90;
  transition: transform .2s;
}
.fab-phone:hover { transform: scale(1.08); }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}
.consent input {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--copper);
}
.consent span {
  flex: 1;
  min-width: 0;
}
.consent a { color: var(--copper); text-decoration: underline; text-underline-offset: 2px; }

.privacy-page {
  max-width: 720px;
  margin: 0 auto;
}
.privacy-page h2 {
  font-family: var(--font-display);
  font-size: 28px;
  margin: 32px 0 12px;
}
.privacy-page p, .privacy-page li {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 12px;
  line-height: 1.7;
}
.privacy-page ul { padding-left: 20px; margin-bottom: 16px; }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.hero .reveal {
  opacity: 1;
  transform: none;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(18, 32, 26, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.is-open { opacity: 1; pointer-events: all; }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 36px;
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: #fff;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__img-wrap { max-width: 90vw; max-height: 85vh; }
.lightbox__img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

/* PAGE HERO */
.page-hero {
  padding: 148px 0 64px;
  background:
    radial-gradient(ellipse 60% 80% at 80% 0%, rgba(196, 112, 58, 0.22), transparent 55%),
    linear-gradient(180deg, #8a7464 0%, #3d2a1a 48%, #1a120c 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 600;
  color: #FFFCFA;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: rgba(255, 252, 250, 0.55); }

/* CATALOG */
.catalog-filters,
.portfolio-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.catalog-filter,
.portfolio-filter {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  transition: all .2s;
}
.catalog-filter:hover,
.portfolio-filter:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.catalog-filter.is-active,
.portfolio-filter.is-active {
  border-color: var(--bark);
  background: var(--bark);
  color: #FFFCFA;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.catalog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color .2s, box-shadow .2s;
}
.catalog-card:hover {
  border-color: rgba(184, 137, 90, 0.45);
  box-shadow: var(--shadow);
}
.catalog-card.hidden { display: none; }
.catalog-card__img { position: relative; overflow: hidden; }
.catalog-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .4s;
}
.catalog-card:hover .catalog-card__img img { transform: scale(1.04); }
.catalog-card__body { padding: 22px; }
.catalog-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}
.catalog-card__body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.catalog-card__desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 14px;
}
.catalog-card__specs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.catalog-card__specs span {
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  padding: 4px 10px;
  border-radius: var(--radius);
  background: var(--mist-2);
}
.catalog-card__price { margin-bottom: 16px; }
.catalog-card__price-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--forest);
}
.catalog-card__price-note {
  font-size: 13px;
  color: var(--ink-mute);
  margin-left: 8px;
}

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.portfolio-item {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.portfolio-item.hidden { display: none; }
.portfolio-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform .4s;
}
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 32, 26, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s;
}
.portfolio-item:hover .portfolio-item__overlay { opacity: 1; }
.portfolio-item__overlay h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: #FFFCFA;
  margin-bottom: 4px;
}
.portfolio-item__overlay p { font-size: 13px; color: rgba(255, 252, 250, 0.6); }
.portfolio-item__more {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
}
.breadcrumb {
  font-size: 13px;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.breadcrumb a { color: inherit; text-underline-offset: 3px; }
a.works__item { text-decoration: none; color: inherit; }

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.about-text p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.about-stat {
  padding: 28px 20px;
  border-top: 2px solid var(--amber);
  background: var(--paper);
  text-align: left;
}
.about-stat__val {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.about-stat__label { font-size: 13px; color: var(--ink-mute); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; }
.why-item { padding: 0; }
.why-item__icon {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: rgba(184, 137, 90, 0.4);
  margin-bottom: 14px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.why-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* CONTACTS */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contacts-info h2,
.contacts-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.contacts-form-wrap p {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.contacts-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.contacts-item { display: flex; gap: 16px; align-items: flex-start; }
.contacts-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--amber-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  flex-shrink: 0;
}
.contacts-item strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.contacts-item span,
.contacts-item a { font-size: 14px; color: var(--ink-soft); }
.contacts-item a:hover { color: var(--amber); }
.contacts-form { display: flex; flex-direction: column; gap: 14px; }
.contacts-form input,
.contacts-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  resize: vertical;
}
.contacts-form input::placeholder,
.contacts-form textarea::placeholder { color: var(--ink-mute); }
.contacts-form input:focus,
.contacts-form textarea:focus { outline: none; border-color: var(--amber); }
.contacts-form small { font-size: 11px; color: var(--ink-mute); text-align: center; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(18, 32, 26, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: 20px;
}
.modal-overlay.is-open { opacity: 1; pointer-events: all; }
.modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--line);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
}
.modal h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.modal p { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.modal__close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 28px;
  color: var(--ink-mute);
  transition: color .2s;
  z-index: 2;
}
.modal__close:hover { color: var(--ink); }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-form input:not([type="checkbox"]):not([type="radio"]),
.modal-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  font-size: 15px;
  color: var(--ink);
  font-family: inherit;
  resize: vertical;
}
.modal-form input:not([type="checkbox"]):not([type="radio"])::placeholder,
.modal-form textarea::placeholder { color: var(--ink-mute); }
.modal-form input:not([type="checkbox"]):not([type="radio"]):focus,
.modal-form textarea:focus { outline: none; border-color: var(--amber); }
.modal-form small { font-size: 11px; color: var(--ink-mute); text-align: center; }

/* QUIZ */
.modal--quiz { max-width: 540px; }
.quiz__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper, #a86b3c);
  margin: 0 0 12px;
}
.quiz__progress {
  height: 3px;
  border-radius: 3px;
  background: var(--mist-2);
  overflow: hidden;
  margin-bottom: 24px;
}
.quiz__progress-bar {
  height: 100%;
  width: 16%;
  background: linear-gradient(90deg, var(--copper, #a86b3c), var(--amber));
  border-radius: 3px;
  transition: width .35s ease;
}
.quiz__step { display: none; }
.quiz__step.is-active { display: block; animation: quizIn .28s ease; }
@keyframes quizIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.quiz__step h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.2;
}
.quiz__step p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  line-height: 1.5;
}
.quiz__options { display: flex; flex-direction: column; gap: 10px; }
.quiz__opt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 14px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  text-align: left;
  transition: border-color .2s, background .2s, transform .2s;
}
.quiz__opt-title {
  font-size: 15px;
  font-weight: 600;
}
.quiz__opt-hint {
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-mute);
}
.quiz__opt:hover {
  border-color: var(--copper, #a86b3c);
  background: var(--amber-soft);
  transform: translateY(-1px);
}
.quiz__opt.is-chosen {
  border-color: var(--copper, #a86b3c);
  background: var(--amber-soft);
  box-shadow: inset 3px 0 0 var(--copper, #a86b3c);
}

/* TO TOP */
.to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  z-index: 80;
}
.to-top.is-visible { opacity: 1; pointer-events: all; }
.to-top:hover { background: var(--forest-soft); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { display: none; }
  .menu { display: flex; }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    top: 0;
    padding: 92px 24px 40px;
    gap: 20px;
    background: var(--forest-deep);
    z-index: 150;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open a {
    font-size: 18px;
    font-weight: 600;
    color: #FFFCFA;
    opacity: 1;
    padding: 6px 0;
  }
  .header:has(.nav.is-open) {
    background: var(--forest-deep);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: var(--line-dark);
  }
  .header:has(.nav.is-open) .header__row {
    position: relative;
    z-index: 151;
  }
  .menu.is-active i:first-child { transform: rotate(45deg) translate(3px, 3px); }
  .menu.is-active i:last-child { transform: rotate(-45deg) translate(3px, -3px); }

  .formats__grid,
  .formats__grid--two,
  .included__grid,
  .configs__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process__steps::before { display: none; }
  .works__grid,
  .catalog-grid,
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-sec { padding: 48px 0 56px; }
  .about-grid,
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .formats__grid,
  .formats__grid--two,
  .included__grid,
  .configs__grid,
  .process__steps,
  .catalog-grid,
  .portfolio-grid,
  .why-grid,
  .proof__grid,
  .works__grid { grid-template-columns: 1fr; }
  .hero {
    min-height: auto;
    padding-top: 96px;
    padding-bottom: 56px;
  }
  .hero__inner { padding: 0 16px 24px; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 52px); max-width: none; }
  .hero__lead { font-size: 16px; margin-bottom: 28px; }
  .hero__row { flex-direction: column; align-items: stretch; }
  .hero__btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 14px; }
  .hero__stats { gap: 20px 28px; margin-top: 32px; padding-top: 24px; }
  .hero__stats div strong { font-size: 24px; }
  .header__right .phone { display: none; }
  .review-card { flex: 0 0 min(300px, 86vw); }
  .footer__row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta__actions { flex-direction: column; align-items: stretch; }
  .fab { bottom: 16px; right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__btn:hover { transform: none; }
  .marquee__track,
  .ticker-track,
  .reviews-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

.catalog-card__body h3 a:hover { color: var(--forest); }
.catalog-filter em {
  font-style: normal;
  opacity: 0.55;
  margin-left: 4px;
  font-size: 11px;
}

/* PRODUCT PAGE */
.page-hero--compact { padding: 120px 0 40px; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 252, 250, 0.45);
  margin-bottom: 16px;
}
.crumbs a { color: rgba(255, 252, 250, 0.65); }
.crumbs a:hover { color: var(--amber); }
.product-section { padding-top: 56px; }
.product-layout,
.product__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.product-summary__tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.product-summary h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}
.product-summary__lead {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.product-summary__facts {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.product-summary__facts li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.product-summary__facts strong {
  color: var(--ink-mute);
  font-weight: 500;
  flex-shrink: 0;
}
.product-summary__facts span {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}
.product-gallery__main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  background: var(--mist-2);
}
.product-gallery__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 72px;
  height: 56px;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  opacity: 0.75;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
  border-color: var(--amber);
  opacity: 1;
}
.product-summary__price {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--forest);
  margin: 16px 0 24px;
  letter-spacing: -0.03em;
}
.product-summary__price small {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
  margin-left: 8px;
}
.product-attrs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
  border-top: 1px solid var(--line);
}
.product-attrs__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.product-attrs__row span { color: var(--ink-mute); }
.product-attrs__row strong { color: var(--ink); font-weight: 600; text-align: right; }
.product-summary__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.product-summary__actions .button {
  flex: 1 1 200px;
  flex-shrink: 0;
}
.product-summary__note {
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.complect-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  max-width: 960px;
}
.complect-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.complect-list--extras li::before {
  background: transparent;
  border: 1.5px solid var(--amber);
  border-radius: 50%;
  box-sizing: border-box;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.related-card:hover {
  border-color: rgba(184, 137, 90, 0.45);
  box-shadow: var(--shadow);
}
.related-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.related-card div { padding: 0 16px 16px; }
.related-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.related-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--forest);
}

@media (max-width: 1024px) {
  .product-layout,
  .product__grid { grid-template-columns: 1fr; gap: 32px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .complect-list { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .related-grid { grid-template-columns: 1fr; }
  .product-summary__actions .button { width: 100%; }
}

.form-success {
  text-align: center;
  padding: 24px 0 8px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 10px;
}
.form-success p {
  font-size: 15px;
  color: var(--ink-soft);
}
