/* Praveya Wellness Centre — shared styles */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #FAF6EC;
  --cream-deep: #F1E9D8;
  --forest: #1F3A2E;
  --forest-light: #3B5A48;
  --gold: #B08D3F;
  --gold-light: #D9C08A;
  --rust: #A85C32;
  --ink: #24221C;
  --ink-soft: #56534A;
  --line: rgba(36, 34, 28, 0.14);

  --serif: 'Fraunces', serif;
  --sans: 'Work Sans', sans-serif;

  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; max-width: 62ch; }
p.lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 52ch; }

.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--rust); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover { background: var(--forest-light); }
.btn-ghost {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: var(--cream); }

/* ---------- Header ---------- */
header.site {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
}
header.site .bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--forest);
}
.brand img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
}
nav.main {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav.main a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 3px;
  margin-left: 28px;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
nav.main a:first-child { margin-left: 0; }
nav.main a:hover, nav.main a.active { color: var(--forest); border-color: var(--gold); }
.nav-toggle { display: none; }

@media (max-width: 780px) {
  nav.main { display: none; }
  .nav-toggle {
    display: inline-flex;
    background: none;
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 8px 12px;
    font-family: var(--sans);
    font-size: 0.85rem;
  }
  nav.main.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 16px 28px 24px;
    gap: 16px;
  }
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 64px;
}
.hero .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rust);
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.hero .cta-row { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-mark {
  border: 1px solid var(--line);
  background: var(--cream-deep);
  border-radius: 4px;
  padding: 18px;
}
.hero-mark img { border-radius: 2px; }

@media (max-width: 860px) {
  .hero .grid { grid-template-columns: 1fr; }
  .hero-mark { order: -1; max-width: 320px; margin: 0 auto; }
}

/* ---------- Section spacing / dividers ---------- */
section { padding: 64px 0; }
.section-alt { background: var(--cream-deep); }
.divider {
  height: 1px;
  background: var(--line);
  margin: 0 auto;
}
.section-head { max-width: 640px; margin-bottom: 44px; }

/* ---------- Service cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr; } }

.service-card {
  border: 1px solid var(--line);
  background: var(--cream);
  padding: 32px 28px;
  border-radius: 4px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.service-card .tag {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rust);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 6px;
}
.service-card p { color: var(--ink-soft); font-size: 0.98rem; }
.service-card .go { color: var(--forest); font-size: 0.9rem; font-weight: 500; margin-top: 14px; display: inline-block; border-bottom: 1px solid var(--gold); }

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  counter-reset: step;
}
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-left: 46px; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 2px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  color: var(--rust);
  font-size: 0.95rem;
}
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Doctor / about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
.credential-panel {
  border: 1px solid var(--line);
  background: var(--cream-deep);
  padding: 28px;
  border-radius: 4px;
}
.credential-panel .name { font-family: var(--serif); font-size: 1.25rem; color: var(--forest); margin-bottom: 2px; }
.credential-panel .reg { color: var(--ink-soft); font-size: 0.85rem; margin-bottom: 18px; }
.credential-panel ul { list-style: none; padding: 0; margin: 0; }
.credential-panel li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.credential-panel li:first-of-type { border-top: none; }

/* ---------- Contact / booking band ---------- */
.booking-band {
  background: var(--forest);
  color: var(--cream);
  border-radius: 6px;
  padding: 48px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.booking-band h2 { color: var(--cream); }
.booking-band p { color: rgba(250,246,236,0.78); }
.booking-band .btn-primary { background: var(--gold); color: var(--forest); }
.booking-band .btn-primary:hover { background: var(--gold-light); }

/* ---------- Footer ---------- */
footer.site {
  border-top: 1px solid var(--line);
  padding: 44px 0 32px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-grid .col { min-width: 180px; }
.footer-grid h4 { font-size: 0.9rem; text-transform: none; color: var(--forest); margin-bottom: 12px; }
.footer-grid p, .footer-grid a { color: var(--ink-soft); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--rust); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Illustrations ---------- */
.illustration-panel {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px;
  margin: 44px 0;
}
.illustration-panel svg { width: 100%; height: auto; display: block; }

.leaf-divider { margin: 8px 0 44px; }
.leaf-divider svg { width: 100%; height: auto; display: block; }

/* ---------- Service page specific ---------- */
.service-hero {
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line);
}
.service-hero .tag { font-family: var(--serif); font-style: italic; color: var(--rust); font-size: 1.05rem; }
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 18px;
}
.benefit-list li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-soft);
}
.benefit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.pillar-strip {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 40px 0;
}
.pillar-strip a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  padding: 6px 0;
  margin-left: 22px;
  border-bottom: 1px solid transparent;
}
.pillar-strip a:first-child { margin-left: 0; }
.pillar-strip a.active, .pillar-strip a:hover { color: var(--forest); border-color: var(--gold); }
