/* ============================================================
   PROPIEDADES MIN — styles.css
   Archetype: Editorial Dark Premium
   Palette: Black + Cream + Gold
   v20260602
   ============================================================ */

/* ── Reset & Custom Properties ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0c0b09;
  --bg-2:       #141210;
  --bg-3:       #1c1a16;
  --bg-card:    #1a1815;
  --cream:      #f4edd8;
  --cream-2:    #d9ccb0;
  --cream-3:    #8a7e66;
  --gold:       #c4a34f;
  --gold-2:     #a8883e;
  --gold-light: #e2c57a;
  --black:      #000000;
  --line:       rgba(196,163,79,.15);
  --line-2:     rgba(244,237,216,.08);

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);
  --ease-circ:  cubic-bezier(0.85, 0, 0.15, 1);

  --nav-h:      72px;
  --max-w:      1280px;
  --pad-x:      clamp(1.25rem, 5vw, 4rem);
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol { list-style: none; }

/* ── Utility ────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-block: 1.5rem;
}

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .32s; }
.reveal-delay-4 { transition-delay: .44s; }

/* ── Logo image ─────────────────────────────────────────────── */
.nav-logo {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  flex-shrink: 0;
  max-width: 180px;
  overflow: hidden;
}

.nav-logo-img {
  height: 48px !important;
  width: auto !important;
  max-width: 160px !important;
  min-width: unset !important;
  display: block !important;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.splash-logo-img {
  height: 90px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Splash ─────────────────────────────────────────────────── */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  pointer-events: all;
  transition: opacity .6s var(--ease-circ), clip-path .6s var(--ease-circ);
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
/* CSS safety: auto-hide at 4.5s */
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash { animation: splashSafety .01s 4.5s forwards; }

.splash-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.splash-logo-top {
  background: var(--cream);
  color: var(--black);
  padding: .6rem 1.8rem .4rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(.85rem, 2.5vw, 1.1rem);
  letter-spacing: .25em;
  text-transform: uppercase;
}
.splash-logo-bottom {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.8rem .6rem;
  border: 1px solid var(--cream);
  border-top: none;
}
.splash-logo-bottom span {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--cream);
  letter-spacing: .08em;
}
.splash-chevron {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-top: 4px;
}
.splash-chevron i {
  display: block;
  height: 2px;
  background: var(--gold);
  transition: width .3s ease;
}
.splash-chevron i:nth-child(1) { width: 18px; }
.splash-chevron i:nth-child(2) { width: 14px; }
.splash-chevron i:nth-child(3) { width: 10px; }
.splash-chevron i:nth-child(4) { width: 7px; }

.splash-bar {
  width: 120px;
  height: 1px;
  background: var(--line-2);
  position: relative;
  overflow: hidden;
}
.splash-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: splashLoad 2.8s var(--ease-out) forwards;
}
@keyframes splashLoad { to { transform: scaleX(1); } }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .4s ease, border-color .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(12,11,9,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}
.nav-logo-top {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .55rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--cream);
  color: var(--black);
  padding: .18rem .55rem .12rem;
  line-height: 1.4;
}
.nav-logo-bottom {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .12rem .55rem .18rem;
  border: 1px solid var(--cream-3);
  border-top: none;
}
.nav-logo-bottom span {
  font-weight: 900;
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--cream);
}
.nav-chevron {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-chevron i {
  display: block;
  height: 1.5px;
  background: var(--gold);
}
.nav-chevron i:nth-child(1) { width: 10px; }
.nav-chevron i:nth-child(2) { width: 8px; }
.nav-chevron i:nth-child(3) { width: 6px; }
.nav-chevron i:nth-child(4) { width: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
  transition: color .25s ease;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right .3s var(--ease-out);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }

.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: .55rem 1.4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease, transform .2s ease;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 22px; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0;
  background: rgba(12,11,9,.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.nav-mobile.is-open {
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 600;
  color: var(--cream-3);
  transition: color .2s ease;
}
.nav-mobile a:hover { color: var(--cream); }
.nav-mobile .nav-cta {
  font-family: var(--font-body);
  font-size: .9rem;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100svh;     /* usa small viewport height — evita saltos en Safari iOS */
  min-height: 600px;
  max-height: 900px;  /* evita que en notebooks de pantalla alta quede demasiado espacio */
  display: flex;
  align-items: center; /* centra verticalmente en notebook */
  overflow: hidden;
}
/* En pantallas grandes (desktop) recupera el alineado abajo */
@media (min-height: 850px) and (min-width: 1024px) {
  .hero { align-items: flex-end; max-height: none; }
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero-bg img.is-loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12,11,9,.3) 0%, rgba(12,11,9,.1) 40%, rgba(12,11,9,.7) 75%, rgba(12,11,9,.95) 100%),
    linear-gradient(90deg, rgba(12,11,9,.6) 0%, transparent 60%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.5rem, 5vw, 5rem);
  padding-top: calc(var(--nav-h) + 1rem);
  width: 100%;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.hero-meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
.hero-meta span {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 6rem);
  font-weight: 600;
  line-height: .95;
  color: var(--cream);
  max-width: 14ch;
  text-wrap: balance;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  max-width: 38ch;
  font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: var(--cream-2);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold);
  color: var(--black);
  padding: .85rem 2rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .25s ease, transform .2s ease;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid var(--cream-3);
  color: var(--cream);
  padding: .85rem 2rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: border-color .25s ease, color .25s ease;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream-3);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: .4; transform: scaleY(.5); transform-origin: top; }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* ── Stats bar ──────────────────────────────────────────────── */
.stats {
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-columns: 1px solid var(--line);
}
.stat-item {
  padding: 2rem var(--pad-x);
  border-right: 1px solid var(--line);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
}

/* ── Section header ─────────────────────────────────────────── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-kicker {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--cream);
  max-width: 22ch;
}
.section-title em {
  font-style: italic;
  color: var(--cream-2);
}
.section-desc {
  max-width: 50ch;
  font-size: .95rem;
  color: var(--cream-3);
  line-height: 1.7;
  margin-top: 1rem;
}

/* ── Properties section ─────────────────────────────────────── */
.propiedades {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.prop-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.prop-tab {
  padding: .75rem 2rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream-3);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .25s ease, border-color .25s ease;
  margin-bottom: -1px;
}
.prop-tab:hover { color: var(--cream); }
.prop-tab.is-active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.prop-filters {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.prop-filter {
  padding: .4rem 1.1rem;
  border: 1px solid var(--line);
  font-size: .75rem;
  letter-spacing: .08em;
  color: var(--cream-3);
  cursor: pointer;
  transition: all .2s ease;
  background: transparent;
}
.prop-filter:hover,
.prop-filter.is-active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,163,79,.06);
}

.prop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

/* Property card */
.prop-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
  cursor: pointer;
}
.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px var(--gold);
}

/* Status badge */
.prop-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  padding: .3rem .8rem;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.prop-badge--vendido   { background: var(--gold); color: var(--black); }
.prop-badge--arrendado { background: var(--cream); color: var(--black); }
.prop-badge--tipo      {
  top: auto; bottom: 1rem; left: 1rem;
  background: rgba(12,11,9,.75);
  color: var(--cream-2);
  border: 1px solid var(--line);
}

/* Photo carousel */
.prop-carousel {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-2);
}
.prop-carousel-track {
  display: flex;
  height: 100%;
  transition: transform .45s var(--ease-out);
}
.prop-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}
.prop-carousel-slide img {
  transition: transform .6s ease;
}
.prop-card:hover .prop-carousel-slide img { transform: scale(1.04); }

.prop-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 34px;
  height: 34px;
  background: rgba(12,11,9,.7);
  border: 1px solid var(--line);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  opacity: 0;
  transition: opacity .25s ease, background .2s ease;
}
.prop-carousel-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.prop-card:hover .prop-carousel-btn { opacity: 1; }
.prop-carousel-btn--prev { left: .5rem; }
.prop-carousel-btn--next { right: .5rem; }

.prop-carousel-dots {
  position: absolute;
  bottom: .5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 4;
}
.prop-carousel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(244,237,216,.4);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.prop-carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Card body */
.prop-body {
  padding: 1.4rem 1.5rem 1.6rem;
}
.prop-location {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .4rem;
}
.prop-location::before {
  content: "◈";
  font-size: .6rem;
}
.prop-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: .85rem;
}
.prop-specs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.prop-spec {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .75rem;
  color: var(--cream-3);
}
.prop-spec-icon { font-size: .8rem; color: var(--gold); }
.prop-desc {
  font-size: .82rem;
  color: var(--cream-3);
  line-height: 1.55;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.prop-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.prop-price {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.prop-price-label {
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.prop-price-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.prop-price-moneda {
  font-size: .65rem;
  font-weight: 400;
  color: var(--cream-3);
  margin-left: .25rem;
}

.prop-actions {
  display: flex;
  gap: .5rem;
}
.prop-btn-contact {
  padding: .55rem 1.2rem;
  background: var(--gold);
  color: var(--black);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.prop-btn-contact:hover { background: var(--gold-light); }
.prop-btn-wsp {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  color: var(--cream-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: border-color .2s ease, color .2s ease;
}
.prop-btn-wsp:hover { border-color: #25d366; color: #25d366; }

/* Sold / rented overlay */
.prop-card--sold   { pointer-events: all; }
.prop-card--sold   .prop-carousel::after,
.prop-card--rented .prop-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12,11,9,.55);
  z-index: 2;
}

/* Empty state */
.prop-empty {
  grid-column: 1 / -1;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--cream-3);
  font-size: .95rem;
  border: 1px dashed var(--line);
}

/* ── About ──────────────────────────────────────────────────── */
.about {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about-img {
  position: relative;
  aspect-ratio: 4/5;
}
.about-img img {
  object-position: top center;
}
.about-img-frame {
  position: absolute;
  inset: 1.5rem -1.5rem -1.5rem 1.5rem;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-img-tag {
  position: absolute;
  bottom: 1.5rem;
  right: -1rem;
  background: var(--gold);
  color: var(--black);
  padding: .6rem 1.25rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.about-text { }
.about-values {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.about-value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.about-value-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5rem;
}
.about-value-text h4 {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: .2rem;
}
.about-value-text p {
  font-size: .85rem;
  color: var(--cream-3);
  line-height: 1.5;
}

/* ── Contact ────────────────────────────────────────────────── */
.contact {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.contact-info { }
.contact-channels {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: border-color .25s ease;
  text-decoration: none;
}
.contact-channel:hover { border-color: var(--gold); }
.contact-channel-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,163,79,.1);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-channel-icon--wsp {
  background: rgba(37,211,102,.12);
  border-color: #25d366;
  color: #25d366;
}
.contact-channel--wsp:hover {
  border-color: #25d366 !important;
}
.contact-channel--wsp .contact-channel-value {
  color: #25d366;
  font-weight: 600;
}
.contact-channel-text {}
.contact-channel-label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--cream-3);
  margin-bottom: .15rem;
}
.contact-channel-value {
  font-size: .9rem;
  font-weight: 500;
  color: var(--cream);
}

/* Form */
.contact-form { }
.form-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--cream);
  padding: .8rem 1rem;
  font: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .25s ease;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--cream-3); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 110px; }

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background .25s ease, transform .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-top: .5rem;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-submit.is-sending { background: var(--bg-3); color: var(--cream-3); pointer-events: none; }
.form-submit.is-sent { background: #2d6a4f; color: #fff; pointer-events: none; }

.form-success {
  display: none;
  padding: 1.5rem;
  border: 1px solid var(--gold);
  background: rgba(196,163,79,.06);
  text-align: center;
  margin-top: 1rem;
}
.form-success.is-visible { display: block; }
.form-success p { font-size: .9rem; color: var(--cream-2); }
.form-success p strong { color: var(--gold); }

/* ── WhatsApp float ─────────────────────────────────────────── */
.wsp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 24px rgba(37,211,102,.35);
  transition: transform .3s var(--ease-out), box-shadow .3s ease;
  text-decoration: none;
}
.wsp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.wsp-float::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(37,211,102,.3);
  animation: wspPulse 2.5s ease-in-out infinite;
}
@keyframes wspPulse {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%       { transform: scale(1.2); opacity: 0; }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding-block: 2.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-copy {
  font-size: .75rem;
  color: var(--cream-3);
  letter-spacing: .05em;
}
.footer-copy a {
  color: var(--gold);
  transition: color .2s ease;
}
.footer-copy a:hover { color: var(--gold-light); }
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--gold); }
.footer-credits {
  font-size: .65rem;
  color: rgba(138,126,102,.4);
  text-align: center;
  margin-top: .5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img { max-width: 420px; margin-inline: auto; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  .prop-grid { grid-template-columns: 1fr; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: 1; }

  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .btn-gold, .btn-outline { width: 100%; justify-content: center; }
  .prop-tabs { overflow-x: auto; }
}
