:root {
  --gold: #c8a96e;
  --gold-light: #e8c97a;
  --gold-dark: #a8893e;
  --ebony: #0f0c09;
  --ebony-mid: #1c1410;
  --cream: #f5edd8;
  --muted: #b8a898;
  --subtle: #7a6e62;
  --container: 1400px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ebony);
  color: var(--cream);
  font-family: Raleway, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 3rem; }
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(15, 12, 9, 0.92);
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
  backdrop-filter: blur(12px);
}

.header-shell {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.brand span {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--gold);
}

.main-nav .nav-cta {
  padding: 0.65rem 1.3rem;
  color: var(--ebony);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.menu-toggle {
  display: none;
  width: 34px;
  height: 30px;
  padding: 4px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 5px 0;
  background: var(--gold);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

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

.hero-bg {
  background: url("../imgs/hero-luxury-apartment.webp") center 30% / cover no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(15, 12, 9, 0.97), rgba(15, 12, 9, 0.55) 42%, rgba(15, 12, 9, 0.12)),
    linear-gradient(to right, rgba(15, 12, 9, 0.72), transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.section-label {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 1.25rem 0 1.5rem;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  color: var(--cream);
}

em {
  color: var(--gold);
}

.hero p,
.section-heading p,
.split-grid p,
.about-grid p,
.contact-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.hero p {
  max-width: 570px;
  margin: 1.75rem 0 2.5rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.gold-line-left,
.gold-line-center {
  display: block;
  width: 80px;
  height: 1px;
  margin: 1rem 0 1.25rem;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.gold-line-center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.btn-gold,
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 2rem;
  border: 1px solid var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold {
  border: 0;
  color: var(--ebony);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(200, 169, 110, 0.25);
}

.btn-outline-gold {
  color: var(--gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: rgba(200, 169, 110, 0.1);
}

.full {
  width: 100%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.stats-band {
  background: var(--ebony-mid);
  border-block: 1px solid rgba(200, 169, 110, 0.12);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 2.5rem 3rem;
}

.stats-grid div {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(200, 169, 110, 0.1);
}

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

.stat-number {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
}

.stats-grid span:last-child {
  display: block;
  margin-top: 0.4rem;
  color: var(--subtle);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.dark {
  background: var(--ebony);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-grid h2,
.about-grid h2,
.contact-grid h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
}

.benefits-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5px;
  background: rgba(200, 169, 110, 0.08);
}

.benefit-card,
.testimonial-card {
  background: var(--ebony);
  border: 1px solid rgba(200, 169, 110, 0.1);
  padding: 2rem;
}

.benefit-card i {
  color: var(--gold);
  font-size: 1.6rem;
}

.benefit-card h3 {
  margin: 1.2rem 0 0.75rem;
  font-size: 1.45rem;
}

.benefit-card p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  background: var(--ebony-mid);
  overflow: hidden;
}

.ambient-bg,
.contact-bg {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  background: url("../imgs/naeem.webp") center / cover no-repeat;
  opacity: 0.14;
}

.split-grid,
.about-grid,
.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.framed-image {
  position: relative;
  aspect-ratio: 10 / 7;
}

.framed-image img,
.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.framed-image::after {
  content: "";
  position: absolute;
  right: -1.4rem;
  bottom: -1.4rem;
  width: 58%;
  height: 58%;
  border: 1px solid rgba(200, 169, 110, 0.35);
}

.check-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 2rem 0 2.5rem;
  list-style: none;
}

.check-list li {
  color: var(--muted);
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 0.75rem;
}

.portrait-wrap {
  position: relative;
  aspect-ratio: 5 / 6;
  overflow: hidden;
}

.about-grid blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  font-style: italic;
  line-height: 1.6;
}

.credential-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.credential-grid span {
  color: var(--muted);
  font-size: 0.84rem;
}

.credential-grid i {
  color: var(--gold);
  margin-right: 0.4rem;
}

.showcase-section {
  background: var(--ebony-mid);
}

.showcase-experience {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 1.5px;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.12);
}

.showcase-stage {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--ebony);
}

.showcase-main-image {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.showcase-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 12, 9, 0.92), rgba(15, 12, 9, 0.35) 36%, transparent 72%),
    linear-gradient(to right, rgba(15, 12, 9, 0.72), rgba(15, 12, 9, 0.18) 40%, transparent 70%);
}

.showcase-copy {
  position: absolute;
  left: clamp(1.25rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 650px;
}

.showcase-kicker,
.gallery-kicker {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.showcase-title {
  margin-top: 0.65rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
}

.showcase-controls {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.showcase-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 169, 110, 0.36);
  background: rgba(15, 12, 9, 0.62);
  color: var(--gold);
  font-size: 1.6rem;
  cursor: pointer;
}

.showcase-count {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.showcase-rail {
  display: grid;
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: 1.5px;
}

.showcase-thumb {
  position: relative;
  min-height: 78px;
  border: 0;
  overflow: hidden;
  background: var(--ebony);
  cursor: pointer;
}

.showcase-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.showcase-thumb span {
  position: absolute;
  left: 1rem;
  bottom: 0.85rem;
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-thumb.active {
  outline: 1px solid var(--gold);
  outline-offset: -1px;
}

.showcase-thumb.active img,
.showcase-thumb:hover img {
  opacity: 0.72;
  transform: scale(1.06);
}

.cta-row {
  margin-top: 3rem;
}

.center {
  text-align: center;
}

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

.testimonial-card {
  margin: 0;
}

.testimonial-card i {
  color: rgba(200, 169, 110, 0.35);
  font-size: 2rem;
}

.testimonial-card p {
  margin: 1.25rem 0 1.75rem;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
  font-style: italic;
}

.testimonial-card footer {
  display: grid;
  gap: 0.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.testimonial-card footer span {
  color: var(--gold);
  font-size: 0.76rem;
}

.builders-band {
  padding: 5rem 0;
  background: var(--ebony-mid);
  border-block: 1px solid rgba(200, 169, 110, 0.1);
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.builder-logo-tile {
  width: 190px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.35rem;
  background: rgba(245, 237, 216, 0.94);
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.builder-logo-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-fade.left {
  left: 0;
  background: linear-gradient(to right, var(--ebony-mid), transparent);
}

.marquee-fade.right {
  right: 0;
  background: linear-gradient(to left, var(--ebony-mid), transparent);
}

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

.contact-section {
  background: var(--ebony);
  overflow: hidden;
}

.contact-bg {
  background-image: url("../imgs/lobby.webp");
  opacity: 0.08;
}

.contact-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--ebony-mid);
  border: 1px solid rgba(200, 169, 110, 0.12);
}

.contact-list i {
  color: var(--gold);
}

.contact-list small {
  display: block;
  color: var(--subtle);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lead-card {
  padding: 2.5rem;
  background: var(--ebony-mid);
  border: 1px solid rgba(200, 169, 110, 0.15);
}

.lead-card h3 {
  font-size: 1.65rem;
}

.lead-card > p {
  margin: 0.5rem 0 2rem;
  color: var(--subtle);
  font-size: 0.86rem;
}

.lead-form {
  display: grid;
  gap: 1rem;
}

.lead-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--subtle);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(200, 169, 110, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  padding: 0.9rem 1.05rem;
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold);
}

.form-feedback {
  min-height: 1.4rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-feedback[data-type="erro"] {
  color: #ff9a8b;
}

.form-feedback[data-type="ok"] {
  color: var(--gold-light);
}

.site-footer {
  background: #0a0806;
  border-top: 1px solid rgba(200, 169, 110, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding: 3rem 3rem;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.footer-grid strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.footer-grid span,
.footer-grid h4 {
  margin: 0;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a,
.footer-grid small,
.footer-bottom p {
  color: var(--subtle);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 169, 110, 0.08);
  padding: 1.5rem 3rem;
}

.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1), transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 2rem 2rem;
    background: rgba(15, 12, 9, 0.98);
    border-top: 1px solid rgba(200, 169, 110, 0.15);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.08);
  }

  .menu-toggle {
    display: block;
  }

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

  .split-grid,
  .about-grid,
  .contact-grid,
  .showcase-experience {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .showcase-stage,
  .showcase-main-image {
    min-height: 520px;
  }

  .showcase-rail {
    display: flex;
    overflow-x: auto;
  }

  .showcase-thumb {
    flex: 0 0 170px;
    min-height: 96px;
  }
}

@media (max-width: 720px) {
  .stats-grid,
  .benefits-grid,
  .testimonials-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
  }

  .hero-content {
    padding-bottom: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  .section {
    padding: 5rem 0;
  }

  .showcase-stage,
  .showcase-main-image {
    min-height: 420px;
  }

  .showcase-copy {
    bottom: 5.5rem;
  }

  .showcase-controls {
    left: 1.25rem;
    right: auto;
    bottom: 1.25rem;
  }

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

  .lead-card {
    padding: 1.5rem;
  }
}
