:root {
  --bg: #d8d4cf;
  --bg-soft: #eeebe7;
  --text: #1d1d1d;
  --muted: #5b554f;
  --accent: #8e735f;
  --accent-dark: #665142;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0,0,0,.08);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7f4f1 0%, var(--bg) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #191919;
  color: #f5f1ee;
  font-size: .88rem;
}
.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar p { margin: 0; }
.lang-toggle {
  border: 1px solid rgba(255,255,255,.25);
  background: transparent;
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(247,244,241,.72);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.brand strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  line-height: .95;
}
.brand span {
  font-size: .8rem;
  color: var(--muted);
}
.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}
.menu a {
  font-size: .95rem;
  font-weight: 500;
}
.menu-toggle {
  display: none;
  border: none;
  background: #1d1d1d;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.3rem;
}
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,14,14,.42) 0%, rgba(14,14,14,.16) 42%, rgba(14,14,14,.08) 100%),
    url('../img/portada.jpg') center/cover no-repeat;
  transform: scale(1.03);
}
.hero-content { position: relative; z-index: 1; }
.glass-card {
  width: min(620px, 100%);
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 20px 50px rgba(0,0,0,.16);
  backdrop-filter: blur(10px);
  padding: 36px;
  border-radius: 30px;
  color: #fff;
}
.eyebrow, .section-tag {
  display: inline-block;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .77rem;
  font-weight: 700;
}
.hero h1, .section-heading h2, .section-copy h2, .contact-card h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  margin: 14px 0 14px;
}
.hero p {
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 55ch;
}
.hero-actions, .promo-banner { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.contact-mini {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-mini span {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: .88rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: #1d1d1d;
  color: #fff;
}
.btn-secondary {
  background: rgba(255,255,255,.9);
  color: #1d1d1d;
}
.section { padding: 92px 0; }
.split {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 36px;
  align-items: center;
}
.split.reverse { grid-template-columns: .9fr 1.1fr; }
.section-copy h2, .section-heading h2, .contact-card h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin: 10px 0 16px; }
.section-copy p, .card p, .info-box p, .contact-card p {
  line-height: 1.9;
  color: var(--muted);
}
.logo-panel, .info-box, .contact-card, .contact-form, .benefit-image, .video-wrap, .promo-banner, .card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.logo-panel { padding: 24px; }
.logo-panel img { border-radius: 22px; width: 100%; }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card { padding: 28px; }
.card h3 {
  margin: 0 0 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}
.price {
  margin-top: 18px;
  display: inline-flex;
  background: var(--bg-soft);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}
.promo-banner {
  justify-content: space-between;
  padding: 28px;
  background: linear-gradient(135deg, rgba(142,115,95,.14), rgba(255,255,255,.8));
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  padding: 0;
  border: none;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.benefit-image { padding: 14px; }
.benefit-image img { border-radius: 18px; width: 100%; }
.benefits-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.benefits-list li {
  background: rgba(255,255,255,.7);
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.05);
  box-shadow: var(--shadow);
}
.video-wrap {
  padding: 14px;
}
.video-wrap iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.info-box, .contact-card, .contact-form { padding: 28px; }
.contact-grid-form { align-items: start; }
.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.contact-list a {
  font-weight: 600;
  color: var(--accent-dark);
}
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.contact-form span { font-weight: 600; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  background: #fff;
}
.footer {
  background: #151515;
  color: #f4f4f4;
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  justify-content: space-between;
}
.footer a { color: #f0d6c3; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #111;
  display: grid;
  place-items: center;
  box-shadow: 0 15px 35px rgba(0,0,0,.2);
  z-index: 40;
}
.floating-whatsapp svg { width: 31px; fill: #fff; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.84);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 60;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: min(920px, 100%);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,.35);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
@media (max-width: 980px) {
  .split, .split.reverse, .cards-grid, .gallery-grid, .contact-grid { grid-template-columns: 1fr; }
  .menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    min-width: 220px;
    background: rgba(255,255,255,.96);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .25s ease;
  }
  .menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero { min-height: auto; padding: 72px 0; }
  .glass-card { padding: 24px; }
  .hero h1 { font-size: clamp(2.4rem, 11vw, 4rem); }
}
@media (max-width: 640px) {
  .brand strong { font-size: 1.5rem; }
  .brand span { display: none; }
  .section { padding: 72px 0; }
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(14,14,14,.46) 0%, rgba(14,14,14,.30) 100%),
      url('../img/portada.jpg') center/cover no-repeat;
  }
  .topbar-inner, .footer-inner { justify-content: center; text-align: center; }
}
