:root {
  --lilac: #8a6fb0;
  --lilac-dark: #6b5290;
  --lilac-light: #efe7f8;
  --pink: #f3c9d4;
  --pink-light: #fdf1f4;
  --cream: #fbf7f2;
  --ink: #372c45;
  --ink-soft: #6b6178;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 12px 32px rgba(107, 82, 144, 0.12);
  --shadow-sm: 0 4px 14px rgba(107, 82, 144, 0.10);
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; margin: 0 0 16px; }
h2 { font-size: 34px; }
h3 { font-size: 21px; }
p { margin: 0 0 14px; }
.kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--lilac-dark);
  background: var(--lilac-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head p { color: var(--ink-soft); }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(107,82,144,.08);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.nav-brand { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--lilac-dark); text-decoration: none; }
.nav-links { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a { text-decoration: none; font-size: 15px; color: var(--ink); }
.nav-links a:hover { color: var(--lilac-dark); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch { display: flex; gap: 4px; background: var(--lilac-light); border-radius: 999px; padding: 3px; }
.lang-switch a {
  padding: 5px 11px; border-radius: 999px; font-size: 13px; text-decoration: none; color: var(--lilac-dark);
}
.lang-switch a.active { background: var(--lilac); color: #fff; }
.nav-toggle { display: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer;
  padding: 13px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--lilac); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--lilac-dark); border: 1.5px solid var(--lilac); }
.btn-outline:hover { background: var(--lilac-light); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

/* WhatsApp CTAs */
.nav-whatsapp {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: #25D366; color: #fff;
}
.nav-whatsapp:hover { filter: brightness(1.05); }
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }
@media (max-width: 720px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

/* Hero */
.hero { padding: 96px 0 72px; text-align: center; }
.hero h1 { font-size: 52px; color: var(--lilac-dark); }
.hero .subtitle { max-width: 620px; margin: 0 auto 32px; font-size: 18px; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-orb {
  width: 240px; height: 240px; border-radius: 50%; margin: 0 auto 28px;
  background: radial-gradient(circle at 30% 30%, var(--pink) 0%, var(--lilac) 70%);
  box-shadow: var(--shadow);
}

/* Cards / facts */
.facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.fact-card {
  background: var(--white); border-radius: var(--radius-md); padding: 26px;
  box-shadow: var(--shadow-sm);
}
.fact-card .icon { font-size: 28px; margin-bottom: 10px; display: block; }
.fact-card h3 { margin-bottom: 6px; }
.fact-card p { color: var(--ink-soft); margin: 0; font-size: 15px; }

.about-note {
  background: var(--lilac-light); border-radius: var(--radius-md); padding: 22px 26px; margin-top: 28px;
  font-size: 15px; color: var(--lilac-dark);
}
.disclaimer {
  background: var(--pink-light); border-left: 4px solid var(--pink);
  border-radius: var(--radius-sm); padding: 20px 24px; margin-top: 32px;
}
.disclaimer h3 { font-size: 16px; margin-bottom: 8px; }
.disclaimer p { color: var(--ink-soft); font-size: 14px; margin: 0; }

/* Formats */
.formats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 36px; }
.format-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  border: 1px solid rgba(107,82,144,.06);
}
.format-card h3 { color: var(--lilac-dark); }
.format-card p.desc { color: var(--ink-soft); font-size: 14.5px; flex-grow: 1; }
.format-meta { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--ink-soft); margin: 14px 0 18px; padding-top: 14px; border-top: 1px dashed rgba(107,82,144,.15); }
.format-meta strong { color: var(--ink); display: block; font-size: 15px; }

/* Booking */
.booking-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 36px; max-width: 720px; margin: 0 auto; }
.booking-steps { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.booking-steps span {
  font-size: 13px; padding: 6px 14px; border-radius: 999px; background: var(--lilac-light); color: var(--lilac-dark);
}
.format-choice { display: grid; gap: 12px; margin-bottom: 24px; }
.format-choice label {
  display: flex; justify-content: space-between; gap: 12px; align-items: center;
  border: 1.5px solid rgba(107,82,144,.15); border-radius: var(--radius-sm); padding: 14px 18px; cursor: pointer;
  transition: border-color .15s;
}
.format-choice input { accent-color: var(--lilac); }
.format-choice label:has(input:checked) { border-color: var(--lilac); background: var(--lilac-light); }
.format-choice .fc-name { font-weight: 600; }
.format-choice .fc-meta { font-size: 13px; color: var(--ink-soft); }

.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid rgba(107,82,144,.18);
  font-family: var(--font-body); font-size: 15px; background: var(--cream);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--lilac); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.date-picker { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 16px; }
.date-chip {
  flex: 0 0 auto; text-align: center; padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid rgba(107,82,144,.15); cursor: pointer; font-size: 13px; background: var(--white);
}
.date-chip .dow { display: block; color: var(--ink-soft); font-size: 11px; text-transform: uppercase; }
.date-chip.active { background: var(--lilac); color: #fff; border-color: var(--lilac); }

.time-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; margin-bottom: 8px; }
.time-chip {
  padding: 10px 8px; text-align: center; border-radius: var(--radius-sm); border: 1.5px solid rgba(107,82,144,.15);
  cursor: pointer; font-size: 14px; background: var(--white);
}
.time-chip.active { background: var(--lilac); color: #fff; border-color: var(--lilac); }
.muted-note { font-size: 13.5px; color: var(--ink-soft); }

.alert { border-radius: var(--radius-sm); padding: 16px 18px; font-size: 14.5px; margin-bottom: 18px; }
.alert-success { background: #eaf6ec; color: #2e6b3a; }
.alert-error { background: #fbeaea; color: #a13a3a; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 32px; }
.review-card { background: var(--white); border-radius: var(--radius-md); padding: 24px; box-shadow: var(--shadow-sm); }
.review-card .stars { color: var(--lilac); margin-bottom: 8px; letter-spacing: 2px; }
.review-card .name { font-weight: 600; margin-top: 10px; }
.review-empty { text-align: center; color: var(--ink-soft); padding: 30px; }
.review-form-wrap { max-width: 560px; margin: 44px auto 0; background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.rating-input { display: flex; gap: 6px; font-size: 26px; }
.rating-input input { display: none; }
.rating-input label { cursor: pointer; color: #ddd4e8; }
.rating-input label.selected, .rating-input label:hover, .rating-input label:hover ~ label { color: var(--lilac); }

/* Contact / footer */
.contact-block { text-align: center; }
.contact-actions { display: flex; gap: 14px; justify-content: center; margin-top: 20px; flex-wrap: wrap; }
footer { padding: 40px 0; text-align: center; color: var(--ink-soft); font-size: 14px; }

@media (max-width: 720px) {
  .hero h1 { font-size: 38px; }
  .facts-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  section { padding: 52px 0; }
}
