:root {
  --sage: #7f987a;
  --sage-deep: #50634e;
  --cream: #fbf6ed;
  --gold: #c7a75a;
  --ink: #263126;
  --muted: #6f786d;
  --line: rgba(80, 99, 78, .15);
  --shadow: 0 18px 45px rgba(38, 49, 38, .10);
}

[data-theme="dark"] {
  --cream: #151b16;
  --ink: #f8f4ec;
  --muted: #c4cbbf;
  --line: rgba(248, 244, 236, .12);
  --shadow: 0 18px 45px rgba(0, 0, 0, .25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

h1, h2, h3, h4, .brand-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.text-muted-soft { color: var(--muted); }
.section-pad { padding: 96px 0; }
.section-title { font-size: clamp(2.2rem, 4vw, 4.5rem); line-height: 1; }
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .16em;
  font-size: .74rem;
  text-transform: uppercase;
}

.navbar {
  background: rgba(251, 246, 237, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
[data-theme="dark"] .navbar { background: rgba(21, 27, 22, .86); }
.navbar-brand { color: var(--sage-deep); font-size: 1.45rem; }
.navbar-brand img { height: 42px; width: auto; }
[data-theme="dark"] .navbar-brand { color: var(--cream); }
.nav-link { color: var(--ink); font-weight: 600; }
.nav-link:hover, .nav-link.active { color: var(--sage); }

.btn-heal, .btn-outline-heal {
  border-radius: 999px;
  padding: .85rem 1.3rem;
  font-weight: 700;
  border: 1px solid var(--sage);
}
.btn-heal { background: var(--sage); color: #fff; box-shadow: 0 12px 24px rgba(127, 152, 122, .22); }
.btn-outline-heal { color: var(--sage-deep); background: transparent; }
.btn-heal:hover, .btn-outline-heal:hover { background: var(--sage-deep); color: #fff; border-color: var(--sage-deep); }

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  background:
    radial-gradient(circle at 12% 22%, rgba(199, 167, 90, .18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(127, 152, 122, .26), transparent 30%),
    linear-gradient(135deg, var(--cream), #fff 55%, #e9f0e7);
}
[data-theme="dark"] .hero { background: linear-gradient(135deg, #151b16, #20291f); }
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(3.3rem, 8vw, 7.8rem); line-height: .88; }
.hero-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.54);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
[data-theme="dark"] .hero-card { background: rgba(255,255,255,.06); }
.hero-image-wrap {
  overflow: visible;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.hero-image {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 0;
}

.soft-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
[data-theme="dark"] .soft-card { background: rgba(255,255,255,.06); }
.icon-box {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(127, 152, 122, .14);
  color: var(--sage-deep);
}
.service-card img, .blog-card img, .gallery-item img {
  height: auto;
  width: 100%;
  object-fit: contain;
  border-radius: 8px 8px 0 0;
  transition: transform .5s ease;
}
.gallery-item img { border-radius: 8px; }
.service-card:hover img, .blog-card:hover img, .gallery-item:hover img { transform: scale(1.04); }
.service-card, .blog-card, .gallery-item { overflow: hidden; transition: transform .25s ease; }
.service-card:hover, .blog-card:hover { transform: translateY(-5px); }

.counter { font-size: 2.8rem; color: var(--sage-deep); font-family: "Cormorant Garamond", serif; }
[data-theme="dark"] .counter { color: var(--gold); }
.wellness-band { background: #fff; border-block: 1px solid var(--line); }
[data-theme="dark"] .wellness-band { background: #1b231c; }

.filter-btn.active { background: var(--sage); color: #fff; }
.testimonial-photo { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.rating { color: var(--gold); }
.form-control, .form-select {
  border-radius: 8px;
  border: 1px solid var(--line);
  padding: .85rem 1rem;
  background: rgba(255,255,255,.72);
}
[data-theme="dark"] .form-control, [data-theme="dark"] .form-select {
  background: rgba(255,255,255,.08);
  color: var(--cream);
}

.floating-whatsapp, .back-to-top {
  position: fixed;
  z-index: 50;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.floating-whatsapp { right: 20px; bottom: 82px; background: #25d366; }
.back-to-top { right: 20px; bottom: 24px; background: var(--sage-deep); border: 0; opacity: 0; pointer-events: none; }
.back-to-top.show { opacity: 1; pointer-events: auto; }

.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: opacity .35s ease;
}
.loader.hidden { opacity: 0; pointer-events: none; }
.loader span {
  width: 44px;
  height: 44px;
  border: 3px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

footer { background: var(--sage-deep); color: #fff; }
footer a { color: rgba(255,255,255,.78); }

@media (max-width: 767px) {
  .navbar .container {
    position: relative;
    justify-content: center;
  }
  .navbar-brand {
    margin: 0 auto;
    text-align: center;
  }
  .navbar-toggler {
    position: absolute;
    right: 12px;
  }
  .section-pad { padding: 68px 0; }
  .hero { min-height: auto; padding: 132px 0 72px; }
  .hero h1 { font-size: 3.4rem; }
}
