:root {
  --purple: #8B0DAB;
  --purple-light: #b44cd4;
  --purple-pale: #f5eaf9;
  --teal: #07a8a5;
  --teal-light: #2ec8c5;
  --teal-pale: #e6f8f8;
  --ink: #0f0f14;
  --ink-soft: #2a2a35;
  --muted: #7a7a90;
  --line: #e8e8f0;
  --soft: #f8f7fc;
  --white: #ffffff;
  --shadow-soft: 0 2px 20px rgba(15,15,20,0.06);
  --shadow-card: 0 8px 40px rgba(15,15,20,0.10);
  --shadow-deep: 0 20px 60px rgba(15,15,20,0.16);
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 40px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, iframe { display: block; width: 100%; border: 0; }

.brand-logo {
  width: auto !important;
  height: 3.5rem;
  display: block;
  object-fit: contain;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: inherit;
}
.brand span { display: flex; flex-direction: column; }
.brand strong { font-weight: 600; font-size: 1rem; letter-spacing: -0.02em; }
.brand small { color: var(--muted); font-size: 0.75rem; }

.container { width: min(1140px, calc(100% - 3rem)); margin: 0 auto; }
.section { padding: 7rem 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(15,15,20,0.08); }

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
.site-nav { display: flex; align-items: center; gap: 1.8rem; }
.site-nav a { text-decoration: none; font-weight: 500; color: var(--ink-soft); font-size: 0.95rem; transition: color 0.2s; }
.site-nav a:hover { color: var(--purple); }

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
}
.button-primary { background: var(--purple); color: #fff !important; }
.button-primary:hover { background: var(--purple-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,13,171,0.35); }
.button-secondary { background: transparent; border: 1.5px solid var(--line); color: var(--ink-soft); }
.button-secondary:hover { border-color: var(--purple); color: var(--purple); }
.button-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }

.hero {
  padding: 6rem 0 5rem;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,13,171,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(7,168,165,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 540px; }
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--muted);
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
}
.eyebrow-tag-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
h1 em { font-style: italic; color: var(--purple); }
.lead { font-size: 1.1rem; color: var(--muted); margin-bottom: 2rem; font-weight: 400; max-width: 420px; }

.hero-cta-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-trust { display: flex; align-items: center; gap: 0.7rem; font-size: 0.83rem; color: var(--muted); }
.hero-trust-dots { display: flex; gap: -4px; }
.trust-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #fff; background: var(--purple-pale); display: flex; align-items: center; justify-content: center; font-size: 0.6rem; color: var(--purple); margin-left: -6px; }
.trust-dot:first-child { margin-left: 0; }

.hero-img-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-deep);
}
.hero-img-wrap img { height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 0.9rem 1.2rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-badge-icon { font-size: 1.6rem; }
.hero-badge strong { display: block; font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.hero-badge span { font-size: 0.75rem; color: var(--muted); }

#about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}
.eyebrow.teal { color: var(--teal); }

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--purple); }

.accent-bar {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--teal));
  border-radius: 99px;
  margin: 1.2rem 0 1.5rem;
}

.about-text { color: var(--ink-soft); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }

.stat-row { display: flex; gap: 1.5rem; margin-top: 2rem; }
.stat-box {
  flex: 1;
  padding: 1.4rem 1.2rem;
  background: var(--soft);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--purple-pale) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat-box:hover::before { opacity: 1; }
.stat-box strong { display: block; font-size: 2.2rem; font-family: 'DM Serif Display', serif; color: var(--purple); line-height: 1; margin-bottom: 0.3rem; }
.stat-box.teal strong { color: var(--teal); }
.stat-box span { font-size: 0.82rem; color: var(--muted); font-weight: 500; }

.about-visual { position: relative; }
.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.8rem;
}
.about-mosaic img {
  border-radius: var(--r-md);
  object-fit: cover;
  height: 180px;
}
.about-mosaic img:first-child {
  grid-column: 1 / -1;
  height: 220px;
}
.about-family-tag {
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  border-radius: var(--r-md);
  padding: 1.4rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-family-tag small { font-size: 0.72rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: 0.4rem; }
.about-family-tag strong { font-size: 1rem; font-weight: 600; display: block; margin-bottom: 0.2rem; }
.about-family-tag p { font-size: 0.82rem; opacity: 0.85; margin: 0; }

#services {
  background: #0d0d14 !important;
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,13,171,0.2) 0%, transparent 70%);
}
#services::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(7,168,165,0.15) 0%, transparent 70%);
}
.services-inner { position: relative; z-index: 1; }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header h2 { color: #fff; }
.services-header .eyebrow { color: var(--teal-light); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.svc-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
}
.svc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s;
}
.svc-card-purple::before { background: linear-gradient(135deg, rgba(139,13,171,0.3), transparent); }
.svc-card-teal::before { background: linear-gradient(135deg, rgba(7,168,165,0.25), transparent); }
.svc-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.2); }
.svc-card:hover::before { opacity: 1; }

.svc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.8rem; position: relative; }
.svc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  font-style: italic;
}
.svc-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.svc-card-purple .svc-icon { background: rgba(139,13,171,0.3); color: var(--purple-light); }
.svc-card-teal .svc-icon { background: rgba(7,168,165,0.25); color: var(--teal-light); }

.svc-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}
.svc-card p { color: rgba(255,255,255,0.55); font-size: 0.95rem; line-height: 1.7; position: relative; }

.svc-divider {
  width: 40px; height: 2px;
  margin: 1.5rem 0;
  border-radius: 99px;
  position: relative;
}
.svc-card-purple .svc-divider { background: var(--purple-light); }
.svc-card-teal .svc-divider { background: var(--teal-light); }

.svc-items { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; position: relative; }
.svc-items li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
}
.svc-items li::before { content: '—'; opacity: 0.4; flex-shrink: 0; }

.info-section { background: var(--soft); }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: start;
}

.hours-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.info-icon-wrap {
  width: 3rem; height: 3rem;
  background: var(--purple-pale);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.hours-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}
.hours-subtitle { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.8rem; }

.hours-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1rem;
}
.hours-entry:last-of-type { border-bottom: none; }
.hours-day {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.hours-time {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
}
.hours-time.closed { background: #f3f4f6; color: var(--muted); }
.hours-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1.2rem;
  padding: 0.8rem 1rem;
  background: var(--soft);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--teal);
}

.location-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
}
.location-address {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.2rem;
  background: var(--soft);
  border-radius: var(--r-md);
  margin: 1.2rem 0 1.5rem;
  border: 1px solid var(--line);
}
.addr-pin { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.addr-text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.map-embed {
  border-radius: var(--r-md);
  overflow: hidden;
  height: 220px;
}
.map-embed iframe { height: 100%; }

#contact { background: var(--white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-heading-sub { font-size: 1rem; color: var(--muted); margin: 0.5rem 0 2.5rem; }

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.3rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  transition: all 0.25s;
}
.contact-method:hover { border-color: var(--purple); background: var(--purple-pale); }
.contact-method:hover .cm-icon { background: var(--purple); color: #fff; }

.cm-icon {
  width: 2.8rem; height: 2.8rem;
  background: var(--soft);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: all 0.25s;
  color: var(--purple);
}
.cm-icon.teal { color: var(--teal); }
.contact-method:has(.cm-icon.teal):hover { border-color: var(--teal); background: var(--teal-pale); }
.contact-method:has(.cm-icon.teal):hover .cm-icon { background: var(--teal); color: #fff; }

.cm-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.35rem; }
.cm-value a { display: block; text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.cm-value a:hover { color: var(--purple); }

.booking-panel {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.booking-panel::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,13,171,0.35), transparent 70%);
}
.booking-panel::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(7,168,165,0.25), transparent 70%);
}
.bp-inner { position: relative; z-index: 1; }
.bp-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-light); margin-bottom: 1rem; display: block; }
.booking-panel h3 { font-family: 'DM Serif Display', serif; font-size: 1.9rem; color: #fff; margin-bottom: 0.75rem; line-height: 1.15; }
.booking-panel p { color: rgba(255,255,255,0.55); font-size: 0.93rem; margin-bottom: 2rem; line-height: 1.65; }

.walkin-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.walkin-badge span { font-size: 0.82rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 0.5rem; }
.walkin-badge span::before { content: '👋'; }
.walkin-badge strong { font-size: 0.87rem; color: rgba(255,255,255,0.85); }

.site-footer {
  background: #0a0a10;
  color: #fff;
  padding: 4rem 0 2rem;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .brand strong { color: #fff; font-size: 0.95rem; }
.footer-brand .brand small { color: rgba(255,255,255,0.45); }
.footer-tagline { color: #fff; font-size: 0.95rem; margin-top: 1rem; font-family: 'DM Serif Display', serif; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.83rem; margin-top: 0.5rem; line-height: 1.6; max-width: 300px; }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.2rem;
}
.footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links-list a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color 0.2s; }
.footer-links-list a:hover { color: #fff; }

.footer-hours-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-hours-list li { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.4); gap: 1rem; }
.footer-hours-list li strong { color: rgba(255,255,255,0.7); font-weight: 500; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: #fff; }
.footer-fb-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.45) !important;
  font-size: 0.8rem;
  transition: all 0.2s !important;
}
.footer-fb-link:hover { background: rgba(255,255,255,0.1) !important; color: #fff !important; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.active { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .site-nav {
    position: fixed; top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.12);
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 1000;
  }
  .site-nav.active { right: 0; }
  .hero-grid, .about-grid, .info-grid, .contact-wrap, .services-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .stat-row { gap: 1rem; }
  .about-mosaic img:first-child { height: 180px; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 0; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h2 { font-size: 1.7rem; }
}