:root {
  --black: #050505;
  --black-2: #0a0a0a;
  --dark: #151515;
  --dark-2: #1f1f1f;
  --gold: #c9a24d;
  --gold-light: #f0d993;
  --off-white: #f8f5ef;
  --text: #b8b8b8;
  --muted: #838383;
  --border: rgba(201, 162, 77, 0.2);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.5);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201, 162, 77, 0.11), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(201, 162, 77, 0.09), transparent 34rem),
    var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section-padding {
  padding: 100px 0;
}

.top-bar {
  position: relative;
  z-index: 100;
  padding: 10px 16px;
  background: linear-gradient(90deg, #8a682c, var(--gold), #8a682c);
  color: #111;
  font-weight: 700;
  text-align: center;
  font-size: 0.86rem;
  letter-spacing: 0.01em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 5, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #101010;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 30px rgba(201, 162, 77, 0.25);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.brand-text {
  color: var(--off-white);
  font-size: 0.95rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--text);
  font-size: 0.95rem;
}

.nav-menu a {
  transition: color 0.25s ease;
}

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

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--off-white);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 40px rgba(201, 162, 77, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 22px 54px rgba(201, 162, 77, 0.34);
}

.btn-secondary,
.btn-outline {
  color: var(--off-white);
  border-color: rgba(201, 162, 77, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 77, 0.1);
}

.header-cta {
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 124px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 52px;
}

.hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.55;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  top: 12%;
  left: -120px;
  background: rgba(201, 162, 77, 0.16);
}

.hero-glow-two {
  width: 460px;
  height: 460px;
  right: -160px;
  bottom: 2%;
  background: rgba(201, 162, 77, 0.12);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3 {
  line-height: 1.08;
  color: var(--off-white);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(3rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.22rem;
}

.hero-subtitle {
  max-width: 690px;
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

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

.microcopy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 640px;
  margin-top: 34px;
}

.trust-row div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--gold-light);
  font-size: 1.05rem;
}

.trust-row span {
  color: var(--text);
  font-size: 0.9rem;
}

.hero-card {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    #0c0c0c;
  box-shadow: var(--shadow);
}

.property-visual {
  position: relative;
  height: 390px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(201, 162, 77, 0.17), rgba(5, 5, 5, 0.95)),
    radial-gradient(circle at 40% 35%, rgba(240, 217, 147, 0.22), transparent 18rem);
}

.property-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: 24px;
}

.visual-line {
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.line-one { top: 38%; }
.line-two { top: 62%; }

.visual-building {
  position: absolute;
  bottom: 0;
  width: 26%;
  border: 1px solid rgba(201, 162, 77, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 40px rgba(201, 162, 77, 0.05);
}

.visual-building::before {
  content: "";
  position: absolute;
  inset: 16px 18px;
  background-image:
    linear-gradient(rgba(201, 162, 77, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 162, 77, 0.2) 1px, transparent 1px);
  background-size: 28px 28px;
}

.building-one {
  left: 18%;
  height: 58%;
  border-radius: 18px 18px 0 0;
}

.building-two {
  left: 39%;
  height: 78%;
  border-radius: 24px 24px 0 0;
}

.building-three {
  right: 15%;
  height: 48%;
  border-radius: 18px 18px 0 0;
}

.hero-card-content {
  padding: 34px;
}

.card-label {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-card-content h2 {
  margin-top: 10px;
  font-size: 2.25rem;
}

.hero-card-content ul {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  list-style: none;
}

.hero-card-content li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.section-header {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-header.align-left {
  margin: 0;
  text-align: left;
}

.section-header h2 {
  margin-top: 16px;
}

.section-header p {
  margin-top: 18px;
  color: var(--text);
  font-size: 1.05rem;
}

.feature-grid,
.opportunity-grid,
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.region-card,
.step-card,
.benefits-card,
.lead-form,
.opportunity-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.feature-card,
.region-card {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.feature-card .icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border-radius: 16px;
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 1.35rem;
}

.feature-card p,
.region-card p,
.step-card p,
.benefits-card p,
.lead-form p,
.opportunity-body p,
.cta-content p,
.site-footer p {
  color: var(--text);
}

.feature-card p,
.region-card p,
.step-card p,
.opportunity-body p {
  margin-top: 12px;
}

.opportunities,
.process,
.cta-band {
  background: rgba(255, 255, 255, 0.025);
}

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

.opportunity-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.opportunity-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.opportunity-image::before,
.opportunity-image::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.opportunity-image::before {
  inset: 30px;
  border-radius: 22px;
}

.opportunity-image::after {
  left: 48px;
  right: 48px;
  bottom: 0;
  height: 115px;
  border-bottom: none;
  border-radius: 18px 18px 0 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 24px 24px;
}

.image-one {
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.26), rgba(5, 5, 5, 0.88)), #111;
}

.image-two {
  background: linear-gradient(135deg, rgba(248, 245, 239, 0.14), rgba(201, 162, 77, 0.16), rgba(5, 5, 5, 0.9)), #111;
}

.image-three {
  background: linear-gradient(135deg, rgba(201, 162, 77, 0.12), rgba(248, 245, 239, 0.1), rgba(5, 5, 5, 0.92)), #111;
}

.opportunity-body {
  padding: 28px;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold-light);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.region-card span {
  display: inline-flex;
  color: var(--gold-light);
  font-weight: 800;
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.process .btn {
  margin-top: 28px;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: var(--radius-lg);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-weight: 900;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.benefits-card {
  padding: 40px;
  border-radius: var(--radius-xl);
}

.benefits-card h2 {
  margin-top: 16px;
}

.benefits-card p {
  margin-top: 18px;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: var(--off-white);
  font-weight: 700;
}

.benefit-list span {
  color: var(--gold-light);
}

.cta-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.cta-content h2 {
  margin-top: 16px;
}

.cta-content p {
  margin-top: 20px;
  max-width: 650px;
  font-size: 1.08rem;
}

.cta-content .btn {
  margin-top: 28px;
}

.lead-form {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.lead-form p {
  margin: 10px 0 24px;
}

.lead-form label {
  display: block;
  margin: 16px 0 8px;
  color: var(--off-white);
  font-weight: 800;
  font-size: 0.92rem;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: var(--off-white);
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: rgba(201, 162, 77, 0.7);
  box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.12);
}

.lead-form option {
  color: #111;
}

.btn-full {
  width: 100%;
  margin-top: 22px;
  border: none;
}

.lead-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.site-footer {
  padding: 58px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #030303;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.3fr;
  gap: 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 1rem;
}

.site-footer a {
  color: var(--gold-light);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.45);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (max-width: 1040px) {
  .header-cta {
    display: none;
  }

  .hero-grid,
  .process-grid,
  .benefits-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

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

@media (max-width: 820px) {
  .section-padding {
    padding: 72px 0;
  }

  .navbar {
    min-height: 72px;
  }

  .mobile-menu-button {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  }

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

  .nav-menu a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-menu a:hover {
    background: rgba(201, 162, 77, 0.08);
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    gap: 36px;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4.4rem);
  }

  .trust-row,
  .opportunity-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .cta-content .btn,
  .process .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .top-bar {
    font-size: 0.78rem;
  }

  .feature-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .region-card,
  .benefits-card,
  .lead-form,
  .hero-card-content,
  .opportunity-body {
    padding: 24px;
  }

  .property-visual {
    height: 300px;
  }

  .floating-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .site-footer {
    padding-bottom: 88px;
  }
}
