/* ===== 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;
  --border: #F0E5EC;
  --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: 90px 0; }
.section-sm { padding: 60px 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(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.4rem; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.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-outline { background: white; color: var(--dark); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }
.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; position: relative; padding: 4px 0;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gradient); border-radius: 2px;
}
.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; }
.nav-links.open { display: flex; }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  position: relative; padding: 80px 0 60px;
  background: var(--gradient-soft); overflow: hidden;
}
.page-hero::before, .page-hero::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.4; pointer-events: none;
}
.page-hero::before { width: 300px; height: 300px; background: var(--pink); top: -60px; right: -60px; }
.page-hero::after { width: 250px; height: 250px; background: var(--lavender); bottom: -60px; left: -60px; }
.page-hero-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; font-size: 13px; color: var(--muted); }
.breadcrumb a { color: var(--pink); font-weight: 600; }

/* ===== HOMEPAGE HERO ===== */
.hero { position: relative; padding: 50px 0 90px; 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; }
.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; }

/* ===== CARDS / 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 var(--border); 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;
}

/* ===== GALLERY ===== */
.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; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter-chip {
  padding: 8px 18px; border-radius: 100px; background: white;
  border: 1.5px solid var(--border); font-size: 14px; font-weight: 500;
  color: var(--dark); transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--pink); color: var(--pink); }
.filter-chip.active { background: var(--gradient); color: white; border-color: transparent; }

/* ===== 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 var(--border);
}
.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 / FORM ===== */
.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 var(--border); 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 / CONTACT ===== */
.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); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: 30px; overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--muted); margin-bottom: 14px; }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.value-card {
  background: white; padding: 28px; border-radius: var(--radius);
  text-align: center; border: 1px solid var(--border);
}
.value-card .value-emoji { font-size: 36px; margin-bottom: 12px; }
.value-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { color: var(--muted); font-size: 14px; }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px;
}
.team-card { text-align: center; }
.team-photo {
  width: 180px; height: 180px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  border: 4px solid white; box-shadow: var(--shadow-md);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.team-card .role { color: var(--pink); font-size: 13px; font-weight: 600; margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.team-card p { color: var(--muted); font-size: 14px; padding: 0 16px; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: white; padding: 22px 24px; border-radius: 16px;
  border: 1px solid var(--border); transition: all 0.2s;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; color: var(--dark);
  display: flex; justify-content: space-between; align-items: center; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--pink); transition: 0.2s; font-weight: 300; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { border-color: rgba(255, 62, 131, 0.2); box-shadow: var(--shadow-sm); }
.faq-item p { color: var(--muted); margin-top: 14px; font-size: 15px; }

/* ===== CTA STRIP ===== */
.cta-strip { background: var(--gradient); padding: 60px 24px; border-radius: 32px; text-align: center; color: white; margin: 0 24px; }
.cta-strip h2 { color: white; margin-bottom: 12px; }
.cta-strip p { opacity: 0.9; margin-bottom: 24px; }
.cta-strip .btn-primary { background: white; color: var(--pink); }
.cta-strip .btn-primary:hover { background: var(--cream); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 0 24px; margin-top: 80px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 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; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-md { margin-top: 32px; }
.bg-cream { background: var(--cream); }
.note {
  background: white; border-left: 4px solid var(--pink);
  padding: 18px 22px; border-radius: 12px; box-shadow: var(--shadow-sm);
  color: var(--muted); font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: white; flex-direction: column; padding: 20px 24px;
    box-shadow: var(--shadow-md); gap: 18px;
  }
  .menu-btn { display: flex; }
  .nav-actions .btn { display: none; }
  .hero-inner, .booking-inner, .visit-inner, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .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; }
  .footer-inner { grid-template-columns: 1fr; }
}
