/* اسپا زیبایی — El Messiri, soft lavender & sage */
:root {
  --bg: #f7f4f9;
  --ink: #2d2438;
  --lavender: #9b7ebd;
  --sage: #7d9b8a;
  --card: #ffffff;
  --muted: #7a6f86;
}
body.beauty {
  font-family: "El Messiri", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
.b-bar {
  width: min(960px, 92%); margin: 0 auto; padding: 1.1rem 0;
  display: flex; justify-content: space-between; align-items: center;
}
.b-bar .brand { font-weight: 700; font-size: 1.35rem; color: var(--lavender); }
.b-bar a { font-size: .9rem; margin-right: 1rem; color: var(--muted); }
.b-bar a:hover { color: var(--lavender); }
/* HERO: booking-first — form card sits ABOVE soft banner */
.b-hero {
  width: min(960px, 92%); margin: 0 auto 3rem;
  display: flex; flex-direction: column; gap: 0;
}
.b-book {
  background: var(--card); border-radius: 24px 24px 0 0;
  padding: 1.75rem 1.75rem 1.5rem; box-shadow: 0 12px 40px rgba(45,36,56,.08);
  position: relative; z-index: 2; order: -1;
}
.b-book h1 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: .35rem; }
.b-book .hint { color: var(--muted); margin-bottom: 1.25rem; font-size: .95rem; }
.b-book form {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
@media (max-width: 600px) { .b-book form { grid-template-columns: 1fr; } }
.b-book label { font-size: .8rem; font-weight: 700; display: block; margin-bottom: .25rem; }
.b-book input, .b-book select {
  width: 100%; padding: .7rem .85rem; border: 1px solid #e4ddea; border-radius: 12px;
  background: #faf8fc; color: var(--ink);
}
.b-book .full { grid-column: 1 / -1; }
.b-book button {
  grid-column: 1 / -1; background: var(--lavender); color: #fff; border: none;
  padding: .9rem; border-radius: 999px; font-family: inherit; font-weight: 700;
  font-size: 1rem; cursor: pointer; margin-top: .35rem;
}
.b-book button:hover { filter: brightness(1.05); }
.b-banner {
  border-radius: 0 0 24px 24px; overflow: hidden; height: 220px;
  background: #ddd;
}
.b-banner img { width: 100%; height: 100%; object-fit: cover; }
/* Section order: Services → Testimonials → Gallery */
.b-section { width: min(960px, 92%); margin: 0 auto; padding: 2.5rem 0; }
.b-section h2 { font-size: 1.65rem; text-align: center; margin-bottom: .4rem; }
.b-section .lead { text-align: center; color: var(--muted); margin-bottom: 1.75rem; }
.b-services {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
@media (max-width: 700px) { .b-services { grid-template-columns: 1fr; } }
.b-svc {
  background: var(--card); border-radius: 18px; padding: 1.35rem;
  border: 1px solid #ebe4f2; text-align: center;
}
.b-svc .ico {
  width: 48px; height: 48px; margin: 0 auto .85rem;
  border-radius: 50%; background: #f0e8f8; color: var(--lavender);
  display: grid; place-items: center; font-size: 1.25rem;
}
.b-svc h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.b-svc p { color: var(--muted); font-size: .9rem; }
.b-svc .dur { margin-top: .75rem; font-size: .8rem; color: var(--sage); font-weight: 700; }
.b-quotes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (max-width: 600px) { .b-quotes { grid-template-columns: 1fr; } }
.b-quote {
  background: #fff; border-radius: 16px; padding: 1.25rem; border-right: 4px solid var(--sage);
}
.b-quote p { font-size: 1rem; margin-bottom: .6rem; }
.b-quote cite { font-style: normal; color: var(--muted); font-size: .85rem; }
.b-gallery {
  display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 160px 160px; gap: .6rem;
}
@media (max-width: 600px) {
  .b-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .b-gallery .big { grid-column: 1 / -1; grid-row: auto; min-height: 180px; }
}
.b-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
.b-gallery .big { grid-row: 1 / 3; }
.b-footer {
  text-align: center; padding: 2rem 0; color: var(--muted); font-size: .85rem;
}
