/* =========================================================
   Lipovaya Roshcha Apartments — Design System
   Warm loft · terracotta · conversion-first
   ========================================================= */
:root {
  --ink: #1c1917;
  --ink-soft: #44403c;
  --muted: #78716c;
  --line: #e7e0d8;
  --bg: #f7f3ee;
  --bg-alt: #efe8df;
  --card: #ffffff;
  --terra: #c4784a;
  --terra-deep: #a85f35;
  --terra-soft: rgba(196, 120, 74, 0.12);
  --cream: #faf7f3;
  --dark: #141210;
  --dark-2: #221e1b;
  --success: #2f6b4f;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(28, 25, 23, 0.07);
  --shadow-lg: 0 24px 60px rgba(28, 25, 23, 0.14);
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --max: 1180px;
  --header-h: 72px;
  --sticky-h: 64px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: env(safe-area-inset-bottom);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
em { font-style: normal; color: var(--terra); font-family: var(--serif); }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
.container--narrow { width: min(100% - 40px, 760px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  border-radius: 14px;
  padding: 13px 22px;
  font-size: 15px;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
a.btn { color: inherit; }
a.btn--primary { color: #fff; }
a.btn--light { color: var(--ink); }
.btn--primary {
  background: linear-gradient(135deg, var(--terra), var(--terra-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(196, 120, 74, 0.35);
}
.btn--primary:hover { box-shadow: 0 16px 36px rgba(196, 120, 74, 0.45); }
.btn--light {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  border: 1.5px solid var(--line);
  background: #fff;
}
.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost-dark:hover { border-color: var(--terra); color: var(--terra-deep); }
.btn--xl { padding: 16px 28px; font-size: 16px; border-radius: 16px; }
.btn--block { width: 100%; }
.btn__pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ---------- Topbar / Header ---------- */
.topbar {
  background: var(--dark);
  color: #d6d3d1;
  font-size: 13px;
  position: relative;
  z-index: 110;
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
  flex-wrap: wrap;
  padding: 8px 0;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: .9;
}
.topbar__phone {
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}
.topbar__phone:hover { color: #f0c9a8; }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06);
}
.header__in {
  display: flex;
  align-items: center;
  gap: 20px;
  height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo__mark {
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--terra), var(--terra-deep));
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  letter-spacing: -.5px;
  box-shadow: 0 8px 20px rgba(196, 120, 74, 0.3);
}
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__text strong { font-size: 15px; font-weight: 800; }
.logo__text small { font-size: 11.5px; color: var(--muted); font-weight: 500; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 10px;
  transition: .15s;
}
.nav a:hover { color: var(--terra-deep); background: var(--terra-soft); }

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.burger {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: var(--shadow);
}
.burger span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: .2s;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.2) 0%, rgba(20, 18, 16, 0.5) 40%, rgba(20, 18, 16, 0.92) 100%),
    linear-gradient(105deg, rgba(20, 18, 16, 0.65) 0%, rgba(20, 18, 16, 0.2) 55%, transparent 75%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 0 64px;
  max-width: 820px;
  margin-left: max(20px, calc((100% - var(--max)) / 2));
  margin-right: 20px;
  width: auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.2);
}
.hero__title {
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.2px;
  margin-bottom: 16px;
}
.hero__title em {
  color: #f0c9a8;
  font-family: var(--serif);
  font-weight: 600;
}
.hero__lead {
  font-size: clamp(16px, 2vw, 18.5px);
  color: #e7e5e4;
  max-width: 540px;
  margin-bottom: 28px;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.stat {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 140px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.stat strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}
.stat span {
  font-size: 12.5px;
  color: #d6d3d1;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.hero__trust {
  font-size: 13.5px;
  color: #a8a29e;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.trust-strip__in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 22px 0;
}
.trust-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 10px;
}
.trust-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--terra-soft);
  color: var(--terra-deep);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.trust-item small {
  color: var(--muted);
  font-size: 12.5px;
}

/* ---------- Sections ---------- */
.sec { padding: 80px 0; }
.sec--alt { background: var(--bg-alt); }
.sec--dark {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  color: #fff;
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.sec-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -.6px;
  line-height: 1.15;
  margin-top: 6px;
}
.sec-head--light h2 { color: #fff; }
.sec-sub {
  margin-top: 12px;
  color: var(--muted);
  max-width: 520px;
  font-size: 16px;
}
.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terra);
}
.sec-head--light .eyebrow { color: #f0c9a8; }
.link-arrow {
  font-weight: 700;
  color: var(--terra-deep);
  font-size: 15px;
  white-space: nowrap;
}
.link-arrow:hover { text-decoration: underline; }

/* ---------- Location cards ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.loc-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.loc-card--featured {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(196, 120, 74, 0.08), transparent 50%),
    var(--card);
  border-color: rgba(196, 120, 74, 0.25);
}
.loc-card__num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 10px;
  opacity: .85;
}
.loc-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.loc-card p {
  color: var(--ink-soft);
  font-size: 15px;
}
.loc-list {
  margin-top: 14px;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.loc-list li { margin: 4px 0; }

.who-for {
  margin-top: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.who-for h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}
.who-for__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.who-chip {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: .15s;
}
.who-chip:hover {
  border-color: var(--terra);
  color: var(--terra-deep);
  background: var(--terra-soft);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.gallery__item {
  position: relative;
  border: none;
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  background: #ddd;
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  display: block;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.gallery__item--hero {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  opacity: 0;
  transition: .2s;
}
.gallery__item:hover .gallery__cap { opacity: 1; }

/* ---------- Amenities (photo cards) ---------- */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.amen {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: 0 4px 16px rgba(28, 25, 23, 0.04);
}
.amen:hover {
  border-color: rgba(196, 120, 74, 0.35);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.amen__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e0d6;
}
.amen__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 25, 23, 0.08) 100%);
  pointer-events: none;
}
.amen__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.amen:hover .amen__photo img { transform: scale(1.06); }
.amen__body {
  padding: 16px 18px 18px;
}
.amen strong {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -.2px;
}
.amen small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* ---------- Compare ---------- */
.compare {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
}
.compare__col {
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.compare__col--us {
  background: linear-gradient(160deg, rgba(196, 120, 74, 0.22), rgba(255, 255, 255, 0.06));
  border-color: rgba(240, 201, 168, 0.35);
}
.compare__col h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
}
.compare__col ul {
  list-style: none;
  margin-bottom: 22px;
}
.compare__col li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  color: #e7e5e4;
}
.compare__col li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f0c9a8;
  font-weight: 800;
}
.muted-list li { color: #a8a29e !important; }
.muted-list li::before {
  content: "–" !important;
  color: #78716c !important;
}

/* ---------- Booking — call only ---------- */
.call-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.call-panel__visual {
  position: relative;
  min-height: 420px;
  background: #1c1917;
}
.call-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.call-panel__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 25, 23, 0.15), rgba(28, 25, 23, 0.45));
}
.call-panel__badge {
  position: absolute;
  top: 20px; left: 20px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: var(--terra-deep);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}
.call-panel__body {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.call-panel__body h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 6px 0 14px;
  line-height: 1.15;
}
.call-panel__lead {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 440px;
  line-height: 1.55;
}
.steps {
  list-style: none;
  counter-reset: step;
  margin-bottom: 24px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 12px 0 12px 48px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  color: var(--ink-soft);
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--terra-soft);
  color: var(--terra-deep);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.steps strong { color: var(--ink); }

.call-mega {
  display: block;
  background: linear-gradient(135deg, #1c1917, #2c2520);
  color: #fff;
  border-radius: 20px;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.22);
  text-decoration: none;
}
.call-mega:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(196, 120, 74, 0.28);
}
.call-mega__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #d6d3d1;
  margin-bottom: 6px;
}
.call-mega__num {
  display: block;
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 800;
  letter-spacing: -.5px;
  color: #f0c9a8;
  line-height: 1.15;
}
.call-panel__alt {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.book-note {
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.book-note a {
  color: var(--terra-deep);
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- Map ---------- */
.map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #ddd;
  aspect-ratio: 16 / 9;
  min-height: 320px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- FAQ ---------- */
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: .2s;
}
.faq__item[open] {
  border-color: rgba(196, 120, 74, 0.35);
  box-shadow: var(--shadow);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 750;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--terra);
  flex-shrink: 0;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  padding: 0 20px 18px;
  color: var(--ink-soft);
  font-size: 15px;
}
.faq__item a {
  color: var(--terra-deep);
  font-weight: 700;
  text-decoration: underline;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    linear-gradient(135deg, rgba(28, 25, 23, 0.88), rgba(28, 25, 23, 0.75)),
    url("assets/photos/1.jpg") center/cover;
  color: #fff;
  padding: 72px 0;
}
.final-cta__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.final-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}
.final-cta p {
  color: #d6d3d1;
  font-size: 16px;
}
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: #a8a29e;
  padding: 56px 0 100px;
}
.footer__in {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer .logo__text strong { color: #fff; }
.footer .logo__text small { color: #a8a29e; }
.footer__brand p {
  margin-top: 14px;
  font-size: 14px;
  max-width: 280px;
  line-height: 1.5;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer__col a {
  font-size: 14.5px;
  transition: .15s;
}
.footer__col a:hover { color: #f0c9a8; }
.footer__addr {
  font-size: 13.5px;
  margin-top: 6px;
  line-height: 1.45;
}
.footer__legal {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  line-height: 1.5;
}
.footer__copy { opacity: .7; }

/* ---------- Sticky mobile bar ---------- */
.sticky-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 120;
  display: none;
  gap: 8px;
  padding-bottom: env(safe-area-inset-bottom);
  pointer-events: none;
}
.sticky-bar a {
  pointer-events: auto;
  text-decoration: none;
}
.sticky-bar__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--terra), var(--terra-deep));
  color: #fff;
  font-weight: 800;
  font-size: 14.5px;
  border-radius: 16px;
  padding: 15px 14px;
  box-shadow: 0 12px 32px rgba(196, 120, 74, 0.45);
}
.sticky-bar__wa {
  width: 54px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 8, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 64px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  opacity: .8;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: .15s;
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }
.lightbox__cap {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #d6d3d1;
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Reveal ---------- */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}
.rv.in {
  opacity: 1;
  transform: none;
}

/* ---------- Offer page extras ---------- */
.offer-page {
  background: var(--bg);
  padding: 40px 0 80px;
}
.offer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(24px, 4vw, 48px);
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}
.offer-card h1 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}
.offer-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.offer-card h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 28px 0 12px;
  color: var(--ink);
}
.offer-card p, .offer-card li {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  line-height: 1.6;
}
.offer-card ul, .offer-card ol {
  padding-left: 20px;
  margin-bottom: 12px;
}
.offer-card li { margin-bottom: 6px; }
.offer-card a { color: var(--terra-deep); font-weight: 700; }
.offer-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--terra-deep);
}
.requisites {
  background: var(--bg);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.55;
}
.requisites strong { color: var(--ink); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .loc-card--featured { grid-column: span 2; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--hero { grid-column: span 2; grid-row: span 2; }
  .amen-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__in { grid-template-columns: 1fr 1fr; }
  .trust-strip__in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: calc(38px + var(--header-h)) 0 auto 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: none;
    margin: 0;
    z-index: 99;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 12px; font-size: 16px; }
  .burger { display: flex; }
  .header__call-text { display: none; }
  .compare { grid-template-columns: 1fr; }
  .call-panel { grid-template-columns: 1fr; }
  .call-panel__visual { min-height: 240px; max-height: 280px; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 80px; }
  .footer { padding-bottom: 120px; }
  .hero__content { margin-left: 20px; }
  .header__cta .btn--primary { display: inline-flex; padding: 11px 14px; font-size: 13.5px; }
}

@media (max-width: 640px) {
  .topbar__hide-sm { display: none; }
  .logo__text { display: none; }
  .trust-strip__in { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-card--featured { grid-column: span 1; }
  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
  .gallery__item--hero {
    grid-column: span 2;
    grid-row: span 2;
  }
  .amen-grid { grid-template-columns: 1fr; }
  .call-panel__alt .btn { width: 100%; }
  .call-mega { text-align: center; }
  .call-mega__label { justify-content: center; }
  .footer__in { grid-template-columns: 1fr; }
  .hero { min-height: 92vh; }
  .hero__actions .btn--xl { width: 100%; }
  .final-cta__actions { width: 100%; }
  .final-cta__actions .btn { width: 100%; }
  .sec { padding: 56px 0; }
  .lightbox { padding: 56px 12px 40px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__prev { left: 8px; }
  .lightbox__next { right: 8px; }
  .sticky-bar__call { font-size: 13.5px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .rv { opacity: 1; transform: none; }
}
