:root {
  --ink: #17211f;
  --muted: #64716d;
  --paper: #ffffff;
  --mist: #f5f7f3;
  --rose: #c83f73;
  --rose-dark: #9f2b59;
  --sage: #6f8f74;
  --gold: #d8ae52;
  --line: #e3e7e1;
  --shadow: 0 24px 70px rgba(23, 33, 31, 0.18);
  --serif: "Libre Baskerville", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 58px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-solid {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 33, 31, 0.1);
  backdrop-filter: blur(14px);
}

.developer-logo {
  display: flex;
  align-items: center;
  width: 168px;
  min-width: 0;
  padding: 4px 0;
  filter: drop-shadow(0 3px 10px rgba(255, 255, 255, 0.8)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.developer-logo img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.whatsapp-icon-button {
  display: inline-grid;
  z-index: 40;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.35);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.whatsapp-icon-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.45);
}

.whatsapp-icon-button img {
  width: 34px;
  height: 34px;
}

.nav {
  justify-self: center;
  display: flex;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 800;
}

.nav a,
.text-link,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.text-link:hover,
.footer a:hover {
  color: var(--rose);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rose);
  border-radius: 8px;
  background: var(--rose);
  color: #fff;
  padding: 13px 21px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(200, 63, 115, 0.3);
  transition: transform 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--rose-dark);
  box-shadow: 0 19px 38px rgba(159, 43, 89, 0.32);
}

.wa-inline-icon {
  width: 24px;
  height: 24px;
  margin-right: 9px;
  border-radius: 50%;
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.button-ghost,
.button-outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: currentColor;
  color: currentColor;
  box-shadow: none;
}

.button-outline {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-ghost:hover,
.button-outline:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 36% center;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 16, 15, 0.86) 0%, rgba(10, 16, 15, 0.62) 39%, rgba(10, 16, 15, 0.08) 100%),
    linear-gradient(0deg, rgba(10, 16, 15, 0.68) 0%, rgba(10, 16, 15, 0) 45%);
}

.hero-content {
  position: relative;
  width: min(820px, calc(100% - 36px));
  padding: 132px 0 54px clamp(18px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffdce8;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 7vw, 6rem);
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.9rem;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(670px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.price-strip article {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.price-strip article:last-child {
  border-right: 0;
}

.price-strip span,
.quickbar span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-strip strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(1.22rem, 2vw, 1.7rem);
}

.quickbar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--ink);
  color: #fff;
}

.quickbar div {
  padding: 26px clamp(18px, 3vw, 44px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.quickbar div:last-child {
  border-right: 0;
}

.quickbar strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

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

.visual-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.text-link {
  color: var(--rose-dark);
  font-weight: 900;
}

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

.visual-cards figure,
.layout-grid article,
.access-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.visual-cards img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.layouts,
.gallery {
  background: var(--mist);
}

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

.section-heading.compact h2 {
  margin-bottom: 0;
}

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

.layout-grid article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.52fr);
}

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

.layout-grid article > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.layout-grid span {
  display: inline-flex;
  width: fit-content;
  margin: 5px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  font-weight: 800;
}

.access {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.amenity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.amenity-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 14px;
  color: var(--ink);
  font-weight: 900;
}

.access-visual img {
  width: 100%;
  max-height: 690px;
  object-fit: contain;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.85fr;
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 430px;
  border-radius: 8px;
  object-fit: cover;
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(340px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.fineprint {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.7);
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  padding: 12px 13px;
  font: inherit;
}

.lead-form .button {
  width: 100%;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px clamp(18px, 5vw, 72px);
  background: #101614;
  color: #fff;
}

.footer img {
  width: 128px;
  filter: drop-shadow(0 3px 10px rgba(255, 255, 255, 0.42));
}

.footer span {
  color: rgba(255, 255, 255, 0.7);
}

.footer a {
  color: #ffdce8;
  font-weight: 900;
}

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

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-header .whatsapp-icon-button {
    justify-self: end;
  }

  .visual-intro,
  .access,
  .contact {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    padding: 11px 14px;
  }

  .developer-logo {
    width: 136px;
  }

  .developer-logo img {
    height: 36px;
  }

  .whatsapp-icon-button {
    position: fixed;
    top: 12px;
    right: 14px;
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-image {
    object-position: 30% center;
  }

  .hero-content {
    width: 100%;
    padding: 112px 18px 34px;
  }

  h1 {
    font-size: 2.22rem;
  }

  .hero-actions,
  .section-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .section-heading .button {
    width: 100%;
  }

  .price-strip,
  .quickbar,
  .visual-cards {
    grid-template-columns: 1fr;
  }

  .price-strip article,
  .quickbar div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .price-strip article {
    padding: 14px 16px;
  }

  .quickbar div {
    padding: 18px;
  }

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

  .layout-grid img,
  .visual-cards img,
  .gallery-grid img {
    height: 300px;
    min-height: 0;
  }

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