:root {
  --ink: #191511;
  --ink-soft: #2c241b;
  --emerald: #2a0911;
  --emerald-2: #140407;
  --gold: #c89048;
  --gold-soft: #d8c2a0;
  --sand: #f5efe6;
  --sand-2: #eadfce;
  --white: #fffaf2;
  --muted: #786f64;
  --line: rgba(200, 144, 72, .28);
  --shadow: 0 22px 70px rgba(20, 18, 15, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

section {
  scroll-margin-top: 92px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  background: rgba(42, 9, 17, .94);
  color: var(--white);
  border-bottom: 1px solid rgba(216, 194, 160, .28);
  backdrop-filter: blur(14px);
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 148px;
  height: auto;
}

.brand span {
  color: var(--gold-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 22px);
}

.desktop-nav a,
.phone-link,
.messenger-link {
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.desktop-nav a {
  color: rgba(255, 250, 242, .82);
}

.desktop-nav a:hover,
.phone-link:hover,
.messenger-link:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link {
  color: var(--gold-soft);
  white-space: nowrap;
}

.messenger-link {
  min-width: 82px;
  padding: 8px 10px;
  border: 1px solid rgba(216, 194, 160, .38);
  border-radius: 8px;
  text-align: center;
  color: var(--white);
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 194, 160, .44);
  border-radius: 8px;
  background: rgba(255, 250, 242, .06);
  padding: 0;
  place-items: center;
  cursor: pointer;
  z-index: 60;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--gold-soft);
  transition: transform .22s ease, opacity .22s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 74px 0 auto 0;
  z-index: 39;
  display: none;
  max-height: calc(100svh - 74px);
  overflow-y: auto;
  padding: 20px 22px calc(24px + env(safe-area-inset-bottom));
  background: rgba(20, 4, 7, .98);
  color: var(--white);
  border-bottom: 1px solid rgba(216, 194, 160, .3);
}

.mobile-menu.is-open {
  display: grid;
  gap: 13px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 20px;
  line-height: 1.15;
  padding: 9px 0;
}

.mobile-menu div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mobile-menu div a {
  padding: 10px 6px;
  border: 1px solid rgba(216, 194, 160, .38);
  border-radius: 8px;
  text-align: center;
  font-size: 13px;
}

.hero {
  min-height: calc(100svh - 74px);
  position: relative;
  display: grid;
  align-items: end;
  padding: clamp(96px, 14vh, 150px) clamp(18px, 5vw, 72px) clamp(32px, 7vh, 70px);
  overflow: hidden;
  background: var(--emerald-2);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../images/pdf-hero-woman.webp") center / cover no-repeat;
  transform: scale(1.06);
  transform-origin: center;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(20, 4, 7, .9) 0%, rgba(42, 9, 17, .58) 45%, rgba(20, 4, 7, .22) 100%);
}

.hero-content {
  position: relative;
  max-width: 850px;
  width: 100%;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7.4vw, 92px);
  line-height: .9;
  font-weight: 600;
  color: var(--white);
  max-width: 100%;
}

h1 span {
  display: block;
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  font-size: clamp(19px, 2vw, 28px);
  line-height: 1.28;
  color: rgba(255, 250, 242, .9);
}

.hero-actions,
.section .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  max-width: 100%;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #1c130b;
  border-color: var(--gold);
}

.btn-ghost {
  background: rgba(255, 250, 242, .08);
  color: var(--white);
  border-color: rgba(255, 250, 242, .32);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 880px;
  margin-top: clamp(38px, 9vh, 84px);
}

.hero-stats article,
.metric-grid article,
.feature-cards article,
.investment-metrics article {
  border: 1px solid rgba(216, 194, 160, .34);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 242, .08);
}

.hero-stats strong,
.metric-grid strong,
.feature-cards b,
.investment-metrics strong {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .92;
  font-weight: 700;
}

.hero-stats article > span,
.metric-grid article > span,
.feature-cards article > span,
.investment-metrics article > span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 250, 242, .8);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sales-marquee {
  overflow: hidden;
  max-width: 100vw;
  background: var(--gold);
  color: #1f160e;
  border-block: 1px solid rgba(25, 21, 17, .18);
}

.sales-marquee div {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.sales-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  padding: 13px 0 13px 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  white-space: nowrap;
}

.sales-marquee span::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(31, 22, 14, .72);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes heroDrift {
  from { transform: scale(1.06) translate3d(-1.8%, -1%, 0); }
  to { transform: scale(1.12) translate3d(2.4%, 1.4%, 0); }
}

.section {
  padding: clamp(68px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 880px;
  margin-bottom: 34px;
}

.section-head h2,
.copy h2,
.investment-copy h2,
.location-copy h2,
.form-copy h2,
.panel h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: .98;
  color: var(--ink);
  font-weight: 600;
}

.section-head p,
.copy p,
.investment-copy p,
.location-copy p,
.form-copy p,
.panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.intro {
  background: var(--white);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.intro-visual {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
  box-shadow: var(--shadow);
}

.intro-visual img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.metric-grid,
.feature-cards,
.investment-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats strong .js-count,
.metric-grid strong .js-count,
.feature-cards b .js-count,
.investment-metrics strong .js-count {
  display: inline;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.metric-grid article,
.feature-cards article,
.investment-metrics article {
  background: var(--sand);
  border-color: var(--line);
}

.metric-grid article > span,
.feature-cards article > span,
.investment-metrics article > span {
  color: var(--muted);
}

.stack-scene {
  position: relative;
  min-height: 172svh;
  background: var(--emerald-2);
}

.stack-pin {
  position: sticky;
  top: 74px;
  min-height: calc(100svh - 74px);
  display: grid;
  align-items: center;
  padding: clamp(30px, 5vw, 72px);
}

.stack-cover {
  position: relative;
  z-index: 2;
  margin-top: -12svh;
  padding: clamp(30px, 5vw, 72px);
}

.panel {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.panel img.masterplan-img {
  object-fit: contain;
  background: var(--sand);
  padding: 10px;
}

.panel > div {
  padding: clamp(28px, 5vw, 62px);
}

.panel-dark {
  background: #2a0911;
  color: var(--white);
}

.panel-dark h2 {
  color: var(--white);
}

.panel-dark p {
  color: rgba(255, 250, 242, .78);
}

.panel-light {
  background: var(--white);
}

.accent-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.accent-list li {
  position: relative;
  padding-left: 22px;
  color: inherit;
}

.accent-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .66em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.panel-dark .accent-list li {
  color: rgba(255, 250, 242, .82);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  background: var(--sand);
}

.feature-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: var(--white);
}

.image-card {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(42, 9, 17, .88));
}

.image-card div {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 26px;
}

.image-card h3 {
  margin: 0 0 8px;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1;
}

.infrastructure {
  background: var(--white);
}

.skyvilla-feature,
.developer-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 18, 15, .08);
}

.infra-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.infra-points article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sand);
}

.infra-gallery article {
  overflow: hidden;
  padding: 0;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 18, 15, .08);
}

.infra-gallery img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.infra-gallery span,
.infra-gallery b,
.infra-gallery p {
  margin-inline: 22px;
}

.infra-gallery span {
  display: block;
  margin-top: 20px;
}

.infra-gallery p {
  margin-bottom: 22px;
}

.infra-points span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}

.infra-points b {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 18px;
}

.infra-points p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.image-card p {
  margin: 0;
  color: rgba(255, 250, 242, .78);
}

.plans {
  background: var(--sand);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.plans-grid img,
.investment-chart,
.location-map {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(20, 18, 15, .08);
}

.skyvilla-feature {
  display: grid;
  grid-template-columns: minmax(280px, .58fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  margin-top: 14px;
  padding: clamp(22px, 4vw, 40px);
  background: var(--white);
}

.skyvilla-feature h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  color: var(--ink);
}

.skyvilla-feature img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--sand);
}

.investment,
.location {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.investment {
  background: var(--emerald-2);
  color: var(--white);
}

.investment h2 {
  color: var(--white);
}

.investment p {
  color: rgba(255, 250, 242, .74);
}

.investment-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.investment-metrics article {
  background: rgba(255, 250, 242, .08);
}

.location {
  background: var(--white);
}

.location ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.location li {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--sand);
}

.location b {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4.6vw, 56px);
  line-height: 1;
  color: var(--gold);
}

.developer {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  background: var(--white);
}

.developer-copy h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 70px);
  line-height: .95;
}

.developer-copy p {
  max-width: 780px;
  color: var(--muted);
  font-size: 17px;
}

.developer-card {
  padding: clamp(24px, 4vw, 42px);
  background: linear-gradient(135deg, #3a0b14 0%, #4b101b 48%, #190408 100%);
  color: var(--white);
}

.developer-projects {
  display: grid;
  gap: 12px;
}

.developer-projects article {
  position: relative;
  min-height: 158px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(216, 194, 160, .24);
  background: #120307;
}

.developer-projects img {
  width: 100%;
  height: 100%;
  min-height: 158px;
  object-fit: cover;
}

.developer-projects article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 4, 7, .05), rgba(20, 4, 7, .78));
}

.developer-projects span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 1;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.developer-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.developer-stats article {
  padding: 16px;
  border: 1px solid rgba(216, 194, 160, .34);
  border-radius: 8px;
  background: rgba(255, 250, 242, .08);
}

.developer-stats strong {
  display: block;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.developer-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 250, 242, .76);
  font-size: 12px;
}

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

.form-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 520px);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: linear-gradient(135deg, var(--sand) 0%, var(--white) 100%);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(120, 111, 100, .26);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--ink);
  font-size: 16px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.contact-method {
  border: 0;
  padding: 8px 0 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.contact-method legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.contact-method label {
  display: block;
}

.contact-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-method span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--emerald-2);
  background: var(--sand);
  font-weight: 800;
}

.contact-method input:checked + span {
  background: var(--emerald);
  color: var(--gold-soft);
  border-color: var(--emerald);
}

.check {
  grid-template-columns: 18px 1fr !important;
  align-items: start;
  gap: 10px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
}

.check input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.check a {
  color: var(--emerald);
}

.form-status {
  margin: 0;
  min-height: 20px;
  color: var(--emerald);
  font-size: 13px;
  font-weight: 700;
}

.form-status.is-error {
  color: #9b1c1c;
}

.faq {
  background:
    linear-gradient(135deg, rgba(42, 9, 17, .9), rgba(20, 4, 7, .76)),
    url("../images/curtain.webp") center / cover no-repeat;
  color: var(--white);
}

.faq .section-head h2 {
  color: var(--white);
}

.faq .section-head p:not(.eyebrow) {
  color: rgba(255, 250, 242, .74);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

details {
  border: 1px solid rgba(216, 194, 160, .28);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 250, 242, .94);
  box-shadow: 0 18px 48px rgba(20, 4, 7, .16);
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  padding: 34px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(58, 11, 20, .98) 0%, rgba(75, 16, 27, .96) 48%, rgba(25, 4, 8, .98) 100%),
    url("../images/curtain.webp") center / cover no-repeat;
  color: rgba(255, 250, 242, .74);
  border-top: 1px solid rgba(216, 194, 160, .26);
}

.site-footer img {
  width: 166px;
  height: auto;
  object-fit: contain;
}

.site-footer p {
  margin: 10px 0 0;
}

.footer-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.footer-links a {
  width: 132px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(216, 194, 160, .34);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.1;
}

.legal-links {
  grid-column: 1 / -1;
}

.legal-links a {
  color: rgba(255, 250, 242, .7);
  font-size: 12px;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 920px;
  font-size: 12px;
}

.reveal,
.reveal-grid > * {
  opacity: 0;
  transform: translate3d(0, 72px, 0);
  transition: opacity 1s cubic-bezier(.22, 1, .36, 1), transform 1s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible,
.reveal-grid > *.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-grid > *:nth-child(2) { transition-delay: .08s; }
.reveal-grid > *:nth-child(3) { transition-delay: .16s; }
.reveal-grid > *:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  .header-actions .messenger-link {
    display: none;
  }

  .menu-toggle {
    display: grid;
    position: fixed;
    right: auto;
    left: min(calc(100vw - 60px), 330px);
    top: 15px;
    z-index: 80;
    border-color: rgba(216, 194, 160, .62);
    background: rgba(255, 250, 242, .08);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 70px;
    padding: 10px 16px;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) 44px;
    position: sticky;
    overflow: visible;
  }

  .brand img {
    width: min(132px, calc(100vw - 92px));
  }

  .brand span,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
    grid-column: auto;
    position: fixed;
    right: auto;
    left: min(calc(100vw - 60px), 330px);
    top: 13px;
    justify-self: end;
    border-color: rgba(216, 194, 160, .62);
    background: rgba(255, 250, 242, .08);
    z-index: 80;
  }

  .menu-toggle::before {
    content: "";
    display: block;
    position: absolute;
    inset: -6px;
  }

  .mobile-menu {
    top: 70px;
    max-height: calc(100svh - 70px);
  }

  .hero {
    min-height: calc(100svh - 70px);
    padding: 90px 18px 28px;
    text-align: center;
    max-width: 100vw;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(20, 4, 7, .5) 0%, rgba(20, 4, 7, .9) 100%);
  }

  .hero-content,
  .hero-lead {
    margin-inline: auto;
    max-width: 100%;
  }

  .hero .eyebrow {
    max-width: 310px;
    margin-inline: auto;
    white-space: normal;
    line-height: 1.35;
  }

  .hero-lead {
    width: min(100%, 300px);
    max-width: calc(100vw - 48px);
    font-size: 16px;
    text-wrap: balance;
  }

  .hero-actions {
    justify-content: center;
    width: 100%;
  }

  .hero-stats,
  .metric-grid,
  .feature-cards,
  .infra-points,
  .investment-metrics,
  .plans-grid,
  .faq-list,
  .image-grid,
  .investment,
  .location,
  .form-section,
  .split,
  .panel,
  .intro-layout,
  .skyvilla-feature,
  .developer {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    margin-inline: auto;
  }

  .section {
    padding: 62px 18px;
    text-align: center;
  }

  .section-head,
  .copy p,
  .investment-copy p,
  .location-copy p,
  .form-copy p {
    margin-inline: auto;
  }

  .stack-scene {
    min-height: auto;
    padding: 0;
  }

  .stack-pin,
  .stack-cover {
    position: relative;
    top: auto;
    min-height: 0;
    padding: 18px;
    margin-top: 0;
  }

  .panel {
    text-align: center;
  }

  .panel img {
    min-height: 260px;
  }

  .location ul {
    grid-template-columns: 1fr;
  }

  .lead-form {
    text-align: left;
  }

  .intro-visual img {
    min-height: 260px;
  }

  .accent-list {
    text-align: left;
  }

  .contact-method legend {
    text-align: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer img {
    margin-inline: auto;
  }

  .footer-links,
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 42px;
    line-height: .9;
    max-width: 354px;
    margin-inline: auto;
  }

  .hero-actions .btn,
  .lead-form .btn {
    width: 100%;
  }

  .hero-stats article {
    padding: 14px;
  }

  .hero-stats strong,
  .metric-grid strong,
  .feature-cards b,
  .investment-metrics strong {
    font-size: 36px;
  }

  .contact-method {
    grid-template-columns: 1fr;
  }

  .plans-grid img,
  .skyvilla-feature img,
  .investment-chart {
    min-height: 0;
  }

  .image-card,
  .image-card img {
    min-height: 430px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal,
  .reveal-grid > * {
    opacity: 1;
    transform: none;
  }

  .hero-media {
    animation: none;
  }
}
@media (min-width: 1121px) {
  .menu-toggle {
    display: none;
  }
}
