:root {
  --bg: #0f0f0f;
  --ink: #2a241f;
  --ink-2: #4a423b;
  --stone: #d4c7b7;
  --accent: #c78319;
  --accent-2: #8a6133; /* tono tierra del logo */
  --pill: #f7eee4;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter,
    Arial, sans-serif;
  color: #2a2a2a;
  background: #fff;
  line-height: 1.6;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.nowrap {
  white-space: nowrap;
}
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--accent-2);
  border-bottom: 1px solid #6e4d2a;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
}
.brand {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.brand-text {
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #fff;
}
.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.btn {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #ddd;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-ghost {
  background: #fff;
  color: #2f2f2f;
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.hero {
  position: relative;
}
.hero picture img {
  width: 100%;
  height: clamp(320px, 50vh, 560px);
  object-fit: cover;
  filter: contrast(1.05);
}
.hero-content {
  position: absolute;
  inset: auto 0 6%;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}
.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 0.3rem;
}
.hero p {
  font-size: clamp(15px, 2.2vw, 18px);
  margin: 0.2rem 0 1rem;
}
.hero-ctas {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* Cards destacadas */
.destacadas {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin: 2rem auto;
}
.destacadas .card {
  grid-column: span 4;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.destacadas .card img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.card-body {
  padding: 0.9rem 1rem;
}
.card h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.05rem;
}
.price {
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-body {
  text-align: center;
  padding: 1.2rem;
}
.price-title {
  font-weight: 700;
  color: var(--accent-2);
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.price-value {
  font-size: 2rem;
  font-weight: 800;
  color: #1f1f1f;
}
.price-value span {
  font-size: 0.9rem;
  color: #666;
}
.price-note {
  color: #666;
  font-size: 0.9rem;
}

/* Galería */
.galeria {
  background: #faf9f7;
  padding: 2.2rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.galeria h2 {
  margin: 0 0 0.2rem;
}
.galeria .lead {
  color: #5a5a5a;
  margin: 0 0 1.2rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.grid figure {
  grid-column: span 4;
  border-radius: 14px;
  overflow: hidden;
}
.grid figure.wide {
  grid-column: span 8;
}
.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detalle */
.detalle {
  padding: 2.4rem 0;
}
.detalle-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}
.feature-list {
  margin: 0.6rem 0 1.2rem;
  padding-left: 1.2rem;
}
.feature-list li {
  margin: 0.25rem 0;
}
.cta-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.detalle-media img {
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

/* Footer */
.site-footer {
  background: #111;
  color: #ddd;
  margin-top: 2rem;
  padding: 1.6rem 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 14px;
}
.footer-inner .logo {
  filter: grayscale(0.2) contrast(1.05) brightness(1.1);
}
.legal-col {
  justify-self: end;
}

/*RESPONSIVE - TABLETS*/
@media (max-width: 920px) {
  .destacadas .card {
    grid-column: span 6;
  }
  .grid figure {
    grid-column: span 6;
  }
  .grid figure.wide {
    grid-column: span 12;
  }
  .detalle-inner {
    grid-template-columns: 1fr;
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .legal-col {
    justify-self: center;
  }
}

/*RESPONSIVE - MÓVILES*/

@media (max-width: 600px) {

  /*HEADER Y NAVEGACIÓN*/

  .header-inner {
    flex-direction: column;
    gap: 1rem;
  }
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .destacadas .card {
    grid-column: span 12;
  }
  .grid figure {
    grid-column: span 12;
  }
}
}