
:root {
  --bg: #f6f1ea;
  --paper: #ffffff;
  --ink: #1f2933;
  --muted: #627080;
  --accent: #b4753b;
  --accent-dark: #7c4a22;
  --line: #e5ddd2;
  --shadow: 0 24px 70px rgba(26, 33, 43, .16);
  --radius: 28px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

img { width: 100%; display: block; }

a { color: inherit; }

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
  letter-spacing: -.02em;
}

.nav-cta {
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
}

.hero {
  min-height: 92vh;
  background:
    linear-gradient(135deg, rgba(31,41,51,.88), rgba(31,41,51,.62)),
    url("img/vista-amplia-luminosa.jpg") center / cover;
  color: #fff;
}

.hero-grid {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 46px 0 76px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: #dca468;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 800;
}

.hero h1 {
  font-size: clamp(2.55rem, 7vw, 5.7rem);
  line-height: .96;
  margin: 0 0 22px;
  letter-spacing: -.075em;
  max-width: 780px;
}

.lead {
  font-size: clamp(1.05rem, 2.3vw, 1.45rem);
  color: rgba(255,255,255,.88);
  max-width: 680px;
  margin: 0 0 28px;
}

.price-card {
  width: fit-content;
  padding: 18px 24px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.price-card span {
  display: block;
  color: rgba(255,255,255,.7);
  font-weight: 700;
}

.price-card strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1.1;
}

.hero-actions, .contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover, .contact-card:hover, .gallery a:hover { transform: translateY(-3px); }

.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 30px rgba(180,117,59,.32);
}

.secondary {
  background: #fff;
  color: var(--ink);
}

.hero-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: -46px auto 0;
  position: relative;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 74px;
}

.highlights article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 12px 35px rgba(31,41,51,.08);
}

.highlights strong {
  display: block;
  font-size: 1.45rem;
  margin-bottom: 2px;
}

.highlights span {
  color: var(--muted);
  font-size: .95rem;
}

.section {
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: start;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -.055em;
}

p {
  color: var(--muted);
  font-size: 1.05rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 16px;
  border-radius: 16px;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 10px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.feature-card h3 {
  font-size: 1.55rem;
  margin: 0 0 8px;
}

.text-link {
  color: var(--accent-dark);
  font-weight: 900;
  text-decoration: none;
}

.gallery-section h2 {
  max-width: 840px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.gallery a {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 35px rgba(31,41,51,.1);
  transition: transform .2s ease;
}

.gallery img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.gallery a:nth-child(1) { grid-column: span 7; }
.gallery a:nth-child(2) { grid-column: span 5; }
.gallery a:nth-child(3) { grid-column: span 4; }
.gallery a:nth-child(4) { grid-column: span 4; }
.gallery a:nth-child(5) { grid-column: span 4; }
.gallery a:nth-child(6) { grid-column: span 6; }
.gallery a:nth-child(7) { grid-column: span 6; }

.location {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 32px;
  align-items: center;
}

.map-card {
  height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 58px 24px;
  margin-bottom: 70px;
  box-shadow: var(--shadow);
}

.contact-intro {
  margin-top: -6px;
}

.contact-grid {
  justify-content: center;
  margin-top: 26px;
}

.contact-card {
  min-width: 240px;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 24px;
  transition: transform .2s ease;
}

.contact-card span, .contact-card em {
  display: block;
  color: var(--muted);
  font-style: normal;
}

.contact-card strong {
  display: block;
  font-size: 1.55rem;
}

.contact-card em {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--accent-dark);
}

footer {
  padding: 28px 16px;
  text-align: center;
  background: var(--ink);
  color: #fff;
}

footer span {
  display: block;
  color: rgba(255,255,255,.72);
  margin-top: 4px;
}

.view-counter {
  margin-top: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

.view-counter #view-count {
  font-weight: 700;
  color: rgba(255,255,255,.72);
}

@media (max-width: 860px) {
  .hero-grid, .split, .location {
    grid-template-columns: 1fr;
  }

  .hero-photo img {
    aspect-ratio: 4 / 3;
  }

  .highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery a,
  .gallery a:nth-child(n) {
    grid-column: span 6;
  }
}

@media (max-width: 560px) {
  .highlights {
    grid-template-columns: 1fr;
  }

  .gallery a,
  .gallery a:nth-child(n) {
    grid-column: span 12;
  }

  main {
    margin-top: -28px;
  }

  .section {
    padding: 48px 0;
  }

  .contact-card {
    width: 100%;
  }
}
