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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
}

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

:root {
  --color-page: #f6f0e7;
  --color-surface: #fffaf4;
  --color-surface-alt: #f1e8db;
  --color-ink: #1c2622;
  --color-muted: rgba(28, 38, 34, 0.72);
  --color-brand: #133f31;
  --color-brand-strong: #103327;
  --color-brand-soft: rgba(19, 63, 49, 0.1);
  --color-brand-ink: #faf7f0;
  --color-accent: #513167;
  --color-line: rgba(28, 38, 34, 0.1);
  --color-line-strong: rgba(28, 38, 34, 0.18);
  --font-base: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Prata", "Georgia", serif;
  --container-width: 1240px;
  --container-padding: 24px;
  --radius-card: 28px;
  --radius-pill: 999px;
  --shadow-card: 0 18px 44px rgba(17, 31, 25, 0.08);
  --shadow-soft: 0 12px 28px rgba(17, 31, 25, 0.05);
  --space-section: 104px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(209, 188, 153, 0.2), transparent 28%),
    radial-gradient(circle at bottom right, rgba(19, 63, 49, 0.14), transparent 26%),
    var(--color-page);
  color: var(--color-ink);
  font-family: var(--font-base);
}

.page-shell {
  min-height: 100vh;
}

.layout-container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.hero-section,
.benefits-section,
.project-section,
.location-section,
.infra-section,
.investment-section,
.purchase-section,
.developer-section,
.lead-section {
  padding: var(--space-section) 0;
}

.hero-section {
  overflow: hidden;
  padding-top: 120px;
}

.hero-stage,
.project-layout,
.location-layout,
.infra-layout,
.investment-layout,
.developer-layout,
.lead-panel {
  display: grid;
  gap: 32px;
  align-items: start;
}

.hero-stage {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 540px);
  align-items: end;
  padding: 44px;
  border: 1px solid var(--color-line);
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.94), rgba(239, 230, 218, 0.88)),
    var(--color-surface);
  box-shadow: var(--shadow-card);
}

.project-layout,
.developer-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 460px);
}

.location-layout,
.investment-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 440px);
}

.infra-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.lead-panel {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  padding: 44px;
  border: 1px solid var(--color-line);
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(255, 250, 244, 0.96), rgba(241, 232, 219, 0.92));
  box-shadow: var(--shadow-card);
}

.hero-copy,
.hero-visual,
.section-header,
.project-copy,
.location-copy,
.infra-copy,
.infra-media-stack,
.investment-copy,
.investment-panel,
.developer-copy,
.developer-note,
.lead-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker--light {
  color: rgba(250, 247, 240, 0.84);
}

.section-header {
  margin-bottom: 28px;
}

.hero-title,
.section-title {
  margin: 0;
  font-family: var(--font-display);
}

.hero-title {
  max-width: 920px;
  font-size: clamp(52px, 8vw, 102px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.hero-title__accent {
  display: block;
  margin-top: 18px;
  max-width: 720px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.015em;
}

.hero-label {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  max-width: 820px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}

.section-title--light {
  color: var(--color-brand-ink);
}

.hero-text,
.section-text,
.benefit-card__text,
.investment-stat__caption,
.location-fact span,
.hero-fact span,
.lead-form__field span,
.purchase-list li,
.developer-note__list li,
.infra-list li {
  color: var(--color-muted);
}

.hero-text,
.section-text,
.benefit-card__text {
  font-size: 18px;
  line-height: 1.7;
}

.section-text--light,
.location-fact span {
  color: rgba(250, 247, 240, 0.82);
}

.hero-text {
  max-width: 720px;
  margin: 26px 0 0;
}

.section-text {
  margin: 18px 0 0;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.54);
  color: var(--color-muted);
  font-size: 14px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.primary-button {
  background: var(--color-brand);
  color: var(--color-brand-ink);
}

.primary-button--full {
  width: 100%;
}

.secondary-button {
  border-color: var(--color-line-strong);
  background: rgba(255, 255, 255, 0.44);
  color: var(--color-ink);
}

.hero-media,
.section-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.hero-media {
  aspect-ratio: 0.95 / 1;
}

.section-media--tall {
  aspect-ratio: 4 / 5;
}

.section-media--wide {
  aspect-ratio: 16 / 10;
}

.section-media--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.hero-media img,
.section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-facts,
.benefits-grid,
.location-facts,
.purchase-grid {
  display: grid;
  gap: 16px;
}

.hero-facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.hero-fact,
.benefit-card,
.location-fact,
.purchase-card,
.developer-note,
.investment-panel,
.lead-form {
  padding: 24px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: rgba(255, 250, 244, 0.74);
  box-shadow: var(--shadow-soft);
}

.hero-fact {
  display: grid;
  gap: 8px;
  background: var(--color-surface);
}

.hero-visual {
  position: relative;
  padding-left: 24px;
}

.hero-floating-card {
  position: absolute;
  left: 0;
  bottom: 28px;
  width: min(290px, 76%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: rgba(17, 34, 28, 0.74);
  backdrop-filter: blur(10px);
  color: var(--color-brand-ink);
  box-shadow: 0 20px 42px rgba(10, 18, 15, 0.24);
}

.hero-floating-card__kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(250, 247, 240, 0.68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
}

.hero-floating-card p {
  margin: 0;
  color: rgba(250, 247, 240, 0.82);
  font-size: 15px;
  line-height: 1.6;
}

.hero-fact strong,
.location-fact strong,
.investment-stat strong {
  font-family: var(--font-base);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.benefits-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card__title,
.purchase-card__title,
.developer-note__title {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.15;
}

.benefit-card__text {
  margin: 0;
}

.location-section,
.investment-section {
  background: linear-gradient(135deg, rgba(17, 53, 41, 0.98), rgba(35, 69, 54, 0.94));
  color: var(--color-brand-ink);
}

.investment-section .section-kicker,
.investment-section .section-title,
.investment-section .section-text {
  color: var(--color-brand-ink);
}

.investment-section .section-kicker {
  color: rgba(250, 247, 240, 0.76);
}

.investment-section .section-text {
  color: rgba(250, 247, 240, 0.86);
}

.location-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.location-fact {
  display: grid;
  gap: 8px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.infra-list,
.purchase-list,
.developer-note__list {
  margin: 0;
  padding-left: 18px;
}

.infra-list li,
.purchase-list li,
.developer-note__list li {
  line-height: 1.6;
}

.infra-media-stack {
  display: grid;
  gap: 18px;
}

.investment-panel {
  display: grid;
  gap: 18px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.investment-stat {
  display: grid;
  gap: 8px;
}

.investment-stat__label {
  color: rgba(250, 247, 240, 0.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.investment-stat__caption {
  color: rgba(250, 247, 240, 0.82);
}

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

.developer-note {
  background: linear-gradient(145deg, rgba(255, 250, 244, 0.96), rgba(241, 232, 219, 0.92));
}

.lead-form {
  display: grid;
  gap: 14px;
}

.lead-form__field {
  display: grid;
  gap: 8px;
}

.lead-form__field input,
.lead-form__field select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--color-line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-ink);
  font: inherit;
}

.lead-form__status,
.lead-form__note {
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.lead-form__status:empty {
  display: none;
}

.lead-form__status:not(:empty) {
  min-height: 1.4em;
  margin-top: 10px;
}

.lead-form__note a,
.site-footer__links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.site-footer {
  padding: 0 0 32px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}

.site-footer__copy {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.site-footer__entity {
  margin: 0;
  flex: 0 0 auto;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.site-footer__entity-line {
  display: block;
  white-space: nowrap;
}

.site-footer__links {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: flex-end;
  color: var(--color-muted);
  font-size: 0.9rem;
}

@media (max-width: 1080px) {
  .hero-stage,
  .project-layout,
  .location-layout,
  .infra-layout,
  .investment-layout,
  .developer-layout,
  .lead-panel,
  .benefits-grid,
  .purchase-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts,
  .location-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-visual {
    padding-left: 0;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__entity-line {
    white-space: normal;
  }

  .site-footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: 16px;
    --space-section: 72px;
  }

  .hero-section {
    padding-top: 96px;
  }

  .hero-title__accent {
    margin-top: 14px;
  }

  .hero-text,
  .section-text,
  .benefit-card__text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-facts,
  .location-facts {
    grid-template-columns: 1fr;
  }

  .hero-stage,
  .hero-fact,
  .benefit-card,
  .location-fact,
  .purchase-card,
  .developer-note,
  .investment-panel,
  .lead-form,
  .lead-panel {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-media,
  .section-media {
    border-radius: 22px;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .hero-points {
    flex-direction: column;
  }

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

  .hero-fact strong,
  .location-fact strong,
  .investment-stat strong {
    font-size: 34px;
  }

  .benefit-card__title,
  .purchase-card__title,
  .developer-note__title {
    font-size: 22px;
  }

}
