/* ============================================================
   SPA / BEAUTY CATEGORY — "Wellness" concept.
   For pet groomers, beauty salons, wax bars, and similar
   appointment-based service businesses.
   Signature element: a soft petal/sparkle divider between
   sections, and a service list styled like a spa menu card
   rather than a restaurant menu board or grocery sale-tag.
   ============================================================ */

:root{
  --ink:        #2B2B27;
  --paper:      #FAF8F3;
  --paper-2:    #FFFFFF;
  --accent:     #6E7F58;   /* sage green — default, overridable per business */
  --accent-2:   #C9A24B;   /* soft gold */
  --line:       #E7E2D6;
  --muted:      #706C60;
  --focus:      #C9A24B;
  --needs-input-border: #C9A24B;
  --needs-input-bg: rgba(201,162,75,0.10);
  --needs-input-text: #7A5F1E;
  --on-dark: #FAF8F3;
  --on-dark-muted: #D9D4C4;

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

h1,h2,h3{ font-family: var(--font-display); color: var(--ink); font-weight:600; }

.utility-bar{ background: var(--ink); color: var(--on-dark); font-size: 0.82rem; }
.utility-bar .wrap{ display:flex; justify-content:space-between; align-items:center; padding: 8px 24px; gap:16px; flex-wrap:wrap; }
.utility-bar a{ color: var(--on-dark); text-decoration:none; }
.utility-bar a:hover{ text-decoration:underline; }

.site-header{ background: var(--paper-2); border-bottom: 1px solid var(--line); position: sticky; top:0; z-index: 50; }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding: 16px 24px; gap: 20px; position: relative; }
.brand{ font-family: var(--font-display); text-decoration:none; color: var(--ink); display:flex; align-items:center; gap:12px; min-width:0; flex:1 1 auto; }
.brand-logo{ height: 42px; width: 42px; border-radius: 50%; object-fit: cover; flex-shrink:0; }
.footer-logo{ height: 32px; width: 32px; border-radius: 50%; object-fit: cover; flex-shrink:0; }
.brand-copy{ display:flex; flex-direction:column; line-height:1.2; min-width:0; }
.brand-name{ font-size: 1.6rem; letter-spacing:0.01em; }
.brand-sub{ font-family: var(--font-body); font-size: 0.7rem; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; color: var(--accent); }
@media (max-width: 560px){ .brand-name{ font-size: 1.2rem; } .brand-sub{ display:none; } }

.main-nav a{ text-decoration:none; color: var(--ink); font-weight:500; font-size:0.92rem; padding:10px 14px; }
.main-nav a:hover{ color: var(--accent); }
.nav-toggle{ color: var(--ink); }
@media (max-width: 860px){ .main-nav{ background: var(--paper-2); border-bottom: 1px solid var(--line); } }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-body); font-weight:600;
  text-decoration:none; border-radius: 999px; padding: 13px 26px; border: 1px solid var(--accent);
  font-size: 0.92rem; cursor:pointer; background: var(--accent); color: #fff;
}
.btn:hover{ background: transparent; color: var(--accent); }
.btn-outline{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: #fff; }
.nav-inner > a.btn{ flex-shrink:0; }

/* ---- Hero ---- */
.hero{ padding: 64px 0 20px; text-align:center; }
.hero .kicker{ color: var(--accent); font-weight:600; font-size:0.8rem; text-transform:uppercase; letter-spacing:0.12em; font-family: var(--font-body); }
.hero h1{ font-size: clamp(2.4rem, 6vw, 3.6rem); margin: 10px 0 14px; }
.hero .tagline{ font-size: 1.15rem; color: var(--muted); max-width: 54ch; margin: 0 auto; font-family: var(--font-body); }
.hero-ctas{ display:flex; gap:12px; margin-top: 26px; justify-content:center; flex-wrap:wrap; }
.hero-status{ display:inline-flex; gap:10px; align-items:center; margin-top:18px; font-size:0.88rem; color: var(--muted); background:#fff; border:1px solid var(--line); padding:8px 18px; border-radius:999px; }
.hero-status .dot{ width:8px; height:8px; border-radius:50%; background: var(--accent-2); }
.hero-status.closed .dot{ background: var(--muted); }

/* ---- Petal divider (signature element) ---- */
.petal-divider{ display:flex; justify-content:center; padding: 8px 0 28px; }
.petal-divider svg{ width: 72px; height: 32px; color: var(--accent-2); }

/* ---- Services list ---- */
.services{ padding: 20px 0 60px; }
.services .section-head{ text-align:center; max-width: 620px; margin: 0 auto 36px; }
.service-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 40px; }
@media (max-width: 760px){ .service-grid{ grid-template-columns: 1fr; } }
.service-cat h3{ font-size:1.4rem; border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 16px; }
.service-item{ display:flex; align-items:baseline; gap: 8px; padding: 10px 0; border-bottom: 1px dotted var(--line); }
.service-item .name{ font-weight:600; color: var(--ink); }
.service-item .dots{ flex:1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.service-item .price{ font-family: var(--font-display); color: var(--accent); font-size:1.15rem; font-weight:600; white-space:nowrap; }
.service-item .desc{ display:block; font-size:0.85rem; color: var(--muted); flex-basis:100%; font-family: var(--font-body); }

/* ---- About / gallery / location ---- */
section.block{ padding: 54px 0; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items:center; }
@media (max-width: 860px){ .two-col{ grid-template-columns: 1fr; } }
.gallery-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
@media (max-width: 700px){ .gallery-grid{ grid-template-columns: 1fr 1fr; } }

.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin: 16px 0; justify-content:center; }
.badge{ font-family: var(--font-body); font-size:0.72rem; font-weight:600; letter-spacing:0.03em; text-transform:uppercase; padding:6px 14px; border-radius:999px; background: var(--paper); color: var(--accent); border: 1px solid var(--line); }

.photo-slot{ border-color: var(--line); color: var(--muted); }
.needs-input{ border-color: var(--needs-input-border); background: var(--needs-input-bg); color: var(--needs-input-text); }

footer.site-footer{ background: var(--ink); color: var(--on-dark-muted); padding: 48px 0 24px; }
footer.site-footer h4{ font-family: var(--font-display); color: var(--on-dark); font-size:1.2rem; margin-bottom:12px; font-weight:600; }
footer.site-footer a{ color: var(--on-dark-muted); text-decoration:none; font-size:0.9rem; }
footer.site-footer a:hover{ color: var(--on-dark); text-decoration:underline; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 32px; }
@media (max-width: 700px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,0.12); margin-top: 32px; padding-top: 18px; font-size:0.8rem; color: var(--on-dark-muted); display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
