/* ============================================================
   VIVÍ CARMELO — "Estancia del Río"
   Estética: Editorial luxury. Bodega meets boutique hotel.
   Tipografía: Cormorant Garamond + DM Sans
   Paleta: Crema cálida · Tinta foresta · Ámbar ocre
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* Greens — del canopy al prado */
  --green-1:    #0C1705;
  --green-2:    #1D3708;
  --green-3:    #2B5510;
  --green-4:    #3B6D11;
  --green-5:    #5A9020;
  --green-6:    #85B04A;
  --green-7:    #B1C5A0;
  --green-8:    #D3E3C7;
  --green-9:    #EBF0E7;

  /* Browns — de la corteza a la tierra */
  --brown-1:    #2A1505;
  --brown-2:    #4D2A0A;
  --brown-3:    #6B3A12;
  --brown-4:    #854F0B;
  --brown-5:    #A8682A;
  --brown-6:    #C89060;
  --brown-7:    #DACAB6;
  --brown-8:    #EDE5D8;

  /* Semantic aliases */
  --cream:       var(--green-9);
  --cream-alt:   var(--green-8);
  --cream-light: #F3F7EF;
  --cream-warm:  var(--brown-8);
  --ink:         var(--green-1);
  --ink-soft:    var(--green-2);
  --ink-muted:   #4C6B26;
  --forest:      var(--green-2);
  --forest-mid:  var(--green-3);
  --sage:        var(--green-4);
  --sage-mid:    var(--green-5);
  --sage-light:  var(--green-7);
  --ochre:       var(--brown-4);
  --ochre-mid:   var(--brown-5);
  --ochre-pale:  var(--brown-7);
  --gold:        var(--brown-3);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'DM Sans', system-ui, sans-serif;

  --ease:      cubic-bezier(.25,.1,.25,1);
  --ease-out:  cubic-bezier(0,0,.2,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 80px; }

body {
  font-family: var(--f-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Navigation ────────────────────────────────────────────── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

#mainNav.scrolled {
  background: rgba(241,234,212,.96);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--cream-alt);
}

.nav-logo {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--cream-light);
  letter-spacing: .02em;
  transition: color .3s;
}
#mainNav.scrolled .nav-logo { color: var(--forest); }
.nav-logo em { font-style: normal; color: var(--ochre); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  position: relative;
  transition: color .3s;
  cursor: pointer;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ochre);
  transition: width .35s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: rgba(255,255,255,1); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
#mainNav.scrolled .nav-links a { color: var(--ink-muted); }
#mainNav.scrolled .nav-links a:hover,
#mainNav.scrolled .nav-links a.active { color: var(--forest); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform .3s, opacity .3s;
}
.nav-toggle { color: rgba(255,255,255,.8); }
#mainNav.scrolled .nav-toggle { color: var(--ink); }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
}

.btn-ochre {
  background: var(--ochre);
  color: var(--cream-light);
  border-color: var(--ochre);
}
.btn-ochre:hover {
  background: #6a3e09;
  border-color: #6a3e09;
  color: var(--cream-light);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn-dark:hover {
  background: var(--forest-mid);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn-outline-dark:hover {
  background: var(--forest);
  color: var(--cream);
}

.btn-cream {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--cream-light);
  transform: translateY(-2px);
}

.btn-outline-cream {
  background: transparent;
  color: rgba(255,255,255,.8);
  border-color: rgba(255,255,255,.3);
}
.btn-outline-cream:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.6);
  color: #fff;
}

/* ── Typography helpers ────────────────────────────────────── */
.label-eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: 1.2rem;
}

.display-heading {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.section-heading {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--forest);
  letter-spacing: -.02em;
}

.body-text {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

/* ── Scroll reveal ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6% 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(133,79,11,.13) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(59,109,17,.1) 0%, transparent 60%),
    linear-gradient(158deg, #0F1A04 0%, #1D3708 45%, #142604 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .55;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb--a {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(133,79,11,.25) 0%, transparent 70%);
  top: -80px; right: -60px;
  animation-duration: 14s;
}
.hero-orb--b {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(59,109,17,.2) 0%, transparent 70%);
  bottom: 60px; left: -40px;
  animation-duration: 10s;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(20px,-30px) scale(1.05); }
  66%  { transform: translate(-15px,15px) scale(.97); }
}

.hero-content { position: relative; z-index: 2; max-width: 780px; }

.hero-kicker {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2.2rem;
}
.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--ochre);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
.hero-kicker span {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-family: var(--f-body);
  font-weight: 400;
}

.hero-title {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.12;
  color: var(--cream-light);
  letter-spacing: -.02em;
  margin-bottom: 1.8rem;
}
.hero-title em {
  font-style: normal;
  color: var(--ochre);
}

.hero-sub {
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,.62);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.8rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.hero-coords {
  position: absolute;
  bottom: 3rem;
  right: 6%;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.hero-coords span {
  font-family: var(--f-body);
  font-size: .68rem;
  letter-spacing: .18em;
  color: rgba(255,255,255,.28);
  text-transform: uppercase;
}
.hero-coords-line {
  width: 50px;
  height: 1px;
  background: rgba(255,255,255,.18);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 6%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  pointer-events: none;
  user-select: none;
}
.hero-scroll-hint span {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  font-family: var(--f-body);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,.25), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Marquee strip ─────────────────────────────────────────── */
.marquee-strip {
  background: var(--forest);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.marquee-inner {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-inner span {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.4);
  padding: 0 2rem;
  white-space: nowrap;
}
.marquee-inner span.ochre { color: var(--ochre); opacity: .8; }
.marquee-inner .sep {
  font-style: normal;
  color: rgba(255,255,255,.15);
  padding: 0 .5rem;
  font-size: .7rem;
  align-self: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section shared ────────────────────────────────────────── */
.section {
  padding: 100px 6%;
  position: relative;
  overflow: hidden;
}
.section--cream  { background: var(--cream); }
.section--light  { background: var(--cream-light); }
.section--warm   { background: var(--cream-warm); }
.section--forest { background: var(--forest); }
.section--alt    { background: var(--cream-alt); }

.section-header { margin-bottom: 4rem; }

.section-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ochre);
  margin-bottom: 1.4rem;
}

.section-num {
  position: absolute;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 18vw;
  font-weight: 300;
  line-height: 1;
  color: var(--forest);
  opacity: .04;
  top: -0.1em;
  right: 3%;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.05em;
}
.section--forest .section-num { color: #fff; opacity: .04; }

/* ── Qué hacemos (3 columns) ───────────────────────────────── */
.features-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-alt);
  border: 1px solid var(--cream-alt);
}
.feature-block {
  background: var(--cream-light);
  padding: 3rem 2.5rem;
  transition: background .3s;
}
.feature-block:hover { background: var(--cream); }
.feature-icon {
  display: block;
  color: var(--ochre);
  margin-bottom: 1.2rem;
}
.feature-icon svg { width: 26px; height: 26px; display: block; }
.feature-block-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--ochre-pale);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}
.feature-block h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: .9rem;
  letter-spacing: -.01em;
}
.feature-block p {
  font-size: .93rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* ── Stats band ────────────────────────────────────────────── */
.stats-band {
  background: var(--forest);
  padding: 60px 6%;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30%;
  height: 40%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.stat-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--ochre);
  line-height: 1;
  display: block;
  margin-bottom: .6rem;
}
.stat-label {
  font-family: var(--f-body);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── Posicionamiento ───────────────────────────────────────── */
.positioning {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.positioning blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--forest);
  letter-spacing: -.01em;
  position: relative;
  padding: 2rem 0;
}
.positioning blockquote::before,
.positioning blockquote::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--ochre);
  margin: 0 auto;
}
.positioning blockquote::before { margin-bottom: 2rem; }
.positioning blockquote::after  { margin-top: 2rem; }

/* ── Services grid ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-alt);
  border: 1px solid var(--cream-alt);
}
.service-card {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background .3s, transform .25s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px;
  height: 0;
  background: var(--ochre);
  transition: height .4s var(--ease-out);
}
.service-card:hover::before { height: 100%; }
.service-card:hover { background: var(--cream-light); }

.service-num {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--ochre-pale);
  line-height: 1;
  margin-bottom: 1.2rem;
  display: block;
  transition: color .3s;
}
.service-card:hover .service-num { color: var(--ochre); }
.service-card h3 {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: .6rem;
  letter-spacing: -.01em;
}
.service-card p {
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* ── Carmelo section ───────────────────────────────────────── */
.carmelo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.carmelo-text .section-heading { margin-bottom: 1.5rem; }
.carmelo-text p {
  font-size: .97rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.carmelo-text strong { color: var(--forest); font-weight: 500; }

.segments-list { display: flex; flex-direction: column; gap: 0; }
.segment-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--cream-alt);
  transition: padding-left .3s var(--ease);
}
.segment-row:first-child { border-top: 1px solid var(--cream-alt); }
.segment-row:hover { padding-left: .5rem; }
.seg-icon {
  flex-shrink: 0;
  color: var(--ochre);
  display: flex;
  align-items: center;
  width: 22px;
}
.seg-icon svg { width: 22px; height: 22px; display: block; }
.seg-content strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: .2rem;
  letter-spacing: -.01em;
}
.seg-content span {
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink-muted);
}

/* ── Steps ─────────────────────────────────────────────────── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--cream-alt);
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 1rem 2rem;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--cream-alt);
  border-radius: 50%;
  background: var(--cream);
  color: var(--ochre);
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all .3s;
}
.step-item:hover .step-circle {
  background: var(--ochre);
  border-color: var(--ochre);
  color: var(--cream-light);
  transform: scale(1.1);
}
.step-item h3 {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: .5rem;
}
.step-item p {
  font-size: .85rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
}
.steps-cta { text-align: center; margin-top: 3.5rem; }

/* ── Testimonios ───────────────────────────────────────────── */
.testimonios-placeholder {
  border: 1px solid var(--cream-alt);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
}
.testimonios-placeholder::before {
  content: '"';
  font-family: var(--f-display);
  font-size: 8rem;
  color: var(--ochre-pale);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}
.testimonios-placeholder p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-muted);
}
.testimonios-placeholder a {
  color: var(--ochre);
  font-style: normal;
  font-family: var(--f-body);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 1rem;
  border-bottom: 1px solid var(--ochre);
  padding-bottom: 2px;
}

/* ── CTA banner ────────────────────────────────────────────── */
.cta-section {
  background: var(--forest);
  padding: 100px 6%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 85% 50%, rgba(133,79,11,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 15% 50%, rgba(59,109,17,.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream-light);
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  position: relative;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ── Page hero (inner pages) ───────────────────────────────── */
.page-hero {
  background:
    radial-gradient(ellipse 70% 80% at 80% 30%, rgba(133,79,11,.12) 0%, transparent 60%),
    linear-gradient(158deg, #0F1A04 0%, #1D3708 100%);
  padding: 140px 6% 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner { max-width: 700px; position: relative; z-index: 2; }
.page-hero h1 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--cream-light);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: .8rem;
}
.page-hero p {
  font-weight: 300;
  font-size: 1.05rem;
  color: rgba(255,255,255,.5);
}
.page-hero .hero-orb--a { opacity: .4; }

/* ── Properties ────────────────────────────────────────────── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 1px;
  background: var(--cream-alt);
  border: 1px solid var(--cream-alt);
}
.prop-card {
  background: var(--cream-light);
  overflow: hidden;
  transition: background .3s;
}
.prop-card:hover { background: var(--cream); }
.prop-img {
  height: 240px;
  background:
    linear-gradient(160deg, rgba(29,55,8,.7) 0%, rgba(133,79,11,.2) 100%),
    repeating-linear-gradient(
      45deg,
      rgba(59,109,17,.06) 0px,
      rgba(59,109,17,.06) 1px,
      transparent 1px,
      transparent 20px
    );
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  position: relative;
}
.prop-img-badge {
  font-family: var(--f-body);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(29,55,8,.7);
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,.15);
}
.prop-body { padding: 2rem 2rem 2.5rem; }
.prop-tags {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.prop-tag {
  font-family: var(--f-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ochre);
  border: 1px solid var(--ochre-pale);
  padding: 3px 9px;
}
.prop-card h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -.01em;
  margin-bottom: .6rem;
}
.prop-card p {
  font-size: .92rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.prop-meta {
  display: flex;
  gap: 1.2rem;
  font-size: .8rem;
  color: var(--ink-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-alt);
  flex-wrap: wrap;
}
.prop-meta span {
  display: flex;
  align-items: center;
  gap: .35rem;
}
.prop-meta svg { width: 13px; height: 13px; flex-shrink: 0; color: var(--ochre); }

/* ── Owner page ────────────────────────────────────────────── */
.owner-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.owner-split .body-text { margin-bottom: 1rem; }
.owner-accent {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ochre);
  display: block;
  margin: 1.2rem 0;
}

.checklist-v2 { display: flex; flex-direction: column; }
.checklist-v2 li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--cream-alt);
  font-size: .93rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.checklist-v2 li:first-child { border-top: 1px solid var(--cream-alt); }
.check-mark {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--ochre);
  font-size: 1.1rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.pricing-feature {
  border: 1px solid var(--cream-alt);
  padding: 3rem;
  text-align: center;
  position: relative;
  background: var(--forest);
  color: var(--cream);
}
.pricing-feature .label-eyebrow { color: var(--ochre); }
.pricing-range {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--cream-light);
  line-height: 1;
  margin: 1rem 0 .5rem;
  letter-spacing: -.04em;
}
.pricing-note {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
}
.pricing-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.2);
  margin: 2rem auto;
}

/* ── About page ────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--cream-alt);
  border: 1px solid var(--cream-alt);
}
.team-card {
  background: var(--cream-light);
  padding: 2.5rem 2rem;
  transition: background .3s;
}
.team-card:hover { background: var(--cream); }
.team-initial {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--ochre-pale);
  line-height: 1;
  margin-bottom: 1.2rem;
  display: block;
  transition: color .3s;
}
.team-card:hover .team-initial { color: var(--ochre); }
.team-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: .3rem;
}
.team-role {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ochre);
  display: block;
  margin-bottom: .8rem;
}
.team-card p {
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--forest);
  border: 1px solid var(--forest);
}
.value-card {
  background: var(--forest-mid);
  padding: 2.5rem;
  transition: background .3s;
}
.value-card:hover { background: rgba(42,78,34,.9); }
.value-icon {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--ochre-pale);
}
.value-icon svg { display: block; width: 24px; height: 24px; }
.value-card h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream-light);
  margin-bottom: .5rem;
}
.value-card p {
  font-size: .88rem;
  font-weight: 300;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--cream-alt);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 1.6rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.faq-btn-text {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -.01em;
  transition: color .25s;
}
.faq-btn:hover .faq-btn-text { color: var(--ochre); }
.faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--cream-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
  font-style: normal;
  font-family: var(--f-body);
  font-size: .9rem;
  color: var(--ochre);
  font-weight: 300;
}
.faq-item.open .faq-icon {
  background: var(--ochre);
  border-color: var(--ochre);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 1.5rem; }
.faq-answer p {
  font-size: .95rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.8;
  border-left: 2px solid var(--ochre-pale);
  padding-left: 1.2rem;
}

/* ── Contact ───────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-methods { display: flex; flex-direction: column; gap: 0; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--cream-alt);
  transition: padding-left .3s var(--ease), background .3s;
}
.contact-row:first-child { border-top: 1px solid var(--cream-alt); }
.contact-row:hover { padding-left: .5rem; }
.contact-row-icon { flex-shrink: 0; color: var(--ochre); display: flex; align-items: center; }
.contact-row-icon svg { width: 20px; height: 20px; display: block; }
.contact-row strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: .15rem;
}
.contact-row span {
  font-size: .88rem;
  font-weight: 300;
  color: var(--ink-muted);
}

.form-v2 { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream-light);
  border: 1px solid var(--cream-alt);
  border-bottom-color: var(--sage-light);
  padding: 12px 0 12px 14px;
  font-family: var(--f-body);
  font-weight: 300;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--ochre);
  box-shadow: 0 2px 0 0 var(--ochre);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6757' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px;
  padding-right: 36px;
}

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 70px 6% 30px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: 'VC';
  position: absolute;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 28vw;
  color: rgba(255,255,255,.025);
  right: -2%;
  bottom: -10%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand .logo-f {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  display: block;
  margin-bottom: 1rem;
}
.footer-brand .logo-f em {
  font-style: normal;
  color: var(--ochre);
}
.footer-brand p {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.35);
  line-height: 1.75;
  max-width: 300px;
}
.footer-brand .footer-email {
  display: inline-block;
  margin-top: 1.2rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding-bottom: 2px;
  transition: color .3s, border-color .3s;
}
.footer-brand .footer-email:hover {
  color: var(--ochre);
  border-bottom-color: var(--ochre);
}

.footer-nav h4 {
  font-family: var(--f-body);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.5rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-nav a {
  font-size: .85rem;
  font-weight: 300;
  color: rgba(255,255,255,.45);
  transition: color .25s;
}
.footer-nav a:hover { color: rgba(255,255,255,.8); }

.footer-bottom {
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
  letter-spacing: .05em;
}

/* ── WhatsApp float ────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 400;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease-back), box-shadow .3s;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ── Property Modal ────────────────────────────────────────── */
.prop-card { cursor: pointer; }
.prop-img { position: relative; overflow: hidden; }
.prop-img-hint {
  position: absolute;
  inset: 0;
  background: rgba(12,23,5,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .35s;
}
.prop-img-hint span {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(29,55,8,.8);
  padding: .55rem 1.3rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s, transform .35s;
}
.prop-card:hover .prop-img-hint { background: rgba(12,23,5,.3); }
.prop-card:hover .prop-img-hint span { opacity: 1; transform: translateY(0); }

.prop-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(12,23,5,.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.prop-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.prop-modal {
  background: var(--cream-light);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  transform: translateY(24px);
  transition: transform .4s var(--ease-out);
}
.prop-modal-overlay.open .prop-modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  z-index: 20;
  width: 34px;
  height: 34px;
  background: rgba(12,23,5,.55);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background .25s;
}
.modal-close:hover { background: var(--ochre); }
.modal-close svg { width: 15px; height: 15px; display: block; }

.modal-gallery {
  position: relative;
  overflow: hidden;
  background: var(--green-2);
  min-height: 400px;
}
.gallery-track-wrap { overflow: hidden; height: 100%; position: absolute; inset: 0; }
.gallery-track {
  display: flex;
  height: 100%;
  transition: transform .4s var(--ease);
  will-change: transform;
}
.gallery-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background: var(--green-1);
  position: relative;
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  color: rgba(255,255,255,.25);
}
.gallery-placeholder svg { width: 36px; height: 36px; }
.gallery-placeholder span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  width: 36px;
  height: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.gallery-nav-btn:hover { background: rgba(255,255,255,.28); }
.gallery-nav-btn svg { width: 16px; height: 16px; display: block; }
.gallery-nav-btn.prev { left: .75rem; }
.gallery-nav-btn.next { right: .75rem; }

.gallery-dots {
  position: absolute;
  bottom: .85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 5;
}
.gallery-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  border: none;
  transition: background .25s, transform .25s;
  padding: 0;
}
.gallery-dot.active { background: #fff; transform: scale(1.35); }

.gallery-counter {
  position: absolute;
  top: .75rem;
  left: .75rem;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  background: rgba(0,0,0,.32);
  padding: .28rem .6rem;
  z-index: 5;
}

.modal-info {
  padding: 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: 90vh;
}
.modal-badge {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ochre);
  margin-bottom: .65rem;
}
.modal-title {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.2rem;
}
.modal-meta-row {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-top: 1px solid var(--cream-alt);
  border-bottom: 1px solid var(--cream-alt);
  margin-bottom: 1.3rem;
}
.modal-meta-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .82rem;
  font-weight: 400;
  color: var(--ink-muted);
}
.modal-meta-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--ochre); }
.modal-desc {
  font-size: .92rem;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.modal-section-label {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .7rem;
}
.modal-amenidades {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.8rem;
}
.modal-amenidad {
  font-size: .75rem;
  font-weight: 400;
  color: var(--ink-soft);
  background: var(--cream);
  border: 1px solid var(--cream-alt);
  padding: .28rem .65rem;
}
.modal-airbnb-btn {
  display: block;
  text-align: center;
  background: var(--forest);
  color: var(--cream-light) !important;
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px;
  text-decoration: none;
  transition: background .3s;
  margin-top: auto;
}
.modal-airbnb-btn:hover { background: var(--ochre); }

@media (max-width: 680px) {
  .prop-modal { grid-template-columns: 1fr; }
  .modal-gallery { min-height: 260px; max-height: 280px; }
  .modal-info { max-height: none; }
}

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }

/* ── FAQ layout ────────────────────────────────────────────── */
.faq-section-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-3,
  .services-grid { grid-template-columns: 1fr 1fr; }
  .carmelo-layout { gap: 3rem; }
  .steps-row { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .steps-row::before { display: none; }
  .owner-split { gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(241,234,212,.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream-alt);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    color: var(--ink-muted) !important;
    padding: .9rem 6%;
    display: block;
    border-bottom: 1px solid rgba(0,0,0,.04);
  }
  .nav-links a:hover,
  .nav-links a.active { color: var(--forest) !important; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 70px 5%; }
  .hero { padding: 100px 5% 70px; }
  .hero-title { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .hero-coords { display: none; }
  .hero-scroll-hint { display: none; }

  .features-3,
  .services-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item::before { display: none !important; }
  .carmelo-layout { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .owner-split { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .faq-section-layout { grid-template-columns: 1fr; gap: 2rem; }
  .faq-section-layout > div:first-child { position: static !important; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .properties-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { min-width: 240px; text-align: center; }
  .page-hero { padding: 110px 5% 60px; }

  .section-num { font-size: 30vw; }
}
