@import url("../media/design-tokens.css");

/* ——— Base ——— */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.container {
  width: min(100% - 2rem, var(--max-content));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-section);
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.section__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-black);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}

.section__title span {
  color: var(--color-accent);
}

.section__lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  color: var(--color-text-muted);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Promo ticker / price tags ——— */
.promo-ticker {
  overflow: hidden;
  background: linear-gradient(90deg, #ff8c00, #f37021 40%, #e32b2b 100%);
  color: #111;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.promo-ticker__track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.55rem 0;
  animation: ticker 28s linear infinite;
}

.promo-ticker__track span {
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: var(--fw-black);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.price-tag--sale {
  background: linear-gradient(135deg, #ff3b3b, #f37021);
  color: #fff;
  transform: rotate(-6deg);
}

.price-tag--mini {
  transform: rotate(-4deg);
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.price-tag--float {
  position: absolute;
}

.gallery-card .price-tag {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
}

.price-tag--hero-1 {
  top: 1rem;
  left: 1rem;
  animation: float-tag 3.4s ease-in-out infinite;
}

.price-tag--hero-2 {
  top: 3.4rem;
  right: 1rem;
  animation: float-tag 3.8s ease-in-out infinite 0.4s;
}

.price-tag--cost {
  top: 1rem;
  right: 1rem;
  animation: float-tag 3.6s ease-in-out infinite;
}

@keyframes float-tag {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-8px) rotate(-3deg); }
}

.deal-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 140, 0, 0.35), rgba(227, 43, 43, 0.28) 55%, rgba(243, 112, 33, 0.22)),
    #1a120c;
  border: 2px solid var(--color-accent);
  box-shadow:
    0 0 0 4px rgba(243, 112, 33, 0.18),
    0 14px 32px rgba(243, 112, 33, 0.28);
  text-align: center;
}

.deal-strip__text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3.2vw, 1.25rem);
  font-weight: var(--fw-black);
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.75rem 0;
  background: rgba(11, 11, 11, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(243, 112, 33, 0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.logo__mark {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background:
    conic-gradient(from 210deg, var(--color-accent), var(--color-accent-hot), #5a2a00, var(--color-accent));
  box-shadow: 0 0 0 2px rgba(243, 112, 33, 0.35);
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
}

.header-phone:hover {
  color: var(--color-accent-hot);
}

/* ——— Full-bleed banners (hero / steps / services) ——— */
.bleed-banner {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  border: 0;
  border-radius: 0;
  background: #000;
  line-height: 0;
}

.bleed-banner picture,
.bleed-banner img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.section--bleed {
  padding: 0;
}

/* ——— Hero ——— */
.hero {
  padding: 0 0 2.5rem;
  background: var(--color-bg);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  padding-top: 1.5rem;
}

.benefits {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.benefits li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  padding: 0.75rem 0.9rem;
  background: var(--color-bg-elevated);
  border: 1px solid rgba(243, 112, 33, 0.35);
  border-radius: var(--radius-md);
}

.benefits__icon {
  width: 1.55rem;
  height: 1.55rem;
  margin-top: 0.05rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: var(--fw-black);
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(243, 112, 33, 0.35);
  -webkit-text-fill-color: #fff;
  opacity: 1;
}

.benefits strong {
  display: block;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
}

.benefits p {
  margin: 0.2rem 0 0;
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

/* ——— Lead form ——— */
.lead-form {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(10, 10, 10, 0.78);
  border: var(--border-panel);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.lead-form--hot {
  background:
    linear-gradient(145deg, rgba(243, 112, 33, 0.95), rgba(227, 43, 43, 0.88) 55%, rgba(180, 40, 10, 0.95));
  border: 2px solid #fff3;
  box-shadow:
    0 0 0 3px rgba(243, 112, 33, 0.25),
    0 18px 40px rgba(243, 112, 33, 0.35);
}

.lead-form--hot .field label {
  color: rgba(255, 255, 255, 0.85);
}

.lead-form--hot .field input {
  background: rgba(255, 255, 255, 0.96);
  color: #111;
  border-color: transparent;
}

.lead-form--hot .field input::placeholder {
  color: #777;
}

.lead-form--hot .field input:focus {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.lead-form--hot .lead-form__title,
.lead-form--hot .lead-form__note {
  color: #fff;
}

.lead-form--hot .lead-form__status {
  color: #fff;
}

.lead-form__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.lead-form__cta {
  position: relative;
  display: grid;
  justify-items: stretch;
  align-self: end;
}

.lead-form__badge {
  position: absolute;
  top: -0.7rem;
  right: 0.85rem;
  z-index: 2;
  pointer-events: none;
  transform: rotate(-8deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.lead-form__cta .btn {
  width: 100%;
}

.lead-form--inline {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lead-form--row {
    grid-template-columns: 1fr 1fr auto;
    align-items: end;
  }

  .lead-form--row .lead-form__status,
  .lead-form--row .lead-form__note,
  .lead-form--row .lead-form__head {
    grid-column: 1 / -1;
  }

  .lead-form--row .lead-form__cta .btn {
    white-space: nowrap;
  }
}

.lead-form__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: var(--fs-small);
  color: var(--color-text-dim);
}

.field input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: #101010;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.field input::placeholder {
  color: #666;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  max-height: 3.25rem;
  padding: 0.75rem 1.1rem;
  border: 0;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 2.4vw, 0.9rem);
  font-weight: var(--fw-black);
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.lead-form .btn {
  width: 100%;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(90deg, var(--color-accent-hot), var(--color-accent));
  color: #111;
}

.btn--block {
  width: 100%;
}

.btn--white {
  background: #fff;
  color: #111;
  border: 2px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn--white:hover {
  background: #fff7f0;
  filter: none;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: var(--border-accent);
}

/* ——— Lead modal ——— */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.lead-modal[hidden] {
  display: none !important;
}

.lead-modal.is-open {
  display: grid;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  animation: modal-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.lead-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  z-index: 2;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.lead-modal__close:hover {
  background: rgba(0, 0, 0, 0.55);
}

.lead-modal .lead-form {
  margin: 0;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

body.modal-open {
  overflow: hidden;
}

/* ——— Thank you ——— */
.thank-you {
  min-height: calc(100svh - 8rem);
  display: grid;
  place-items: center;
  padding: 5rem 0 3rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(243, 112, 33, 0.18), transparent 50%),
    var(--color-bg);
}

.thank-you__inner {
  max-width: 36rem;
  text-align: center;
}

.thank-you__eyebrow {
  margin: 0 0 0.75rem;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: var(--fs-small);
}

.thank-you__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8vw, 3.5rem);
  font-weight: var(--fw-black);
  line-height: 1;
}

.thank-you__text {
  margin: 0 0 1.75rem;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.thank-you__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.lead-form__note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

/* ——— Floating call bullet ——— */
.float-call {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 70;
  max-width: min(20rem, calc(100vw - 2rem));
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-120%, 40%, 0) scale(0.92);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.float-call.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.float-call[hidden] {
  display: block !important;
}

.float-call__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  border-radius: 999px;
  background: rgba(16, 16, 16, 0.92);
  border: 1.5px solid rgba(243, 112, 33, 0.75);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.45),
    0 0 0 4px rgba(243, 112, 33, 0.12);
  backdrop-filter: blur(10px);
}

.float-call__photo {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-accent);
  flex-shrink: 0;
  background: #222;
}

.float-call__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-call__body {
  position: relative;
  min-width: 0;
  padding-right: 0.2rem;
}

.float-call__online {
  position: absolute;
  top: -0.15rem;
  right: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-success-check);
  box-shadow: 0 0 0 3px rgba(16, 16, 16, 0.9);
}

.float-call__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: var(--fw-bold);
  line-height: 1.25;
  color: #fff;
}

.float-call--video {
  bottom: 1rem;
}

.float-call--video .float-call__inner {
  border-radius: 1.25rem;
}

@media (min-width: 768px) {
  .float-call {
    left: 1.5rem;
    bottom: 1.5rem;
    max-width: 22rem;
  }

  .float-call--video {
    max-width: 26rem;
    bottom: 1.5rem;
  }

  .float-call__text {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-call {
    transition: opacity 0.2s ease;
    transform: none;
  }

  .float-call.is-visible {
    transform: none;
  }
}

.lead-form__status {
  margin: 0;
  min-height: 1.2em;
  font-size: var(--fs-small);
  color: var(--color-success-check);
}

/* ——— Trust ——— */
.trust {
  background:
    radial-gradient(ellipse at top, rgba(243, 112, 33, 0.08), transparent 55%),
    var(--color-bg);
}

.trust__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust__list {
    grid-template-columns: 1fr 1fr;
  }
}

.trust__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  padding: 1.15rem 1.2rem;
  background: var(--color-bg-elevated);
  border: var(--border-panel);
  border-radius: var(--radius-md);
}

.trust__check {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--color-accent);
  color: #111;
  font-weight: var(--fw-black);
  flex-shrink: 0;
}

.trust__item p {
  margin: 0;
  color: var(--color-text-muted);
}

.trust__item strong {
  color: var(--color-text);
}

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
  margin: 0 0 1.75rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #000;
  width: 100%;
  aspect-ratio: auto;
}

.gallery-card picture,
.gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  border: 0;
  border-radius: 0;
}

.gallery-card img {
  transition: transform 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.02);
}

.gallery-card__label {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: var(--fw-black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: var(--shadow-text-photo);
  -webkit-text-stroke: 1.5px #000;
  paint-order: stroke fill;
}

.guarantee {
  margin: 0 0 1.5rem;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--color-accent);
  background: var(--color-accent-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h3);
  line-height: 1.35;
}

.guarantee span {
  color: var(--color-accent);
}

/* ——— Banner panels (blocks 4, 6, 7) ——— */
.banner-panel {
  position: relative;
  margin: 0;
}

.banner-panel img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 112, 33, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.banner-panel--tagged {
  overflow: visible;
}

.banner-stack {
  display: grid;
  gap: 1rem;
}

/* ——— Video ——— */
.video-block {
  background: var(--color-bg-elevated);
}

.video-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: var(--border-panel);
  background: #000;
  aspect-ratio: 9 / 16;
  max-width: min(100%, 420px);
  margin-inline: auto;
}

.video-frame video,
.video-frame__placeholder {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.video-frame__placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(243, 112, 33, 0.2), transparent 50%),
    #111;
  color: var(--color-text-muted);
  text-align: center;
  padding: 2rem;
}


/* ——— Steps CTA wrap ——— */
.steps-cta {
  padding-block: 1.5rem 2.5rem;
}

/* ——— Reviews ——— */
.reviews-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 700px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(243, 112, 33, 0.35);
  background: #000;
}

.review-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ——— Final CTA ——— */
.final-cta {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(243, 112, 33, 0.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255, 140, 0, 0.12), transparent 35%),
    var(--color-bg-elevated);
}

.final-cta__checks {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.final-cta__checks li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--color-text-muted);
}

.final-cta__checks li::before {
  content: "✔";
  color: var(--color-success-check);
  font-weight: var(--fw-bold);
}

/* ——— FAQ ——— */
.faq {
  background: var(--color-bg);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid rgba(243, 112, 33, 0.35);
  border-radius: var(--radius-md);
  background: var(--color-bg-elevated);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.2rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--color-accent);
  font-size: 1.4rem;
  font-weight: var(--fw-black);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--color-text-muted);
}

/* ——— Contacts / Footer ——— */
.contacts {
  border-top: 1px solid rgba(243, 112, 33, 0.35);
  background: #050505;
}

.contacts__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .contacts__grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}

.contacts__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
}

.contacts__phone {
  display: inline-block;
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-black);
  color: var(--color-accent);
}

.contacts__phone:hover {
  color: var(--color-accent-hot);
}

.contacts__meta {
  margin: 0.75rem 0 0;
  color: var(--color-text-dim);
  font-size: var(--fs-small);
}

.site-footer {
  padding: 1rem 0 1.5rem;
  color: var(--color-text-dim);
  font-size: var(--fs-small);
}

/* ——— Reveal motion ——— */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .gallery-card img,
  .btn {
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .promo-ticker__track,
  .price-tag--hero-1,
  .price-tag--hero-2,
  .price-tag--cost {
    animation: none !important;
  }
}
