:root {
  --wine: #7f2d46;
  --wine-dark: #541a2d;
  --sand: #f4eee9;
  --soft: #fffaf7;
  --gold: #d7b273;
  --text: #2f2430;
  --muted: #6a5a63;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(45, 22, 32, 0.14);
  --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, #fff 0%, #f8f3f0 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 88px 0; }
.center { text-align: center; }
.section-tag {
  display: inline-block;
  color: var(--wine);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .95;
  margin: 0 0 18px;
}
h1 { font-size: clamp(3rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2.3rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2vw, 2rem); }
p { line-height: 1.75; color: var(--muted); margin: 0 0 16px; }

.hero {
  min-height: 100vh;
  position: relative;
  background: url('assets/img/portada.jpg') center/cover no-repeat;
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(30, 12, 20, 0.78), rgba(127, 45, 70, 0.34));
}
.nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.35);
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  position: relative;
  font-weight: 600;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: .25s ease;
}
.nav-links a:hover::after { width: 100%; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 30px;
  align-items: center;
}
.eyebrow {
  color: #f5dfb3;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: .78rem;
}
.hero-copy span { color: #f5dfb3; }
.lead {
  color: rgba(255,255,255,.9);
  max-width: 700px;
  font-size: 1.02rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  transition: .28s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-secondary {
  background: rgba(255,255,255,.14);
  color: var(--white);
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}
.btn-light {
  background: var(--white);
  color: var(--wine-dark);
}
.glass-card {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.24);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.hero-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.88);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: center;
}
.feature-image img,
.video-wrapper,
.contact-form-card,
.map-box iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.amenities { background: #fff; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}
.service-card {
  background: linear-gradient(180deg, #fff 0%, #fbf5f1 100%);
  border: 1px solid rgba(127, 45, 70, .09);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(127, 45, 70, .08);
  font-size: 1.7rem;
  margin-bottom: 16px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 28px;
}
.section-text { max-width: 420px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.gallery-item {
  padding: 0;
  border: 0;
  background: none;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.media-section { background: #fff; }
.video-wrapper { overflow: hidden; aspect-ratio: 16 / 9; }
.video-wrapper iframe { width: 100%; height: 100%; border: 0; }
.video-link-box { margin-top: 24px; }
.social-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
  margin-top: 28px;
}
.social-card {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 26px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(127,45,70,.09);
}
.social-label {
  display: inline-block;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wine);
  letter-spacing: .15em;
  margin-bottom: 10px;
}
.social-arrow {
  font-size: 1.7rem;
  color: var(--wine);
}
.contact-section { background: linear-gradient(180deg, #f8f2ef 0%, #fff 100%); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.contact-list a {
  background: rgba(255,255,255,.8);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.contact-form-card {
  background: #fff;
  padding: 28px;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(127,45,70,.16);
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  color: var(--text);
}
input:focus, textarea:focus {
  outline: 2px solid rgba(127,45,70,.16);
  border-color: var(--wine);
}
.full { width: 100%; }
.form-help, .contact-note { font-size: .92rem; }
.map-box { margin-top: 28px; }
.map-box iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
}
.site-footer {
  background: #2c1720;
  color: rgba(255,255,255,.82);
  padding: 24px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer a { color: #f0d7aa; }
.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
}
.float-btn {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.float-btn svg { width: 32px; height: 32px; }
.whatsapp { background: #25d366; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 7, 11, .92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
  z-index: 40;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: min(100%, 980px);
  max-height: 75vh;
  object-fit: contain;
  border-radius: 18px;
}
#lightboxCaption {
  color: rgba(255,255,255,.86);
  margin-top: 16px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero-content, .grid-2, .contact-grid, .cards-grid, .gallery-grid, .social-cards {
    grid-template-columns: 1fr;
  }
  .section-head { flex-direction: column; align-items: start; }
  .hero { min-height: auto; }
  .hero-content { padding: 70px 0 90px; }
  .gallery-item img { height: 320px; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; position: relative; z-index: 5; }
  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(43,20,31,.94);
    border: 1px solid rgba(255,255,255,.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: .2s ease;
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .gallery-item img { height: 240px; }
  .footer-content { flex-direction: column; }
  .section { padding: 72px 0; }
}
