/* ==========================================================================
   Сила в каркасе — общие стили
   ========================================================================== */

:root {
  --bg-dark: #171714;
  --bg-dark-2: #1f1f1b;
  --bg-light: #f6f4ef;
  --bg-light-2: #ede9e0;
  --ink: #171714;
  --ink-soft: #55534a;
  --paper: #ffffff;
  --line: rgba(23, 23, 20, 0.12);
  --line-dark: rgba(246, 244, 239, 0.14);
  --accent: #b5793a;
  --accent-light: #d7a468;
  --on-dark: #f6f4ef;
  --on-dark-soft: #b8b6ac;
  --radius: 2px;
  --container: 1200px;
  --nav-w: min(420px, 88vw);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-light);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

h1 { font-size: clamp(32px, 6vw, 56px); line-height: 1.08; }
h2 { font-size: clamp(26px, 4vw, 38px); line-height: 1.15; }
h3 { font-size: 20px; }

p { margin: 0 0 14px; color: var(--ink-soft); }

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--dark {
  background: var(--bg-dark);
  color: var(--on-dark);
}
.section--dark p { color: var(--on-dark-soft); }
.section--dark h2, .section--dark h3 { color: var(--on-dark); }
.section--alt { background: var(--bg-light-2); }

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background var(--ease) .2s, color var(--ease) .2s, border-color var(--ease) .2s, transform var(--ease) .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover { background: var(--accent-light); }

.btn--outline {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--outline:hover { border-color: var(--ink); }

.section--dark .btn--outline {
  border-color: var(--line-dark);
  color: var(--on-dark);
}
.section--dark .btn--outline:hover { border-color: var(--on-dark); }

.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 14px; }

/* ==========================================================================
   Header + burger nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: #000000;
  transition: box-shadow var(--ease) .25s;
}
.site-header.is-solid {
  box-shadow: 0 1px 0 var(--line-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}
.logo span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
  color: var(--on-dark-soft);
  margin-top: 2px;
}

.burger {
  position: relative;
  z-index: 210;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--ease) .3s, opacity var(--ease) .3s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
}
.nav-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 8, 0.55);
  opacity: 0;
  transition: opacity var(--ease) .3s;
}
.nav-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: var(--nav-w);
  background: var(--bg-dark);
  color: var(--on-dark);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 32px;
  transform: translateX(100%);
  transition: transform var(--ease) .35s;
}
.nav-overlay.is-open { visibility: visible; }
.nav-overlay.is-open .nav-overlay__backdrop { opacity: 1; }
.nav-overlay.is-open .nav-panel { transform: translateX(0); }

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: auto;
}
.nav-links a {
  display: block;
  padding: 13px 0;
  font-size: 26px;
  font-weight: 600;
  color: var(--on-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: color var(--ease) .2s, padding-left var(--ease) .2s;
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--accent-light); padding-left: 8px; }

.nav-foot {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-social {
  display: flex;
  gap: 12px;
}
.nav-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition: border-color var(--ease) .2s, background var(--ease) .2s;
}
.nav-social a:hover { border-color: var(--accent-light); background: rgba(255,255,255,0.04); }
.nav-social svg { width: 18px; height: 18px; fill: var(--on-dark); }
.nav-social img { width: 18px; height: 18px; object-fit: contain; }

.nav-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 22px;
  border: 1px solid var(--accent-light);
  border-radius: var(--radius);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  background: rgba(181, 121, 58, 0.12);
}
.nav-phone svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ==========================================================================
   Phone modal
   ========================================================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(10, 10, 8, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease) .25s;
  padding: 16px;
}
.modal-overlay.is-open { opacity: 1; visibility: visible; }

.modal-card {
  width: 100%;
  max-width: 380px;
  background: var(--paper);
  border-radius: 16px 16px 8px 8px;
  padding: 28px 24px 24px;
  transform: translateY(24px);
  transition: transform var(--ease) .3s;
  margin-bottom: 0;
}
.modal-overlay.is-open .modal-card { transform: translateY(0); }

@media (min-width: 640px) {
  .modal-overlay { align-items: center; }
  .modal-card { border-radius: 16px; margin-bottom: 40px; }
}

.modal-card h3 {
  margin-bottom: 4px;
}
.modal-card .modal-number {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 22px;
}
.modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color var(--ease) .2s, background var(--ease) .2s;
}
.modal-option:hover { border-color: var(--accent); background: var(--bg-light-2); }
.modal-option .ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.modal-option .ic svg { width: 19px; height: 19px; fill: currentColor; }
.modal-option .ic img { width: 19px; height: 19px; object-fit: contain; }
.ic--call { background: #3ba55c; }
.ic--telegram { background: #2aabee; }
.ic--max { background: #ee4d2e; }
.ic--instagram { background: #d6249f; }

.modal-close {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 14px;
  padding: 14px;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.86) 0%, rgba(10,10,8,0.32) 46%, rgba(10,10,8,0.28) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
  max-width: 760px;
}
.hero__subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(246,244,239,0.86);
  max-width: 46ch;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: none;
}

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding-top: var(--header-h);
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.9), rgba(10,10,8,0.35));
}
.page-hero__content { position: relative; z-index: 1; padding: 60px 0 40px; }
.page-hero .eyebrow { color: var(--accent-light); }
.page-hero p { color: rgba(246,244,239,0.82); max-width: 56ch; }

/* ==========================================================================
   Cards grid (Дома / Бани)
   ========================================================================== */

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--ease) .25s, box-shadow var(--ease) .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px rgba(23,23,20,0.1); }
.card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-light-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ease) .5s; }
.card:hover .card__media img { transform: scale(1.05); }

.placeholder-media {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed var(--line);
  background: var(--bg-light-2);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
  padding: 16px;
}
.placeholder-media span { font-family: monospace; }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__price {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .02em;
}
.card__desc { flex: 1; font-size: 14.5px; }
.card__actions { display: flex; gap: 10px; margin-top: 6px; flex-wrap: wrap; }

button.card__media {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: zoom-in;
  text-align: left;
}

/* ==========================================================================
   Lightbox (fullscreen card photo viewer)
   ========================================================================== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(10, 10, 8, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease) .25s;
}
.lightbox-overlay.is-open { opacity: 1; visibility: visible; }

.lightbox-stage {
  max-width: 92vw;
  max-height: 86vh;
  overflow: auto;
}
.lightbox-img {
  display: block;
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  cursor: zoom-in;
  transition: transform .25s ease;
  margin: 0 auto;
}
.lightbox-img.is-zoomed {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  cursor: zoom-out;
}

.lightbox-close,
.lightbox-btn {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--ease) .2s;
}
.lightbox-close:hover,
.lightbox-btn:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-close svg,
.lightbox-btn svg { width: 20px; height: 20px; }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-btn--prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-btn--next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .lightbox-close, .lightbox-btn { width: 40px; height: 40px; }
  .lightbox-close { top: 10px; right: 10px; }
  .lightbox-btn--prev { left: 10px; }
  .lightbox-btn--next { right: 10px; }
}

/* ==========================================================================
   Gallery / slider (project pages)
   ========================================================================== */

.gallery {
  position: relative;
  background: var(--bg-dark-2);
  border-radius: 4px;
  overflow: hidden;
}
.gallery__track {
  display: flex;
  transition: transform var(--ease) .4s;
}
.gallery__slide {
  flex: 0 0 100%;
  aspect-ratio: 16/10;
}
.gallery__slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery--zoomable .gallery__slide img { cursor: zoom-in; }
.gallery__btn {
  position: absolute;
  top: 50%; translate: 0 -50%;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(246,244,239,0.92);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.gallery__btn svg { width: 18px; height: 18px; }
.gallery__btn--prev { left: 16px; }
.gallery__btn--next { right: 16px; }
.gallery__dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 2;
}
.gallery__dots button {
  width: 7px; height: 7px; border-radius: 50%;
  border: none; background: rgba(246,244,239,0.4);
  padding: 0;
}
.gallery__dots button.is-active { background: #fff; }

/* ==========================================================================
   Project detail — specs
   ========================================================================== */

.project-summary {
  max-width: 760px;
  margin: 36px auto 0;
  text-align: center;
}
.project-summary p { font-size: 17px; }

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 560px;
  margin: 28px auto 0;
}
@media (min-width: 560px) {
  .specs { grid-template-columns: repeat(3, 1fr); }
}
.specs__item {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
}
.section--dark .specs__item { border-color: var(--line-dark); }
.specs__value { font-size: 22px; font-weight: 700; color: var(--accent); }
.specs__label { font-size: 12.5px; color: var(--ink-soft); margin-top: 4px; }
.section--dark .specs__label { color: var(--on-dark-soft); }

.equip {
  display: grid;
  gap: 30px;
  margin-top: 8px;
}
@media (min-width: 800px) {
  .equip { grid-template-columns: repeat(2, 1fr); }
}
.equip__group h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 700;
}
.equip__group ul { display: flex; flex-direction: column; gap: 9px; }
.equip__group li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.equip__group li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ==========================================================================
   Tabs / accordion (Комплектация)
   ========================================================================== */

.tabs__triggers {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.tabs__trigger {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: background var(--ease) .2s, color var(--ease) .2s, border-color var(--ease) .2s;
}
.tabs__trigger:hover { border-color: var(--ink); }
.tabs__trigger.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.tabs__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.tabs__panel.is-open { max-height: 4000px; }
.tabs__panel-inner { padding-top: 28px; }

.interior-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.interior-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}
.interior-strip img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  background: var(--bg-light-2);
  border-radius: 6px;
  transition: transform var(--ease) .25s;
}
.interior-thumb:hover img { transform: scale(1.02); }

.interior-photo-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: zoom-in;
}
.interior-photo {
  display: block;
  max-width: 100%;
  max-height: 80vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 36px;
  border-radius: 12px;
  background: var(--bg-dark);
  color: var(--on-dark);
}
.cta-band h3 { margin-bottom: 6px; }
.cta-band p { margin: 0; color: var(--on-dark-soft); }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
.testi {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}
.testi p { font-style: italic; color: var(--on-dark-soft); }
.testi strong { display: block; color: var(--on-dark); font-style: normal; }
.testi span { font-size: 13px; color: var(--on-dark-soft); }

/* ==========================================================================
   Contact form
   ========================================================================== */

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 460px;
}
.field label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  background: var(--paper);
  color: var(--ink);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--ink-soft); }
.form-success {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  background: #e7f3ea;
  color: #1f6b3a;
  font-size: 14px;
}
.form-success.is-shown { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-dark);
  color: var(--on-dark-soft);
  padding: 56px 0 28px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .logo { margin-bottom: 10px; }
.footer-brand p { max-width: 34ch; font-size: 14px; }
.footer-col h4 {
  color: var(--on-dark);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { font-size: 14.5px; transition: color var(--ease) .2s; }
.footer-col a:hover { color: var(--on-dark); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}
.footer-social svg { width: 16px; height: 16px; fill: var(--on-dark-soft); }
.footer-social img { width: 16px; height: 16px; object-fit: contain; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 13px;
}

/* ==========================================================================
   Misc / utility
   ========================================================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 700px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}
.stats__item { text-align: center; }
.stats__num { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--accent); }
.stats__label { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.section--dark .stats__label { color: var(--on-dark-soft); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}
.value-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.value-card__num {
  font-size: 13px; font-weight: 700; color: var(--accent);
  margin-bottom: 10px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .two-col--reverse .two-col__media { order: 2; }
}
.two-col__media img { border-radius: 8px; }

.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

@media (max-width: 719px) {
  .section { padding: 60px 0; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
