/* ===== Design tokens ===== */
:root {
  --pink: #f4b8c6;
  --pink-deep: #e893a9;
  --peach: #ffd9c2;
  --lavender: #e3d4f0;
  --ink: #4a3b3f;
  --muted: #9c8489;
  --bg: #ffffff;
  --bg-alt: #fff8f6;
  --border: #f3e1e0;
  --radius: 20px;
  --shadow: 0 16px 40px rgba(232, 147, 169, 0.16);
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Quicksand', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo, .footer-logo { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 em, h2 em { font-style: italic; color: var(--pink-deep); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.subtle { color: var(--muted); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 8px;
}
.eyebrow.center { display: block; }
.eyebrow-badge {
  display: inline-block;
  background: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--pink-deep);
  box-shadow: 0 6px 20px rgba(232,147,169,.22);
  margin-bottom: 24px;
}

h1 { font-size: clamp(38px, 5vw, 64px); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 600; margin-bottom: 12px; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 6px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: 0 10px 26px rgba(232,147,169,.4);
}
.btn-ghost {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(232,147,169,.18);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 600; color: var(--pink-deep); }
.logo img { height: 44px; width: 44px; object-fit: contain; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 600; font-size: .95rem; color: var(--ink); }
.nav-links a:hover { color: var(--pink-deep); }
.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
}
.menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--pink-deep); }

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  padding: 70px 0 90px;
}
.hero::before {
  content: '';
  position: absolute; top: -15%; right: -8%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--peach), transparent 70%);
  opacity: .8;
}
.hero::after {
  content: '';
  position: absolute; bottom: -25%; left: -10%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, var(--lavender), transparent 70%);
  opacity: .7;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}
.hero-text .lead { font-size: 1.1rem; color: var(--muted); max-width: 460px; margin: 18px 0 30px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-note { margin-top: 22px; font-size: .92rem; color: var(--muted); font-weight: 600; }
.hero-note a { color: var(--pink-deep); }
.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 60px rgba(232,147,169,.35);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Sections ===== */
.section { padding: 90px 0; }
.section-alt { background: var(--bg-alt); }

/* ===== About ===== */
.about-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.about-text p { margin-bottom: 14px; color: var(--ink); }
.checklist { list-style: none; margin-top: 20px; display: grid; gap: 10px; }
.checklist li { padding-left: 28px; position: relative; font-weight: 600; }
.checklist li::before { content: '✓'; position: absolute; left: 0; color: var(--pink-deep); font-weight: 700; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num { display: block; font-size: 2rem; margin-bottom: 6px; }
.stat-label { font-size: .85rem; color: var(--muted); font-weight: 600; }

/* ===== Cards (menu/services) ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 48px; }
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.card:hover { transform: translateY(-4px); }
.card h3 { font-weight: 700; }
.card-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--peach), var(--pink));
}
.card p { color: var(--muted); font-size: .95rem; margin-bottom: 10px; }
.card .price { font-weight: 700; color: var(--pink-deep); font-size: 1.05rem; }

/* ===== Gallery (mosaic) ===== */
.mosaic-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.mosaic-item {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 14px 34px rgba(232,147,169,.18);
}
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; transition: transform .5s ease; }
.mosaic-item:hover img { transform: scale(1.06); }

.instagram-cta { margin-top: 32px; }
.instagram-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--pink-deep);
}
.instagram-cta a:hover { color: var(--ink); }

/* ===== Reviews ===== */
.review { font-family: 'Quicksand', sans-serif; }
.review footer { font-weight: 700; color: var(--pink-deep); font-style: normal; }
.review-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-stars .dim { color: var(--border); }

.review-rotator {
  display: flex;
  align-items: stretch;
  gap: 14px;
  max-width: 720px;
  margin: 40px auto 0;
}
.rot-card {
  flex: 1;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s ease;
}
.rot-card.show { opacity: 1; transform: translateY(0); }
.rot-card .review-stars { text-align: center; }
.rot-card p { font-size: 1.15rem; }
.rot-nav {
  flex: 0 0 46px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-self: center;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--pink-deep);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .15s ease, transform .15s ease, color .15s ease;
}
.rot-nav:hover { background: var(--pink-deep); color: #fff; transform: scale(1.08); }
.rot-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.rot-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
}
.rot-dot:hover { transform: scale(1.25); }
.rot-dot.on { background: var(--pink-deep); }

@media (max-width: 540px) {
  .rot-nav { flex-basis: 38px; width: 38px; height: 38px; font-size: 1.3rem; }
}

.google-review-cta {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.google-review-cta p { margin-bottom: 16px; font-weight: 600; }
.google-review-btn { display: inline-flex; align-items: center; gap: 10px; }
.google-review-btn svg { flex-shrink: 0; background: #fff; border-radius: 50%; padding: 2px; }

.review-form-wrap {
  max-width: 620px;
  margin: 44px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.review-form-wrap h3 { margin-bottom: 20px; }
.review-form { display: grid; gap: 14px; }
.review-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.review-form input,
.review-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  width: 100%;
}
.review-form input:focus,
.review-form textarea:focus { outline: 2px solid var(--pink); background: #fff; }
.star-input { display: flex; align-items: center; gap: 4px; }
.star-input .star {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #ecdbdb;
  cursor: pointer;
  padding: 0 2px;
  transition: color .12s ease, transform .12s ease;
}
.star-input .star:hover { transform: scale(1.15); }
.star-input .star.on { color: #f5a623; }
.star-hint { margin-left: 12px; font-size: .9rem; color: var(--muted); font-weight: 600; }

@media (max-width: 540px) {
  .review-form-row { grid-template-columns: 1fr; }
}

/* ===== Booking ===== */
.booking-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-list { list-style: none; margin-top: 20px; font-size: 1.05rem; }
.contact-list li { margin-bottom: 12px; }
.contact-list a:hover { color: var(--pink-deep); }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink-deep);
  box-shadow: var(--shadow);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.social-icon:hover { background: var(--pink-deep); color: #fff; transform: translateY(-2px); }
.booking-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}
.booking-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form label { display: grid; gap: 6px; font-weight: 700; font-size: .9rem; }
.booking-form input,
.booking-form select,
.booking-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
}
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus { outline: 2px solid var(--pink); background: #fff; }
.form-note { font-size: .85rem; color: var(--muted); text-align: center; }

@media (max-width: 640px) {
  .booking-form-row { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #f3e1e0; padding: 30px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; font-size: .9rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; color: #fff; }
.footer-logo img { height: 34px; width: 34px; object-fit: contain; display: block; }
.footer-social .social-icon { background: rgba(255,255,255,.1); color: #fff; box-shadow: none; width: 36px; height: 36px; }
.footer-social .social-icon:hover { background: var(--pink-deep); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .mosaic-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 72px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .about-inner, .booking-inner { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}
@media (max-width: 560px) {
  .cards { grid-template-columns: 1fr; }
  .mosaic-gallery { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}
