:root {
  --bg: #070707;
  --bg-2: #101010;
  --gold: #c6a15b;
  --gold-2: #e8d5a3;
  --text: #f3eee5;
  --muted: #9b9286;
  --line: rgba(198, 161, 91, 0.28);
  --wa: #25d366;
  --wa-dark: #128c4a;
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(198, 161, 91, 0.12), transparent 55%),
    radial-gradient(900px 420px at 0% 20%, rgba(198, 161, 91, 0.06), transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: Outfit, sans-serif;
  font-weight: 400;
  line-height: 1.55;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 6vw;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-text strong {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.75rem;
}

.top-wa {
  color: var(--gold-2);
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero,
.launches,
.realtor,
.final,
footer {
  padding: 72px 6vw;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 380px);
  gap: 48px;
  align-items: center;
}

.hero-copy .btn-gold {
  margin-top: 32px;
}

.hero-card {
  padding: 28px 26px 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(198, 161, 91, 0.08), rgba(255, 255, 255, 0.02));
}

.card-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.hero-card dl {
  margin: 0 0 24px;
}

.hero-card dl div + div {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-card dt {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card dd {
  margin: 6px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold-2);
}

.hero-card .btn-line {
  width: 100%;
}

.kicker,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 8vw, 6.2rem);
  line-height: 0.92;
}

h1 em {
  font-style: italic;
  color: var(--gold-2);
}

h1 span {
  display: block;
  margin-top: 10px;
  font-size: 0.52em;
  line-height: 1.1;
  color: #ddd4c6;
}

.btn-gold,
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  width: fit-content;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-gold:hover,
.btn-line:hover,
.top-wa:hover,
.launch-card:hover {
  transform: translateY(-2px);
}

.btn-line {
  border: 1px solid var(--gold);
  color: var(--gold-2);
}

.hint {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.launches h2,
.realtor h2,
.final h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
}

.section-lead {
  max-width: 520px;
  margin: -12px 0 36px;
  color: var(--muted);
}

.launch-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(820px, 100%);
}

.launch-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.22);
  background: var(--bg-2);
}

.launch-card img {
  width: 100%;
  height: auto;
  display: block;
}

.launch-card span {
  display: block;
  padding: 14px 18px 16px;
  border-top: 1px solid rgba(198, 161, 91, 0.18);
}

.launch-card small {
  display: block;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.launch-card strong {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1;
}

.realtor {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.portrait {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--gold);
  padding: 5px;
  background: #050505;
}

.realtor p {
  max-width: 560px;
  color: var(--muted);
}

.final {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(198, 161, 91, 0.06));
}

.final p {
  color: var(--muted);
  margin: 0 0 28px;
}

.final .btn-gold {
  margin: 0 auto;
}

footer {
  padding-top: 28px;
  padding-bottom: calc(120px + env(safe-area-inset-bottom));
  color: var(--muted);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
  margin: 0 0 6px;
}

.legal {
  opacity: 0.75;
}

.wa-float {
  position: fixed;
  right: 22px;
  bottom: calc(28px + env(safe-area-inset-bottom));
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-bubble {
  background: #fff;
  color: #111;
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  font-size: 0.86rem;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: nudge 2.8s ease-in-out infinite;
}

.wa-btn {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.wa-btn svg {
  width: 34px;
  height: 34px;
}

.wa-float::before {
  content: "";
  position: absolute;
  right: 4px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.35);
  animation: pulse 2.2s ease-out infinite;
  z-index: -1;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.7;
  }
  to {
    transform: scale(1.7);
    opacity: 0;
  }
}

@keyframes nudge {
  0%,
  80%,
  100% {
    transform: translateY(0);
  }
  90% {
    transform: translateY(-4px);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 36px;
    padding-bottom: 28px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero,
  .launches,
  .realtor,
  .final,
  footer {
    padding-left: 22px;
    padding-right: 22px;
  }

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

@media (max-width: 640px) {
  .top-wa {
    display: none;
  }

  .wa-bubble {
    max-width: 148px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .wa-float::before,
  .wa-bubble,
  .btn-gold,
  .btn-line,
  .top-wa,
  .launch-card {
    animation: none;
    transition: none;
  }
}
