/* L'Éclat — Beauty Salon & Spa demo (Elegant, soft, luxurious) */
:root {
  --bs-plum: #3a2632;
  --bs-plum-dark: #24161e;
  --bs-rose: #d48c94;
  --bs-rose-light: #f2d1d5;
  --bs-cream: #fcf9f9;
  --bs-gold: #b76e79;
  --bs-text: #4a3b44;
  --bs-muted: #8a7982;
  --bs-border: #ebdcdc;
  --bs-shadow: 0 8px 24px rgba(58, 38, 50, 0.06);
  --bs-font-display: 'Cormorant Garamond', Georgia, serif;
  --bs-font-body: 'Montserrat', system-ui, sans-serif;
  --demo-banner-height: 2.75rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bs-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bs-text);
  background: var(--bs-cream);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--bs-gold); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--bs-rose); }
h1, h2, h3, h4 {
  font-family: var(--bs-font-display);
  line-height: 1.2;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--bs-plum);
}

/* Header */
.bs-header {
  position: sticky;
  top: var(--demo-banner-height);
  z-index: 50;
  background: rgba(252, 249, 249, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bs-border);
}
.bs-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bs-logo {
  font-family: var(--bs-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--bs-plum);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.bs-logo span { color: var(--bs-gold); font-style: italic; }
.bs-nav { display: none; gap: 0.5rem; }
@media (min-width: 768px) { .bs-nav { display: flex; } }
.bs-nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--bs-muted);
  border-radius: 0.375rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bs-nav a:hover { color: var(--bs-plum); background: var(--bs-rose-light); }
.bs-header__cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--bs-cream);
  background: var(--bs-plum);
  border-radius: 9999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.bs-header__cta:hover { background: var(--bs-plum-dark); color: var(--bs-cream); }

/* Hero */
.bs-hero {
  position: relative;
  padding: 6rem 1.25rem 7rem;
  background: linear-gradient(135deg, var(--bs-plum-dark) 0%, var(--bs-plum) 100%);
  color: var(--bs-cream);
  text-align: center;
  overflow: hidden;
}
.bs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(212, 140, 148, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.bs-hero__inner { position: relative; max-width: 48rem; margin: 0 auto; }
.bs-hero__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bs-rose-light);
  border: 1px solid rgba(242, 209, 213, 0.3);
  border-radius: 9999px;
}
.bs-hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--bs-cream);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.bs-hero__title em { color: var(--bs-rose); font-style: italic; }
.bs-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(252, 249, 249, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 38ch;
  margin-inline: auto;
}
.bs-hero__btn {
  display: inline-flex;
  padding: 1rem 2.5rem;
  font-weight: 700;
  color: var(--bs-plum-dark);
  background: var(--bs-rose);
  border-radius: 9999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8125rem;
  transition: transform 150ms ease, background 150ms ease;
}
.bs-hero__btn:hover { background: var(--bs-rose-light); transform: translateY(-2px); color: var(--bs-plum-dark); }

/* Sections */
.bs-section { padding: 5rem 1.25rem; }
.bs-section--alt { background: #ffffff; }
.bs-section__inner { max-width: 72rem; margin: 0 auto; }
.bs-section__header { text-align: center; margin-bottom: 3.5rem; }
.bs-section__title { font-size: clamp(2rem, 4vw, 2.75rem); color: var(--bs-plum); font-weight: 500; }
.bs-section__subtitle { color: var(--bs-muted); max-width: 42ch; margin: 0 auto; font-size: 1rem; }

/* Services Grid */
.bs-services { display: grid; gap: 2rem; }
@media (min-width: 640px) { .bs-services { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bs-services { grid-template-columns: repeat(4, 1fr); } }

.bs-service {
  background: var(--bs-cream);
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--bs-border);
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.bs-service:hover { transform: translateY(-6px); box-shadow: var(--bs-shadow); border-color: var(--bs-rose-light); }
.bs-service__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background: var(--bs-rose-light);
  color: var(--bs-plum);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.bs-service__title { font-size: 1.375rem; margin-bottom: 0.75rem; color: var(--bs-plum); }
.bs-service__desc { font-size: 0.875rem; color: var(--bs-muted); margin: 0; line-height: 1.6; }

/* AI Concierge Hook */
.bs-ai {
  background: linear-gradient(135deg, var(--bs-rose-light) 0%, #ffffff 100%);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  border: 1px solid var(--bs-border);
}
@media (min-width: 768px) { .bs-ai { grid-template-columns: 1fr 1fr; padding: 4rem; } }
.bs-ai__icon {
  width: 4.5rem;
  height: 4.5rem;
  background: var(--bs-plum);
  color: var(--bs-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.bs-ai__title { font-size: 2rem; color: var(--bs-plum); margin-bottom: 1rem; font-weight: 500; }
.bs-ai__text { color: var(--bs-text); margin-bottom: 1.5rem; line-height: 1.7; }
.bs-ai__features { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.bs-ai__features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: var(--bs-plum); font-weight: 500; }
.bs-ai__features li::before { content: '✦'; color: var(--bs-gold); font-size: 1.125rem; }

/* Footer */
.bs-footer {
  background: var(--bs-plum-dark);
  color: rgba(252, 249, 249, 0.75);
  padding: 4rem 1.25rem 2rem;
}
.bs-footer__inner { max-width: 72rem; margin: 0 auto; display: grid; gap: 2rem; }
@media (min-width: 768px) { .bs-footer__inner { grid-template-columns: 2fr 1fr 1fr; } }
.bs-footer__brand { font-family: var(--bs-font-display); font-size: 1.75rem; color: var(--bs-cream); margin-bottom: 0.75rem; }
.bs-footer__brand span { color: var(--bs-rose); font-style: italic; }
.bs-footer__text { font-size: 0.875rem; line-height: 1.7; margin: 0; max-width: 32ch; }
.bs-footer__heading { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bs-rose); margin-bottom: 1rem; }
.bs-footer__links { list-style: none; padding: 0; margin: 0; font-size: 0.875rem; }
.bs-footer__links li { margin-bottom: 0.5rem; }
.bs-footer__links a { color: rgba(252, 249, 249, 0.75); text-decoration: none; }
.bs-footer__links a:hover { color: var(--bs-cream); }
.bs-footer__bottom { max-width: 72rem; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(252, 249, 249, 0.1); font-size: 0.8125rem; text-align: center; }
