
:root {
  --wine: #7f2d46;
  --wine-dark: #541c2d;
  --wine-soft: #a35a74;
  --cream: #f6f1ec;
  --sand: #ece0d4;
  --gold: #c4a06b;
  --text: #2b2326;
  --muted: #6e6269;
  --white: #ffffff;
  --border: rgba(84, 28, 45, 0.12);
  --shadow: 0 18px 44px rgba(49, 22, 32, 0.14);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 10px; background: #000; color: #fff; padding: 10px 14px; z-index: 1000;
}
.skip-link:focus { left: 10px; }
.hero {
  position: relative; min-height: 100vh; color: var(--white); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(27, 9, 16, 0.82), rgba(127, 45, 70, 0.34)), url('assets/img/portada.jpg') center/cover no-repeat;
}
.nav {
  position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 20px 0;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img {
  width: 60px; height: 60px; object-fit: cover; border-radius: 50%; border: 2px solid rgba(255,255,255,.35);
}
.brand strong { display: block; font-size: 1rem; }
.brand span { display: block; font-size: .84rem; opacity: .85; }
.nav-panel { display: flex; align-items: center; gap: 20px; }
.nav-panel a { font-weight: 600; color: rgba(255,255,255,.95); }
.menu-toggle { display: none; background: transparent; border: 0; }
.menu-toggle span { display: block; width: 28px; height: 3px; margin: 5px 0; background: var(--white); border-radius: 100px; }
.lang-switch {
  display: inline-flex; padding: 5px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); border-radius: 999px; backdrop-filter: blur(12px);
}
.lang-btn {
  border: 0; background: transparent; color: #fff; padding: 8px 12px; border-radius: 999px; cursor: pointer; font-weight: 700;
}
.lang-btn.active { background: rgba(255,255,255,.22); }
.hero-content {
  position: relative; z-index: 2; min-height: calc(100vh - 100px); display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 32px; align-items: center;
}
.eyebrow, .section-kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; font-weight: 800; color: var(--gold); margin-bottom: 14px;
}
.section-kicker { color: var(--wine); }
h1, h2, h3 {
  font-family: 'Playfair Display', serif; line-height: 1.04; margin: 0 0 16px;
}
h1 { font-size: clamp(2.9rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { line-height: 1.72; color: var(--muted); margin: 0 0 16px; }
.hero-copy .lead { color: rgba(255,255,255,.88); max-width: 720px; font-size: 1.02rem; }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 22px; border-radius: 999px; font-weight: 800; transition: transform .25s ease, box-shadow .25s 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,.16); color: var(--white); border-color: rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.btn-light { background: var(--white); color: var(--wine-dark); }
.btn-outline { background: transparent; color: var(--wine); border-color: var(--wine); }
.booking-card {
  background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.24); backdrop-filter: blur(14px); padding: 28px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.booking-card ul { list-style: none; margin: 0 0 24px; padding: 0; }
.booking-card li { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.booking-tag { color: #f8dfad; font-weight: 800; }
.section { padding: 92px 0; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 44px; align-items: center; }
.image-card img, .video-frame, .form-card, .map-wrap iframe { border-radius: var(--radius); box-shadow: var(--shadow); }
.info-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.info-pills span {
  padding: 10px 14px; border-radius: 999px; background: rgba(127,45,70,.08); color: var(--wine-dark); font-weight: 700;
}
.services { background: var(--white); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.section-head.center { display: block; text-align: center; max-width: 780px; margin: 0 auto 34px; }
.service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.service-card {
  background: linear-gradient(180deg, #fff 0%, #fbf6f2 100%); padding: 28px; border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow);
}
.service-icon {
  width: 60px; height: 60px; display: grid; place-items: center; border-radius: 18px; background: rgba(127,45,70,.08); font-size: 1.6rem; margin-bottom: 16px;
}
.promo-strip { background: linear-gradient(180deg, #fff7f4 0%, #fff 100%); }
.promo-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: center; }
.promo-mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.promo-mini-grid img {
  border-radius: 22px; box-shadow: var(--shadow); aspect-ratio: 1 / 1; object-fit: cover;
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gallery-item {
  border: 0; background: none; padding: 0; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); cursor: pointer;
}
.gallery-item img { width: 100%; height: 270px; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.video-section { background: var(--white); }
.video-frame { overflow: hidden; aspect-ratio: 16 / 9; }
.video-frame iframe { width: 100%; height: 100%; border: 0; }
.social-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.social-card {
  padding: 28px; border-radius: 24px; background: linear-gradient(180deg, #fff 0%, #f7efea 100%); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.social-name { display: inline-block; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--wine); font-weight: 800; margin-bottom: 10px; }
.contact { background: linear-gradient(180deg, #fff 0%, var(--cream) 100%); }
.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .92fr); gap: 30px; }
.contact-list { display: grid; gap: 12px; margin: 22px 0 0; }
.contact-list a {
  padding: 16px 18px; border-radius: 18px; background: rgba(255,255,255,.76); border: 1px solid var(--border); box-shadow: var(--shadow);
}
.form-card {
  background: rgba(255,255,255,.78); border: 1px solid var(--border); padding: 24px;
}
.contact-form { display: grid; gap: 14px; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; color: var(--wine-dark); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid rgba(84,28,45,.18); background: #fff; color: var(--text);
}
.full { width: 100%; }
.form-note { font-size: .94rem; margin: 0; }
.map-wrap { margin-top: 30px; }
.map-wrap iframe { width: 100%; min-height: 380px; border: 0; }
.footer {
  background: #2a141d; color: rgba(255,255,255,.85); padding: 26px 0;
}
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 18px; }
.footer p { margin: 0; color: inherit; }
.footer a { color: #f6d8a6; }
.floating-whatsapp {
  position: fixed; right: 20px; bottom: 20px; z-index: 30;
}
.floating-whatsapp a {
  width: 62px; height: 62px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #fff; box-shadow: 0 16px 34px rgba(37,211,102,.32);
}
.floating-whatsapp svg { width: 30px; height: 30px; }
.lightbox {
  position: fixed; inset: 0; background: rgba(7, 7, 9, 0.86); display: none; align-items: center; justify-content: center; padding: 24px; z-index: 50;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(100%, 1100px); max-height: 88vh; border-radius: 18px; }
.lightbox-close {
  position: absolute; top: 18px; right: 22px; width: 48px; height: 48px; border: 0; border-radius: 50%; font-size: 2rem; background: rgba(255,255,255,.16); color: #fff; cursor: pointer;
}
@media (max-width: 980px) {
  .hero-content, .two-col, .promo-grid, .contact-layout, .service-grid, .gallery-grid, .social-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .section-head { display: block; }
  .hero { min-height: auto; }
  .hero-content { padding: 56px 0 86px; }
  .nav-panel {
    position: absolute; top: calc(100% + 10px); right: 16px; left: 16px; display: none; flex-direction: column; align-items: flex-start; padding: 18px; border-radius: 20px; background: rgba(33,12,20,.96); border: 1px solid rgba(255,255,255,.12);
  }
  .nav-panel.open { display: flex; }
  .menu-toggle { display: inline-block; position: relative; z-index: 3; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 22px, 1140px); }
  .section { padding: 74px 0; }
  .service-grid, .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item img { height: 240px; }
  .brand strong { font-size: .95rem; }
  .brand span { font-size: .76rem; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
  .floating-whatsapp a { width: 58px; height: 58px; }
  .footer-inner { flex-direction: column; }
}
