/* Bare & Bloom — nail & beauty studio demo
   Palette: blush pink base, deep rosewood/burgundy accent, soft sand secondary, near-black ink */

:root {
  --ink: #241417;
  --text: #3a2429;
  --muted: #7d6669;
  --accent: #8c3a4a;
  --accent-dark: #6f2c39;
  --accent-light: #c98a94;
  --blush: #fbf1ee;
  --blush-deep: #f3ded9;
  --sand: #ece3d6;
  --paper: #ffffff;
  --border: #ecdcd8;
  --shadow: 0 20px 50px -25px rgba(108, 40, 54, 0.35);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 700;
}

p { margin: 0 0 1em; color: var(--muted); line-height: 1.65; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.9em;
}

.section-eyebrow--light { color: var(--accent-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.75em 1.5em;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn--outline { background: transparent; color: var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; }
.btn--large { padding: 0.95em 2em; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--whatsapp { background: #25D366; border-color: #25D366; color: #fff; }
.btn--whatsapp:hover { background: #1ebc59; border-color: #1ebc59; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand__mark {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.9rem;
}
.brand__name { font-family: var(--font-serif); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.site-header__nav { display: flex; gap: 2rem; }
.site-header__nav a { font-size: 0.92rem; font-weight: 500; color: var(--text); }
.site-header__nav a:hover { color: var(--accent); }
.site-header__contact { display: flex; align-items: center; gap: 1.2rem; }
.site-header__phone { font-weight: 600; font-size: 0.92rem; }
.site-header__phone:hover { color: var(--accent); }

/* Hero — Pattern C: textured gradient mesh, no photo, floating card */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 1.5rem 6rem;
  background: linear-gradient(180deg, var(--blush) 0%, var(--blush-deep) 100%);
}
.hero__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(140, 58, 74, 0.16) 0%, transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(201, 138, 148, 0.28) 0%, transparent 50%),
    radial-gradient(circle at 70% 85%, rgba(140, 58, 74, 0.14) 0%, transparent 55%),
    radial-gradient(circle at 20% 90%, rgba(236, 227, 214, 0.9) 0%, transparent 60%);
}
.hero__texture::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(108, 44, 57, 0.09) 1px, transparent 1px);
  background-size: 14px 14px;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1em;
}
.hero__text h1 {
  font-size: clamp(2.5rem, 4.6vw, 3.6rem);
  max-width: 14ch;
  margin-bottom: 0.5em;
}
.hero__sub { font-size: 1.05rem; max-width: 44ch; margin-bottom: 1.6em; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__card {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hero__card-stat { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 0.3rem; }
.hero__card-stat strong { font-family: var(--font-serif); font-size: 2.6rem; color: var(--ink); }
.hero__card-stat span { color: #e0a339; font-size: 1rem; letter-spacing: 0.05em; }
.hero__card > p:not(.hero__card-note) { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.2rem; }
.hero__card-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.hero__card-note { font-size: 0.9rem; font-style: italic; color: var(--text); margin: 0; }
.hero__card-note span { display: block; margin-top: 0.5em; font-style: normal; font-size: 0.82rem; color: var(--muted); }

/* Trust strip */
.trust-strip { background: var(--ink); padding: 1.6rem 1.5rem; }
.trust-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item { display: flex; align-items: center; gap: 0.7rem; color: #f2e5e2; font-size: 0.86rem; font-weight: 500; }
.trust-item svg { color: var(--accent-light); flex-shrink: 0; }

/* Services */
.services { padding: 6rem 1.5rem; background: var(--paper); }
.services__inner { max-width: 1080px; margin: 0 auto; }
.services__head { max-width: 60ch; margin-bottom: 3rem; }
.services__head h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.services__group { margin-bottom: 2.8rem; }
.services__group h3 {
  font-size: 1.15rem;
  color: var(--accent);
  font-family: var(--font);
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.services__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.service-card {
  background: var(--blush);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.3rem 1.4rem;
}
.service-card__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4em; gap: 1rem; }
.service-card__head span { font-weight: 600; color: var(--ink); font-size: 1rem; }
.service-card__head strong { color: var(--accent); font-family: var(--font-serif); font-size: 1.1rem; white-space: nowrap; }
.service-card p { margin: 0; font-size: 0.88rem; }
.services__note { font-size: 0.82rem; font-style: italic; color: var(--muted); text-align: center; margin-top: 1rem; }

/* Gallery */
.gallery { background: var(--ink); padding: 6rem 1.5rem; }
.gallery__inner { max-width: 1200px; margin: 0 auto; }
.gallery__head { text-align: center; max-width: 50ch; margin: 0 auto 3rem; }
.gallery__head h2 { color: #fff; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery__grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

/* Visual story */
.visual-story { padding: 6rem 1.5rem; background: var(--blush); }
.visual-story__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.visual-story__media { position: relative; }
.visual-story__image--main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.visual-story__image--secondary {
  position: absolute;
  width: 55%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  bottom: -2rem;
  right: -2rem;
  border: 6px solid var(--paper);
  box-shadow: 0 15px 35px -15px rgba(36, 20, 23, 0.4);
}
.visual-story__copy h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.visual-story__list { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.7rem; }
.visual-story__list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--text);
}
.visual-story__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Therapists */
.therapists { padding: 6rem 1.5rem; background: var(--paper); }
.therapists__inner { max-width: 1080px; margin: 0 auto; }
.therapists__head { text-align: center; max-width: 55ch; margin: 0 auto 3rem; }
.therapists__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.therapist-card { text-align: center; }
.therapist-card__avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
}
.therapist-card h3 { font-size: 1.05rem; margin-bottom: 0.2em; }
.therapist-card span { font-size: 0.85rem; color: var(--muted); }
.therapists__note { text-align: center; font-size: 0.82rem; font-style: italic; color: var(--muted); margin-top: 2rem; }

/* Quote / booking */
.quote { background: var(--ink); padding: 6rem 1.5rem; }
.quote__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.quote__copy h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.5rem); }
.quote__copy > p { color: #d9c3c0; }
.quote__list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.quote__list li { display: flex; align-items: center; gap: 0.7rem; color: #f2e5e2; font-size: 0.93rem; }
.quote__list svg { color: var(--accent-light); flex-shrink: 0; }

.quote-form {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  box-shadow: var(--shadow);
}
.quote-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.quote-form label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.4em; }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 0.65em 0.85em;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 0.92rem;
  background: var(--blush);
  color: var(--text);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: 2px solid var(--accent-light);
  outline-offset: 1px;
}
.quote-form__note { font-size: 0.78rem; color: var(--muted); text-align: center; margin: 0; }

/* Reviews */
.reviews { padding: 6rem 1.5rem; background: var(--blush); text-align: center; }
.reviews__inner { max-width: 1100px; margin: 0 auto; }
.reviews h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.reviews__rating { display: flex; align-items: center; justify-content: center; gap: 0.6rem; margin: 0.8rem 0 0.5rem; }
.reviews__stars { color: #e0a339; font-size: 1.2rem; letter-spacing: 0.1em; }
.reviews__score { font-family: var(--font-serif); font-weight: 700; font-size: 1.3rem; color: var(--ink); }
.reviews__count { color: var(--muted); font-size: 0.9rem; }
.reviews__disclaimer { font-size: 0.8rem; font-style: italic; color: var(--muted); margin-bottom: 2.5rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: left; }
.review-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  margin: 0;
  position: relative;
}
.review-card__stars { color: #e0a339; font-size: 0.9rem; margin-bottom: 0.6em; letter-spacing: 0.08em; }
.review-card p { font-size: 0.92rem; color: var(--text); margin-bottom: 1em; }
.review-card cite { font-style: normal; font-weight: 600; font-size: 0.85rem; color: var(--ink); }
.review-card__tag {
  display: inline-block;
  margin-top: 0.8em;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--blush-deep);
  padding: 0.25em 0.7em;
  border-radius: 999px;
}

/* Area / map */
.area { padding: 6rem 1.5rem; background: var(--paper); }
.area__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.area__details h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.area__regions { display: flex; flex-direction: column; gap: 0.7rem; margin: 1.4rem 0; }
.area__regions li {
  display: flex;
  justify-content: space-between;
  padding: 0.6em 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 500;
}
.area__regions li span { color: var(--muted); font-weight: 400; }
.area__hours { font-size: 0.9rem; }
.area__map { height: 360px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* Footer */
.site-footer { background: var(--ink); padding: 4rem 1.5rem 1.5rem; }
.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer__brand { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem; color: #fff; font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; }
.site-footer p, .site-footer a { color: #d9c3c0; font-size: 0.88rem; }
.site-footer a:hover { color: #fff; }
.site-footer h4 { color: #fff; font-family: var(--font); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.site-footer__copyright { max-width: 1200px; margin: 1.5rem auto 0; font-size: 0.78rem; color: #a68d8a; text-align: center; }

/* Sticky WhatsApp (desktop) */
.sticky-whatsapp {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 60;
  background: #25D366;
  color: #fff;
  padding: 0.8em 1.2em;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 10px 25px -8px rgba(0,0,0,0.4);
}

/* Mobile tab bar */
.mobile-tabbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--paper);
  border-top: 1px solid var(--border);
  padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(4, 1fr);
}
.mobile-tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
}
.mobile-tabbar a:last-child { color: #25D366; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { max-width: 420px; }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .visual-story__inner { grid-template-columns: 1fr; }
  .visual-story__image--secondary { right: 1rem; }
  .therapists__grid { grid-template-columns: repeat(2, 1fr); }
  .quote__inner { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .area__inner { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 640px) {
  .site-header__nav { display: none; }
  .site-header__phone { display: none; }
  .hero { padding: 3rem 1.2rem 4rem; }
  .hero__text h1 { max-width: 100%; font-size: clamp(2.1rem, 8vw, 2.6rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .quote-form__row { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__grid img { height: 180px; }
  .visual-story__image--main { height: 280px; }
  .visual-story__image--secondary { height: 140px; bottom: -1.5rem; }
  .therapists__grid { grid-template-columns: 1fr 1fr; }
  .sticky-whatsapp { display: none; }
  .mobile-tabbar { display: grid; }
  body { padding-bottom: 4.2rem; }
}
