:root {
  --bg: #f3efe7;
  --dark: #101214;
  --text: #171717;
  --muted: #6c6c6c;
  --card: #ffffff;
  --gold: #c7a15a;
  --green: #19b66d;
  --line: rgba(0,0,0,.09);
  --radius: 28px;
  --shadow: 0 24px 60px rgba(0,0,0,.10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; }

.site-shell {
  overflow: hidden;
}

.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 32px));
  height: 66px;
  z-index: 99;
  border-radius: 22px;
  padding: 0 12px 0 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(16,18,20,.72);
  color: white;
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 48px rgba(0,0,0,.20);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
  letter-spacing: -.2px;
  margin-right: auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255,255,255,.74);
}

.nav-links a,
.nav-wa {
  text-decoration: none;
}

.nav-wa {
  padding: 13px 18px;
  border-radius: 16px;
  background: var(--green);
  color: white;
  font-weight: 800;
  font-size: 14px;
}

.nav-toggle { display: none; }

.hero {
  min-height: 100vh;
  position: relative;
  color: white;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.32), rgba(0,0,0,.78)),
    url("images/hero-premium-evening.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 30%, rgba(201,164,92,.35), transparent 28%);
  z-index: -1;
}

.hero-content {
  max-width: 720px;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  background: rgba(201,164,92,.12);
  border: 1px solid rgba(201,164,92,.22);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -4px;
  margin: 0 0 24px;
}

.hero p {
  max-width: 600px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 28px;
}

.hero-actions,
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: #17130b;
}

.btn-glass {
  background: rgba(255,255,255,.10);
  color: white;
  border-color: rgba(255,255,255,.18);
  backdrop-filter: blur(16px);
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 12px;
  max-width: 620px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
}

.hero-stats span {
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

.hero-card {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2));
  bottom: 80px;
  width: 330px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(22px);
}

.hero-card span {
  color: var(--gold);
  font-weight: 850;
  font-size: 13px;
}

.hero-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  margin: 12px 0;
}

.hero-card p {
  font-size: 14px;
  margin: 0;
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 100px 0 0;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
}

.section h2 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: .95;
  letter-spacing: -2.6px;
  margin: 0;
}

.intro p,
.section-head p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 390px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.filter {
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  background: var(--dark);
  color: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.9);
}

.project.hidden {
  display: none;
}

.project-img {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.img-horizon {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.62)),
    url("images/horizon-1.jpeg");
}

.img-sails {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.65)),
    url("images/alye-photo-4.jpg");
}

.img-city {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.65)),
    url("https://images.unsplash.com/photo-1560518883-ce09059eeffa?q=80&w=1200&auto=format&fit=crop");
}

.project-badge {
  position: absolute;
  left: 16px;
  top: 16px;
  color: white;
  background: rgba(0,0,0,.36);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.project-body {
  padding: 22px;
}

.project-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.project h3 {
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.8px;
  margin: 0 0 5px;
}

.project p {
  color: var(--muted);
  margin: 0;
}

.price {
  background: #f5f0e5;
  color: #7b5b19;
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.specs span {
  padding: 9px 10px;
  border-radius: 999px;
  background: #f5f5f5;
  font-size: 12px;
  font-weight: 800;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.clean-list li {
  position: relative;
  padding-left: 24px;
  color: #373737;
  line-height: 1.45;
}

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  min-height: 52px;
  border-radius: 17px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 850;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-card {
  background: white;
  padding: 26px;
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(0,0,0,.07);
}

.benefit-card span {
  color: var(--gold);
  font-weight: 900;
}

.benefit-card h3 {
  font-size: 21px;
  line-height: 1.1;
  margin: 18px 0 10px;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.timeline-item {
  background: var(--dark);
  color: white;
  padding: 24px;
  border-radius: 28px;
  min-height: 230px;
}

.timeline-item b {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #17130b;
  margin-bottom: 28px;
}

.timeline-item h3 {
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 10px;
}

.timeline-item p {
  color: rgba(255,255,255,.68);
  line-height: 1.5;
  margin: 0;
}

.contact {
  width: min(1160px, calc(100% - 32px));
  margin: 100px auto 0;
  border-radius: 36px;
  color: white;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55)),
    url("https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?q=80&w=1800&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.contact-content {
  max-width: 650px;
  padding: 70px;
}

.contact h2 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -2.8px;
  margin: 0 0 18px;
}

.contact p {
  color: rgba(255,255,255,.76);
  font-size: 18px;
  line-height: 1.55;
  margin: 0 0 26px;
}

.phone {
  margin-top: 24px;
  font-size: 24px;
  font-weight: 900;
}

.footer {
  width: min(1160px, calc(100% - 32px));
  margin: 34px auto 40px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer span {
  color: var(--text);
  font-weight: 900;
}

.mobile-bottom {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.mini-gallery img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
  background: #fff;
}

.gallery-grid .wide {
  grid-column: span 2;
}

.gallery-grid .masterplan {
  object-fit: contain;
  background: white;
  padding: 12px;
}


@media (max-width: 900px) {
  body { padding-bottom: 86px; }

  .navbar {
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav-links,
  .nav-wa {
    display: none;
  }

  .nav-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 0;
    background: rgba(255,255,255,.08);
    border-radius: 15px;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    background: white;
    border-radius: 2px;
  }

  .nav-links.open {
    display: grid;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 18px;
    background: rgba(16,18,20,.95);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
  }

  .hero {
    min-height: 760px;
    padding: 120px 16px 34px;
    align-items: end;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.90)),
      url("images/hero-premium-evening.jpg");
    background-size: cover;
    background-position: center;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.4px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .section {
    width: calc(100% - 32px);
    padding-top: 62px;
  }

  .intro,
  .section-head {
    grid-template-columns: 1fr;
    display: grid;
    gap: 18px;
  }

  .section h2 {
    font-size: 38px;
    letter-spacing: -1.7px;
  }

  .intro p,
  .section-head p {
    font-size: 15px;
  }

  .projects-grid,
  .benefit-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .project-img {
    height: 210px;
  }

  .mini-gallery img {
    height: 78px;
    border-radius: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid .wide {
    grid-column: span 1;
    height: 420px;
  }

  .gallery-grid .masterplan {
    height: auto;
    max-height: 520px;
  }



  .project-top {
    display: grid;
  }

  .price {
    width: fit-content;
  }

  .timeline-item {
    min-height: auto;
  }

  .contact {
    width: calc(100% - 32px);
    margin-top: 62px;
    border-radius: 30px;
  }

  .contact-content {
    padding: 34px 20px;
  }

  .contact h2 {
    font-size: 40px;
    letter-spacing: -1.7px;
  }

  .contact-actions {
    display: grid;
  }

  .footer {
    width: calc(100% - 32px);
    display: grid;
    font-size: 13px;
  }

  .mobile-bottom {
    position: fixed;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    width: min(420px, calc(100% - 28px));
    padding: 9px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    background: rgba(16,18,20,.90);
    border-radius: 24px;
    z-index: 100;
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(18px);
  }

  .mobile-bottom a {
    text-align: center;
    padding: 14px 10px;
    border-radius: 17px;
    color: white;
    text-decoration: none;
    font-weight: 850;
  }

  .mobile-bottom a:first-child {
    background: rgba(255,255,255,.10);
  }

  .mobile-bottom a:last-child {
    background: var(--green);
  }
}


.clickable-card {
  cursor: pointer;
}

.object-hero {
  min-height: 760px;
  position: relative;
  color: white;
  display: grid;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1160px) / 2)) 70px;
}

.object-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
}

.horizon-object-bg {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.86)),
    url("images/horizon-2.jpeg");
}

.object-hero-content {
  max-width: 760px;
}

.object-hero h1 {
  font-size: clamp(50px, 7vw, 96px);
  line-height: .9;
  letter-spacing: -4px;
  margin: 0 0 24px;
}

.object-hero p {
  max-width: 650px;
  color: rgba(255,255,255,.80);
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 28px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-weight: 800;
}

.object-summary {
  width: min(1160px, calc(100% - 32px));
  margin: -44px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.summary-card {
  background: white;
  padding: 22px;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(0,0,0,.11);
}

.summary-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.summary-card strong {
  font-size: 20px;
}

.object-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.object-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.object-photo-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 16px 42px rgba(0,0,0,.08);
}

.object-photo-grid .big {
  grid-column: span 2;
  grid-row: span 2;
  height: 674px;
}

.layout-card {
  background: white;
  padding: 18px;
  border-radius: 30px;
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
}

.layout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 6px 20px;
}

.layout-header h3 {
  margin: 0 0 4px;
  font-size: 26px;
  letter-spacing: -.7px;
}

.layout-header p {
  margin: 0;
  color: var(--muted);
}

.layout-header a {
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 850;
  padding: 14px 18px;
  border-radius: 16px;
  white-space: nowrap;
}

.layout-card img {
  width: 100%;
  border-radius: 22px;
  display: block;
  background: #f7f7f7;
}

.layout-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.layout-options div {
  padding: 15px;
  border-radius: 18px;
  background: #f6f2ea;
}

.layout-options strong {
  display: block;
  font-size: 20px;
}

.layout-options span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 900px) {
  .object-hero {
    min-height: 720px;
    padding: 120px 16px 34px;
  }

  .object-hero h1 {
    font-size: 47px;
    letter-spacing: -2.2px;
  }

  .object-hero p {
    font-size: 16px;
  }

  .object-summary,
  .object-info-grid,
  .object-photo-grid,
  .layout-options {
    grid-template-columns: 1fr;
  }

  .object-summary {
    margin-top: -28px;
  }

  .object-photo-grid img,
  .object-photo-grid .big {
    grid-column: span 1;
    grid-row: span 1;
    height: 420px;
  }

  .layout-card {
    padding: 10px;
    border-radius: 24px;
  }

  .layout-header {
    display: grid;
    padding: 8px 6px 14px;
  }

  .layout-header a {
    text-align: center;
  }
}

.img-moscow {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.65)),
    url("images/moscow-photo-1.jpg");
}
.clickable-card { cursor: pointer; }


.layouts-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.layouts-grid img{width:100%;display:block;border-radius:24px;background:white;box-shadow:0 16px 42px rgba(0,0,0,.08)}.object-layout-options{margin-bottom:18px}
@media(max-width:900px){.layouts-grid{grid-template-columns:1fr}}


.map-card{
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:32px;
  padding:18px;
  backdrop-filter: blur(14px);
}

.map-actions{
  margin-top:18px;
  display:flex;
  justify-content:flex-end;
}


.about-section {
  padding-top: 80px;
}

.about-card {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  padding: 22px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(9,38,28,.98), rgba(10,18,16,.96));
  border: 1px solid rgba(201,164,92,.22);
  box-shadow: 0 24px 70px rgba(0,0,0,.16);
  overflow: hidden;
}

.about-content {
  padding: 34px 28px;
  color: white;
}

.about-content h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: .95;
  letter-spacing: -2px;
  margin: 0 0 18px;
}

.about-content p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 24px;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.about-points div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.35;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.about-points span {
  color: var(--gold);
  font-weight: 900;
}

.about-note {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(201,164,92,.12);
  border: 1px solid rgba(201,164,92,.25);
  color: #f4d998;
  line-height: 1.45;
  font-size: 14px;
}

.about-image {
  min-height: 470px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Yandex map card polish */
.map-card {
  background: white;
  border-radius: 32px;
  padding: 18px;
  box-shadow: 0 18px 48px rgba(0,0,0,.08);
}

.map-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .about-section {
    padding-top: 54px;
  }

  .about-card {
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 30px;
  }

  .about-content {
    padding: 24px 16px;
  }

  .about-points {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 360px;
  }

  .map-actions {
    display: grid;
  }
}


/* Responsive VetraEstate hero background */
.hero-bg {
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.28), rgba(0,0,0,.55)),
    url("images/hero-desktop-vetra.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
}

@media (max-width: 900px) {
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.78)),
      url("images/hero-mobile-vetra.jpg") !important;
    background-size: cover !important;
    background-position: center top !important;
  }

  .hero {
    min-height: 820px;
  }
}


/* Layout-linked calculator */
.calculator-section {
  padding-top: 76px;
}

.plan-calc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.plan-calc-card {
  border: 1px solid rgba(201,164,92,.18);
  background: #fff;
  border-radius: 26px;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0,0,0,.07);
  transition: .22s ease;
  color: var(--text);
  font-family: inherit;
}

.plan-calc-card:hover,
.plan-calc-card.active {
  transform: translateY(-3px);
  border-color: rgba(201,164,92,.75);
  box-shadow: 0 22px 54px rgba(0,0,0,.13);
  background: linear-gradient(145deg, #ffffff, #fff7e7);
}

.plan-badge {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(201,164,92,.14);
  color: #8a671e;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.plan-calc-card strong {
  display: block;
  font-size: 23px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.plan-calc-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.plan-payment {
  margin: 16px 0 8px;
  font-size: 22px;
  font-weight: 950;
  color: var(--dark);
}

.plan-calc-card em {
  font-style: normal;
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.calc-box {
  border-radius: 34px;
  padding: 26px;
  color: #fff;
  background: linear-gradient(135deg, rgba(9,38,28,.98), rgba(10,18,16,.96));
  border: 1px solid rgba(201,164,92,.24);
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.calc-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 22px;
}

.calc-header span {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}

.calc-header h3 {
  margin: 8px 0 5px;
  font-size: 34px;
  letter-spacing: -1.2px;
}

.calc-header p {
  margin: 0;
  color: rgba(255,255,255,.70);
}

.calc-pill {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(201,164,92,.14);
  color: #f0cf85;
  font-weight: 900;
  white-space: nowrap;
}

.calc-inputs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.calc-inputs label {
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 800;
}

.calc-inputs input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #fff;
  outline: none;
  border-radius: 16px;
  padding: 15px;
  font-size: 16px;
  font-weight: 850;
}

.calc-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.calc-results div {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  padding: 16px;
}

.calc-results span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  margin-bottom: 8px;
}

.calc-results strong {
  font-size: 20px;
  line-height: 1.05;
}

.calc-results .main-result {
  background: rgba(201,164,92,.16);
  border-color: rgba(201,164,92,.25);
}

.calc-results .main-result strong {
  color: #f2d48a;
  font-size: 24px;
}

.calc-wa {
  margin-top: 16px;
  min-height: 56px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}

@media (max-width: 900px) {
  .calculator-section {
    padding-top: 58px;
  }

  .plan-calc-grid,
  .calc-inputs,
  .calc-results {
    grid-template-columns: 1fr;
  }

  .calc-box {
    padding: 18px;
    border-radius: 28px;
  }

  .calc-header {
    display: grid;
  }

  .calc-header h3 {
    font-size: 28px;
  }

  .calc-pill {
    width: fit-content;
  }

  .plan-calc-card {
    padding: 18px;
  }
}


/* About block without photo */
.about-card {
  grid-template-columns: 1fr !important;
}

.about-content {
  max-width: 980px;
}

.about-image {
  display: none !important;
}


/* Smart calculator price field */
.calc-price[readonly] {
  opacity: .9;
  cursor: not-allowed;
  background: rgba(201,164,92,.11) !important;
  border-color: rgba(201,164,92,.25) !important;
}


/* Premium calculator animations */
.plan-calc-card {
  position: relative;
  overflow: hidden;
}

.plan-calc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(201,164,92,.18), transparent);
  transform: translateX(-120%);
  transition: .6s ease;
  pointer-events: none;
}

.plan-calc-card:hover::after,
.plan-calc-card.active::after {
  transform: translateX(120%);
}

.plan-calc-card.active {
  outline: 2px solid rgba(201,164,92,.55);
  outline-offset: -2px;
}

.calc-results strong {
  transition: transform .22s ease, color .22s ease;
}

.calc-results strong.number-pop {
  transform: scale(1.045);
  color: #f2d48a;
}

.calc-wa {
  display: none !important;
}


.calc-send-wa {
  margin-top: 16px;
  min-height: 56px;
  border-radius: 18px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  box-shadow: 0 14px 28px rgba(25,182,109,.22);
}

.calc-send-wa:hover {
  transform: translateY(-1px);
}


/* Premium lightweight animations */
.hero-bg {
  animation: heroFloat 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero .eyebrow,
.hero h1,
.hero p,
.hero-actions,
.hero-stats {
  animation: heroReveal .85s ease both;
}

.hero h1 { animation-delay: .08s; }
.hero p { animation-delay: .16s; }
.hero-actions { animation-delay: .24s; }
.hero-stats { animation-delay: .32s; }

@keyframes heroFloat {
  from { transform: scale(1.015) translateY(0); }
  to { transform: scale(1.055) translateY(-10px); }
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(18px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.project,
.benefit-card,
.plan-calc-card,
.layout-card,
.map-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.project:hover,
.benefit-card:hover,
.layout-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0,0,0,.13);
}

.zoomable-layout {
  cursor: zoom-in;
  transition: transform .25s ease, filter .25s ease;
}

.zoomable-layout:hover {
  transform: scale(1.015);
  filter: contrast(1.03);
}

.layout-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(10px);
}

.layout-modal.open {
  display: flex;
  animation: modalFade .22s ease both;
}

.layout-modal img {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
  background: white;
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
  animation: modalZoom .28s ease both;
}

.layout-modal-close,
.layout-modal-nav {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: .2s ease;
}

.layout-modal-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.layout-modal-nav {
  width: 48px;
  height: 68px;
  border-radius: 20px;
  font-size: 46px;
  top: 50%;
  transform: translateY(-50%);
}

.layout-prev { left: 18px; }
.layout-next { right: 18px; }

.layout-modal-close:hover,
.layout-modal-nav:hover {
  background: rgba(201,164,92,.35);
}

@keyframes modalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalZoom {
  from { transform: scale(.94); opacity: .5; }
  to { transform: scale(1); opacity: 1; }
}

.down-payment-control {
  grid-row: span 2;
}

.calc-down-range {
  accent-color: #c9a45c;
  padding: 0 !important;
  height: 34px;
  cursor: pointer;
}

.calc-price {
  color: #f2d48a !important;
}

.calc-price.good-price {
  box-shadow: 0 0 0 2px rgba(201,164,92,.28), 0 0 24px rgba(201,164,92,.18);
}

.calc-results .main-result {
  position: relative;
  overflow: hidden;
}

.calc-results .main-result::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(201,164,92,.22), transparent 55%);
  animation: goldPulse 2.8s ease-in-out infinite;
}

@keyframes goldPulse {
  0%, 100% { opacity: .35; transform: scale(.95); }
  50% { opacity: .75; transform: scale(1.05); }
}

@media (max-width: 900px) {
  .layout-modal {
    padding: 10px;
  }

  .layout-modal img {
    max-width: 96vw;
    max-height: 82vh;
    border-radius: 16px;
  }

  .layout-modal-nav {
    width: 42px;
    height: 58px;
    font-size: 38px;
  }

  .layout-prev { left: 8px; }
  .layout-next { right: 8px; }

  .layout-modal-close {
    top: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero .eyebrow,
  .hero h1,
  .hero p,
  .hero-actions,
  .hero-stats,
  .calc-results .main-result::after {
    animation: none !important;
  }
}
