/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: #2D1B3D;
  background: #FFF9FB;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== TOKENS ===== */
:root {
  --pink: #FF3E83;
  --coral: #FF6B9D;
  --lavender: #B983FF;
  --peach: #FFD4DE;
  --cream: #FFF5F7;
  --dark: #2D1B3D;
  --muted: #6B5B73;
  --gradient: linear-gradient(135deg, #FF3E83 0%, #B983FF 100%);
  --gradient-soft: linear-gradient(135deg, #FFD4DE 0%, #E6D4FF 100%);
  --shadow-sm: 0 4px 12px rgba(255, 62, 131, 0.08);
  --shadow-md: 0 12px 28px rgba(255, 62, 131, 0.12);
  --shadow-lg: 0 20px 60px rgba(255, 62, 131, 0.18);
  --radius: 18px;
}

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.grad-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-head p { color: var(--muted); margin-top: 12px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: rgba(255, 62, 131, 0.08);
  color: var(--pink);
}
.btn-ghost:hover { background: rgba(255, 62, 131, 0.15); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; padding: 16px; font-size: 16px; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 249, 251, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 62, 131, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
  font-family: 'Playfair Display', serif;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  font-size: 18px;
}
.logo-text em { font-style: italic; font-weight: 400; color: var(--pink); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--pink); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 62, 131, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s;
}
.lang-toggle:hover { border-color: var(--pink); background: rgba(255,62,131,0.05); }
.menu-btn { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.menu-btn span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: 0.2s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 60px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 10s ease-in-out infinite;
}
.blob-1 { width: 400px; height: 400px; background: var(--pink); top: -100px; right: -100px; }
.blob-2 { width: 350px; height: 350px; background: var(--lavender); bottom: -100px; left: -50px; animation-delay: 2s; }
.blob-3 { width: 250px; height: 250px; background: var(--coral); top: 40%; left: 40%; animation-delay: 4s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.pill {
  display: inline-block;
  padding: 8px 16px;
  background: white;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.hero-text h1 { margin-bottom: 20px; }
.hero-text > p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-cta { display: flex; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; }
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats span { font-size: 13px; color: var(--muted); }

.hero-image { position: relative; }
.hero-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  overflow: visible;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 14px 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  animation: float 6s ease-in-out infinite;
}
.floating-card strong { display: block; font-size: 14px; }
.floating-card small { color: var(--muted); font-size: 12px; }
.float-emoji { font-size: 24px; }
.card-1 { top: 30px; left: -30px; animation-delay: 0s; }
.card-2 { bottom: 40px; right: -20px; animation-delay: 3s; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: white;
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 62, 131, 0.06);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 62, 131, 0.2);
}
.service-card.featured {
  background: var(--gradient);
  color: white;
  transform: scale(1.02);
}
.service-card.featured h3, .service-card.featured p { color: white; }
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: var(--cream);
  border-radius: 16px;
  margin-bottom: 18px;
}
.service-card.featured .service-icon { background: rgba(255,255,255,0.2); }
.service-card h3 { margin-bottom: 6px; }
.service-card > p { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.service-card.featured > p { color: rgba(255,255,255,0.85); }
.service-card ul { display: flex; flex-direction: column; gap: 10px; }
.service-card li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  font-size: 14px;
}
.service-card.featured li { border-color: rgba(255,255,255,0.2); }
.service-card li:last-child { border: none; padding-bottom: 0; }
.service-card li b { font-weight: 700; color: var(--pink); }
.service-card.featured li b { color: white; }
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: white;
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ===== MID-PAGE CTA ===== */
.mid-cta-section { padding: 40px 0; }
.mid-cta {
  background: var(--gradient);
  border-radius: 24px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: white;
  box-shadow: var(--shadow-lg);
  flex-wrap: wrap;
}
.mid-cta h3 {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 4px;
}
.mid-cta p { opacity: 0.9; font-size: 15px; }
.mid-cta .btn-primary {
  background: white;
  color: var(--pink);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.mid-cta .btn-primary:hover { background: var(--cream); }

/* ===== GALLERY ===== */
.gallery { background: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(255,62,131,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.stars { color: #FFB800; letter-spacing: 2px; font-size: 16px; }
.section-head .stars { margin-right: 8px; }
.review-card p {
  margin: 16px 0 24px;
  color: var(--dark);
  flex: 1;
  font-size: 15px;
  line-height: 1.7;
}
.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}
.review-card footer small { display: block; color: var(--muted); font-size: 12px; }

/* ===== BOOKING ===== */
.booking { background: var(--gradient-soft); }
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.booking-text h2 { margin-bottom: 16px; }
.booking-text > p { color: var(--muted); margin-bottom: 24px; }
.booking-perks { display: flex; flex-direction: column; gap: 10px; }
.booking-perks li { font-weight: 500; }

.booking-form {
  background: white;
  padding: 36px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid #E8DDE5;
  border-radius: 12px;
  background: #FAFAFB;
  color: var(--dark);
  outline: none;
  transition: all 0.2s;
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--pink);
  background: white;
  box-shadow: 0 0 0 4px rgba(255,62,131,0.08);
}
.form-status {
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.form-status.success { color: #10b981; font-weight: 600; }
.form-status.error { color: #ef4444; font-weight: 600; }

/* ===== VISIT ===== */
.visit-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}
.info-block { margin-bottom: 28px; }
.info-block h4 { font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.info-block p, .info-block a { color: var(--muted); font-size: 15px; }
.info-block a:hover { color: var(--pink); }
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
  font-size: 14px;
  color: var(--muted);
}
.hours li b { color: var(--dark); font-weight: 600; }
.hours li:last-child { border: none; }
.socials { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
.socials a {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  background: var(--cream);
  border-radius: 100px;
  transition: all 0.2s;
}
.socials a:hover { background: var(--gradient); color: white; }
.visit-map {
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer h5 { color: white; margin-bottom: 14px; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer a { display: block; padding: 4px 0; color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.2s; }
.footer a:hover { color: var(--coral); }
.logo-light .logo-text { color: white; }
.logo-light em { color: var(--coral); }
.footer-inner > div > p { font-size: 14px; margin-top: 12px; max-width: 320px; }
.footer-bottom { text-align: center; padding-top: 24px; font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .section { padding: 70px 0; }
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .nav-actions .btn { display: none; }
  .hero-inner,
  .booking-inner,
  .visit-inner,
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 420px; margin: 0 auto; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .visit-map { min-height: 320px; }
}
@media (max-width: 500px) {
  .container { padding: 0 18px; }
  .booking-form { padding: 24px; }
  .floating-card { padding: 10px 14px; }
  .card-1 { left: 10px; }
  .card-2 { right: 10px; }
  .hero-stats strong { font-size: 1.4rem; }
}
