/* Sanctuary of Serenity — static rebuild
   Serene spa aesthetic: sage greens, warm cream, elegant serif headings. */

:root {
  --sage: #7c8a6d;
  --sage-deep: #5b6a4e;
  --cream: #faf7f0;
  --cream-deep: #f1ece0;
  --ink: #3b3a34;
  --muted: #6f6e64;
  --line: #e3ddcf;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--sage-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--ink); }

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

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 1.25rem 1.2rem;
  text-align: center;
}
.site-header .logo img {
  margin: 0 auto;
  max-height: 110px;
  width: auto;
}
.nav {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
}
.nav a {
  font-family: var(--sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .82rem;
  color: var(--muted);
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
}
.nav a:hover,
.nav a.active {
  color: var(--sage-deep);
  border-bottom-color: var(--sage);
}

/* ---------- Page title + palm banner ---------- */
.page-head {
  text-align: center;
  padding: 3rem 1.25rem 0.5rem;
}
.page-head h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4rem);
  color: var(--sage-deep);
  margin: 0;
  letter-spacing: .02em;
}
/* Brand divider (replaces the old palm-leaf graphic) */
.divider {
  width: 240px;
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--sage);
  opacity: .55;
}
.divider span { color: var(--sage); font-size: .8rem; }

/* Home hero banner */
.hero {
  max-width: 1000px;
  margin: 1.8rem auto 0;
  padding: 0 1.25rem;
}
.hero img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
}

/* ---------- Content ---------- */
main {
  max-width: 760px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}
main h2 {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--sage-deep);
  margin: 2.4rem 0 .6rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: .3rem;
}
main h3 { font-family: var(--sans); font-size: 1.05rem; margin: 1.4rem 0 .3rem; }
main h4 { font-family: var(--sans); font-size: .95rem; letter-spacing:.08em; text-transform: uppercase; color: var(--muted); margin: 1rem 0 .2rem; }
main p { margin: .6rem 0; }
main ul { padding-left: 1.2rem; }
.lead { font-size: 1.15rem; }
.center { text-align: center; }
.note { color: var(--muted); font-style: italic; }

/* Intro blocks on home */
.intro-block { margin: 1.6rem 0; }
.intro-block strong { display:block; font-family: var(--serif); font-size: 1.5rem; color: var(--sage-deep); font-weight:600; margin-bottom:.2rem; }

/* Service price list */
.service-group { margin-bottom: 1.4rem; }
.price-row {
  display: flex; justify-content: space-between; gap: 1rem;
  border-bottom: 1px dotted var(--line); padding: .25rem 0;
}
.price-row .price { color: var(--sage-deep); font-weight: 600; white-space: nowrap; }

/* Contact / booking call-to-action */
.cta {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.6rem;
  text-align: center;
  margin: 1.5rem 0;
}
.phone {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--sage-deep);
  font-weight: 600;
}

/* Testimonial */
.stars { display:flex; gap:4px; justify-content:center; margin-bottom: .8rem; }
.stars span { color: #caa14a; font-size: 1.2rem; }
.quote {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
  text-align: center;
  font-style: italic;
  margin: 0 auto 1rem;
  max-width: 600px;
}
.attrib { text-align:center; }
.attrib .name { font-weight: 600; }
.attrib .role { color: var(--muted); font-size: .9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--cream-deep);
  color: var(--muted);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 2.5rem 1.25rem;
}
.site-footer .logo img { max-height: 70px; margin: 0 auto 1.2rem; }
.site-footer .nav a { color: var(--muted); }
.site-footer .nav a:hover { color: var(--sage-deep); border-bottom-color: var(--sage); }
.social {
  margin-top: 1.2rem; display:flex; gap:1.2rem; justify-content:center;
  list-style:none; padding:0; font-size:.82rem; letter-spacing:.14em; text-transform:uppercase;
}
.social a { color: var(--muted); }
.social a:hover { color: var(--sage-deep); }
.fineprint { margin-top: 1.4rem; font-size:.78rem; opacity:.8; }

/* ---------- Responsive (phones / small tablets) ---------- */
@media (max-width: 600px) {
  body { font-size: 17px; }
  .site-header { padding: 1.1rem 1rem .9rem; }
  .site-header .logo img { max-height: 78px; }
  .nav { gap: .8rem 1.1rem; margin-top: .9rem; }
  .nav a { font-size: .76rem; letter-spacing: .1em; }
  .page-head { padding: 2rem 1rem 0.25rem; }
  main { padding: 1.25rem 1.15rem 3rem; }
  .hero { padding: 0 1rem; margin-top: 1.2rem; }
  .cta { padding: 1.2rem; }
  .phone { font-size: 1.6rem; }
  .quote { font-size: 1.25rem; }
  .price-row { gap: .75rem; }
  .price-row span:first-child { min-width: 0; }
}
