/* ═══════════════════════════════════════════════════════
   FORJA ESPACIOS — styles.css
   ═══════════════════════════════════════════════════════ */

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

:root {
  --negro:      #0A0A09;
  --negro-2:    #111110;
  --negro-3:    #1A1A18;
  --negro-4:    #222220;
  --gris-osc:   #2C2C28;
  --gris-med:   #5C5C56;
  --gris-clr:   #8A8A82;
  --crema:      #F0EDE6;
  --crema-2:    #D8D4CB;
  --blanco:     #FAFAF8;
  --acento:     #C8B97A;
  --acento-dk:  #A89850;
  --acento-lt:  #E8D9A0;
  --verde:      #1D9E75;
  --verde-bg:   #0F2A1E;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--negro);
  color: var(--crema);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── CURSOR ─────────────────────────────────────────────── */
.cursor, .cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, background .3s, border-color .3s;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--acento);
  z-index: 9999;
  transition-property: top, left, width, height;
  transition-duration: .08s, .08s, .3s, .3s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,185,122,.4);
  z-index: 9998;
  transition: top .22s ease-out, left .22s ease-out, width .3s, height .3s, border-color .3s;
}
.cursor.hover { width: 16px; height: 16px; }
.cursor-ring.hover { width: 52px; height: 52px; border-color: rgba(200,185,122,.7); }

/* ── NOISE ───────────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .022;
  pointer-events: none;
  z-index: 1000;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 3rem;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
}
nav.scrolled {
  background: rgba(10,10,9,.93);
  backdrop-filter: blur(14px);
  border-bottom: .5px solid rgba(200,185,122,.1);
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--blanco);
  text-decoration: none;
  letter-spacing: .02em;
}
.logo .dot { color: var(--acento); margin: 0 1px; }

.nav-links { display: flex; list-style: none; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: .72rem; font-weight: 400;
  color: var(--gris-clr);
  text-decoration: none;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: .5px; background: var(--acento);
  transition: right .3s ease;
}
.nav-links a:hover { color: var(--acento); }
.nav-links a:hover::after { right: 0; }

.btn-nav {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--negro); background: var(--acento);
  border: none; padding: .65rem 1.6rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .1s;
}
.btn-nav:hover { background: var(--acento-lt); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--negro); background: var(--acento);
  border: none; padding: .9rem 2.2rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--acento-lt); }
.btn-primary:active { transform: scale(.98); }

.btn-ghost {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--crema-2); background: transparent;
  border: .5px solid rgba(200,185,122,.3);
  padding: .9rem 2.2rem;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, color .2s, transform .1s;
}
.btn-ghost:hover { border-color: var(--acento); color: var(--acento); }
.btn-ghost:active { transform: scale(.98); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  padding: 0 3rem 4rem;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,9,1) 0%,
    rgba(10,10,9,.65) 45%,
    rgba(10,10,9,.25) 100%
  );
}
.hero-lines {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(200,185,122,.035) 0px,
    rgba(200,185,122,.035) 1px,
    transparent 1px, transparent 80px
  );
}
.hero-content { position: relative; max-width: 620px; }

.hero-eyebrow {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--acento);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp .7s .1s ease forwards;
}
.hero-eyebrow::before {
  content: ''; width: 2.5rem; height: .5px; background: var(--acento);
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400; line-height: 1.05;
  color: var(--blanco); margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp .7s .2s ease forwards;
}
.hero-title em { font-style: italic; color: var(--acento); }
.hero-sub {
  font-size: .95rem; font-weight: 300;
  color: var(--gris-clr); line-height: 1.75;
  max-width: 460px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp .7s .3s ease forwards;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  opacity: 0; animation: fadeUp .7s .4s ease forwards;
}
.hero-stats {
  position: absolute; bottom: 4rem; right: 3rem;
  display: flex; gap: 2.5rem;
  opacity: 0; animation: fadeUp .7s .55s ease forwards;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--acento); line-height: 1; display: block;
}
.stat-label {
  font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gris-med); display: block; margin-top: 4px;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fadeUp .7s .8s ease forwards;
}
.scroll-line {
  width: .5px; height: 3rem;
  background: linear-gradient(to bottom, transparent, var(--acento));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text {
  font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gris-med); writing-mode: vertical-rl; margin-top: 4px;
}

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 6rem 3rem; }
.section--dark { background: var(--negro); }
.section--darker { background: var(--negro-2); }
.section--card { background: var(--negro-3); }

.eyebrow {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--acento); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .75rem;
}
.eyebrow::before { content: ''; width: 2rem; height: .5px; background: var(--acento); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 400; color: var(--blanco); line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--acento); }

.section-sub {
  font-size: .95rem; color: var(--gris-clr);
  max-width: 520px; line-height: 1.75; margin-top: 1rem;
}

.section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 3.5rem;
  flex-wrap: wrap; gap: 1.5rem;
}

.gold-line {
  width: 3rem; height: .5px;
  background: var(--acento); margin: 1.5rem 0; opacity: .4;
}

/* ── PILLARS ─────────────────────────────────────────────── */
.pillars-wrap { background: var(--negro-2); border-top: .5px solid rgba(200,185,122,.08); }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.pilar {
  padding: 3.5rem 3rem;
  border-right: .5px solid rgba(200,185,122,.08);
  transition: background .3s;
}
.pilar:last-child { border-right: none; }
.pilar:hover { background: var(--negro-3); }
.pilar-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 400;
  color: rgba(200,185,122,.07); line-height: 1; margin-bottom: 1.5rem;
}
.pilar-icon {
  width: 42px; height: 42px;
  border: .5px solid rgba(200,185,122,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; transition: border-color .3s;
}
.pilar:hover .pilar-icon { border-color: var(--acento); }
.pilar-icon svg { width: 20px; height: 20px; stroke: var(--acento); fill: none; stroke-width: 1.5; }
.pilar-title {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--crema); margin-bottom: .9rem;
}
.pilar-text { font-size: .88rem; color: var(--gris-clr); line-height: 1.75; margin-bottom: 1.5rem; }
.pilar-proof {
  font-size: .7rem; color: var(--acento); letter-spacing: .06em;
  padding-top: 1rem; border-top: .5px solid rgba(200,185,122,.15);
  display: flex; align-items: center; gap: .5rem;
}
.pilar-proof::before { content: '→'; font-size: .8rem; }

/* ── PRODUCT LINES ───────────────────────────────────────── */
.lines-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1px; background: rgba(200,185,122,.08);
}
.line-card {
  background: var(--negro-2);
  padding: 2.75rem 2.25rem;
  display: flex; flex-direction: column;
  transition: background .3s; position: relative; overflow: hidden;
}
.line-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--acento);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.line-card:hover { background: var(--negro-3); }
.line-card:hover::before, .line-card.featured::before { transform: scaleX(1); }
.line-card.featured { background: var(--negro-3); }

.line-tag {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--acento); margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: .5rem;
}
.line-tag::before { content: '—'; }
.line-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--blanco); margin-bottom: .2rem; line-height: 1.15;
}
.line-subtitle { font-size: .72rem; color: var(--gris-med); letter-spacing: .08em; margin-bottom: 1.25rem; }
.line-desc { font-size: .87rem; color: var(--gris-clr); line-height: 1.75; flex: 1; margin-bottom: 2rem; }
.line-features { list-style: none; margin-bottom: 2rem; }
.line-features li {
  font-size: .78rem; color: var(--gris-clr);
  padding: .35rem 0; border-bottom: .5px solid var(--gris-osc);
  display: flex; align-items: center; gap: .6rem;
}
.line-features li::before { content: ''; width: 4px; height: 4px; background: var(--acento); border-radius: 50%; flex-shrink: 0; }
.line-price { margin-bottom: 1.75rem; }
.price-from { font-size: .62rem; color: var(--gris-med); letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: 3px; }
.price-num { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--acento); line-height: 1; }
.price-note { font-size: .65rem; color: var(--gris-med); margin-top: 3px; }
.line-cta {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--crema); background: none; border: none; padding: 0;
  cursor: pointer; display: flex; align-items: center; gap: .5rem;
  text-decoration: none; transition: color .2s, gap .2s;
}
.line-cta:hover { color: var(--acento); gap: .8rem; }
.line-cta .arrow { transition: transform .2s; }
.line-cta:hover .arrow { transform: translateX(4px); }

/* ── PORTFOLIO ───────────────────────────────────────────── */
.projects-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(200,185,122,.08); }
.project-card { background: var(--negro-2); overflow: hidden; transition: background .3s; }
.project-card:hover { background: var(--negro-3); }
.project-img {
  width: 100%; aspect-ratio: 16/10;
  overflow: hidden; position: relative;
}
.project-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.project-card:hover .project-img img { transform: scale(1.03); }
.project-body { padding: 2rem 2.25rem; }
.project-num {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--acento); display: block; margin-bottom: .75rem;
}
.project-status {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; margin-bottom: .75rem;
}
.status-done { background: rgba(200,185,122,.1); color: var(--acento); }
.status-done::before { content: ''; width: 5px; height: 5px; background: var(--acento); border-radius: 50%; }
.status-wip { background: rgba(92,92,86,.15); color: var(--gris-clr); border: .5px solid rgba(92,92,86,.3); }
.status-wip::before { content: ''; width: 5px; height: 5px; background: var(--gris-med); border-radius: 50%; animation: pulse 2s infinite; }
.project-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--blanco); margin-bottom: 1rem; line-height: 1.2; }
.project-specs { display: flex; gap: 2rem; flex-wrap: wrap; }
.project-spec { font-size: .75rem; color: var(--gris-clr); }
.project-spec strong { color: var(--acento); font-weight: 500; display: block; font-size: .9rem; font-family: 'Playfair Display', serif; }

/* ── PROCESS ─────────────────────────────────────────────── */
.proceso-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.paso {
  padding: 2.5rem 2.25rem;
  border-right: .5px solid rgba(200,185,122,.08);
  position: relative;
}
.paso:last-child { border-right: none; }
.paso-dot {
  width: 5px; height: 5px; background: var(--acento);
  border-radius: 50%; margin-bottom: 2rem; position: relative;
}
.paso-dot::before {
  content: ''; position: absolute; inset: -6px;
  border: .5px solid rgba(200,185,122,.2); border-radius: 50%;
}
.paso-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; font-weight: 400;
  color: rgba(200,185,122,.07); line-height: 1;
  position: absolute; top: 1.5rem; right: 1.5rem;
}
.paso-title { font-size: .72rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--crema); margin-bottom: .75rem; }
.paso-text { font-size: .87rem; color: var(--gris-clr); line-height: 1.75; }

/* ── GLAMPING SECTION ────────────────────────────────────── */
.glamping-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.glamping-img { position: relative; overflow: hidden; min-height: 500px; }
.glamping-img img { width: 100%; height: 100%; object-fit: cover; }
.glamping-content { padding: 5rem 3.5rem; background: var(--negro-3); display: flex; flex-direction: column; justify-content: center; }
.glamping-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.metric-card { background: var(--negro-2); padding: 1.25rem; }
.metric-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--acento); display: block; line-height: 1; margin-bottom: 4px; }
.metric-label { font-size: .68rem; color: var(--gris-clr); letter-spacing: .06em; }

/* ── RENTING ─────────────────────────────────────────────── */
.renting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.renting-steps { list-style: none; margin-top: 2.5rem; }
.renting-step { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: .5px solid var(--gris-osc); align-items: flex-start; }
.renting-step:last-child { border-bottom: none; }
.step-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--acento); line-height: 1; flex-shrink: 0; width: 2rem; }
.step-text h4 { font-size: .88rem; font-weight: 500; color: var(--crema); margin-bottom: .3rem; }
.step-text p { font-size: .83rem; color: var(--gris-clr); line-height: 1.65; }
.renting-box { background: var(--negro-3); padding: 2.5rem; border: .5px solid rgba(200,185,122,.12); position: relative; }
.renting-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, var(--acento), transparent); }
.renting-box-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--blanco); margin-bottom: 1.5rem; line-height: 1.2; }
.renting-box-title em { font-style: italic; color: var(--acento); }
.renting-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }
.rm-card { background: var(--negro-2); padding: 1rem 1.25rem; }
.rm-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--acento); display: block; line-height: 1; margin-bottom: 4px; }
.rm-label { font-size: .68rem; color: var(--gris-clr); letter-spacing: .06em; }
.renting-note { padding: 1rem; background: var(--negro-2); border-left: 2px solid var(--acento); }
.renting-note p { font-size: .78rem; color: var(--gris-clr); line-height: 1.6; }
.renting-note strong { color: var(--crema); display: block; margin-bottom: 4px; }

/* ── COMPARISON TABLE ────────────────────────────────────── */
.comp-table { width: 100%; border-collapse: collapse; }
.comp-table th {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gris-med); padding: 1rem 1.25rem;
  text-align: left; border-bottom: .5px solid rgba(200,185,122,.15);
}
.comp-table th.ours { color: var(--acento); }
.comp-table td { padding: .85rem 1.25rem; font-size: .87rem; color: var(--gris-clr); border-bottom: .5px solid var(--gris-osc); }
.comp-table td:first-child { color: var(--crema-2); }
.comp-table td.win { color: var(--verde); font-weight: 500; }
.comp-table td.neutral { color: var(--gris-med); }
.comp-table tbody tr:hover td { background: var(--negro-3); }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 760px; }
.faq-item { border-bottom: .5px solid var(--gris-osc); }
.faq-question {
  width: 100%; background: none; border: none; padding: 1.5rem 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem; font-weight: 400; color: var(--crema);
  transition: color .2s;
}
.faq-question:hover { color: var(--acento); }
.faq-icon { font-size: 1.2rem; color: var(--acento); transition: transform .3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: .88rem; color: var(--gris-clr); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 1.5rem; }

/* ── CONTACT ─────────────────────────────────────────────── */
#contacto {
  background: var(--negro-3);
  border-top: .5px solid rgba(200,185,122,.1);
  padding: 6rem 3rem; text-align: center; position: relative; overflow: hidden;
}
#contacto::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(200,185,122,.018) 0px, rgba(200,185,122,.018) 1px, transparent 1px, transparent 60px);
}
.contact-content { position: relative; max-width: 560px; margin: 0 auto; }
.contact-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 400; color: var(--blanco); line-height: 1.2; margin-bottom: .75rem; }
.contact-title em { font-style: italic; color: var(--acento); }
.contact-sub { font-size: .92rem; color: var(--gris-clr); line-height: 1.75; margin-bottom: 2.5rem; }
.contact-form { display: flex; gap: 0; margin-bottom: 1rem; }
.contact-input {
  flex: 1; background: var(--negro-2);
  border: .5px solid rgba(200,185,122,.2); border-right: none;
  color: var(--crema); font-family: 'DM Sans', sans-serif;
  font-size: .88rem; font-weight: 300;
  padding: .95rem 1.25rem; outline: none; transition: border-color .2s;
}
.contact-input::placeholder { color: var(--gris-med); }
.contact-input:focus { border-color: var(--acento); }
.contact-btn {
  background: var(--acento); border: none; color: var(--negro);
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .95rem 1.75rem; cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
.contact-btn:hover { background: var(--acento-lt); }
.contact-note { font-size: .7rem; color: var(--gris-med); letter-spacing: .06em; }
.contact-phone { margin-top: 2rem; padding-top: 2rem; border-top: .5px solid var(--gris-osc); font-size: .82rem; color: var(--gris-clr); }
.contact-phone a { color: var(--acento); text-decoration: none; font-weight: 500; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--negro); border-top: .5px solid rgba(200,185,122,.08);
  padding: 2.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--crema); text-decoration: none; }
.footer-logo .dot { color: var(--acento); }
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: .68rem; color: var(--gris-med); text-decoration: none; letter-spacing: .1em; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--acento); }
.footer-copy { font-size: .68rem; color: var(--gris-osc); letter-spacing: .06em; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; }
  50%      { opacity: 1; }
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .3; }
}

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .lines-grid { grid-template-columns: 1fr; }
  .glamping-split { grid-template-columns: 1fr; }
  .glamping-img { min-height: 360px; }
}
@media (max-width: 860px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  #hero { padding: 0 1.5rem 3rem; }
  .hero-stats { position: relative; bottom: auto; right: auto; margin-top: 2rem; justify-content: flex-start; }
  .hero-scroll { display: none; }
  .section { padding: 4rem 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pilar { border-right: none; border-bottom: .5px solid rgba(200,185,122,.08); }
  .projects-grid { grid-template-columns: 1fr; }
  .proceso-grid { grid-template-columns: 1fr 1fr; }
  .renting-grid { grid-template-columns: 1fr; gap: 2rem; }
  footer { flex-direction: column; align-items: flex-start; }
  .cursor, .cursor-ring { display: none; }
}
