:root {
  --bg: #f7f3eb;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --gold: #c4a35a;
  --gold-dark: #a8883f;
  --gold-soft: #e8d9b0;
  --footer-bg: #2c2c2c;
  --footer-text: #e8e8e8;
  --footer-muted: #a8a8a8;
  --max: 1100px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Raleway", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

a:hover {
  color: var(--gold-dark);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 235, 0.96);
  border-bottom: none;
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

.nav-logo {
  display: flex;
  justify-content: center;
}

.nav-logo img {
  width: 120px;
  height: auto;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 1.25rem 1.1rem;
}

.nav-mobile.is-open {
  display: flex;
}

/* —— Hero —— */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 1.25rem 3.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, #faf6ee 0%, transparent 70%),
    var(--bg);
}

.hero-visual {
  width: min(720px, 100%);
  margin: 0 auto 2rem;
  position: relative;
}

.hero-visual img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 28rem;
}

.btn-wa-group {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  max-width: 100%;
  padding: 0.5rem 1.15rem;
  background: transparent;
  color: var(--muted) !important;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-align: center;
  border: 1.5px solid var(--gold-soft);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.btn-wa-group svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  color: var(--gold-dark);
}

.btn-wa-group:hover {
  color: var(--ink) !important;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.55);
}

.btn-wa-group--section {
  margin-top: 1.5rem;
}

.btn-venta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.4rem;
  min-width: 14rem;
  padding: 0.9rem 2.4rem;
  background: var(--gold);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(196, 163, 90, 0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-venta svg {
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
}

.btn-venta:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(168, 136, 63, 0.4);
}

.hero-note {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.55;
  max-width: 22rem;
}

.hero-note strong {
  color: var(--ink);
  font-weight: 700;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.4rem;
  padding: 0.45rem 1.1rem;
  background: #1a1a1a;
  color: #fff !important;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: background 0.2s, opacity 0.15s;
}

.btn-whatsapp:hover {
  background: #000;
  opacity: 0.9;
}

.btn-whatsapp svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* —— WhatsApp group section —— */
.wa-group {
  width: 100%;
  padding: 2.5rem 1.25rem 3rem;
  background: rgba(255, 255, 255, 0.45);
  border-top: 1px solid var(--gold-soft);
  border-bottom: 1px solid var(--gold-soft);
}

.wa-group-inner {
  width: min(100%, 28rem);
  margin: 0 auto;
  text-align: center;
}

.wa-group h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.wa-group-lead {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.wa-benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.wa-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--ink);
}

.wa-benefit-icon {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-benefit-icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

/* —— Page sections —— */
.page {
  flex: 1;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3.5rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0 0 0.5rem;
}

.page-lead {
  text-align: center;
  color: var(--muted);
  margin: 0 0 2.25rem;
  font-size: 1.1rem;
}

.contact-card,
.location-card {
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.contact-value {
  font-size: 1.2rem;
  line-height: 1.5;
}

.contact-value a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold-soft);
}

.contact-value a:hover {
  color: var(--gold-dark);
}

.map-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.map-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--gold-dark);
}

.map-link:hover {
  color: var(--ink);
}

/* —— Footer —— */
.site-footer {
  background:
    linear-gradient(180deg, #353535 0%, var(--footer-bg) 28%);
  color: var(--footer-text);
  padding: 0 1.25rem 2rem;
  margin-top: auto;
  position: relative;
  font-size: 0.875rem;
  line-height: 1.55;
}

.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 -1.25rem 2.75rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem 2rem;
  text-align: left;
  align-items: start;
}

.footer-brand {
  padding-right: 1rem;
}

.footer-brand .footer-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.3rem;
  letter-spacing: 0.02em;
}

.footer-brand .footer-tag {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-brand p {
  margin: 0;
  color: var(--footer-muted);
  font-size: inherit;
  line-height: inherit;
  max-width: 16rem;
}

.footer-heart {
  color: var(--gold);
  font-size: 0.85em;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--footer-text);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 163, 90, 0.08);
}

.footer-social svg {
  width: 0.95rem;
  height: 0.95rem;
}

.footer-col p {
  margin: 0;
  color: var(--footer-muted);
  font-size: inherit;
  line-height: inherit;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.85rem;
  color: #fff;
  position: relative;
  padding-bottom: 0.55rem;
  letter-spacing: 0.04em;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2px;
  background: var(--gold);
}

.footer-col a {
  color: var(--footer-muted);
  font-size: inherit;
  line-height: inherit;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: inherit;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: inherit;
  line-height: inherit;
  color: var(--footer-muted);
}

.footer-links svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.footer-map-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border-bottom: 1px solid transparent;
}

.footer-map-link:hover {
  border-bottom-color: var(--gold);
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--footer-muted);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

/* —— Responsive —— */
@media (max-width: 860px) {
  .nav-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .nav-logo {
    justify-self: end;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-brand p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links {
    align-items: center;
  }

  .map-wrap iframe {
    height: 320px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 1.5rem;
  }

  .btn-venta {
    width: 100%;
    letter-spacing: 0.12em;
  }
}
