:root {
  --cream: #fff8f1;
  --pink: #f7b9cd;
  --rose: #e88aaa;
  --peach: #ffd0a8;
  --lavender: #b8a1f2;
  --violet: #7d5bb5;
  --gold: #e8b85d;
  --plum: #4b2d55;
  --white: rgba(255, 255, 255, 0.76);
  --glass: rgba(255, 255, 255, 0.58);
  --shadow: 0 24px 70px rgba(122, 78, 127, 0.20);
  --radius: 30px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--plum);
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 214, 236, 0.95), transparent 34%),
    radial-gradient(circle at 85% 18%, rgba(203, 184, 255, 0.85), transparent 34%),
    radial-gradient(circle at 50% 82%, rgba(255, 207, 158, 0.9), transparent 38%),
    linear-gradient(180deg, #fff7f2 0%, #f9e8ff 42%, #fff4dc 100%);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.7) 0 1px, transparent 1.5px);
  background-size: 160px 160px, 240px 240px;
  background-position: 20px 40px, 90px 120px;
  opacity: .38;
  z-index: 0;
}

.sky-glow {
  position: fixed;
  width: 580px;
  height: 580px;
  right: -180px;
  top: -180px;
  background: radial-gradient(circle, rgba(255, 188, 215, 0.65), transparent 65%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 10;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.56);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(105, 68, 113, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--plum);
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.brand-mark {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(232, 184, 93, .6);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .93rem;
  font-weight: 800;
}

.nav a {
  color: rgba(75,45,85,.72);
  text-decoration: none;
  transition: .25s ease;
}

.nav a:hover { color: var(--violet); }

.language-toggle {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  color: white;
  background: linear-gradient(135deg, var(--rose), var(--lavender));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(126, 91, 181, .22);
}

main, footer { position: relative; z-index: 1; }

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 106px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 62px 0 34px;
}

.hero-card {
  width: 100%;
  padding: clamp(28px, 5vw, 64px);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,255,255,.36)),
    radial-gradient(circle at 50% 0%, rgba(255, 218, 237, .75), transparent 52%);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 46px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.logo {
  width: min(760px, 100%);
  border-radius: 28px;
  box-shadow: 0 28px 85px rgba(142, 83, 140, 0.24);
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--violet);
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.02;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.8rem);
  color: var(--plum);
  letter-spacing: -.04em;
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 4.5rem);
  letter-spacing: -.035em;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.hero-text {
  max-width: 820px;
  margin: 26px auto 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.75;
  color: rgba(75,45,85,.78);
}

.hero-actions, .action-stack, .location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  color: white;
  background: linear-gradient(135deg, #e88aaa, #b8a1f2);
  box-shadow: 0 16px 34px rgba(126, 91, 181, .26);
}

.secondary {
  color: var(--plum);
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 12px 30px rgba(105, 68, 113, 0.12);
}

.whatsapp {
  color: white;
  background: linear-gradient(135deg, #52c980, #30a960);
  box-shadow: 0 16px 34px rgba(48, 169, 96, .25);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

.grid {
  display: grid;
  gap: 22px;
}

.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.glass-card, .price-card, .promo-band, .reservation, .location {
  background: var(--glass);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(105, 68, 113, 0.12);
  backdrop-filter: blur(16px);
}

.glass-card, .price-card {
  padding: 30px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.8);
  font-size: 1.45rem;
}

p {
  line-height: 1.7;
  color: rgba(75,45,85,.76);
}

.promo-band {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 32px;
  align-items: center;
  padding: 38px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,228,238,.55)),
    radial-gradient(circle at 100% 10%, rgba(255, 205, 142, .55), transparent 35%);
}

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  transform: translateY(-10px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,232,243,.66)),
    radial-gradient(circle at 50% 0%, rgba(255, 211, 136, .35), transparent 48%);
  border-color: rgba(232,184,93,.45);
}

.badge {
  display: inline-flex;
  padding: 8px 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--violet);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price {
  margin: 18px 0;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--plum);
}

.old {
  font-size: 1.25rem;
  color: rgba(75,45,85,.42);
  text-decoration: line-through;
  margin-right: 8px;
}

.muted {
  color: rgba(75,45,85,.55);
  font-weight: 800;
}

.note {
  margin-top: 24px;
  font-size: .96rem;
  color: rgba(75,45,85,.62);
}

.reservation {
  display: grid;
  grid-template-columns: 1fr .7fr;
  gap: 28px;
  padding: 42px;
}

.form-preview ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: rgba(75,45,85,.76);
  line-height: 2;
  font-weight: 700;
}

.location {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 38px;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
  text-align: center;
}

.footer p {
  margin: 6px 0;
  font-size: .95rem;
}

@media (max-width: 880px) {
  .nav { display: none; }

  .three,
  .promo-band,
  .reservation {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .location {
    flex-direction: column;
    align-items: flex-start;
  }

  .location-actions,
  .hero-actions,
  .action-stack {
    justify-content: flex-start;
  }

  .hero-card {
    border-radius: 34px;
  }
}

@media (max-width: 520px) {
  .topbar {
    width: calc(100% - 18px);
    top: 9px;
  }

  .hero, .section, .footer {
    width: calc(100% - 18px);
  }

  .hero {
    padding-top: 34px;
  }

  .glass-card, .price-card, .promo-band, .reservation, .location {
    padding: 24px;
    border-radius: 24px;
  }

  .btn {
    width: 100%;
  }
}
