/* =========================================================
   KARINA UHLIG — Inmobiliaria
   Editorial Luxury Real Estate
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.6; }
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: 0; background: none; cursor: pointer; font: inherit; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Tokens ---------- */
:root {
  /* Brand palette */
  --ink:        #1B2D3A;   /* azul marino casi negro */
  --ink-soft:   #2C4254;   /* azul marino medio */
  --ink-mist:   #5C7080;   /* azul grisáceo */
  --bone:       #F8F4ED;   /* crema base */
  --sand:       #E8DDD0;   /* beige cremoso */
  --sand-deep:  #D4C5B0;   /* beige oscuro */
  --gold:       #B8935A;   /* dorado Century 21 */
  --gold-soft:  #D4B27E;   /* dorado claro */
  --white:      #FFFFFF;
  --text:       #2A2A2A;
  --text-soft:  #6B6B6B;
  --line:       rgba(27, 45, 58, 0.12);
  --shadow-sm:  0 1px 3px rgba(27, 45, 58, 0.06), 0 1px 2px rgba(27, 45, 58, 0.04);
  --shadow-md:  0 10px 30px rgba(27, 45, 58, 0.08), 0 4px 10px rgba(27, 45, 58, 0.04);
  --shadow-lg:  0 30px 60px rgba(27, 45, 58, 0.12), 0 10px 20px rgba(27, 45, 58, 0.06);

  /* Type */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Spacing */
  --container: 1280px;
  --container-narrow: 960px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bone);
  font-feature-settings: 'ss01', 'cv11';
  letter-spacing: 0.005em;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* ---------- Container ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  background: rgba(248, 244, 237, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.nav.scrolled {
  padding: 1rem 2rem;
  border-bottom-color: var(--line);
  background: rgba(248, 244, 237, 0.95);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.nav-brand .role {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.25rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--ink);
  color: var(--bone);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--gold); color: var(--white); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-mobile {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--bone);
    border-bottom: 1px solid var(--line);
    padding: 2rem;
    transform: translateY(-110%);
    transition: transform 0.4s ease;
    z-index: 99;
  }
  .nav-mobile.open { transform: translateY(0); }
  .nav-mobile ul { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
  .nav-mobile a {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--ink);
  }
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 12rem);
}
.hero-text { position: relative; z-index: 2; }
.hero-text .eyebrow { margin-bottom: 1.5rem; }
.hero-title {
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title .accent {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-lede {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 480px;
  font-weight: 300;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 520px;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  display: block;
}
.hero-stat .label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 0.5rem;
  display: block;
}

.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 75vh;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(27, 45, 58, 0.15));
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  z-index: 3;
}
.hero-badge .label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-badge .value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  margin-top: 0.25rem;
}

/* Decorative C21 watermark behind hero */
.hero-watermark {
  position: absolute;
  top: 50%; right: -10%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 32rem;
  font-weight: 300;
  color: var(--sand);
  opacity: 0.18;
  z-index: 0;
  user-select: none;
  pointer-events: none;
  line-height: 1;
}

@media (max-width: 900px) {
  .hero { padding: 7rem 1.25rem 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; min-height: auto; }
  .hero-image { aspect-ratio: 4/5; max-height: 60vh; order: -1; }
  .hero-watermark { display: none; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .hero-stat .num { font-size: 1.75rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--ink); transform: translateY(-2px); }
.btn-ghost { color: var(--ink-soft); padding: 1rem 0; }
.btn-ghost:hover { color: var(--gold); }
.btn .arrow { transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ea750; transform: translateY(-2px); }

/* ---------- Section base ---------- */
.section { padding: 7rem 2rem; position: relative; }
.section-narrow { padding: 5rem 2rem; }
.section-header { text-align: center; margin-bottom: 5rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-header .eyebrow { margin-bottom: 1.5rem; justify-content: center; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1.25rem;
}
.section-header h2 .accent { font-style: italic; color: var(--gold); font-weight: 300; }
.section-header p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Properties Catalog ---------- */
.properties {
  background: var(--bone);
  position: relative;
}
.properties-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
}

.property-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.property-card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.property-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.property-card:hover .property-card-image img { transform: scale(1.06); }

.property-card-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(27, 45, 58, 0.92);
  backdrop-filter: blur(10px);
  color: var(--bone);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}
.property-card-tag.gold { background: var(--gold); color: var(--white); }

.property-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.property-card-loc {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.property-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}
.property-card-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex: 1;
}
.property-card-specs {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.property-spec {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.property-spec .ic {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.property-spec .v {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.property-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.property-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}
.property-card-price small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: block;
  font-weight: 400;
}
.property-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s ease;
}
.property-card-link:hover { color: var(--gold); border-color: var(--gold); gap: 0.85rem; }

/* ---------- About strip ---------- */
.about {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'C21';
  position: absolute;
  bottom: -8rem; right: -3rem;
  font-family: var(--font-display);
  font-size: 28rem;
  font-weight: 300;
  color: rgba(184, 147, 90, 0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.about-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 600px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text .eyebrow { color: var(--gold-soft); margin-bottom: 1.5rem; }
.about-text h2 { color: var(--bone); font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1.5rem; }
.about-text h2 .accent { color: var(--gold-soft); font-style: italic; }
.about-text p { color: rgba(248, 244, 237, 0.78); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.25rem; font-weight: 300; }
.about-quote {
  margin-top: 2.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(184, 147, 90, 0.3);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-soft);
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { max-height: 500px; }
}

/* ---------- Property detail page ---------- */
.detail-hero {
  position: relative;
  margin-top: 80px;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
}
.detail-hero img {
  width: 100%; height: 100%; object-fit: cover;
}
.detail-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,45,58,0.1) 0%, transparent 30%, transparent 60%, rgba(27,45,58,0.85) 100%);
}
.detail-hero-content {
  position: absolute;
  bottom: 3rem; left: 0; right: 0;
  padding: 0 2rem;
  z-index: 2;
}
.detail-hero-inner { max-width: var(--container); margin: 0 auto; color: var(--bone); }
.detail-hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 0.4rem 0.85rem;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
}
.detail-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  color: var(--bone);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.detail-hero .loc {
  font-size: 1rem;
  color: rgba(248,244,237,0.85);
  letter-spacing: 0.05em;
}

.detail-body {
  padding: 5rem 2rem;
  background: var(--bone);
}
.detail-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.detail-main h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  margin-top: 2.5rem;
}
.detail-main h2:first-child { margin-top: 0; }
.detail-main p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  font-weight: 300;
}
.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: var(--ink);
}
.detail-feature::before {
  content: '';
  flex: 0 0 6px;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 0.65rem;
}

.detail-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}
.detail-price-block { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--line); }
.detail-price-block .label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.detail-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1;
}
.detail-price small { font-size: 1rem; color: var(--text-soft); font-weight: 400; }

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  margin-bottom: 1.5rem;
}
.spec-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}
.spec-item .value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
}

/* Gallery */
.gallery {
  padding: 4rem 2rem 6rem;
  background: var(--bone);
}
.gallery-inner { max-width: var(--container); margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--sand);
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.large { grid-column: span 2; grid-row: auto; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(27, 45, 58, 0.97);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  color: var(--bone);
  font-size: 1.5rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(248, 244, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-close:hover { background: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(248, 244, 237, 0.1);
  color: var(--bone);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); }
.lightbox-counter {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--bone);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ---------- Contact form ---------- */
.contact-section {
  padding: 7rem 2rem;
  background: var(--white);
}
.contact-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}
.contact-info p { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bone);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.contact-method:hover { transform: translateX(4px); background: var(--sand); }
.contact-method-icon {
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--bone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-method-text .label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}
.contact-method-text .value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
}

/* Form */
.form {
  background: var(--bone);
  padding: 3rem;
  border-radius: 6px;
}
.form-context {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form h3 {
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.field label .req { color: var(--gold); }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
  font-size: 1rem;
  color: var(--ink);
  transition: all 0.25s ease;
  font-family: var(--font-body);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.12);
}
.field textarea { resize: vertical; min-height: 100px; }
.field input.error,
.field select.error {
  border-color: #c0392b;
  background: rgba(192, 57, 43, 0.04);
}

/* Investment selector */
.option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.option-grid label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-transform: none;
  letter-spacing: normal;
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}
.option-grid label .ic {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.option-grid input[type="radio"] { display: none; }
.option-grid input[type="radio"]:checked + label {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bone);
}
.option-grid input[type="radio"]:checked + label .ic { color: var(--gold-soft); }
.option-grid label:hover { border-color: var(--ink-mist); }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form { padding: 2rem 1.5rem; }
  .option-grid { grid-template-columns: 1fr; }
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #25D366;
  color: var(--white);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: all 0.3s ease;
  animation: pulseWa 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
@keyframes pulseWa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ---------- Investment intent (Lead page) ---------- */
.intent-section {
  min-height: calc(100vh - 80px);
  margin-top: 80px;
  padding: 6rem 2rem 4rem;
  background: var(--bone);
  position: relative;
  overflow: hidden;
}
.intent-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--sand);
  z-index: 0;
}
.intent-inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.intent-header { text-align: center; margin-bottom: 4rem; }
.intent-header h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 1rem;
}
.intent-header h1 .accent { font-style: italic; color: var(--gold); }
.intent-header p { font-size: 1.1rem; color: var(--ink-soft); max-width: 580px; margin: 0 auto; line-height: 1.7; }

.intent-form {
  background: var(--white);
  padding: 3.5rem;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}
.intent-step { margin-bottom: 2.5rem; }
.intent-step .step-label {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.intent-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intent-radio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.intent-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.intent-card input[type="radio"] { position: absolute; opacity: 0; }
.intent-card .title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink);
}
.intent-card .desc { font-size: 0.9rem; color: var(--text-soft); }
.intent-card:hover { border-color: var(--ink-mist); transform: translateY(-2px); }
.intent-card.selected { border-color: var(--ink); background: var(--ink); }
.intent-card.selected .title { color: var(--bone); }
.intent-card.selected .desc { color: rgba(248,244,237,0.7); }

.range-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.range-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.range-card input[type="radio"] { position: absolute; opacity: 0; }
.range-card .range-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.range-card .range-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
}
.range-card:hover { border-color: var(--ink-mist); transform: translateY(-2px); }
.range-card.selected { border-color: var(--gold); background: var(--ink); }
.range-card.selected .range-label { color: var(--gold-soft); }
.range-card.selected .range-value { color: var(--bone); }

@media (max-width: 700px) {
  .intent-section::before { display: none; }
  .intent-form { padding: 2rem 1.5rem; }
  .range-grid { grid-template-columns: 1fr; }
  .intent-radio-row { grid-template-columns: 1fr; }
}

/* Intent form: supporting elements */
.fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 700px) {
  .fields-row { grid-template-columns: 1fr; gap: 0; }
}
.field .opt {
  color: var(--ink-mist, #b5a89a);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
  margin-left: 0.35rem;
}
.btn-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.1rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.btn-block i { font-size: 1.25rem; }
.form-disclaimer {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.intent-header .eyebrow { justify-content: center; margin-bottom: 1.25rem; display: inline-flex; }

/* Trust strip */
.trust-strip {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bone);
  border-radius: 6px;
  border: 1px solid var(--line, rgba(0,0,0,0.08));
}
.trust-item i {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.trust-item span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
@media (max-width: 800px) {
  .trust-strip { grid-template-columns: 1fr; margin-top: 3rem; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(248,244,237,0.7);
  padding: 5rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  position: relative;
  z-index: 2;
}
.footer-brand .name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--bone);
  margin-bottom: 0.25rem;
}
.footer-brand .role {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.5rem;
}
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col a { font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  max-width: var(--container);
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(248,244,237,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  position: relative;
  z-index: 2;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(248,244,237,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); transform: translateY(-2px); }

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Share buttons ---------- */
.share-bar {
  background: var(--sand);
  padding: 2.5rem 2rem;
  text-align: center;
}
.share-bar h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.share-bar p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  transition: all 0.3s ease;
  border: 1px solid var(--line);
}
.share-btn:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); border-color: var(--ink); }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ---------- Util ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.flex { display: flex; }
.center { display: flex; align-items: center; justify-content: center; }

/* ---------- Success / Error states ---------- */
.notice {
  padding: 1rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  display: none;
}
.notice.show { display: block; }
.notice.success { background: rgba(34, 139, 34, 0.08); border: 1px solid rgba(34,139,34,0.2); color: #2d5f2d; }
.notice.error { background: rgba(192, 57, 43, 0.08); border: 1px solid rgba(192,57,43,0.2); color: #952d22; }
