/* ============================================================
   {{BUSINESS_NAME}} — warm wellness site
   Palette: desaturated sage, mint tints, warm whites, soft shadow
   ============================================================ */

:root {
  /* warm whites & neutrals */
  --bg:        #FAF8F3;
  --bg-warm:   #F4F1E9;
  --surface:   #FFFEFB;
  --mint:      #EAF2EC;
  --mint-soft: #F1F7F2;

  /* sage greens (desaturated from #059669) */
  --sage:      #5E8C7B;
  --sage-600:  #4F7D6E;
  --sage-700:  #41685A;
  --sage-800:  #34534A;
  --sage-300:  #AECABE;
  --sage-100:  #DCEAE0;

  /* ink & muted (soft, never pure black) */
  --ink:       #2D3A34;
  --ink-soft:  #43534B;
  --muted:     #6E7B73;
  --line:      #E7E3D8;

  /* warm gold for stars */
  --gold:      #CBA45C;

  /* radii */
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 30px;
  --r-xl: 40px;

  /* soft, green-tinted shadows (no hard borders) */
  --sh-sm: 0 2px 10px rgba(52, 83, 74, 0.06);
  --sh:    0 14px 40px -16px rgba(52, 83, 74, 0.20);
  --sh-md: 0 22px 56px -22px rgba(46, 75, 64, 0.24);
  --sh-lg: 0 36px 80px -30px rgba(40, 66, 57, 0.28);

  --maxw: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--ink-soft);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Newsreader", Georgia, serif;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
h1 em, h2 em { font-style: italic; color: var(--sage-700); }

p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.section { padding: clamp(64px, 9vw, 124px) 0; position: relative; }

.kicker {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--sage-600);
  margin-bottom: 16px;
}

.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
.section-head p { margin-top: 18px; font-size: 1.12rem; color: var(--muted); }

/* ───────────── ambient soft glows ───────────── */
.ambient { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.glow-1 { width: 540px; height: 540px; top: -180px; right: -140px;
  background: radial-gradient(circle, rgba(174,202,190,0.55), transparent 70%); }
.glow-2 { width: 460px; height: 460px; top: 44%; left: -200px;
  background: radial-gradient(circle, rgba(220,234,224,0.7), transparent 70%); }
.glow-3 { width: 520px; height: 520px; bottom: -220px; right: -120px;
  background: radial-gradient(circle, rgba(234,242,236,0.8), transparent 70%); }
@media (prefers-reduced-motion: no-preference) {
  .glow { animation: drift 28s var(--ease) infinite alternate; }
  .glow-2 { animation-duration: 34s; }
  .glow-3 { animation-duration: 40s; }
}
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(28px, -22px) scale(1.08); }
}

main, .site-header, .site-footer { position: relative; z-index: 1; }

/* ───────────── buttons ───────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 0.98rem;
  border: none; cursor: pointer;
  padding: 13px 22px; border-radius: 999px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background-color .5s var(--ease);
  text-decoration: none;
}
.btn svg { flex: 0 0 auto; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }

.btn-primary { background: var(--sage-600); color: #fff; box-shadow: 0 10px 26px -10px rgba(63,108,94,0.7); }
.btn-primary:hover { background: var(--sage-700); transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(63,108,94,0.75); }

.btn-soft { background: var(--mint); color: var(--sage-700); box-shadow: var(--sh-sm); }
.btn-soft:hover { background: var(--sage-100); transform: translateY(-2px); }

.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--sage-700); font-weight: 700;
  transition: gap .4s var(--ease), color .4s var(--ease);
}
.text-link:hover { gap: 12px; color: var(--sage-800); }

/* ───────────── header ───────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,248,243,0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  transition: box-shadow .6s var(--ease), background-color .6s var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-sm); background: rgba(250,248,243,0.94); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 78px; }

.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  border-radius: 12px; background: var(--mint); color: var(--sage-600);
  box-shadow: var(--sh-sm);
}
.brand-name { font-family: "Newsreader", serif; font-size: 1.32rem; color: var(--ink); letter-spacing: -0.01em; }

.nav { display: flex; gap: 6px; margin-left: auto; }
.nav a {
  padding: 9px 15px; border-radius: 999px; color: var(--ink-soft);
  font-weight: 600; font-size: 0.97rem;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
.nav a:hover { background: var(--mint); color: var(--sage-700); }

.header-cta { display: flex; align-items: center; gap: 14px; flex: 0 0 auto; }
.phone-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--sage-700); font-weight: 700; font-size: 0.95rem;
}
.phone-link:hover { color: var(--sage-800); }

.nav-toggle { display: none; }

/* ───────────── hero ───────────── */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(60px, 8vw, 110px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 72px); align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); color: var(--sage-700);
  padding: 9px 17px; border-radius: 999px;
  font-weight: 700; font-size: 0.86rem; letter-spacing: 0.01em;
  box-shadow: var(--sh-sm); margin-bottom: 26px;
}
.hero-copy h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
.lede { margin-top: 24px; font-size: clamp(1.1rem, 1.6vw, 1.28rem); color: var(--muted); max-width: 30em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-rating { display: flex; align-items: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.rating-text { color: var(--muted); font-size: 0.98rem; }
.rating-text strong { color: var(--ink); font-weight: 700; }

/* stars */
.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; }
.footer-stars svg { width: 15px; height: 15px; }
.quote-card .stars svg { width: 19px; height: 19px; }

/* hero media */
.hero-media { position: relative; }
.hero-photo { aspect-ratio: 4 / 5; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.hero-badge {
  position: absolute; left: -14px; bottom: 26px;
  display: flex; align-items: center; gap: 13px;
  background: var(--surface); padding: 15px 20px 15px 16px;
  border-radius: var(--r); box-shadow: var(--sh-md);
}
.badge-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--mint); color: var(--sage-600); flex: 0 0 auto; }
.hero-badge strong { display: block; font-family: "Newsreader", serif; font-size: 1.06rem; color: var(--ink); line-height: 1.2; }
.hero-badge span span, .hero-badge > div > span { font-size: 0.9rem; color: var(--muted); }
.hero-badge > div > span { display: block; }

/* ───────────── shots / image placeholders ───────────── */
.shot { position: relative; overflow: hidden; background: var(--mint-soft); }
.shot img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0; transition: opacity 1.1s var(--ease);
}
.shot img.loaded { opacity: 1; }
.shot img.img-failed { display: none; }
.ph {
  position: absolute; inset: 0; display: grid; place-items: center;
  text-align: center; padding: 20px;
  background:
    repeating-linear-gradient(135deg, rgba(94,140,123,0.06) 0 12px, rgba(94,140,123,0.11) 12px 24px),
    var(--mint-soft);
}
.ph span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.74rem; letter-spacing: 0.02em; color: var(--sage-700);
  background: rgba(255,255,255,0.7); padding: 6px 12px; border-radius: 999px;
  max-width: 86%;
}
.map-ph { display: flex; flex-direction: column; gap: 10px; color: var(--sage-600); }
.map-ph span { font-family: "Nunito Sans", sans-serif; font-weight: 700; color: var(--sage-700); }

/* ───────────── approach / values ───────────── */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--surface); border-radius: var(--r-lg);
  padding: 36px 32px; box-shadow: var(--sh);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.value-ico {
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 18px; background: var(--mint); color: var(--sage-600);
  margin-bottom: 22px;
}
.value-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.value-card p { color: var(--muted); }

/* ───────────── gallery ───────────── */
.gallery { background: linear-gradient(180deg, transparent, var(--mint-soft) 30%, var(--mint-soft) 70%, transparent); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 230px 230px;
  gap: 20px;
}
.gallery-grid .shot { border-radius: var(--r-lg); box-shadow: var(--sh); }
.g-a { grid-column: 1 / 3; grid-row: 1 / 3; }
.g-b { grid-column: 3 / 5; grid-row: 1 / 2; }
.g-c { grid-column: 3 / 4; grid-row: 2 / 3; }
.g-d { grid-column: 4 / 5; grid-row: 2 / 3; }

/* ───────────── services ───────────── */
.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--surface); border-radius: var(--r-lg);
  padding: 28px 30px; box-shadow: var(--sh-sm);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.service:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.service-ico {
  display: grid; place-items: center; width: 50px; height: 50px; flex: 0 0 auto;
  border-radius: 15px; background: var(--mint); color: var(--sage-600);
}
.service-body h3 { font-size: 1.26rem; margin-bottom: 7px; }
.service-body p { color: var(--muted); font-size: 1rem; }

/* ───────────── about ───────────── */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.about-photo { aspect-ratio: 4 / 4.4; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.about-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 20px; }
.about-copy p { color: var(--muted); font-size: 1.1rem; margin-top: 16px; }
.about-note {
  border-left: 3px solid var(--sage-300); padding-left: 20px;
  color: var(--ink-soft) !important; font-style: italic;
  font-family: "Newsreader", serif; font-size: 1.18rem !important; line-height: 1.55;
}
.about-copy .text-link { margin-top: 26px; }

/* ───────────── testimonials ───────────── */
.testimonials { background: var(--sage-800); }
.testimonials .kicker { color: var(--sage-300); }
.testimonials h2 { color: #F3F8F4; }
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.quote-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-lg); padding: 38px 36px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.quote-card blockquote {
  margin: 20px 0 26px; font-family: "Newsreader", serif;
  font-size: 1.4rem; line-height: 1.5; color: #EEF5EF; font-weight: 300;
}
.quote-card figcaption { display: flex; align-items: center; gap: 12px; }
.who-avatar { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--sage-300); flex: 0 0 auto; }
.who { color: var(--sage-300); font-weight: 700; font-size: 0.98rem; }

/* ───────────── contact ───────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); margin-bottom: 18px; }
.contact-copy > p { color: var(--muted); font-size: 1.12rem; max-width: 36em; }

.contact-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 8px; }
.contact-list li { display: flex; gap: 16px; align-items: center; background: var(--surface); padding: 16px 20px; border-radius: var(--r); box-shadow: var(--sh-sm); }
.c-ico { display: grid; place-items: center; width: 46px; height: 46px; flex: 0 0 auto; border-radius: 14px; background: var(--mint); color: var(--sage-600); }
.c-label { display: block; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.c-value { display: block; font-size: 1.1rem; color: var(--ink); font-weight: 600; }
a.c-value:hover { color: var(--sage-700); }

.appt-note {
  display: flex; gap: 12px; align-items: flex-start;
  margin-top: 24px; padding: 18px 20px;
  background: var(--mint); border-radius: var(--r); color: var(--sage-800);
}
.appt-note svg { flex: 0 0 auto; margin-top: 3px; color: var(--sage-600); }

.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.map-card { background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--sh-md); overflow: hidden; }
.map-figure { display: block; aspect-ratio: 4 / 3.4; }
.map-figure:hover img.loaded { transform: scale(1.04); }
.map-figure img { transition: opacity 1.1s var(--ease), transform 1.2s var(--ease); }
.map-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; }
.map-foot strong { display: block; font-family: "Newsreader", serif; font-size: 1.16rem; color: var(--ink); }
.map-foot span { font-size: 0.92rem; color: var(--muted); }

/* ───────────── footer ───────────── */
.site-footer { background: var(--bg-warm); padding: clamp(56px, 7vw, 88px) 0 36px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin: 18px 0 16px; color: var(--muted); max-width: 30em; }
.footer-brand .brand { margin-bottom: 4px; }
.footer-rating { display: block; margin-top: 8px; font-size: 0.9rem; color: var(--muted); }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-h { font-weight: 700; color: var(--ink); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 5px; }
.footer-col a { color: var(--ink-soft); transition: color .4s var(--ease); }
.footer-col a:hover { color: var(--sage-700); }
.footer-muted { color: var(--muted); font-size: 0.92rem; }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between;
  margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--line);
  font-size: 0.88rem; color: var(--muted);
}

/* ───────────── gentle reveal animation ───────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .14s; }
.reveal[data-delay="2"] { transition-delay: .28s; }
.reveal[data-delay="3"] { transition-delay: .42s; }
.reveal[data-delay="4"] { transition-delay: .56s; }
.reveal[data-delay="5"] { transition-delay: .70s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .glow { animation: none; }
  .shot img { transition: none; }
  .btn, .nav a, .value-card, .service, .text-link { transition: none; }
}

/* ───────────── responsive ───────────── */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; aspect-ratio: 4/3.2; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav, .phone-link { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; border: none; background: var(--mint); border-radius: 13px;
    cursor: pointer; padding: 0;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: var(--sage-700); border-radius: 2px; margin: 0 auto; transition: transform .4s var(--ease), opacity .3s var(--ease); }
  .header-cta { margin-left: auto; }

  .nav.open {
    display: flex; flex-direction: column; gap: 4px;
    position: absolute; top: 78px; left: 0; right: 0; margin: 0;
    background: var(--surface); padding: 16px; box-shadow: var(--sh-md);
  }
  .nav.open a { padding: 13px 16px; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .values { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .g-a { grid-column: 1 / 3; grid-row: 1 / 2; }
  .g-b { grid-column: 1 / 2; grid-row: 2 / 3; }
  .g-c { grid-column: 2 / 3; grid-row: 2 / 3; }
  .g-d { grid-column: 1 / 3; grid-row: 3 / 4; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .header-cta .btn-primary { display: none; }
  .hero-actions .btn { flex: 1 1 auto; justify-content: center; }
  .hero-badge { left: 8px; right: 8px; bottom: 12px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; }
  .gallery-grid { grid-template-rows: 180px 180px 180px; }
}
