:root {
  --bg: #f3ecdf;
  --surface: rgba(255, 250, 242, 0.72);
  --surface-strong: rgba(255, 249, 238, 0.92);
  --text: #261f18;
  --text-soft: #5a5144;
  --line: rgba(72, 58, 38, 0.12);
  --green-forest: #2f5c43;
  --green-moss: #6e8964;
  --earth: #a97a42;
  --sun: #e9b25a;
  --shadow: 0 26px 60px rgba(63, 46, 27, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(233, 178, 90, 0.18), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(47, 92, 67, 0.16), transparent 24%),
    linear-gradient(180deg, #f7f2e8 0%, #f0e8d8 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(58, 48, 36, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 48, 36, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.35;
}

.ambient-one {
  top: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: rgba(233, 178, 90, 0.34);
}

.ambient-two {
  right: -80px;
  top: 240px;
  width: 240px;
  height: 240px;
  background: rgba(47, 92, 67, 0.24);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
  padding-bottom: 72px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin: 18px 0 30px;
  padding: 0 18px 0 8px;
  background: rgba(255, 249, 238, 0.76);
  border: 1px solid rgba(87, 68, 43, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  align-self: center;
}

.eyebrow,
.map-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--green-moss);
}

.brand-logo {
  width: auto;
  height: 120px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
  overflow: visible;
  transform: scale(1.4);
  transform-origin: center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  color: var(--text-soft);
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.project-badge:hover,
.project-badge:focus-visible,
.header-whatsapp:hover,
.header-whatsapp:focus-visible {
  color: var(--green-forest);
}

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

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 14px;
  border-radius: 999px;
  background: rgba(47, 92, 67, 0.1);
  color: var(--green-forest);
  font-weight: 800;
}

.project-badge-label {
  font-size: 0.85rem;
  line-height: 1.1;
  white-space: nowrap;
}

.project-badge img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(47, 92, 67, 0.14);
  color: var(--green-forest);
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.hero-media {
  position: relative;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  min-height: 720px;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 24, 23, 0.12), rgba(21, 24, 23, 0.22)),
    linear-gradient(180deg, rgba(15, 18, 18, 0) 38%, rgba(15, 18, 18, 0.7) 100%);
}

.hero-content {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-self: end;
  padding: 0 48px 48px;
  z-index: 2;
  color: #fff7ea;
}

.hero-highlights,
.hero-actions,
.grid,
.gallery-grid,
.lots-layout,
.plan-layout,
.contact-shell,
.location-panel {
  display: grid;
  gap: 18px;
}

.hero h1,
.section h2,
.contact-card h2 {
  margin: 10px 0 16px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 6vw, 6rem);
}

.hero-count {
  display: inline-block;
  margin-right: 0.08em;
  font-family: "Manrope", sans-serif;
  font-size: 0.88em;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.84;
  color: #fff5e7;
  text-shadow:
    0 8px 24px rgba(18, 14, 10, 0.28),
    0 2px 6px rgba(18, 14, 10, 0.2);
  vertical-align: 0.06em;
}

.section h2,
.contact-card h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.hero h2,
.card h3,
.lifestyle-card h3,
.lots-card h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.lead,
.section p,
.card p,
.lifestyle-card p,
.contact-card p,
.aside-card p,
.form-note,
.map-note {
  line-height: 1.78;
}

.lead {
  max-width: 760px;
  color: rgba(255, 247, 234, 0.9);
  font-size: 1.1rem;
}

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

.highlight-card,
.aside-card,
.card,
.lifestyle-card,
.lots-card,
.location-panel,
.contact-card,
.form-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.highlight-card {
  min-height: 128px;
  padding: 18px;
  background: rgba(15, 18, 18, 0.22);
  border-color: rgba(255, 247, 234, 0.12);
}

.highlight-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.36rem;
}

.highlight-card span {
  color: rgba(255, 247, 234, 0.82);
}

.highlight-card.accent {
  background: linear-gradient(135deg, rgba(233, 178, 90, 0.22), rgba(91, 134, 92, 0.24));
}

.hero-actions {
  grid-auto-flow: column;
  justify-content: start;
  margin-top: 24px;
}

.hero-aside {
  position: relative;
}

.aside-card {
  position: sticky;
  top: 110px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(47, 92, 67, 0.1), rgba(255, 249, 238, 0.94)),
    var(--surface-strong);
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--green-forest);
  background: rgba(255, 250, 242, 0.88);
  font-weight: 800;
}

.feature-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 22px;
  color: var(--text-soft);
  line-height: 1.65;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--earth);
  transform: translateY(-50%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff8ee;
  background: linear-gradient(135deg, var(--green-forest), #4d7357);
  box-shadow: 0 16px 34px rgba(47, 92, 67, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 249, 238, 0.86);
  border: 1px solid rgba(87, 68, 43, 0.12);
}

.story-banner {
  margin: 24px 0 8px;
  padding: 28px 30px;
  border-left: 4px solid var(--sun);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: rgba(255, 249, 238, 0.74);
  box-shadow: var(--shadow);
}

.story-banner p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  line-height: 1.16;
}

.section {
  padding: 56px 0 0;
}

.section-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 42px 0 6px;
}

.section-divider span {
  position: relative;
  height: 18px;
}

.section-divider span::before,
.section-divider span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(87, 68, 43, 0.18);
}

.section-divider span::before {
  top: 5px;
}

.section-divider span::after {
  top: 12px;
}

.section-divider em {
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-moss);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 24px;
}

.section-heading p {
  color: var(--text-soft);
}

.project-grid {
  grid-template-columns: 1fr 1fr 1.1fr;
  align-items: stretch;
}

.card,
.lifestyle-card,
.lots-card,
.contact-card,
.form-card {
  padding: 28px;
}

.image-card {
  overflow: hidden;
  padding: 0;
}

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

.lifestyle-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.lifestyle-card.wide {
  background:
    linear-gradient(180deg, rgba(47, 92, 67, 0.09), rgba(255, 249, 238, 0.9)),
    var(--surface-strong);
}

.lifestyle-card.accent,
.lots-card.emphasis {
  background: linear-gradient(135deg, rgba(233, 178, 90, 0.14), rgba(255, 249, 238, 0.82));
}

.dream-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.2fr;
  gap: 22px;
  align-items: center;
}

.dream-copy {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(233, 178, 90, 0.08), rgba(255, 249, 238, 0.92)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.dream-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.dream-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 140px;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item.large {
  grid-column: 1 / span 7;
  grid-row: 1 / span 3;
}

.gallery-item.wide {
  grid-column: 4 / span 6;
  grid-row: 6 / span 2;
}

.gallery-item.top-right {
  grid-column: 8 / span 5;
  grid-row: 1 / span 3;
}

.gallery-item.mid-left {
  grid-column: 1 / span 4;
  grid-row: 4 / span 2;
}

.gallery-item.mid-center {
  grid-column: 5 / span 5;
  grid-row: 4 / span 2;
}

.gallery-brand {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 12px 10px;
  text-align: center;
  color: var(--green-forest);
  background:
    linear-gradient(180deg, rgba(47, 92, 67, 0.08), rgba(255, 249, 238, 0.94)),
    var(--surface-strong);
  border: 1px solid rgba(87, 68, 43, 0.1);
  grid-column: 10 / span 3;
  grid-row: 4 / span 2;
}

.gallery-item.end-right {
  grid-column: 10 / span 3;
  grid-row: 6 / span 2;
}

.gallery-brand-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-moss);
}

.gallery-brand img {
  width: min(100%, 170px);
  height: auto;
  object-fit: contain;
}


.lots-layout {
  grid-template-columns: 1fr 1fr 1.08fr;
}

.plan-layout {
  grid-template-columns: 1.35fr 0.8fr;
  align-items: start;
}

.plan-card,
.plan-info {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.plan-card {
  overflow: hidden;
}

.plan-card img {
  width: 100%;
  height: auto;
}

.plan-info {
  padding: 28px;
}

.plan-info h3 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.plan-note {
  margin: 18px 0 0;
  color: var(--text-soft);
}

.lot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.lot-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(233, 178, 90, 0.18);
  color: #714b20;
  font-weight: 800;
}

.lot-tags .lot-count {
  width: auto;
  background: rgba(47, 92, 67, 0.14);
  color: var(--green-forest);
}

.location-panel {
  grid-template-columns: 1.2fr 0.78fr;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(47, 92, 67, 0.08), rgba(255, 249, 238, 0.92)),
    var(--surface-strong);
}

.location-actions,
.contact-buttons,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.map-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.84);
  border: 1px solid rgba(87, 68, 43, 0.12);
}

.map-link {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(47, 92, 67, 0.12), rgba(233, 178, 90, 0.14));
}

.map-link span {
  color: var(--text-soft);
}

.map-link strong {
  font-size: 1.2rem;
}

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

.contact-card {
  background:
    linear-gradient(180deg, rgba(233, 178, 90, 0.08), rgba(255, 249, 238, 0.94)),
    var(--surface-strong);
}

.contact-meta p {
  margin: 8px 0;
  color: var(--text-soft);
}

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

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

.lead-form span {
  font-weight: 700;
  color: var(--text-soft);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(87, 68, 43, 0.14);
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 252, 247, 0.92);
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: 2px solid rgba(47, 92, 67, 0.2);
  border-color: rgba(47, 92, 67, 0.34);
}

.form-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.reveal-block {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }

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

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

  .hero-aside {
    order: 3;
  }

  .hero-media {
    min-height: 640px;
  }

  .aside-card {
    position: static;
  }

  .project-grid,
  .lifestyle-grid,
  .dream-layout,
  .lots-layout,
  .plan-layout,
  .location-panel,
  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
    margin: 10px 0 18px;
    padding: 8px 10px 8px 8px;
    top: 8px;
    border-radius: 22px;
  }

  .brand {
    justify-content: flex-start;
    align-self: center;
  }

  .brand-logo {
    width: auto;
    height: 44px;
    transform: none;
  }

  .project-badge {
    gap: 8px;
    padding: 6px 10px 6px 12px;
  }

  .header-actions {
    grid-column: 3;
    justify-content: flex-end;
    gap: 8px;
  }

  .project-badge-label {
    font-size: 0.74rem;
  }

  .project-badge img {
    width: 34px;
    height: 34px;
  }

  .header-whatsapp {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    white-space: nowrap;
    padding-top: 2px;
    font-size: 0.84rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero-content {
    padding: 0 24px 24px;
  }

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

  .hero-actions {
    grid-auto-flow: row;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery-item,
  .gallery-item.large,
  .gallery-item.top-right,
  .gallery-item.wide,
  .gallery-item.mid-left,
  .gallery-item.mid-center,
  .gallery-item.end-right,
  .gallery-brand {
    grid-column: auto;
    grid-row: span 1;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--container));
  }

  .site-header,
  .card,
  .lifestyle-card,
  .lots-card,
  .location-panel,
  .contact-card,
  .form-card,
  .aside-card {
    border-radius: 24px;
  }

  .hero-media {
    min-height: 700px;
    border-radius: 28px;
  }

  .button {
    width: 100%;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    padding: 8px 10px 8px 8px;
    gap: 8px;
  }

  .brand {
    justify-content: flex-start;
    align-self: center;
  }

  .brand-logo {
    width: auto;
    height: 38px;
    transform: none;
  }

  .header-actions {
    grid-column: 2;
    justify-content: flex-end;
    gap: 6px;
  }

  .project-badge {
    width: auto;
    gap: 6px;
    padding: 6px 9px;
  }

  .project-badge-label {
    font-size: 0.66rem;
  }

  .project-badge img {
    width: 28px;
    height: 28px;
  }

  .header-whatsapp {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .site-nav {
    gap: 10px;
    font-size: 0.79rem;
  }

  .location-actions,
  .contact-buttons,
  .form-actions,
  .plan-actions {
    flex-direction: column;
  }

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