
:root {
  --bg-dark: #111111;
  --bg-darker: #050607;
  --bg-light: #f7f5f2;
  --accent: #d0a24b;
  --accent-soft: rgba(208,162,75,0.12);
  --text-main: #111111;
  --text-soft: #555555;
  --border-soft: #e3dfd7;
  --radius-lg: 18px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.25);
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg-dark);
}

body {
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  background: radial-gradient(circle at top left, #2d2619 0, #050608 38%, #030305 100%);
  color: white;
  padding-bottom: 5rem;
}

/* NAVBAR */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5,5,7,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  background: radial-gradient(circle at 30% 0, #f9e4b8, #c3922e 45%, #4a2e0b 100%);
  color: #141414;
}

.nav-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.8);
}

.nav-menu {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}

.nav-menu a {
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f3d492, #e3a93b);
  transition: width .2s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.28);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: radial-gradient(circle at top left, #f3d492 0, #e4a63a 40%, #8a5b14 100%);
  color: #17130a;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* HERO */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 2.25rem;
  align-items: center;
}

.hero-copy-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.68);
}

.hero-title {
  margin: 0.85rem 0 0.3rem;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.hero-highlight {
  background: linear-gradient(90deg, #f7e4b3, #ecb64d);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1rem;
  max-width: 26rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.9rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle, #7CFC8A 0, #14b46b 65%, #0e6e40 100%);
}

.hero-ctas {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-primary {
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #f4d287, #e3a83c);
  color: #17130a;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(0,0,0,0.55);
}

.btn-outline {
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.hero-footnote {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.hero-gallery {
  position: relative;
}

.hero-card {
  border-radius: 24px;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.08), rgba(0,0,0,0.95));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-card-img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-card-body {
  padding: 1rem 1.2rem 1.15rem;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.3rem;
}

.chip {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82);
}

.hero-card-title {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.hero-card-meta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.hero-floating-tag {
  position: absolute;
  right: 0.9rem;
  bottom: -0.5rem;
  transform: translateY(-50%);
  background: rgba(5,5,7,0.94);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.78);
}

/* LAYOUT SECTIONS */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem 0;
}

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

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
}

.section-title {
  font-size: 1.45rem;
  margin-top: 0.25rem;
}

.section-subtitle {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  max-width: 32rem;
}

/* GRID INFO */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.info-card {
  background: rgba(10,10,12,0.92);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.06);
}

.info-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.35rem;
}

.info-value {
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.info-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

/* CONFORT PREMIUM LIST */
.bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.bullet {
  display: flex;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.82);
}

.bullet-icon {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #f7e5b3, #e0a742);
}

/* GALERÍA */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery img {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: #070707;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* OBRA */
.obra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.obra-grid img {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* AMENITIES BARRIO */
.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tag {
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.03);
}

/* CONTACTO */
.contact {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 1.8rem;
}

.contact-card {
  background: rgba(10,10,12,0.96);
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 45px rgba(0,0,0,0.55);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.contact-card p {
  margin-top: 0.2rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 0.9rem;
  margin-bottom: 0.9rem;
}

.contact-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.68);
}

.contact-value {
  font-size: 0.9rem;
}

.contact-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.contact-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact-actions a {
  font-size: 0.85rem;
}

.chip-ghost {
  border-radius: 999px;
  border: 1px dashed rgba(255,255,255,0.26);
  padding: 0.45rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

/* FOOTER */
.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 1.25rem 3.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

/* RESPONSIVE */
@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0,1fr);
  }
  .hero-gallery {
    order: -1;
  }
  .info-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .bullets {
    grid-template-columns: minmax(0,1fr);
  }
  .gallery {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .obra-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .contact {
    grid-template-columns: minmax(0,1fr);
  }
}

@media (max-width: 640px) {
  .nav-menu {
    display: none;
  }
  .hero {
    padding-top: 1.6rem;
  }
  .section {
    padding-top: 2.6rem;
  }
  .info-grid {
    grid-template-columns: minmax(0,1fr);
  }
  .gallery {
    grid-template-columns: minmax(0,1fr);
  }
}
