/* ============================================================
   Дом «Черчилль» — Вологодское Зодчество.
   Фирменный стиль: белый + лесной зелёный + охра-оранжевый.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --white:       #FFFFFF;
  --paper:       #F4F7F2;   /* холодный зелёно-белый off-white */
  --paper-2:     #FAFCF9;
  --ink:         #1E1E1C;
  --ink-2:       #2B2A28;
  --ink-soft:    #56615A;
  --line:        #E4EAE2;
  --line-2:      #D8E2D6;

  --orange:      #E8821E;
  --orange-2:    #EE8A1F;
  --orange-dark: #CE6E12;
  --orange-soft: #FCEBD6;

  --green:       #2C6E37;
  --green-2:     #2F7D3A;
  --green-deep:  #214F29;
  --green-soft:  #E7F1E7;
  --green-tint:  #EEF5ED;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 12px rgba(33,79,41,.06);
  --shadow:    0 16px 44px rgba(33,79,41,.12);
  --shadow-lg: 0 34px 80px rgba(20,40,24,.22);

  --maxw: 1180px;
  --pad:  clamp(20px, 5vw, 48px);

  --orn-green:  url("assets/ornament-green.svg");
  --orn-light:  url("assets/ornament-light.svg");

  --font-display: 'Onest', 'Manrope', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, button { font-family: inherit; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 9vw, 116px); position: relative; }
.bg-white { background: var(--white); }
.bg-paper { background: var(--paper); }
.bg-tint  { background: var(--green-tint); }
.bg-forest {
  background: var(--green);
  color: #eaf3ea;
  position: relative; isolation: isolate; overflow: hidden;
}
.bg-forest::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image: var(--orn-light);
  background-size: 46px 46px; opacity: .07;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--orange-dark);
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--orange); border-radius: 2px; }
.bg-forest .eyebrow { color: #F4B978; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -.015em; text-wrap: balance; }
.h-sec { font-size: clamp(27px, 4.4vw, 50px); text-transform: uppercase; letter-spacing: -.01em; }
.lead  { font-size: clamp(17px, 2vw, 21px); color: var(--ink-soft); max-width: 60ch; text-wrap: pretty; }
.bg-forest .lead { color: #cfe2cf; }

.sec-head { margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head .lead { margin-top: 18px; }

/* ornamental divider */
.orn-divider { height: 30px; background-image: var(--orn-green); background-size: 30px 30px; background-repeat: repeat-x; background-position: center; opacity: .55; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 26px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 16px; letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(232,130,30,.34); }
.btn-orange:hover { background: var(--orange-dark); box-shadow: 0 12px 28px rgba(206,110,18,.44); }
.btn-forest { background: var(--green); color: #fff; box-shadow: 0 8px 22px rgba(44,110,55,.30); }
.btn-forest:hover { background: var(--green-deep); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--ink-2); }
.btn-ghost { background: transparent; border: 1.5px solid var(--line-2); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ghost-light { background: transparent; border: 1.5px solid rgba(255,255,255,.5); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--green); border-color: #fff; }
.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--orange); color: #fff; }
.btn-wide { width: 100%; }
.btn .dot { width: 9px; height: 9px; border-radius: 50%; }

/* ---------- Header ---------- */
.header { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .3s ease, box-shadow .3s ease, padding .3s ease; padding-block: 18px; }
.header::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,18,10,.72) 0%, rgba(10,18,10,.34) 60%, rgba(10,18,10,0) 100%); opacity: 1; transition: opacity .3s ease; pointer-events: none; }
.header.scrolled::before { opacity: 0; }
.header.scrolled { background: rgba(255,255,255,.94); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding-block: 11px; }
.header-inner { display: flex; align-items: center; gap: 24px; }
.logo { display: inline-flex; align-items: center; flex-shrink: 0; background: #fff; padding: 8px 13px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,.16); }
.logo-img { display: block; height: 28px; width: auto; }
.logo-mark { width: 42px; height: 42px; border-radius: 11px; background: var(--orange); display: grid; place-items: center; flex-shrink: 0; box-shadow: 0 6px 16px rgba(232,130,30,.32); }
.logo-mark svg { width: 24px; height: 24px; }
.logo-txt { line-height: 1.05; color: #fff; transition: color .3s; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.header.scrolled .logo-txt { color: var(--ink); text-shadow: none; }
.logo-txt b { font-family: var(--font-display); font-weight: 800; font-size: 16px; letter-spacing: -.01em; display: block; }
.logo-txt span { font-size: 11px; letter-spacing: .04em; opacity: .8; }

.nav { display: flex; gap: 22px; margin-left: 8px; }
.nav a { font-size: 14.5px; font-weight: 600; color: #fff; opacity: .96; transition: color .3s, opacity .2s; white-space: nowrap; text-shadow: 0 1px 8px rgba(0,0,0,.45); }
.nav a:hover { opacity: 1; }
.header.scrolled .nav a { color: var(--ink-2); text-shadow: none; }
.header.scrolled .nav a:hover { color: var(--orange-dark); }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.header-phone { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: #fff; transition: color .3s; white-space: nowrap; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
.header.scrolled .header-phone { color: var(--ink); text-shadow: none; }
.header-call { display: inline-flex; align-items: center; justify-content: center; height: 42px; padding: 0 22px; border-radius: var(--r-pill); font-weight: 700; font-size: 15px; line-height: 1; white-space: nowrap; background: var(--orange); color: #fff; transition: all .25s; box-shadow: 0 6px 16px rgba(232,130,30,.3); }
.header-call:hover { background: var(--orange-dark); }

.burger { display: none; width: 44px; height: 44px; border-radius: 11px; position: relative; flex-shrink: 0; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.header.scrolled .burger span { background: var(--ink); }
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
body.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--paper); display: flex; flex-direction: column; padding: 96px var(--pad) 40px; transform: translateY(-100%); transition: transform .4s cubic-bezier(.5,0,.2,1); overflow-y: auto; }
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 26px; font-weight: 700; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
.mobile-menu .mm-phone { margin-top: 28px; font-size: 22px; color: var(--orange-dark); border: none; }

/* ============================================================ 1 · HERO ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: stretch; color: #fff; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,16,10,.9) 0%, rgba(10,16,10,.6) 26%, rgba(10,16,10,.2) 46%, rgba(10,16,10,0) 62%), linear-gradient(180deg, rgba(10,16,10,.34) 0%, rgba(10,16,10,0) 24%, rgba(10,16,10,0) 68%, rgba(10,16,10,.5) 100%); }
/* ornamental side bands */
.hero-orn { position: absolute; top: 0; bottom: 0; width: 38px; z-index: -1; background-image: var(--orn-light); background-size: 38px 38px; background-repeat: repeat-y; opacity: .2; }
.hero-orn.left { left: 0; }
.hero-orn.right { right: 0; }
.hero-inner { padding-block: 112px 56px; width: 100%; display: flex; flex-direction: column; }

/* left offer column */
.hero-col { max-width: 620px; margin-block: auto; }
.hero-eyebrow-row { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.hero .eyebrow { color: #fff; font-size: 12px; letter-spacing: .12em; opacity: 1; font-weight: 700; text-shadow: 0 1px 10px rgba(0,0,0,.7), 0 0 2px rgba(0,0,0,.5); }
.hero .eyebrow::before { background: var(--orange); opacity: 1; }
.pod-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 13px; border-radius: var(--r-pill); background: transparent; border: 1.5px solid rgba(255,255,255,.45); color: rgba(255,255,255,.88); font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.hero h1 { font-size: clamp(34px, 4.6vw, 58px); max-width: 12ch; margin-top: 16px; line-height: 1.03; text-shadow: 0 2px 30px rgba(0,0,0,.45); }
.hero h1 .q { color: var(--orange); }
.hero-offer { margin-top: 18px; font-size: clamp(16px, 1.9vw, 20px); font-weight: 600; line-height: 1.38; max-width: 30ch; color: #fff; text-shadow: 0 1px 16px rgba(0,0,0,.5); }
.hero-offer b { color: var(--orange-2); font-weight: 700; }
.hero-sub { margin-top: 14px; font-size: clamp(13.5px, 1.5vw, 15px); max-width: 38ch; color: #d7ddd4; line-height: 1.5; text-shadow: 0 1px 14px rgba(0,0,0,.5); }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.hero-ctas .btn { padding: 12px 18px; font-size: 14.5px; }

/* full-width bottom info bar: price + lock + specs */
.hero-bar { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; width: 100%; background: rgba(10,16,10,.52); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; backdrop-filter: blur(14px); box-shadow: 0 24px 60px rgba(0,0,0,.42); }
.hero-bar > * { padding: 18px clamp(18px, 2.2vw, 30px); }
.hero-bar > * + * { border-left: 1px solid rgba(255,255,255,.16); }
.hb-price .hb-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #cfe0cf; line-height: 1.4; }
.hb-price .hb-big { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3.4vw, 44px); line-height: 1; color: var(--orange); letter-spacing: -.02em; margin-top: 8px; }
.hb-price .hb-small { font-size: 14px; font-weight: 600; color: #d8e0d6; margin-top: 6px; }
.hb-lock { display: flex; align-items: center; gap: 11px; max-width: 280px; font-size: 13.5px; font-weight: 600; color: #c2ddc6; line-height: 1.34; }
.hb-lock svg { flex-shrink: 0; width: 22px; height: 22px; stroke: #9fd6a6; }
.hb-specs { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; flex: 1; gap: 0; padding: 0; }
.hb-spec { padding: 12px clamp(12px, 1.6vw, 22px); display: flex; flex-direction: column; justify-content: center; }
.hb-spec:not(:nth-child(3n+1)) { border-left: 1px solid rgba(255,255,255,.12); }
.hb-spec:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.12); }
.hb-spec b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(17px, 1.7vw, 21px); color: #fff; line-height: 1.05; white-space: nowrap; }
.hb-spec span { font-size: 11px; color: #b9d2bb; letter-spacing: .01em; margin-top: 2px; }

.scroll-hint { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; opacity: .72; animation: bob 2.4s ease-in-out infinite; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
@keyframes bob { 0%,100%{transform: translate(-50%,0)} 50%{transform: translate(-50%,7px)} }

/* ============================================================ 1b · HERO STATS STRIP ============================================================ */
.hero-stats { background: var(--green-2); padding: 36px 0 38px; margin-top: -1px; position: relative; overflow: hidden; isolation: isolate; }
.hero-stats::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--orn-light); background-size: 46px 46px; opacity: .08; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-cell { position: relative; padding: 6px 22px; text-align: center; }
.stat-cell + .stat-cell { border-left: 1px solid rgba(255,255,255,.22); }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 4vw, 46px); line-height: 1; letter-spacing: -.02em; color: var(--orange-2); }
.stat-unit { font-size: .46em; font-weight: 700; letter-spacing: 0; }
.stat-lbl { margin-top: 10px; font-size: 13px; line-height: 1.36; color: #ffffff; letter-spacing: .01em; }
.stat-cell.hot { border-radius: 14px; background: rgba(232,130,30,.16); box-shadow: inset 0 0 0 1.5px rgba(238,138,31,.7); }
.stat-cell.hot + .stat-cell, .stat-cell.hot { border-left-color: transparent; }
.stat-cell.hot .stat-lbl { color: #ffe6c9; }
.stat-dot { position: absolute; top: 12px; right: 14px; width: 9px; height: 9px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 0 rgba(232,130,30,.55); animation: statpulse 2.2s ease-out infinite; }
@keyframes statpulse { 0% { box-shadow: 0 0 0 0 rgba(232,130,30,.5); } 70% { box-shadow: 0 0 0 8px rgba(232,130,30,0); } 100% { box-shadow: 0 0 0 0 rgba(232,130,30,0); } }
/* gallery section follows the stats strip on the same dark canvas */
.price-after-stats { padding-top: clamp(56px, 9vw, 116px); }
@media (prefers-reduced-motion: reduce) { .stat-dot { animation: none; } }

/* ============================================================ 2 · PRICE ============================================================ */
.price-hero { text-align: center; }
.price-num { font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; font-size: clamp(52px, 13vw, 160px); line-height: .92; color: var(--ink); }
.price-num .rub { color: var(--orange); }
.price-cap { font-size: clamp(18px, 2.4vw, 24px); font-weight: 600; color: var(--ink-2); margin-top: 14px; }
.price-cap b { color: var(--orange-dark); }

.compare { margin: clamp(40px,6vw,64px) auto 0; max-width: 900px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare-col { border-radius: var(--r-lg); overflow: hidden; }
.compare-col.bad { background: var(--paper); border: 1px solid var(--line); }
.compare-col.good { background: #fff; border: 1px solid var(--green-soft); box-shadow: var(--shadow); transform: translateY(-8px); }
.compare-hd { padding: 18px 22px; font-family: var(--font-display); font-weight: 800; font-size: 16px; }
.compare-col.bad .compare-hd { background: #e9ede7; color: var(--ink-2); }
.compare-col.good .compare-hd { background: var(--green); color: #fff; }
.compare-cell { padding: 16px 22px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 11px; font-size: 15.5px; }
.compare-col.bad .compare-cell { color: var(--ink-soft); }
.compare-col.good .compare-cell { color: var(--green-deep); font-weight: 700; border-top-color: var(--green-soft); }
.compare-cell .ic { flex-shrink: 0; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; font-size: 13px; }
.compare-col.bad .ic { background: #dce2da; color: #8a948a; }
.compare-col.good .ic { background: var(--green-soft); color: var(--green); }
.price-note { margin: 30px auto 0; max-width: 900px; padding: 16px 22px; border-radius: var(--r); background: var(--green-tint); border: 1px solid var(--line); color: var(--ink-soft); font-size: 14.5px; text-align: center; }
.price-note b { color: var(--ink); }

/* ============================================================ 3 · PACKAGES ============================================================ */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pkg { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s; }
.pkg:hover { box-shadow: var(--shadow); }
.pkg-top { padding: 26px 24px 22px; }
.pkg-no { font-family: var(--font-display); font-weight: 800; font-size: 12.5px; color: var(--orange); letter-spacing: .04em; text-transform: uppercase; line-height: 1.3; }
.pkg h3 { font-size: 21px; margin-top: 8px; line-height: 1.12; text-transform: uppercase; }
.pkg-price { font-family: var(--font-display); font-weight: 800; font-size: 32px; margin-top: 14px; color: var(--orange-dark); }
.pkg-price span { font-size: 16px; color: var(--ink-soft); font-weight: 600; }
.pkg-incl { font-size: 12.5px; color: var(--ink-soft); margin-top: 5px; display: inline-flex; align-items: center; gap: 6px; }
.pkg-incl::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C6E37' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/9px no-repeat; }
.acc-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 24px; border-top: 1px solid var(--line); font-weight: 700; font-size: 14.5px; color: var(--ink-2); background: var(--green-tint); transition: background .2s; }
.acc-toggle:hover { background: var(--green-soft); }
.acc-toggle .chev { width: 22px; height: 22px; flex-shrink: 0; transition: transform .3s; color: var(--green); }
.acc-toggle[aria-expanded="true"] .chev { transform: rotate(180deg); }
.acc-panel { overflow: hidden; max-height: 0; transition: max-height .4s ease; background: var(--green-tint); }
.acc-panel ul { list-style: none; padding: 4px 24px 22px; }
.acc-panel li { display: flex; gap: 10px; padding: 7px 0; font-size: 14.5px; color: var(--ink-soft); border-bottom: 1px solid rgba(216,226,214,.7); }
.acc-panel li:last-child { border-bottom: none; }
.acc-panel li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232C6E37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat; }

.pkg-total { margin-top: 26px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.pkg-formula { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: 8px 16px; }
.pkg-formula .terms { font-size: 18px; color: var(--ink-soft); font-weight: 600; }
.pkg-total .sum { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,4vw,42px); color: var(--orange-dark); }
.pkg-formula-note { max-width: 56ch; font-size: 14.5px; color: var(--ink-soft); line-height: 1.45; text-wrap: pretty; }
.pkg-guarantee { margin: 26px auto 0; max-width: 820px; text-align: center; padding: 24px 28px; background: var(--green); color: #fff; border-radius: var(--r-lg); font-family: var(--font-display); font-weight: 700; font-size: clamp(17px,2.3vw,23px); line-height: 1.3; position: relative; overflow: hidden; isolation: isolate; }
.pkg-guarantee::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--orn-light); background-size: 42px 42px; opacity: .08; }

/* ============================================================ 4 · LIKE AN APARTMENT (versus) ============================================================ */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.vs-col { border-radius: var(--r-lg); overflow: hidden; }
.vs-col.flat { background: var(--paper); border: 1px solid var(--line); }
.vs-col.win { background: #fff; border: 1px solid var(--green-soft); box-shadow: var(--shadow); position: relative; }
.vs-badge { position: absolute; top: 16px; right: 16px; background: var(--orange); color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; padding: 7px 13px; border-radius: var(--r-pill); box-shadow: 0 6px 16px rgba(232,130,30,.35); }
.vs-hd { padding: 24px 26px 18px; }
.vs-hd .vk { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.vs-col.flat .vk { color: #93a093; }
.vs-col.win .vk { color: var(--green); }
.vs-hd .vt { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px,2.6vw,26px); margin-top: 6px; text-transform: uppercase; }
.vs-col.flat .vt { color: #7c887d; }
.vs-col.win .vt { color: var(--ink); }
.vs-row { padding: 16px 26px; border-top: 1px solid var(--line); }
.vs-col.win .vs-row { border-top-color: var(--green-soft); }
.vs-row .vrl { display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 5px; }
.vs-col.flat .vrl { color: #9aa69a; }
.vs-col.win .vrl { color: var(--orange-dark); }
.vs-row .vrl .ic { font-size: 15px; }
.vs-row .vrv { font-size: 16px; font-weight: 600; display: flex; align-items: flex-start; gap: 9px; line-height: 1.35; }
.vs-col.flat .vrv { color: #8b958b; }
.vs-col.win .vrv { color: var(--ink); }
.vs-row .vrv .ck { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; }
.vs-row .vrv .ck svg { width: 12px; height: 12px; stroke: var(--green); }
.vs-row.hot { background: var(--green-tint); margin: 0; }
.vs-conclusion { margin: 26px auto 0; max-width: 900px; text-align: center; padding: 22px 28px; border-radius: var(--r-lg); background: var(--green-tint); border: 1px dashed var(--line-2); font-size: clamp(16px,2.1vw,19px); color: var(--ink-2); line-height: 1.5; text-wrap: pretty; }
.vs-conclusion b { color: var(--green); }

/* ============================================================ 5 · PLANS ============================================================ */
.plan-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(28px,4vw,48px); align-items: flex-start; }
.plan-tabs { display: flex; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.plan-tab { padding: 11px 20px; border-radius: var(--r-pill); font-weight: 700; font-size: 14.5px; background: #fff; border: 1.5px solid var(--line-2); color: var(--ink-soft); transition: all .2s; }
.plan-tab:hover { border-color: var(--orange); color: var(--orange-dark); }
.plan-tab.active { background: var(--green); color: #fff; border-color: var(--green); }
.plan-caption { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; max-width: 70ch; }
.plan-caption b { color: var(--ink); }
.plan-stage { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); cursor: zoom-in; padding: 16px; }
.plan-stage img { width: 100%; height: auto; border-radius: var(--r-sm); }
.plan-zoom { position: absolute; right: 26px; bottom: 26px; width: 46px; height: 46px; border-radius: 50%; background: rgba(33,79,41,.86); color: #fff; display: grid; place-items: center; pointer-events: none; backdrop-filter: blur(4px); }
.plan-zoom svg { width: 22px; height: 22px; }

.specs { background: var(--green-deep); color: #eaf3ea; border-radius: var(--r-lg); padding: 30px 30px 12px; position: relative; overflow: hidden; isolation: isolate; }
.specs::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--orn-light); background-size: 42px 42px; opacity: .06; }
.specs h3 { color: #fff; font-size: 22px; margin-bottom: 8px; text-transform: uppercase; }
.spec-row { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.spec-row:last-child { border-bottom: none; }
.specs-cta { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14); }
.specs-cta-note { margin-top: 11px; text-align: center; font-size: 12.5px; color: #b9d2bb; }
.spec-row .k { font-size: 15px; color: #b9d2bb; }
.spec-row .v { font-family: var(--font-display); font-weight: 800; font-size: 21px; color: #fff; }
.spec-row .v small { font-size: 13px; color: var(--orange-2); font-weight: 700; }

.interior-head { margin-top: clamp(48px,6vw,72px); display: flex; align-items: end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.carousel { margin-top: 26px; position: relative; }
.carousel-track { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 10px; scrollbar-width: thin; }
.carousel-track::-webkit-scrollbar { height: 8px; }
.carousel-track::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 10px; }
.carousel-card { flex: 0 0 min(82%, 440px); scroll-snap-align: start; }
.carousel-nav { display: flex; gap: 10px; }
.car-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line-2); background: #fff; display: grid; place-items: center; color: var(--ink); transition: all .2s; }
.car-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }
.car-btn svg { width: 20px; height: 20px; }

/* architect-change plate */
.arch-plate { margin-top: clamp(32px,5vw,48px); display: flex; align-items: center; gap: 24px; padding: 26px 30px; border-radius: var(--r-lg); background: var(--green-tint); border: 1px solid var(--green-soft); }
.arch-ic { flex-shrink: 0; width: 60px; height: 60px; border-radius: 16px; background: #fff; border: 1px solid var(--green-soft); display: grid; place-items: center; color: var(--green); box-shadow: var(--shadow-sm); }
.arch-ic svg { width: 30px; height: 30px; }
.arch-txt { flex: 1 1 auto; min-width: 0; }
.arch-txt h3 { font-size: 21px; text-transform: uppercase; }
.arch-txt p { margin-top: 6px; font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; max-width: 64ch; text-wrap: pretty; }
.arch-btn { flex-shrink: 0; }
@media (max-width: 720px) {
  .arch-plate { flex-direction: column; align-items: flex-start; gap: 18px; padding: 24px; }
  .arch-btn { width: 100%; }
}

/* modal context chip + segmented control + textarea */
.modal-context { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; padding: 9px 14px; border-radius: var(--r-pill); background: var(--green-tint); border: 1px solid var(--green-soft); font-size: 14px; color: var(--ink-2); }
.modal-context b { color: var(--green); font-family: var(--font-display); }
.modal-context .mc-ic { flex-shrink: 0; width: 18px; height: 18px; color: var(--green); }
.field-label { font-size: 13px; font-weight: 700; color: var(--ink-2); letter-spacing: .02em; margin-top: 2px; }
.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 5px; background: #fff; border: 1.5px solid var(--line-2); border-radius: 14px; }
.seg-opt { position: relative; }
.seg-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg-opt span { display: block; text-align: center; padding: 11px 8px; border-radius: 10px; font-size: 14.5px; font-weight: 700; color: var(--ink-soft); transition: all .18s; cursor: pointer; }
.seg-opt input:checked + span { background: var(--green); color: #fff; box-shadow: 0 4px 12px rgba(44,110,55,.28); }
.seg-opt input:focus-visible + span { outline: 2px solid var(--orange); outline-offset: 2px; }
.lead-form textarea { width: 100%; padding: 14px 18px; border-radius: var(--r); border: 1.5px solid var(--line-2); background: #fff; font-size: 16px; color: var(--ink); resize: vertical; min-height: 72px; transition: border-color .2s; }
.lead-form textarea:focus { outline: none; border-color: var(--orange); }

/* photo placeholder slot — фирменный зелёный стиль */
.photo-slot { position: relative; border-radius: var(--r); overflow: hidden; background: var(--green-soft); border: 1.5px dashed #9bbf9f; display: grid; place-items: center; text-align: center; color: #5f8265; aspect-ratio: 4 / 3; }
.photo-slot::before { content: ""; position: absolute; inset: 0; background-image: var(--orn-green); background-size: 40px 40px; opacity: .07; }
.photo-slot .slot-inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px; }
.photo-slot .slot-ic { width: 42px; height: 42px; opacity: .6; }
.photo-slot .slot-label { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12.5px; letter-spacing: .02em; line-height: 1.4; }
.photo-slot .slot-tag { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 10.5px; padding: 3px 10px; border-radius: 6px; background: rgba(44,110,55,.12); color: var(--green); }

/* ============================================================ 6 · VIDEO ============================================================ */
.video-stage { position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); cursor: pointer; isolation: isolate; background: var(--green-deep); border: 4px solid rgba(255,255,255,.12); }
.video-stage .vbg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62; }
.video-stage::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(20,40,24,.55)); }
.video-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; width: clamp(76px,11vw,104px); aspect-ratio: 1; border-radius: 50%; background: var(--orange); display: grid; place-items: center; box-shadow: 0 14px 40px rgba(232,130,30,.55); transition: transform .25s; }
.video-stage:hover .video-play { transform: translate(-50%,-50%) scale(1.07); }
.video-play svg { width: 36%; height: 36%; fill: #fff; margin-left: 6px; }
.video-meta { position: absolute; left: 26px; bottom: 22px; z-index: 2; color: #fff; }
.video-meta .vt { font-family: var(--font-display); font-weight: 800; font-size: clamp(18px,2.6vw,26px); }
.video-meta .vd { font-size: 14px; opacity: .88; margin-top: 4px; }
.video-cta { margin-top: 26px; text-align: center; }

/* ============================================================ 7 · MORTGAGE ============================================================ */
.calc { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(24px,3.5vw,44px); align-items: stretch; }
.calc-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px,3.5vw,40px); box-shadow: var(--shadow); }
.calc-fixed { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.calc-fixed .k { font-size: 14px; color: var(--ink-soft); }
.calc-fixed .k small { display: block; font-size: 12px; color: var(--orange-dark); font-weight: 700; margin-top: 3px; }
.calc-fixed .v { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px,3vw,34px); }
.field { margin-bottom: 24px; }
.field-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.field-top .fl { font-size: 15px; font-weight: 700; color: var(--ink-2); }
.field-top .fv { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--orange-dark); }
.field-top .fv small { color: var(--ink-soft); font-weight: 600; font-size: 13px; }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 26px; background: transparent; outline: none; cursor: pointer; --fill: 0%; }
/* WebKit / Blink track + fill */
input[type="range"]::-webkit-slider-runnable-track { height: 6px; border-radius: 6px; background: linear-gradient(to right, var(--orange) 0%, var(--orange) var(--fill), var(--line-2) var(--fill), var(--line-2) 100%); }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; margin-top: -9px; border-radius: 50%; background: var(--orange); border: 4px solid #fff; box-shadow: 0 3px 10px rgba(232,130,30,.5); cursor: pointer; }
/* Firefox track + fill */
input[type="range"]::-moz-range-track { height: 6px; border-radius: 6px; background: var(--line-2); }
input[type="range"]::-moz-range-progress { height: 6px; border-radius: 6px; background: var(--orange); }
input[type="range"]::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--orange); border: 4px solid #fff; box-shadow: 0 3px 10px rgba(232,130,30,.5); cursor: pointer; }
.field-scale { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-soft); margin-top: 8px; }
.calc-rate { display: flex; align-items: center; gap: 10px; padding: 14px 18px; background: var(--green-tint); border-radius: var(--r); font-size: 14.5px; color: var(--ink-2); }
.calc-rate b { font-family: var(--font-display); font-size: 19px; color: var(--orange-dark); }

.calc-result { background: var(--green-deep); color: #fff; border-radius: var(--r-lg); padding: clamp(26px,3.5vw,40px); display: flex; flex-direction: column; position: relative; overflow: hidden; isolation: isolate; }
.calc-result::before { content: ""; position: absolute; inset: 0; z-index: -1; background-image: var(--orn-light); background-size: 42px 42px; opacity: .06; }
.calc-result h3 { color: #fff; font-size: 19px; text-transform: uppercase; }
.result-main { margin-top: auto; }
.result-pay .rl { font-size: 14px; color: #b9d2bb; }
.result-pay .rv { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px,6vw,60px); line-height: 1; color: var(--orange-2); margin-top: 6px; }
.result-pay .rv span { font-size: 24px; color: #fff; }
.result-sub { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.result-sub .rs .rl { font-size: 13px; color: #b9d2bb; }
.result-sub .rs .rsv { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: #fff; margin-top: 4px; }
.calc-result .btn { margin-top: 26px; }

.calc-extra { margin-top: clamp(40px,5vw,60px); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.calc-extra h3 { text-transform: uppercase; }
.who-list { list-style: none; }
.who-list li { display: flex; gap: 12px; padding: 11px 0; font-size: 15.5px; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.who-list li:last-child { border: none; }
.who-list .ic { flex-shrink: 0; width: 22px; height: 22px; color: var(--green); }
.banks { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 14px; }
.bank-logo { flex: 1 1 calc(50% - 6px); min-width: 130px; height: 64px; border-radius: var(--r); background: #fff; border: 1.5px solid var(--line); display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); color: var(--ink-soft); font-size: 16px; }
.calc-banner { margin-top: 26px; padding: 18px 24px; border-radius: var(--r); background: var(--green-soft); border-left: 4px solid var(--green); color: var(--green-deep); font-weight: 700; font-size: 15.5px; display: flex; align-items: center; gap: 12px; }

/* ============================================================ 8 · TOUCHPOINTS ============================================================ */
.tp-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; }
.tp-card { flex: 1 1 280px; max-width: calc((100% - 44px) / 3); display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.tp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tp-photo { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.tp-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tp-card:hover .tp-photo img { transform: scale(1.05); }
.tp-badge { position: absolute; left: 16px; bottom: -22px; width: 48px; height: 48px; border-radius: 13px; background: #fff; display: grid; place-items: center; font-size: 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.tp-body { padding: 32px 24px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.tp-body h3 { font-size: 20px; line-height: 1.15; text-transform: uppercase; }
.tp-body p { margin-top: 10px; color: var(--ink-soft); font-size: 15px; flex-grow: 1; }
.tp-body .btn { margin-top: 20px; align-self: flex-start; }
.tp-note { margin: clamp(36px,5vw,52px) auto 0; max-width: 780px; text-align: center; font-size: clamp(16px,2.2vw,21px); color: var(--ink-2); line-height: 1.5; text-wrap: pretty; }
.tp-note b { color: var(--orange-dark); }

/* ============================================================ 9 · BUILT HOUSES ============================================================ */
.built-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.built-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow .25s, transform .25s; }
.built-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.built-card .photo-slot { aspect-ratio: 16/9; border-radius: 0; border-width: 0 0 1.5px 0; }
.built-card .photo-slot .slot-ic { width: 52px; height: 52px; }
.built-body { padding: 22px 24px 24px; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.built-meta { min-width: 0; }
.built-loc { font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.built-date { font-size: 13.5px; color: var(--orange-dark); font-weight: 700; margin-top: 3px; }
.built-quote { flex: 1 1 220px; font-size: 15px; color: var(--ink-soft); font-style: italic; line-height: 1.5; border-left: 3px solid var(--green-soft); padding-left: 14px; }
.built-quote::before { content: "«"; color: var(--orange); font-weight: 800; font-style: normal; }
.built-quote::after { content: "»"; color: var(--orange); font-weight: 800; font-style: normal; }
.built-cta { text-align: center; margin-top: clamp(36px,5vw,52px); }

/* ============================================================ 10 · ABOUT ============================================================ */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px,5vw,64px); align-items: center; }
.about-photo .photo-slot { aspect-ratio: 3/4; border-radius: var(--r-lg); background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.4); color: #d6e6d8; }
.about-photo .photo-slot::before { background-image: var(--orn-light); opacity: .1; }
.about-photo .photo-slot .slot-tag { background: rgba(255,255,255,.16); color: #eaf3ea; }
.about-photo .photo-slot .slot-label { color: #fff; }
.about-quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(21px,2.7vw,29px); line-height: 1.32; letter-spacing: -.01em; text-wrap: pretty; color: #fff; }
.about-quote .lead-mark { color: var(--orange-2); }
.about-name { margin-top: 22px; font-size: 15px; }
.about-name b { font-family: var(--font-display); font-size: 17px; display: block; color: #fff; }
.about-name span { color: #cfe2cf; }
.about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 34px; }
.about-stat .num { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px,3.4vw,38px); color: var(--orange-2); line-height: 1; }
.about-stat .lbl { font-size: 13.5px; color: #cfe2cf; margin-top: 8px; }
.about-cta { margin-top: 32px; }

/* ============================================================ 11 · FAQ ============================================================ */
.faq { max-width: 880px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; transition: box-shadow .2s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--font-display); font-weight: 700; font-size: clamp(16px,2vw,18px); text-align: left; color: var(--ink); }
.faq-q .chev { flex-shrink: 0; width: 24px; height: 24px; color: var(--orange-dark); transition: transform .3s; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.faq-a p { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; text-wrap: pretty; }

/* ============================================================ 12 · FINAL ============================================================ */
.final { text-align: center; }
.final h2 { font-size: clamp(32px,5.5vw,62px); color: #fff; }
.final .lead { margin: 16px auto 0; }
.final-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }
.final-form { max-width: 520px; margin: 36px auto 0; }

/* forms */
.lead-form { display: grid; gap: 14px; }
.lead-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form input[type="text"], .lead-form input[type="tel"] { width: 100%; padding: 16px 18px; border-radius: var(--r); border: 1.5px solid var(--line-2); background: #fff; font-size: 16px; color: var(--ink); transition: border-color .2s; }
.lead-form input:focus { outline: none; border-color: var(--orange); }
.consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink-soft); text-align: left; line-height: 1.45; }
.bg-forest .consent { color: #cfe2cf; }
.consent input { margin-top: 2px; width: 18px; height: 18px; accent-color: var(--orange); flex-shrink: 0; }
.form-note { font-size: 13.5px; color: var(--ink-soft); text-align: center; margin-top: 4px; }
.bg-forest .form-note { color: #cfe2cf; }
.form-success { text-align: center; padding: 30px 20px; }
.form-success .check { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--green); display: grid; place-items: center; }
.form-success .check svg { width: 32px; height: 32px; stroke: #fff; }
.form-success h3 { font-size: 24px; color: var(--ink); }
.bg-forest .form-success h3 { color: #fff; }
.form-success p { color: var(--ink-soft); margin-top: 8px; }
.bg-forest .form-success p { color: #cfe2cf; }

/* ============================================================ 13 · FOOTER ============================================================ */
.footer { background: var(--ink); color: #b7bdb7; padding-block: clamp(48px,7vw,80px) 30px; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(28px,4vw,56px); }
.footer .logo-txt b, .footer .logo-txt span { color: #fff; }
.footer-about { margin-top: 18px; font-size: 14.5px; max-width: 34ch; }
.footer-contacts { margin-top: 18px; display: grid; gap: 8px; font-size: 14.5px; }
.footer-contacts a { color: #fff; font-weight: 600; }
.footer-contacts a:hover { color: var(--orange-2); }
.footer h4 { color: #fff; font-family: var(--font-display); font-size: 15px; margin-bottom: 16px; letter-spacing: .02em; text-transform: uppercase; }
.footer-nav { display: grid; gap: 10px; }
.footer-nav a { font-size: 14.5px; }
.footer-nav a:hover { color: var(--orange-2); }
.socials { display: flex; gap: 12px; margin-top: 8px; }
.social { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s; }
.social:hover { background: var(--orange); }
.social svg { width: 20px; height: 20px; fill: #fff; }
.footer-bottom { margin-top: clamp(36px,5vw,56px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 13px; }
.footer-bottom a:hover { color: var(--orange-2); }

/* ============================================================ MODAL / LIGHTBOX ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(20,40,24,.74); backdrop-filter: blur(6px); display: grid; place-items: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: var(--paper-2); border-radius: var(--r-lg); width: 100%; max-width: 480px; padding: clamp(28px,4vw,40px); box-shadow: var(--shadow-lg); position: relative; transform: translateY(20px) scale(.98); transition: transform .3s; max-height: 90vh; overflow-y: auto; }
.modal-overlay.open .modal { transform: none; }
.modal h3 { font-size: clamp(22px,3vw,28px); text-transform: uppercase; }
.modal p.msub { color: var(--ink-soft); margin-top: 8px; margin-bottom: 22px; font-size: 15px; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; background: rgba(33,79,41,.08); display: grid; place-items: center; transition: background .2s; z-index: 3; }
.modal-close:hover { background: rgba(33,79,41,.16); }
.modal-close svg { width: 20px; height: 20px; }
.modal-video { max-width: 980px; background: #000; padding: 0; overflow: hidden; }
.modal-video .video-stage { border-radius: 0; box-shadow: none; cursor: default; border: none; }
.modal-video .modal-close { background: rgba(255,255,255,.16); color: #fff; }
.modal-video .modal-close:hover { background: rgba(255,255,255,.3); }

.lightbox { position: fixed; inset: 0; z-index: 210; background: rgba(16,28,16,.93); display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 96vw; max-height: 90vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); background: #fff; }
.lightbox .modal-close { background: rgba(255,255,255,.16); color: #fff; }
.lightbox .modal-close:hover { background: rgba(255,255,255,.3); }

/* ============================================================ PHOTO FILLED / RENDERS ============================================================ */
.photo-slot.has-photo { border: none; background: var(--green-soft); }
.photo-slot.has-photo::before { display: none; }
.photo-slot.has-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo .photo-slot.has-photo img { object-position: center top; }

.bank-logo img { max-width: 76%; max-height: 38px; width: auto; height: auto; object-fit: contain; }

.render-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-top: clamp(28px,4vw,40px); }
.render-card { position: relative; padding: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--green-soft); box-shadow: var(--shadow-sm); cursor: zoom-in; aspect-ratio: 16/10; transition: transform .25s, box-shadow .25s; }
.render-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.render-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.render-card:hover img { transform: scale(1.05); }
.render-zoom { position: absolute; right: 12px; bottom: 12px; width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.92); display: grid; place-items: center; color: var(--ink); box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(6px); transition: opacity .25s, transform .25s; }
.render-card:hover .render-zoom { opacity: 1; transform: none; }
.render-zoom svg { width: 20px; height: 20px; }
.render-note { margin-top: 18px; font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); max-width: 64ch; }

/* interior carousel cards (block 5) */
.int-card { display: flex; flex-direction: column; }
.int-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--r-lg); cursor: zoom-in; display: block; box-shadow: var(--shadow-sm); }
.int-cap { margin-top: 13px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink-2); }

/* ============================================================ 1c · VIZ STRIP (renders carousel, fused to stats) ============================================================ */
/* sits directly under the dark stats strip — one continuous dark canvas, no heading */
.vizstrip { background: #0c120b; color: #fff; padding-top: 0; padding-bottom: 0; position: relative; }

.vizstrip-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 0;
  scroll-snap-type: x mandatory;
  width: 100%;
  padding-inline: 0;
  padding-bottom: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scrollbar-color: transparent transparent;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-overflow-scrolling: touch;
}
.vizstrip-track::-webkit-scrollbar { -webkit-appearance: none; display: none; width: 0 !important; height: 0 !important; background: transparent; }
.vizstrip-track::-webkit-scrollbar-thumb { background: transparent; }
.vizstrip-track.dragging { cursor: grabbing; scroll-snap-type: none; scroll-behavior: auto; }
.vizstrip-track.dragging img { pointer-events: none; }
.viz-card {
  margin: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 360px;
  height: 380px;
  scroll-snap-align: start;
  border-radius: 0;
  overflow: hidden;
  background: #161d14;
  box-shadow: none;
}
.viz-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}
/* clean flat end — no gradient veil over the lente */
.vizstrip::after { content: none; }
@media (max-width: 560px) {
  .viz-card { flex-basis: 300px; height: 340px; }
}

/* ============================================================ REVEAL ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .scroll-hint { animation: none; }
}

/* ============================================================ RESPONSIVE ============================================================ */
@media (max-width: 1080px) {
  .nav, .header-phone { display: none; }
  .pkg-grid { grid-template-columns: 1fr 1fr; }
  .tp-card { max-width: calc((100% - 22px) / 2); }
}
@media (max-width: 920px) {
  .burger { display: block; }
  .header-call { display: none; }
  .plan-wrap { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 340px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding-block: 104px 56px; }
  .hero-col { max-width: 640px; }
}
@media (max-width: 720px) {
  .compare { grid-template-columns: 1fr; }
  .compare-col.good { transform: none; }
  .vs { grid-template-columns: 1fr; }
  .calc-extra { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 22px; }
  .built-grid { grid-template-columns: 1fr; }
  .render-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .tp-card { max-width: 100%; }
  .hero-stats { padding: 26px 0 28px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 16px 14px; }
  .stat-cell + .stat-cell { border-left: none; }
  .stat-cell:nth-child(even) { border-left: 1px solid rgba(255,255,255,.14); }
  .stat-cell:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.12); }
  .stat-cell.hot { border-left-color: transparent; }
  .footer-top { grid-template-columns: 1fr; }
  .lead-form .row2 { grid-template-columns: 1fr; }
  .hero-ctas .btn, .final-ctas .btn { width: 100%; }
  .result-sub { gap: 16px; }
  .hero-orn { display: none; }
  .hero-col { max-width: 100%; }
  .hero-bar { gap: 0; }
  .hb-price, .hb-lock, .hb-specs { flex: 1 1 100%; border-left: none; }
  .hb-lock { max-width: 100%; }
  .hb-lock, .hb-specs { border-top: 1px solid rgba(255,255,255,.14); }
  .hb-specs { padding-inline: clamp(14px, 4vw, 24px); }
}
