@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,600&family=Raleway:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* ── TOKENS ────────────────────────────────────── */
:root {
  --green:       #3A9E4A;
  --green-dark:  #2C7A38;
  --green-light: #52B862;
  --green-pale:  #E8F4EB;
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D8;
  --charcoal:    #1A1A1A;
  --charcoal-2:  #222222;
  --gold:        #C8943A;
  --gold-light:  #E0AE5A;
  --blue:        #4A8FA8;
  --sage:        #E8EFE4;
  --gray:        #6B6B6B;
  --gray-light:  #A8A8A8;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Raleway', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --container: 1200px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);
  --spring:    cubic-bezier(0.175, 0.885, 0.32, 1.275);

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 24px 80px rgba(0,0,0,0.18);
  --shadow-green: 0 8px 32px rgba(58,158,74,0.30);
}

/* ── RESET ─────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font-body); background: var(--cream); color: var(--charcoal); overflow-x: hidden; }
img,video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; background: none; font: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY BASE ───────────────────────────── */
h1,h2,h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; }
h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; }
p { line-height: 1.75; }

/* ── CONTAINER ─────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
@media(max-width:600px){ .container { padding: 0 18px; } }

/* ── EYEBROW ───────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.eyebrow--gold  { color: var(--gold); }
.eyebrow--light { color: rgba(255,255,255,.55); }
.eyebrow--white { color: white; }

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 34px; border-radius: 3px;
  font-family: var(--font-heading); font-size: 12px;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  transition: all .3s var(--ease); cursor: pointer; white-space: nowrap;
}
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-green); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 14px 44px rgba(58,158,74,.38); }
.btn--outline  { border: 1.5px solid rgba(255,255,255,.6); color: #fff; }
.btn--outline:hover { background: #fff; color: var(--charcoal); border-color: #fff; }
.btn--gold     { background: var(--gold); color: #fff; box-shadow: 0 8px 28px rgba(200,148,58,.3); }
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--wa       { background: #25D366; color: #fff; box-shadow: 0 8px 28px rgba(37,211,102,.35); }
.btn--wa:hover { background: #1ebe5b; transform: translateY(-2px); }
.btn--dark     { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: #333; transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ── REVEAL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(44px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { transform: translateX(-40px); }
.reveal-left.visible { transform: translateX(0); }
.reveal-right { transform: translateX(40px); }
.reveal-right.visible { transform: translateX(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; } .d6 { transition-delay: .6s; }
.d7 { transition-delay: .7s; } .d8 { transition-delay: .8s; }

@keyframes fadeUp   { from{opacity:0;transform:translateY(32px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn   { from{opacity:0} to{opacity:1} }
@keyframes scaleIn  { from{opacity:0;transform:scale(.92)} to{opacity:1;transform:scale(1)} }
@keyframes scrollPulse { 0%,100%{transform:scaleY(1) translateY(0);opacity:1} 55%{transform:scaleY(.4) translateY(28px);opacity:.2} }
@keyframes shimmer  { 0%{background-position:-400px 0} 100%{background-position:400px 0} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes gradMove { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }

/* ── NAV ───────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 26px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s, box-shadow .4s;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(22,22,22,.96);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.3);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo img { height: 44px; width: auto; transition: height .4s var(--ease); }
.nav.scrolled .nav__logo img { height: 36px; }
.nav__links { display: flex; align-items: center; gap: 40px; }
.nav__links a {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.75);
  transition: color .2s; position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1.5px; background: var(--green); transition: right .3s var(--ease);
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after,
.nav__links a.active::after { right: 0; }
.nav__links a.active { color: #fff; }
.nav__cta {
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--green); color: #fff; padding: 10px 22px; border-radius: 3px;
  transition: all .25s;
}
.nav__cta:hover { background: var(--green-dark); transform: translateY(-1px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { width: 23px; height: 1.5px; background: #fff; border-radius: 2px; display: block; transition: all .3s; }
.nav__mobile {
  display: none; position: fixed; inset: 0; background: var(--charcoal);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 36px;
}
.nav__mobile.open { display: flex; animation: fadeIn .25s var(--ease); }
.nav__mobile a { font-family: var(--font-heading); font-size: 20px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: #fff; }
.nav__mobile a:hover { color: var(--green); }
.nav__mobile-close {
  position: absolute; top: 22px; right: 22px;
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); font-size: 28px; transition: color .2s;
}
.nav__mobile-close:hover { color: #fff; }
@media(max-width:860px) { .nav__links,.nav__cta { display: none; } .nav__hamburger { display: flex; } }

/* ── HERO ──────────────────────────────────────── */
.hero {
  position: relative; height: 100svh; min-height: 620px;
  overflow: hidden; display: flex; align-items: flex-start; padding-top: clamp(120px, 15vh, 180px);
  background: #0c1a0d;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  display: block;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(4,12,5,.92) 0%, rgba(4,12,5,.80) 18%, rgba(4,12,5,.55) 36%, rgba(4,12,5,.18) 56%, rgba(4,12,5,.04) 74%, transparent 90%),
    linear-gradient(to top, rgba(3,9,4,.55) 0%, rgba(3,9,4,.30) 10%, rgba(3,9,4,.10) 22%, transparent 40%),
    linear-gradient(to bottom, rgba(0,0,0,.65) 0%, transparent 28%);
}
.hero__grain {
  position: absolute; inset: 0; opacity: .03; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero__content { position: relative; z-index: 2; max-width: 760px; }
.hero__eyebrow {
  font-family: var(--font-heading); font-size: 11px; font-weight: 600;
  text-transform: uppercase; color: rgba(255,255,255,.95); text-shadow: 0 1px 18px rgba(0,0,0,.85), 0 2px 8px rgba(0,0,0,.6);
  margin-bottom: 22px; opacity: 0; letter-spacing: 0.04em;
  animation: eyebrowIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
@keyframes eyebrowIn {
  to { opacity: 1; letter-spacing: 0.28em; }
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(80px,13vw,160px);
  font-weight: 600; line-height: 1.08; color: #fff; margin-bottom: 20px;
}
/* ── word-by-word blur reveal ── */
.hw {
  display: inline-block;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(22px);
  animation: hwReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) calc(0.28s + var(--i) * 0.085s) forwards;
  margin-right: 0.22em;
}
.hw:last-child { margin-right: 0; }
.hw--accent { color: #C8943A; font-style: italic; }
@keyframes hwReveal {
  to { opacity: 1; filter: blur(0px); transform: translateY(0); }
}
.hero__tagline {
  font-family: var(--font-display); font-size: clamp(17px,2vw,22px);
  font-style: italic; color: rgba(255,255,255,.90);
  text-shadow: 0 1px 20px rgba(0,0,0,.75), 0 2px 8px rgba(0,0,0,.5);
  margin-bottom: 16px; line-height: 1.4;
  opacity: 0; animation: fadeUp .8s var(--ease) 1.1s forwards;
}
.hero__sub {
  font-family: var(--font-body); font-size: clamp(14px,1.2vw,16px);
  color: rgba(255,255,255,.72); line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp .8s var(--ease) 1.4s forwards;
}

.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s var(--ease) 1.7s forwards; }
.hero__scroll {
  position: absolute; bottom: 36px; right: 44px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp .6s var(--ease) 2s forwards;
}
.hero__scroll-text {
  font-family: var(--font-heading); font-size: 9px; letter-spacing: .28em;
  text-transform: uppercase; color: rgba(255,255,255,.38); writing-mode: vertical-rl;
}
.hero__scroll-bar { width: 1px; height: 64px; background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@media(max-width:640px) { .hero { padding-top: 100px; } .hero__scroll { display: none; } }

/* ── PROMISES ──────────────────────────────────── */
.promises { background: var(--charcoal-2); padding: 96px 0; }
.promises__header { text-align: center; margin-bottom: 64px; }
.promises__title { font-size: clamp(38px,5vw,60px); color: #fff; margin-bottom: 10px; }
.promises__si { color: #C8943A; }
.promises__sub { font-size: 15px; color: rgba(255,255,255,.55); }
.promises__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  overflow: hidden;
}
.promise-card {
  position: relative;
  padding: 36px 32px;
  background: var(--charcoal-2);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: background .3s;
}
.promise-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--green);
  transform: scaleY(0);
  transition: transform .3s var(--ease);
  transform-origin: bottom;
}
.promise-card:hover { background: rgba(58,158,74,.06); }
.promise-card:hover::before { transform: scaleY(1); }
.promise-card__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(58,158,74,.14); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); transition: background .3s;
}
.promise-card:hover .promise-card__icon { background: rgba(58,158,74,.24); }
.promise-card__icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.promise-card__body { flex: 1; min-width: 0; }
.promise-card__name { font-family: var(--font-heading); font-size: 13.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; margin-bottom: 8px; }
.promise-card__desc { font-size: 13.5px; color: rgba(255,255,255,.6); line-height: 1.7; }
.promise-card__num {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.12);
  align-self: flex-start;
  padding-top: 2px;
  flex-shrink: 0;
  letter-spacing: .05em;
}
@media(max-width:680px) { .promises__grid { grid-template-columns: 1fr; } }

/* ── BEFORE / AFTER SLIDER ─────────────────────── */
.ba-section { padding: 110px 0; background: var(--cream); }
.ba-header { text-align: center; margin-bottom: 64px; }
.ba-header h2 { font-size: clamp(40px,5.5vw,68px); color: var(--charcoal); margin-bottom: 14px; }
.ba-header p { font-size: 15px; color: var(--gray); max-width: 480px; margin: 0 auto; }
.ba-wrapper {
  position: relative; width: 100%; max-width: 1060px; margin: 0 auto;
  border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-lg);
  cursor: ew-resize; user-select: none; touch-action: pan-y;
}
.ba-after { display: block; width: 100%; height: 520px; object-fit: cover; object-position: center 70%; }
.ba-before-wrap {
  position: absolute; inset: 0; overflow: hidden;
  width: 50%;
  transition: none;
}
.ba-before { display: block; width: 100vw; max-width: 1060px; height: 520px; object-fit: cover; object-position: center 70%; }
.ba-line {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  background: #fff; transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.15), 0 0 24px rgba(58,158,74,.8), 0 0 60px rgba(58,158,74,.35);
}
.ba-handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 52px; height: 52px; background: #fff; border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,.2), 0 0 0 3px var(--green);
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.ba-handle svg { width: 22px; height: 22px; color: var(--green); stroke: currentColor; fill: none; stroke-width: 2.2; }
.ba-tag {
  position: absolute; bottom: 20px;
  font-family: var(--font-heading); font-size: 10px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: #fff;
  background: rgba(0,0,0,.52); padding: 6px 14px; border-radius: 2px; backdrop-filter: blur(6px);
}
.ba-tag--before { left: 20px; } .ba-tag--after { right: 20px; }
@media(max-width:700px) { .ba-after,.ba-before { height: 300px; } }

/* ── STATS BAR ─────────────────────────────────── */
.stats { background: var(--green); padding: 80px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(3,1fr); }
.stat {
  text-align: center; padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,.22);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-display); font-size: clamp(60px,9vw,96px);
  font-weight: 600; color: #fff; line-height: 1; display: block;
}
.stat__suffix { font-size: .55em; }
.stat__label { font-family: var(--font-heading); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 6px; }
@media(max-width:640px) { .stats__grid { grid-template-columns: 1fr; } .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); } .stat:last-child { border-bottom: none; } }

/* ── STORY ─────────────────────────────────────── */
.story { padding: 120px 0; background: var(--cream); }
.story__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.story__media { position: relative; }
.story__img { width: 100%; height: 540px; object-fit: cover; border-radius: 4px; display: block; }
.story__badge {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--charcoal); padding: 28px 32px; border-radius: 4px;
  text-align: center; min-width: 130px;
  box-shadow: var(--shadow-md);
}
.story__badge-num { font-family: var(--font-display); font-size: 52px; font-weight: 600; color: var(--green); line-height: 1; display: block; }
.story__badge-lbl { font-family: var(--font-heading); font-size: 9.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 4px; display: block; }
.story__content { padding-left: 12px; }
.story__title { font-size: clamp(36px,4.5vw,56px); color: var(--charcoal); margin-bottom: 26px; line-height: 1.15; }
.story__title em { color: var(--green); font-style: italic; }
.story__text { font-size: 15.5px; color: var(--gray); line-height: 1.85; margin-bottom: 14px; }
@media(max-width:920px) { .story__inner { grid-template-columns: 1fr; gap: 56px; } .story__badge { bottom: -16px; right: -8px; } .story__content { padding-left: 0; } }

/* ── PRIMA CALLOUT ─────────────────────────────── */
.prima { background: var(--charcoal); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.prima::before {
  content: ''; position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(58,158,74,.11) 0%, transparent 65%);
  pointer-events: none;
}
.prima__eyebrow { margin-bottom: 20px; }
.prima__amount {
  font-family: var(--font-display); font-size: clamp(72px,14vw,160px);
  font-weight: 600; color: #fff; line-height: 1; margin-bottom: 4px;
}
.prima__amount span { color: var(--gold); }
.prima__label {
  font-family: var(--font-heading); font-size: clamp(14px,2vw,20px); font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55);
  margin-bottom: 56px;
}
.prima__details { display: flex; justify-content: center; gap: 72px; flex-wrap: wrap; margin-bottom: 56px; }
.prima__detail-val { font-family: var(--font-display); font-size: 38px; font-weight: 600; color: var(--green); display: block; }
.prima__detail-lbl { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-top: 4px; display: block; }

/* ── LOT CARDS ─────────────────────────────────── */
.lots { padding: 100px 0; background: var(--cream); }
.lots__header { text-align: center; margin-bottom: 72px; }
.lots__title { font-size: clamp(28px,5.5vw,70px); color: var(--charcoal); margin-bottom: 14px; }
.lots__subtitle { font-size: 15px; color: var(--gray); max-width: 520px; margin: 0 auto; }
/* ── Lot carousel ── */
.lots__carousel {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(80px) scale(0.65);
}
.lots__track {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-radius: 6px;
}
.lots__track::-webkit-scrollbar { display: none; }
.lots__slide {
  min-width: 100%;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.lots__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: #fff;
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.lots__arrow:hover { background: var(--green); color: #fff; box-shadow: var(--shadow-md); }
.lots__arrow svg { width: 20px; height: 20px; }
.lots__arrow--prev { left: -56px; }
.lots__arrow--next { right: -56px; }
.lots__dots {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-top: 28px;
}
.lots__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(58,158,74,.25);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.lots__dot--active {
  background: var(--green);
  transform: scale(1.3);
}
.lots__counter {
  font-family: var(--font-heading); font-size: 12px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray-light); text-align: center; margin-top: 12px;
}

/* pop-forward entrance animation */
@keyframes lotPop {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.65);
    animation-timing-function: cubic-bezier(0.2, 0, 0.1, 1);
  }
  20% {
    opacity: 1;
    transform: translateY(-18px) scale(1.18);
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.lots__carousel.lot-pop-in {
  animation: lotPop 3.4s linear forwards;
}

.lot-card {
  background: #fff; border-radius: 6px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.lot-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.lot-card__img-wrap { height: 300px; overflow: hidden; position: relative; }
.lot-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; transition: transform .7s var(--ease); display: block; }
.lot-card:hover .lot-card__img-wrap img { transform: scale(1.06); }
.lot-card__badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--charcoal); color: #fff;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 6px 14px; border-radius: 2px;
}
.lot-card__ref {
  position: absolute; bottom: 12px; right: 12px;
  font-family: var(--font-body); font-size: 9px; font-style: italic; color: rgba(255,255,255,.65);
  background: rgba(0,0,0,.5); padding: 4px 10px; border-radius: 2px; backdrop-filter: blur(4px);
}
.lot-card__body { padding: 32px 32px 36px; }
.lot-card__name { font-family: var(--font-heading); font-size: 17px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 4px; }
.lot-card__m2 { font-size: 13px; color: var(--gray-light); margin-bottom: 26px; }
.lot-card__pricing { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.price-block { background: var(--cream); border-radius: 4px; padding: 14px 16px 16px; }
.price-block--finance { background: var(--sage); border: 1px solid rgba(58,158,74,.18); }
.price-block__lbl { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 4px; }
.price-block__val { font-family: var(--font-display); font-size: clamp(36px, 6.5vw, 52px); font-weight: 600; color: var(--charcoal); line-height: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.price-block--finance .price-block__val { color: var(--green-dark); }
.price-block__sub { font-size: 11px; color: var(--gray-light); margin-top: 5px; }
.lot-card__cta { width: 100%; justify-content: center; }
@media(max-width:820px) {
  .lots__arrow--prev { left: -48px; }
  .lots__arrow--next { right: -48px; }
}
@media(max-width:680px) {
  .lots__carousel { max-width: 100%; }
  .lots__arrow { width: 38px; height: 38px; opacity: .88; }
  .lots__arrow--prev { left: 8px; top: 140px; transform: none; bottom: auto; }
  .lots__arrow--next { right: 8px; top: 140px; transform: none; bottom: auto; }
  .lots__dots { margin-top: 20px; }
  .lots__header { margin-bottom: 40px; }
  .price-block__val { font-size: clamp(22px, 6vw, 32px); }
  .lot-card__pricing { grid-template-columns: 1fr 1fr; gap: 8px; }
  .lot-card__body { padding: 24px 20px 28px; }
  .lot-card__img-wrap { height: 0; padding-bottom: 56.25%; }
  .lot-card__img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 70%; }
}

/* ── PRIMA BADGE (lotes page) ──────────────────── */
.prima-badge {
  background: linear-gradient(135deg, var(--gold) 0%, #e8a940 100%);
  border-radius: 6px; padding: 48px; text-align: center; max-width: 860px; margin: 0 auto 80px;
  box-shadow: 0 16px 56px rgba(200,148,58,.35);
}
.prima-badge__sup { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-bottom: 10px; }
.prima-badge__amount { font-family: var(--font-display); font-size: clamp(56px,10vw,100px); font-weight: 600; color: #fff; line-height: 1; margin-bottom: 8px; }
.prima-badge__desc { font-size: 16px; color: rgba(255,255,255,.8); line-height: 1.7; max-width: 480px; margin: 0 auto 28px; }

/* ── CALCULATOR ────────────────────────────────── */
.calculator { background: var(--charcoal-2); padding: 100px 0; }
.calculator__inner { max-width: 720px; margin: 0 auto; }
.calculator__header { text-align: center; margin-bottom: 52px; }
.calculator__title { font-size: clamp(36px,5vw,56px); color: #fff; margin-bottom: 10px; }
.calculator__sub { font-size: 15px; color: rgba(255,255,255,.42); }
.calc-tabs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 40px; }
.calc-tab {
  padding: 18px 8px; border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 4px; cursor: pointer; text-align: center;
  transition: all .25s; background: rgba(255,255,255,.03); color: rgba(255,255,255,.55);
}
.calc-tab:hover { border-color: rgba(255,255,255,.3); color: #fff; }
.calc-tab.active { border-color: var(--green); background: rgba(58,158,74,.12); color: #fff; }
.calc-tab__size { font-family: var(--font-heading); font-size: 15px; font-weight: 700; display: block; margin-bottom: 4px; }
.calc-tab__m2 { font-family: var(--font-heading); font-size: 10px; font-weight: 600; letter-spacing: .08em; opacity: .55; }
.calc-result {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px; padding: 52px; margin-bottom: 32px;
}
.calc-prima-lbl { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.calc-prima-amt { font-family: var(--font-display); font-size: clamp(52px,9vw,80px); font-weight: 600; color: #fff; line-height: 1; margin-bottom: 36px; }
.calc-divider { border: none; border-top: 1px solid rgba(255,255,255,.07); margin: 0 0 32px; }
.calc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.calc-row:last-child { margin-bottom: 0; }
.calc-row-lbl { font-family: var(--font-heading); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.38); }
.calc-row-val { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--green); }
.calc-row-val--lg { font-size: 36px; }
.calc-row-val--white { color: #fff; }
.calc-year-row { margin-bottom: 28px; }
.calc-year-lbl { display: block; font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 10px; }
.calc-year-wrap { position: relative; }
.calc-year-select { width: 100%; appearance: none; -webkit-appearance: none; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.14); border-radius: 8px; padding: 16px 48px 16px 20px; font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: #fff; cursor: pointer; outline: none; transition: border-color .2s; }
.calc-year-select:hover, .calc-year-select:focus { border-color: var(--green); background: rgba(58,158,74,.08); }
.calc-year-select option { background: #1e1e1e; color: #fff; font-size: 15px; }
.calc-year-chevron { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: rgba(255,255,255,.45); pointer-events: none; transition: color .2s; }
.calc-year-wrap:focus-within .calc-year-chevron { color: var(--green); }
.calc-cta { width: 100%; justify-content: center; font-size: 13px; padding: 18px; }
@media(max-width:580px) { .calc-tabs { grid-template-columns: repeat(2,1fr); } .calc-result { padding: 32px 22px; } }

/* ── COMPARISON TABLE ──────────────────────────── */
.comparison { padding: 100px 0; background: var(--sage); }
.comparison__title { font-size: clamp(36px,5vw,56px); color: var(--charcoal); text-align: center; margin-bottom: 60px; }
.comp-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); }
.comp-table thead th { background: var(--charcoal); color: #fff; padding: 20px 24px; font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; text-align: left; }
.comp-table thead th:first-child { background: var(--charcoal-2); }
.comp-table tbody td { padding: 18px 24px; font-size: 15px; border-bottom: 1px solid var(--cream-dark); color: var(--charcoal); }
.comp-table tbody tr:last-child td { border-bottom: none; }
.comp-table tbody tr:hover td { background: var(--cream); }
.comp-table .td-label { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--gray); }
.comp-table .td-highlight { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--green-dark); }
.comp-table .td-prima { color: var(--gold); font-weight: 600; }
@media(max-width:640px) { .comp-table thead th,.comp-table tbody td { padding: 14px 14px; font-size: 13px; } }

/* ── REGLAMENTO BLOCK ──────────────────────────── */
.reglamento {
  background: #fff; border: 1.5px solid rgba(58,158,74,.2); border-radius: 6px;
  padding: 48px 52px; display: flex; gap: 36px; align-items: center;
  max-width: 900px; margin: 72px auto 0; box-shadow: var(--shadow-sm);
  transition: box-shadow .3s, transform .3s var(--ease);
}
.reglamento:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.reglamento__icon { width: 68px; height: 68px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.reglamento__icon svg { width: 32px; height: 32px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.reglamento__title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.reglamento__desc { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; }
@media(max-width:640px) { .reglamento { flex-direction: column; padding: 32px 24px; } }

/* ── PAGE HERO ─────────────────────────────────── */
.page-hero {
  padding: 180px 0 88px; background: var(--charcoal); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(58,158,74,.08) 0%, transparent 55%);
}
.page-hero__content { position: relative; }
.page-hero__title { font-size: clamp(52px,8vw,100px); color: #fff; line-height: 1.08; margin-bottom: 18px; }
.page-hero__title em { color: var(--green); font-style: italic; }
.page-hero__sub { font-size: 16px; color: rgba(255,255,255,.48); max-width: 480px; line-height: 1.8; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.btn--ghost-light { border: 1.5px solid rgba(255,255,255,.28); color: rgba(255,255,255,.85); background: transparent; padding: 14px 28px; border-radius: 4px; font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: border-color .2s, color .2s; display: inline-flex; align-items: center; }
.btn--ghost-light:hover { border-color: #fff; color: #fff; }
.hero-stats { display: flex; align-items: center; gap: 0; margin-top: 60px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,.10); }
.hero-stat { flex: 1; padding: 0 36px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat__val { font-family: var(--font-display); font-size: clamp(40px,5.5vw,68px); font-weight: 600; color: #fff; line-height: 1; margin-bottom: 10px; white-space: nowrap; }
.hero-stat__val--gold { color: var(--gold); }
.hero-stat__lbl { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.42); }
.hero-stat__div { width: 1px; height: 56px; background: rgba(255,255,255,.10); flex-shrink: 0; }
@media(max-width:640px) { .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; } .hero-stat__div { display: none; } .hero-stat { padding: 0; } }

/* ── GALLERY ───────────────────────────────────── */
.gallery-section { padding: 100px 0; background: var(--charcoal); }
.gallery-section__header { text-align: center; margin-bottom: 64px; }
.gallery-section__title { font-size: clamp(40px,5.5vw,70px); color: #fff; margin-bottom: 12px; }
.gallery-section__sub { font-size: 15px; color: rgba(255,255,255,.38); max-width: 440px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: auto; gap: 4px; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); display: block; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s; display: flex; align-items: flex-end; padding: 22px;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__label { font-family: var(--font-heading); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.gallery-item__ref { font-size: 10px; font-style: italic; color: rgba(255,255,255,.5); margin-top: 3px; }
@media(max-width:700px) { .gallery-grid { grid-template-columns: 1fr 1fr; } .gallery-item--tall { grid-row: span 1; } }
@media(max-width:480px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item--wide { grid-column: span 1; } }

/* ── TIMELINE ──────────────────────────────────── */
.timeline-section { padding: 100px 0; background: var(--cream); }
.timeline-section__title { font-size: clamp(36px,5vw,56px); color: var(--charcoal); margin-bottom: 72px; text-align: center; }
.timeline { max-width: 680px; margin: 0 auto; }
.tl-item { display: flex; gap: 28px; margin-bottom: 52px; position: relative; }
.tl-item::before { content: ''; position: absolute; left: 19px; top: 44px; bottom: -52px; width: 1.5px; background: linear-gradient(to bottom, var(--green), var(--sage)); }
.tl-item:last-child::before { display: none; }
.tl-dot { width: 40px; height: 40px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 16px; z-index: 1; box-shadow: var(--shadow-green); }
.tl-dot--future { background: var(--cream-dark); border: 2px dashed var(--gray-light); color: var(--gray-light); box-shadow: none; }
.tl-content { padding-top: 8px; }
.tl-date { font-family: var(--font-heading); font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--green); margin-bottom: 5px; }
.tl-dot--future ~ .tl-content .tl-date { color: var(--gray-light); }
.tl-title { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.tl-desc { font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ── CONTACT ───────────────────────────────────── */
.contact-section { padding: 100px 0; background: var(--cream); }
.contact-section__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form-card { background: #fff; padding: 52px; border-radius: 6px; box-shadow: var(--shadow-md); }
.contact-title { font-size: clamp(36px,5vw,56px); color: var(--charcoal); margin-bottom: 12px; }
.contact-sub { font-size: 15px; color: var(--gray); margin-bottom: 44px; line-height: 1.8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-lbl { display: block; font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
.form-input,.form-select {
  width: 100%; padding: 14px 16px; border: 1.5px solid #E0DADA; border-radius: 3px;
  font-family: var(--font-body); font-size: 15px; color: var(--charcoal); background: #fff;
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.form-input:focus,.form-select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,158,74,.12); }
.form-submit { width: 100%; justify-content: center; padding: 17px 32px; font-size: 13px; margin-top: 6px; }
.contact-aside { padding-top: 12px; }
.wa-big {
  background: #25D366; border-radius: 6px; padding: 32px 36px;
  display: flex; align-items: center; gap: 22px; margin-bottom: 40px;
  transition: transform .3s var(--ease), box-shadow .3s;
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
}
.wa-big:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,.4); }
.wa-big__icon { flex-shrink: 0; }
.wa-big__label { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 4px; }
.wa-big__number { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: #fff; }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 36px; align-items: flex-start; }
.contact-info-icon { width: 48px; height: 48px; background: var(--sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green); }
.contact-info-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-lbl { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gray-light); margin-bottom: 4px; }
.contact-info-val { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--charcoal); }
@media(max-width:900px) { .contact-section__inner { grid-template-columns: 1fr; } .contact-form-card { padding: 36px 24px; } .form-row { grid-template-columns: 1fr; } }

/* ── FAQ ───────────────────────────────────────── */
.faq-section { background: var(--charcoal-2); padding: 100px 0; }
.faq-section__header { text-align: center; margin-bottom: 64px; }
.faq-section__title { font-size: clamp(40px,5vw,64px); color: #fff; margin-bottom: 12px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; cursor: pointer; gap: 28px;
}
.faq-q-text { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: rgba(255,255,255,.85); transition: color .2s; }
.faq-item.open .faq-q-text { color: var(--green); }
.faq-icon {
  width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  color: rgba(255,255,255,.4); font-size: 20px; line-height: 1; transition: all .3s;
}
.faq-item.open .faq-icon { border-color: var(--green); color: var(--green); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease-out), padding .45s; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }
.faq-a p { font-size: 14.5px; color: rgba(255,255,255,.48); line-height: 1.85; }

/* ── PROCESS STEPS ─────────────────────────────── */
.process-section { padding: 100px 0; background: var(--cream); text-align: center; }
.process-section__title { font-size: clamp(36px,5vw,60px); color: var(--charcoal); margin-bottom: 80px; }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; max-width: 920px; margin: 0 auto; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 17%; right: 17%;
  height: 1px; background: var(--sage); z-index: 0;
}
.process-step { position: relative; z-index: 1; padding: 0 28px; }
.process-step__num { width: 80px; height: 80px; background: var(--green); border-radius: 50%; margin: 0 auto 28px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 38px; font-weight: 600; color: #fff; box-shadow: var(--shadow-green); }
.process-step__title { font-family: var(--font-heading); font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 10px; }
.process-step__desc { font-size: 13.5px; color: var(--gray); line-height: 1.75; }
@media(max-width:680px) { .process-steps { grid-template-columns: 1fr; gap: 40px; } .process-steps::before { display: none; } }

/* ── LOT MAP PLACEHOLDER ───────────────────────── */
.lot-map-section { padding: 100px 0; background: var(--sage); }
.lot-map-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.lot-map-visual {
  background: var(--cream); border-radius: 6px; padding: 40px;
  min-height: 340px; display: flex; align-items: center; justify-content: center;
  border: 2px dashed rgba(58,158,74,.3); box-shadow: var(--shadow-sm); flex-direction: column; gap: 16px;
}
.lot-map-visual svg { opacity: .3; }
.lot-map-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gray); text-align: center; }
.lot-legend { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 28px; }
.lot-legend-item { display: flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray); }
.lot-legend-dot { width: 12px; height: 12px; border-radius: 2px; }
.dot-available { background: var(--green); }
.dot-reserved  { background: var(--gold); }
.dot-sold      { background: var(--gray-light); }
@media(max-width:860px) { .lot-map-inner { grid-template-columns: 1fr; } }

/* ── MAP EMBED ─────────────────────────────────── */
.map-section { padding: 0; }
.map-section iframe { display: block; width: 100%; height: 400px; border: none; filter: grayscale(.25) contrast(1.05); }

/* ── FOOTER ────────────────────────────────────── */
.footer { background: #111; padding: 88px 0 44px; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 60px; margin-bottom: 64px; }
.footer__brand img { height: 52px; width: auto; margin-bottom: 20px; }
.footer__tagline { font-family: var(--font-display); font-size: 15px; font-style: italic; color: rgba(255,255,255,.38); line-height: 1.7; margin-bottom: 28px; max-width: 240px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.4); transition: all .2s; }
.footer__social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer__social a:hover { border-color: var(--green); color: var(--green); }
.footer__col-title { font-family: var(--font-heading); font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul a { font-size: 13.5px; color: rgba(255,255,255,.52); transition: color .2s; }
.footer__col ul a:hover { color: #fff; }
.footer__bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,.07); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,.22); }
.footer__legal { font-size: 11px; color: rgba(255,255,255,.18); font-style: italic; }
@media(max-width:900px) { .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media(max-width:480px) { .footer__inner { grid-template-columns: 1fr; } }


/* ── NOTIFICATION BELL & CARD ──────────────────── */
.notif-bell {
  position: fixed; bottom: 30px; left: 24px; z-index: 9000;
  width: 52px; height: 52px;
  background: #DC2626; border: none; border-radius: 50%;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(220,38,38,.45);
  transition: transform .2s, box-shadow .2s;
}
.notif-bell svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.notif-bell:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(220,38,38,.6); }
.notif-bell__dot {
  position: absolute; top: 10px; right: 10px;
  width: 10px; height: 10px;
  background: #fff; border-radius: 50%; border: 2px solid #DC2626;
}
.notif-bell::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(220,38,38,.45);
  animation: notifRing 2.8s ease-out infinite;
}
@keyframes notifRing {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.45); opacity: 0; }
}
.notif-card {
  position: fixed; left: 20px; bottom: 94px; z-index: 9001;
  width: 300px; background: #fff; border-radius: 16px;
  padding: 22px 20px 20px;
  box-shadow: 0 16px 56px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
  transform: translateY(16px) scale(.96); opacity: 0; pointer-events: none;
  transition: transform .38s cubic-bezier(.32,.72,0,1), opacity .32s ease;
}
.notif-card::before {
  content: ''; position: absolute; left: 0; top: 14px; bottom: 14px;
  width: 4px; background: #DC2626; border-radius: 0 3px 3px 0;
}
.notif-card.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.notif-card__close {
  position: absolute; top: 10px; right: 10px;
  width: 26px; height: 26px;
  background: rgba(0,0,0,.06); border: none; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.notif-card__close svg { width: 13px; height: 13px; stroke: #888; stroke-width: 2.5; fill: none; stroke-linecap: round; }
.notif-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #DC2626; color: #fff;
  font-family: var(--font-heading); font-size: 9px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 20px; margin-bottom: 10px;
}
.notif-card__title {
  font-family: var(--font-heading); font-size: 14px; font-weight: 800;
  color: var(--charcoal); margin-bottom: 8px; line-height: 1.35; padding-right: 18px;
}
.notif-card__desc {
  font-family: var(--font-body); font-size: 12.5px;
  color: #555; line-height: 1.65; margin-bottom: 16px;
}
.notif-card__cta {
  display: block; text-align: center;
  background: var(--green); color: #fff;
  font-family: var(--font-heading); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 10px; border-radius: 8px; text-decoration: none;
  transition: background .2s;
}
.notif-card__cta:hover { background: var(--green-dark); }

/* ══ SCROLL PROGRESS ═══════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 10000;
  pointer-events: none;
  width: calc(var(--scroll, 0) * 100%);
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 100%);
  transition: width 0.08s linear;
}


/* ══ STAT COUNTER SHIMMER ══════════════════════════ */
.stat__number { position: relative; overflow: hidden; display: inline-block; }
.stat__number.shimmer-done::after {
  content: '';
  position: absolute; top: 0; left: -60%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(200,148,58,.45) 50%, transparent 100%);
  animation: statShimmer 0.9s 0.05s ease forwards;
  pointer-events: none;
}
@keyframes statShimmer {
  from { left: -60%; }
  to   { left: 110%; }
}

/* ══ RENT VS OWN SECTION ════════════════════════════ */
.rent-vs-own { padding: 100px 0; background: var(--charcoal-2); text-align: center; }
.rent-vs-own__eyebrow { margin-bottom: 18px; }
.rent-vs-own__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 58px); color: #fff; margin-bottom: 14px;
}
.rent-vs-own__sub { color: rgba(255,255,255,.5); font-size: 15px; max-width: 520px; margin: 0 auto 52px; }
.rvo-grid {
  display: grid; grid-template-columns: 1fr 72px 1fr;
  max-width: 720px; margin: 0 auto 44px; align-items: center;
}
.rvo-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 36px 28px; text-align: left; }
.rvo-card--bad  { border-color: rgba(255,90,90,.2); }
.rvo-card--good { border-color: rgba(58,158,74,.45); background: rgba(58,158,74,.08); }
.rvo-card__tag {
  display: block; font-family: var(--font-heading); font-size: 9.5px;
  font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px;
}
.rvo-card--bad  .rvo-card__tag { color: rgba(255,130,130,.65); }
.rvo-card--good .rvo-card__tag { color: var(--green); }
.rvo-card__amount { font-family: var(--font-display); font-size: clamp(26px,4vw,42px); font-weight: 600; line-height: 1.1; }
.rvo-card--bad  .rvo-card__amount { color: rgba(255,255,255,.45); }
.rvo-card--good .rvo-card__amount { color: #fff; }
.rvo-card__note { font-size: 12.5px; color: rgba(255,255,255,.35); margin-top: 8px; line-height: 1.6; }
.rvo-card--good .rvo-card__note { color: rgba(76,200,100,.7); }
.rvo-vs { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: rgba(255,255,255,.22); text-align: center; letter-spacing: .08em; }
.rvo-bottom { font-size: 15px; font-style: italic; color: rgba(255,255,255,.4); max-width: 520px; margin: 0 auto 40px; }
.rvo-bottom strong { color: rgba(255,255,255,.7); font-style: normal; }
@media(max-width:640px) {
  .rvo-grid { grid-template-columns: 1fr; gap: 12px; }
  .rvo-vs { padding: 4px 0; }
}

/* ══ TESTIMONIALS ═══════════════════════════════════ */
.testimonials { padding: 100px 0; background: var(--sage); }
.testimonials__header { text-align: center; margin-bottom: 60px; }
.testimonials__title { font-size: clamp(34px,5vw,58px); color: var(--charcoal); margin-bottom: 12px; }
.testimonials__sub { color: var(--gray); font-size: 15px; max-width: 500px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; max-width: 980px; margin: 0 auto; }
.testi-card {
  background: #fff; border-radius: 18px; overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi-top { background: #075e54; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: #fff; flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-meta { min-width: 0; }
.testi-name { font-family: var(--font-heading); font-size: 12.5px; font-weight: 700; color: #fff; }
.testi-lote { font-size: 11px; color: rgba(255,255,255,.52); margin-top: 1px; }
.testi-body { padding: 16px 16px 20px; background: #e5ddd5; flex: 1; }
.testi-bubble {
  background: #DCF8C6; border-radius: 8px 8px 8px 2px;
  padding: 11px 13px; font-size: 13.5px; line-height: 1.62;
  color: #303030; position: relative; box-shadow: 0 1px 2px rgba(0,0,0,.12);
}
.testi-bubble::before {
  content: ''; position: absolute; bottom: -1px; left: -7px;
  border: 7px solid transparent;
  border-right-color: #DCF8C6; border-bottom-color: #DCF8C6;
  border-top: 0; border-left: 0;
}
.testi-time {
  display: flex; justify-content: flex-end; align-items: center; gap: 4px;
  font-size: 10.5px; color: rgba(48,48,48,.42); margin-top: 5px; padding-right: 2px;
}
.testi-check { color: #53bdeb; font-size: 12px; }
.testimonials__note { text-align: center; margin-top: 40px; font-size: 12px; color: var(--gray-light); font-style: italic; }
@media(max-width:860px) { .testi-grid { grid-template-columns: 1fr; max-width: 380px; } }

/* ══ TIMELINE DRAW ANIMATION ════════════════════════ */
.tl-item::before {
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.75s cubic-bezier(0.4,0,0.2,1) 0.45s;
}
.tl-item.visible::before { transform: scaleY(1); }

/* ══ FLOATING LABEL INPUTS ══════════════════════════ */
.cf-field { position: relative; }
.cf-field .cf-input { padding-top: 22px !important; padding-bottom: 7px !important; }
.cf-field .cf-float-label {
  position: absolute; top: 50%; left: 16px;
  transform: translateY(-50%);
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,.38); pointer-events: none; white-space: nowrap;
  transition: top .22s ease, font-size .22s ease, color .22s ease, transform .22s ease;
}
.cf-field .cf-input:focus + .cf-float-label,
.cf-field .cf-input:not(:placeholder-shown) + .cf-float-label {
  top: 12px; transform: translateY(0); font-size: 10px; letter-spacing: .06em; color: var(--green);
}
.cf-field--textarea .cf-float-label { top: 18px; transform: none; }
.cf-field--textarea .cf-input:focus + .cf-float-label,
.cf-field--textarea .cf-input:not(:placeholder-shown) + .cf-float-label { top: 8px; transform: none; }


/* ══ CUSTOM SCROLLBAR ═══════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #e8e4dc; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dark); }

/* ══ ELEVENLABS AI WIDGET — VALERIA ══════════════════ */

elevenlabs-convai {
  display: block;
  --elevenlabs-convai-button-color: #3A9E4A;
  --elevenlabs-convai-button-color-hover: #2C7A38;
  --elevenlabs-convai-avatar-orb-color-1: #3A9E4A;
  --elevenlabs-convai-avatar-orb-color-2: #C8943A;
  --elevenlabs-convai-background-color: #1A1A1A;
  --elevenlabs-convai-text-color: #F5F0E8;
  --elevenlabs-convai-action-button-color: #3A9E4A;
  --elevenlabs-convai-action-button-color-hover: #2C7A38;
  --elevenlabs-convai-border-radius: 16px;
  --elevenlabs-convai-font-family: 'Raleway', system-ui, sans-serif;
}

@media (max-width: 680px) {
  elevenlabs-convai {
    display: block;
  }
}

/* ===== CONTACT PAGE ANIMATIONS ===== */

/* Keyframes */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-10px); opacity: 0.6; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(58, 158, 74, 0.5); }
  50% { box-shadow: 0 0 30px rgba(58, 158, 74, 0.8); }
}

@keyframes slideBounce {
  0% { transform: translateY(10px); opacity: 0; }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0); opacity: 1; }
}

/* Animation utility classes */
.btn-pulse {
  animation: pulse 1.5s ease-in-out infinite;
}

.btn-pulse-wa {
  animation: pulse 1.5s ease-in-out infinite, glow 2s ease-in-out infinite;
}

.floating-element {
  animation: floatUp 3s ease-in-out infinite;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .btn-pulse, .btn-pulse-wa, .floating-element {
    animation: none;
  }
}

/* Hero section styles */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--charcoal);
  color: white;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  margin: 0 auto 1.5rem;
}

.hero-title .word {
  display: inline-block;
  margin: 0 0.25rem;
  opacity: 0;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle .char {
  display: inline;
  opacity: 0;
}

/* Process section styles */
.process-section {
  background-color: var(--cream);
  padding: 6rem 2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--charcoal);
  margin-bottom: 1rem;
  opacity: 0;
}

.process-underline, .location-underline {
  height: 3px;
  width: 0;
  background-color: var(--gold);
  margin: 0 auto 4rem;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.process-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0;
}

.card-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0.5rem 0;
  line-height: 1;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.card-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  opacity: 0;
}

.progress-bar {
  height: 4px;
  width: 0;
  background-color: var(--green);
  border-radius: 2px;
}

/* Location section styles */
.location-section {
  background-color: white;
  padding: 6rem 2rem;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.info-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.info-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #666;
}

/* CTA section styles */
.cta-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
  color: white;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0;
  line-height: 1.2;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Button Override — extends .btn-wa with CTA-specific styles */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--green);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  margin: 0 auto 2rem;
  display: block;
  opacity: 0;
}

.btn-wa:hover {
  background-color: #2d8a3a;
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(58, 158, 74, 0.6);
}

.wa-icon {
  font-size: 1.5rem;
}

.wa-number {
  font-weight: 400;
  font-size: 0.9rem;
  opacity: 0.9;
}

.notification-badge {
  background: rgba(200, 148, 58, 0.2);
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  margin: 0 auto;
  opacity: 0;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.floating-element {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(200, 148, 58, 0.3);
  border-radius: 50%;
  opacity: 0;
}

.float-1 { top: 20%; left: 10%; }
.float-2 { top: 60%; right: 15%; }
.float-3 { top: 40%; right: 5%; }

/* Spacer */
.spacer {
  height: 4rem;
  background: transparent;
}

.spacer-sm {
  height: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .process-cards, .location-cards {
    grid-template-columns: 1fr;
  }

  .btn-wa {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 80vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .process-section, .location-section, .cta-section {
    padding: 4rem 1rem;
  }

  .section-title, .cta-title {
    font-size: 1.5rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .card-number {
    font-size: 2.5rem;
  }
}
