:root {
  --bg: #f5f0e8;
  --bg-dark: #1a1208;
  --card: #ede6d6;
  --copper: #b87333;
  --copper-light: #d4956a;
  --copper-dark: #7a4e24;
  --text: #1a1208;
  --text-inv: #f5f0e8;
  --muted: #8a7a64;
  --lines: #c8b89a;
  --nav-h: 56px;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .fade-in,
  .hero__arrow,
  .timeline__node {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--copper-dark);
  text-decoration: none;
}
a:hover {
  color: var(--copper);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.anchor {
  position: relative;
  top: calc(-1 * var(--nav-h) - 8px);
  display: block;
  height: 0;
  overflow: hidden;
}

/* —— Nav —— */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px 0 20px;
  background: rgba(245, 240, 232, 0.96);
  border-bottom: 1px solid var(--copper);
  backdrop-filter: blur(8px);
}

.site-nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.site-nav__logo span {
  font-size: 0.65em;
  vertical-align: super;
}

.site-nav__phones {
  display: none;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
}
@media (min-width: 1100px) {
  .site-nav__phones {
    display: flex;
  }
}
.site-nav__phones a {
  color: var(--copper-dark);
  white-space: nowrap;
}

.site-nav__scale-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.site-nav__scale-labels {
  display: none;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 2px;
}
@media (min-width: 900px) {
  .site-nav__scale-labels {
    display: flex;
  }
}
.site-nav__scale-labels a {
  color: var(--muted);
}
.site-nav__scale-labels a:hover {
  color: var(--copper);
}

.site-nav__track {
  position: relative;
  height: 4px;
  background: var(--lines);
  margin-top: 2px;
}
.site-nav__dot {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--copper);
  border: 2px solid var(--bg);
  pointer-events: none;
  transition: left 0.12s ease-out;
}

.site-nav__cta {
  flex-shrink: 0;
}

.site-nav__burger {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--copper);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
@media (min-width: 900px) {
  .site-nav__burger {
    display: none;
  }
}

.site-nav__drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  border-top: 1px solid var(--copper);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  overflow-y: auto;
}
.site-nav__drawer.is-open {
  display: flex;
}
.site-nav__drawer a {
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--lines);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 1px solid var(--copper);
  color: var(--copper);
  background: transparent;
  cursor: pointer;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: var(--copper);
  color: var(--text-inv);
}
.btn--fill {
  background: var(--copper);
  color: var(--text-inv);
}
.btn--fill:hover {
  background: var(--copper-dark);
  color: var(--text-inv);
}

/* —— Hero —— */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-h) + 32px) 24px 100px;
  background-color: var(--bg-dark);
  color: var(--text-inv);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark)
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2000&q=70")
    center / cover no-repeat;
  filter: sepia(0.35) contrast(1.05) brightness(0.55);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 8, 0.72);
}
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  color: var(--copper);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.hero__coords {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--copper);
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 7vw, 76px);
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}

.hero__lead {
  color: var(--lines);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 17px;
}

.hero__models {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  margin-bottom: 40px;
}
.hero__model {
  font-family: var(--font-mono);
  font-size: 12px;
  text-align: center;
  color: var(--lines);
  padding: 12px 16px;
  border: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.hero__model strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--text-inv);
  margin-bottom: 4px;
}
.hero__model:hover {
  border-color: var(--copper);
  background: rgba(184, 115, 51, 0.15);
  color: var(--text-inv);
}

.hero__arrow {
  width: 28px;
  height: 28px;
  margin: 0 auto;
  border-right: 2px solid var(--copper);
  border-bottom: 2px solid var(--copper);
  transform: rotate(45deg);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(8px);
  }
}

.hero__compass {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 120px;
  height: 120px;
  opacity: 0.3;
  color: var(--copper);
  pointer-events: none;
}
@media (max-width: 640px) {
  .hero__compass {
    display: none;
  }
}

/* —— Sections common —— */
.section {
  position: relative;
}
.section--dark {
  background: var(--bg-dark);
  color: var(--text-inv);
}
.section--dark a {
  color: var(--copper-light);
}
.section--pad {
  padding: 88px 24px;
}

.label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--copper);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section--dark .label {
  color: var(--copper-light);
}

h2.title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  margin: 0 0 24px;
}

.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

/* —— Manifest —— */
.manifest {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .manifest {
    grid-template-columns: 120px 1fr;
  }
}
.manifest__topo {
  color: var(--lines);
  opacity: 0.45;
  max-width: 100px;
}
.manifest__body {
  max-width: 760px;
}
.manifest__body p {
  margin: 0 0 1.2em;
}
.manifest__foot {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-top: 32px;
  letter-spacing: 0.08em;
}

/* —— Model split —— */
.model-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 520px;
}
@media (min-width: 900px) {
  .model-split {
    grid-template-columns: 1.15fr 0.85fr;
  }
  .model-split--flip {
    direction: rtl;
  }
  .model-split--flip > * {
    direction: ltr;
  }
}

.model-split__visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.model-split__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  filter: sepia(0.25) saturate(0.9);
}
.model-split--left-cut .model-split__visual img {
  clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
}
.model-split--right-cut .model-split__visual img {
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}
@media (max-width: 899px) {
  .model-split__visual img {
    clip-path: none !important;
    min-height: 280px;
  }
}

.model-split__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-inv);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  font-style: italic;
  max-width: 90%;
}

.model-split__panel {
  padding: 48px 28px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.model-split__panel--dark {
  background: var(--bg-dark);
  color: var(--text-inv);
}
.model-split__dir {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}
.model-split__panel--dark .model-split__dir {
  color: var(--lines);
}
.model-split__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: 0.06em;
}
.model-split__panel--dark h2 {
  color: var(--text-inv);
}
.model-split__text {
  color: var(--muted);
  margin-bottom: 28px;
}
.model-split__panel--dark .model-split__text {
  color: var(--lines);
}
.model-split__text p {
  margin: 0 0 1em;
}

.spec-table {
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.9;
  color: var(--lines);
  margin-bottom: 28px;
  white-space: pre-line;
}
.model-split__panel:not(.model-split__panel--dark) .spec-table {
  color: var(--text);
}

/* —— Compare map —— */
.compare {
  max-width: 1200px;
  margin: 0 auto;
}
.compare__map {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  justify-content: center;
  margin: 40px 0;
}
.compare__blk {
  border: 1px solid var(--lines);
  padding: 16px 12px;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s;
  background: var(--card);
}
.compare__blk:hover {
  border-color: var(--copper);
  box-shadow: 0 0 0 1px var(--copper);
}
.compare__blk h3 {
  font-family: var(--font-display);
  font-size: 14px;
  margin: 0 0 8px;
  letter-spacing: 0.1em;
}
.compare__blk .area {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.compare__blk .price {
  font-family: var(--font-display);
  font-size: clamp(14px, 2.5vw, 22px);
  color: var(--copper-dark);
  margin-top: 8px;
}
.compare__blk--nord {
  flex: 0.3 1 100px;
  min-width: 100px;
}
.compare__blk--est {
  flex: 0.48 1 140px;
  min-width: 120px;
}
.compare__blk--sud {
  flex: 0.65 1 180px;
  min-width: 140px;
}
.compare__blk--west {
  flex: 0.82 1 220px;
  min-width: 160px;
}
@media (max-width: 700px) {
  .compare__map {
    flex-direction: column;
    align-items: stretch;
  }
  .compare__blk {
    flex: 1 1 auto !important;
    min-width: 0 !important;
  }
}

/* —— Options —— */
.options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .options-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.options-legend {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--lines);
}
.options-legend label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(200, 184, 154, 0.25);
  cursor: pointer;
}
.options-legend input {
  accent-color: var(--copper);
  margin-top: 4px;
}
.options-legend .sym {
  color: var(--copper);
  width: 22px;
  flex-shrink: 0;
  text-align: center;
}
.options-total {
  font-family: var(--font-mono);
  font-size: 15px;
  color: var(--copper-light);
  margin-top: 24px;
}
.options-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}

/* —— Timeline —— */
.timeline {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
}
.timeline__svg-wrap {
  min-width: 720px;
}
.timeline__foot {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--lines);
  margin-top: 20px;
  text-align: center;
}

.timeline-v {
  display: none;
  flex-direction: column;
  gap: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--lines);
  border-left: 2px dashed var(--copper);
  padding-left: 20px;
  margin-left: 8px;
}
@media (max-width: 899px) {
  .timeline__svg-wrap {
    display: none;
  }
  .timeline-v {
    display: flex;
  }
}

/* —— Climate —— */
.climate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
@media (min-width: 900px) {
  .climate-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}
.climate-map {
  position: relative;
  background: var(--card);
  border: 1px solid var(--lines);
  padding: 24px;
  min-height: 320px;
}
.climate-map svg {
  width: 100%;
  height: auto;
  opacity: 0.85;
}
.climate-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--copper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: default;
}
.climate-dot[data-tip]:hover::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--bg-dark);
  color: var(--text-inv);
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 6px 8px;
  margin-bottom: 6px;
}

.counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.counter {
  border: 1px solid var(--lines);
  padding: 20px 12px;
  background: var(--bg);
}
.counter__val {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--copper-dark);
}
.counter__lab {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* —— Foundations —— */
.found-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.found-card {
  background: #fff;
  border: 1px solid var(--lines);
  padding: 24px 20px;
  transition: border-color 0.2s;
}
.found-card:hover {
  border-color: var(--copper);
}
.found-card--rec {
  position: relative;
}
.found-card--rec::before {
  content: "РЕКОМЕНДУЕМ";
  position: absolute;
  top: 10px;
  right: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--copper);
}
.found-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 12px;
}
.found-card .price-tag {
  font-family: var(--font-mono);
  color: var(--copper-dark);
  margin-bottom: 12px;
}
.found-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

/* —— Payment —— */
.pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pay-card {
  border: 1px solid rgba(200, 184, 154, 0.35);
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.03);
}
.pay-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 12px;
  color: var(--text-inv);
}
.pay-card p {
  margin: 0;
  color: var(--lines);
  font-size: 15px;
}

/* —— Reviews —— */
.reviews-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 24px 0 32px;
  scroll-snap-type: x mandatory;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.reviews-strip.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.review-card {
  flex: 0 0 min(85vw, 340px);
  scroll-snap-align: start;
  background: var(--card);
  border: 1px solid var(--lines);
  padding: 22px 20px 26px;
  font-size: 16px;
  transform: rotate(var(--rot, 0deg));
}
.review-card:nth-child(odd) {
  --rot: -1.2deg;
}
.review-card:nth-child(even) {
  --rot: 1deg;
}
.review-card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--copper);
  margin-bottom: 12px;
}
.review-card p {
  margin: 0;
  color: var(--text);
}
.reviews-actions {
  text-align: center;
  margin-top: 8px;
}
.reviews-grid {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.reviews-grid.is-open {
  display: grid;
}
.reviews-grid .review-card {
  transform: none;
}

/* —— Guarantee —— */
.guarantee-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.guarantee-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--copper-light);
  margin-bottom: 12px;
}
.guarantee-row p {
  margin: 0;
  font-size: 14px;
  color: var(--lines);
  border-top: 1px solid rgba(200, 184, 154, 0.35);
  padding-top: 12px;
}

/* —— FAQ —— */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--lines);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: inherit;
  font: inherit;
}
.faq-q__mark {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--copper);
  flex-shrink: 0;
}
.faq-q__text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 0 0 52px;
}
.faq-item.is-open .faq-a {
  max-height: 1200px;
  padding-bottom: 20px;
}
.faq-a p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

/* —— Form —— */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .lead-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.lead-aside {
  color: var(--lines);
}
.lead-aside p {
  margin: 0 0 1em;
}
.lead-contacts {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 28px;
  color: var(--copper-light);
}
.lead-contacts a {
  color: var(--copper-light);
}

.field {
  margin-bottom: 28px;
}
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lines);
  margin-bottom: 8px;
}
.field input,
.field select {
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid var(--copper);
  background: transparent;
  color: var(--text-inv);
  font-family: var(--font-body);
  font-size: 16px;
  border-radius: 0;
  outline: none;
}
.field input:focus,
.field select:focus {
  box-shadow: 0 0 0 1px var(--copper);
  padding-left: 8px;
  padding-right: 8px;
}
.field select {
  cursor: pointer;
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--lines);
  margin-bottom: 24px;
}
.consent input {
  margin-top: 4px;
  accent-color: var(--copper);
}
.form-success {
  display: none;
  font-family: var(--font-mono);
  color: var(--copper-light);
  margin-top: 16px;
}
.form-success.is-on {
  display: block;
}

/* —— Contacts —— */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1000px) {
  .contacts-grid {
    grid-template-columns: 1fr 1.2fr 1fr;
  }
}
.contacts-col {
  font-size: 15px;
}
.contacts-col h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin: 0 0 16px;
}
.contacts-col pre,
.contacts-col .addr {
  font-family: var(--font-body);
  white-space: pre-line;
  margin: 0 0 16px;
  line-height: 1.65;
}
.map-frame {
  width: 100%;
  height: 320px;
  border: 1px solid var(--lines);
  filter: sepia(0.15);
}

/* —— Privacy —— */
.privacy-box {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  color: var(--muted);
}
.privacy-box h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin-top: 1.5em;
}

/* —— Footer —— */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-inv);
  padding: 56px 24px 32px;
}
.site-footer a {
  color: var(--lines);
}
.site-footer a:hover {
  color: var(--copper-light);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.footer-grid h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--copper);
  margin: 0 0 16px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}
.footer-maps {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.footer-line {
  height: 1px;
  background: var(--copper);
  opacity: 0.4;
  max-width: 1100px;
  margin: 0 auto 24px;
}
.footer-bottom {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

/* —— WhatsApp float —— */
.wa-float {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 90;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
@media (min-width: 900px) {
  .wa-float {
    display: none;
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}
#lead-form.shake {
  animation: shake 0.35s ease;
}
