/* ============================================================
   Healer Path — earthy, calm, humble design system
   Palette: warm cream, sage, clay, deep forest ink
   ============================================================ */

:root {
  /* Earthy palette */
  --cream: #faf7f1;
  --cream-deep: #f3ede1;
  --sand: #e8dfcd;
  --sage: #7d8b6f;
  --sage-deep: #5f6e54;
  --sage-soft: #e4e9dd;
  --clay: #c08a5e;
  --clay-deep: #a9714a;
  --ink: #3b3a34;
  --ink-soft: #5c5a51;
  --muted: #8a867a;
  --white: #ffffff;
  --line: #e3dbc9;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Segoe UI", sans-serif;

  /* Rhythm */
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 30px rgba(99, 89, 65, 0.08);
  --shadow-lift: 0 18px 44px rgba(99, 89, 65, 0.13);
  --container: 1140px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--sage-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--clay-deep); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--sage-deep); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px; font-family: var(--font-body);
  font-size: 15.5px; font-weight: 600; letter-spacing: .01em;
  border: 1.5px solid transparent; cursor: pointer; transition: all .22s ease;
  text-align: center;
}
.btn-primary {
  background: var(--sage-deep); color: #fff;
}
.btn-primary:hover { background: var(--sage); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-outline {
  background: transparent; color: var(--sage-deep); border-color: var(--sage);
}
.btn-outline:hover { background: var(--sage-soft); color: var(--sage-deep); }
.btn-clay {
  background: var(--clay); color: #fff;
}
.btn-clay:hover { background: var(--clay-deep); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow-soft); }
.btn-lg { padding: 16px 34px; font-size: 16.5px; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 42px; height: 42px; flex-shrink: 0; color: var(--sage-deep);
  background: var(--sage-soft); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name { font-family: var(--font-display); font-size: 22px; font-weight: 600; letter-spacing: .01em; }
.brand-sub { font-size: 12px; color: var(--muted); letter-spacing: .03em; }

.site-nav { display: flex; align-items: center; gap: 26px; }
.nav-link {
  font-size: 15.5px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 4px 0;
}
.nav-link:hover { color: var(--sage-deep); }
.nav-link.is-active { color: var(--sage-deep); }
.nav-link.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; border-radius: 2px; background: var(--clay);
}
.nav-cta { padding: 10px 20px; font-size: 14.5px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all .25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 84px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(60% 90% at 85% 10%, rgba(192, 138, 94, 0.10), transparent 60%),
    radial-gradient(50% 80% at 10% 90%, rgba(125, 139, 111, 0.12), transparent 60%),
    var(--cream);
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--clay-deep); margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: ""; width: 34px; height: 1.5px; background: var(--clay); border-radius: 2px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 5.2vw, 56px); line-height: 1.12; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--sage-deep); }
.hero-sub {
  font-size: 19px; line-height: 1.7; color: var(--ink-soft); max-width: 34em; margin-bottom: 34px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-art {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-art-circle {
  width: min(400px, 88%); aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(160deg, var(--sage-soft), var(--cream-deep));
  border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 60px rgba(255,255,255,.5);
}
.hero-art svg.art-main { width: 62%; height: auto; color: var(--sage-deep); }

/* Floating nature accents */
.float-leaf { position: absolute; color: var(--sage); opacity: .55; }
.float-leaf svg { width: 34px; height: 34px; }
.float-leaf-1 { top: 6%; left: 8%; transform: rotate(-18deg); }
.float-leaf-2 { bottom: 12%; right: 6%; transform: rotate(24deg) scale(1.15); color: var(--clay); opacity: .4; }
.float-crystal { position: absolute; top: 14%; right: 12%; color: var(--clay); opacity: .38; }
.float-crystal svg { width: 30px; height: 30px; }
.float-stone { position: absolute; bottom: 8%; left: 14%; color: var(--muted); opacity: .5; }
.float-stone svg { width: 44px; height: 44px; }

/* ============ Sections ============ */
.section { padding: 84px 0; }
.section-alt { background: var(--cream-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--clay-deep); margin-bottom: 14px;
}
.section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(30px, 3.6vw, 40px); line-height: 1.18; letter-spacing: -.01em;
  color: var(--ink); margin-bottom: 14px;
}
.section-head p { font-size: 17.5px; color: var(--ink-soft); }

/* ============ The Path (3 steps) ============ */
.path-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.path-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 38px 30px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.path-icon {
  width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--sage-soft); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
}
.path-icon svg { width: 30px; height: 30px; }
.path-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 21px; margin-bottom: 10px; }
.path-card p { font-size: 15.5px; color: var(--ink-soft); }

/* ============ Services ============ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--clay));
  opacity: 0; transition: opacity .25s ease;
}
.service-card:hover::before { opacity: 1; }
.service-level {
  font-family: var(--font-display); font-size: 15px; font-style: italic;
  color: var(--clay-deep); margin-bottom: 8px;
}
.service-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 22px; margin-bottom: 10px; }
.service-card .service-tagline { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 18px; flex-grow: 1; }
.service-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-top: 16px; border-top: 1px dashed var(--line);
}
.service-price { font-size: 13.5px; color: var(--muted); }
.service-price strong { display: block; color: var(--sage-deep); font-size: 15px; font-weight: 700; }
.service-card .btn { padding: 10px 18px; font-size: 14px; }

/* ============ Testimonials ============ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column; gap: 18px;
  box-shadow: var(--shadow-soft);
}
.testi-quote { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 17.5px; line-height: 1.65; color: var(--ink); flex-grow: 1; }
.testi-quote::before { content: "\201C"; font-size: 34px; color: var(--clay); line-height: 0; margin-right: 4px; vertical-align: -8px; }
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(140deg, var(--sage-soft), var(--cream-deep));
  border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep);
}
.testi-avatar svg { width: 22px; height: 22px; }
.testi-name { font-weight: 700; font-size: 15px; }
.testi-service { font-size: 13px; color: var(--muted); }

/* ============ Blog ============ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.post-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex-grow: 1; }
.post-date { font-size: 13px; color: var(--muted); letter-spacing: .04em; margin-bottom: 8px; }
.post-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 19.5px; line-height: 1.35; margin-bottom: 10px; }
.post-card h3 a { color: var(--ink); }
.post-card h3 a:hover { color: var(--sage-deep); }
.post-excerpt { font-size: 15px; color: var(--ink-soft); flex-grow: 1; margin-bottom: 14px; }
.post-more { font-size: 14.5px; font-weight: 600; color: var(--sage-deep); }

/* ============ Community / CTA band ============ */
.band {
  background: linear-gradient(135deg, var(--sage-deep), var(--sage));
  color: #fff; border-radius: 26px; padding: 56px 48px; text-align: center;
  position: relative; overflow: hidden;
}
.band::before, .band::after {
  content: ""; position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.06); 
}
.band::before { width: 260px; height: 260px; top: -90px; left: -70px; }
.band::after { width: 200px; height: 200px; bottom: -70px; right: -50px; }
.band h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 12px; position: relative; z-index: 1; }
.band p { font-size: 17px; opacity: .92; max-width: 46em; margin: 0 auto 28px; position: relative; z-index: 1; }
.band .btn { position: relative; z-index: 1; }
.band .btn-outline { border-color: rgba(255,255,255,.7); color: #fff; }
.band .btn-outline:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ============ Prose (pages / posts) ============ */
.page-single { padding: 64px 0 96px; }
.page-head { text-align: center; margin-bottom: 44px; }
.page-head h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(32px, 4vw, 44px); line-height: 1.15; margin-bottom: 12px; }
.page-subtitle { font-size: 18px; color: var(--ink-soft); }

.prose { font-size: 17.5px; line-height: 1.8; color: var(--ink-soft); }
.prose h2 { font-family: var(--font-display); font-weight: 500; font-size: 27px; color: var(--ink); margin: 42px 0 16px; line-height: 1.3; }
.prose h3 { font-family: var(--font-display); font-weight: 500; font-size: 22px; color: var(--ink); margin: 32px 0 12px; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 20px 24px; }
.prose li { margin-bottom: 8px; }
.prose blockquote {
  border-left: 3px solid var(--clay); padding: 6px 0 6px 22px;
  font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--ink);
  margin: 28px 0;
}
.prose img { border-radius: var(--radius); margin: 24px 0; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

/* ============ Service detail blocks ============ */
.service-block {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 38px; margin-bottom: 30px; scroll-margin-top: 96px;
}
.service-block-head { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 20px; }
.service-block-icon {
  width: 54px; height: 54px; flex-shrink: 0; border-radius: 50%;
  background: var(--sage-soft); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
}
.service-block-icon svg { width: 26px; height: 26px; }
.service-block h2 { font-family: var(--font-display); font-weight: 500; font-size: 26px; margin-bottom: 6px; }
.service-block .service-tagline { color: var(--ink-soft); font-size: 16.5px; }
.service-desc { color: var(--ink-soft); margin-bottom: 22px; }
.service-desc p { margin-bottom: 12px; }
.materi-title { font-weight: 700; font-size: 15px; color: var(--sage-deep); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.materi-list { list-style: none; margin: 0 0 20px 0; }
.materi-list li {
  padding-left: 30px; position: relative; margin-bottom: 9px; color: var(--ink-soft);
}
.materi-list li::before {
  content: ""; position: absolute; left: 4px; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--sage); opacity: .75;
}
.materi-list li.opsional { color: var(--muted); }
.materi-list li.opsional::before { background: var(--clay); opacity: .55; }
.service-invest {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  background: var(--cream); border: 1px dashed var(--sand); border-radius: var(--radius-sm);
  padding: 16px 22px; margin-top: 6px;
}
.service-invest-label { font-size: 14px; color: var(--muted); }
.service-invest-value { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--sage-deep); }
.service-invest-note { font-size: 13.5px; color: var(--muted); width: 100%; }

/* ============ Contact page ============ */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; text-align: center; transition: transform .25s ease, box-shadow .25s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.contact-icon {
  width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--sage-soft); color: var(--sage-deep);
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 20px; margin-bottom: 8px; }
.contact-card p { font-size: 15px; color: var(--ink-soft); margin-bottom: 14px; }
.contact-card a.btn { padding: 10px 18px; font-size: 14px; }

/* ============ Footer ============ */
.site-footer {
  background: #f1ead9; border-top: 1px solid var(--line); padding: 64px 0 0; margin-top: 96px;
}
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px;
}
.footer-brand .brand-mark { margin-bottom: 16px; }
.footer-tagline { font-family: var(--font-display); font-style: italic; font-size: 17px; color: var(--ink-soft); margin-bottom: 8px; max-width: 22em; }
.footer-community { font-size: 14.5px; color: var(--muted); }
.footer-community a { color: var(--sage-deep); font-weight: 600; }
.footer-col h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-bottom: 16px; color: var(--ink); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { font-size: 15px; color: var(--ink-soft); }
.footer-col a:hover { color: var(--clay-deep); }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--muted);
}

/* ============ Nature SVG art ============ */
.art-leaf svg { width: 100%; height: auto; }
.art-zen svg { width: 100%; height: auto; }
.art-crystal svg { width: 100%; height: auto; }
.art-river svg { width: 100%; height: auto; }

/* ============ Responsive ============ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-cta { justify-content: center; }
  .hero-art { order: -1; }
  .hero-art-circle { width: min(300px, 80%); }
  .path-grid, .services-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .path-grid, .services-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }

  .nav-toggle { display: flex; }
  .site-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 10px 24px 20px; box-shadow: var(--shadow-soft);
  }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-link { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16.5px; }
  .site-nav .nav-cta { margin-top: 16px; justify-content: center; }
  .hero { padding: 56px 0 56px; }
  .hero h1 { font-size: 36px; }
  .band { padding: 44px 26px; border-radius: 20px; }
  .service-block { padding: 30px 22px; }
  .service-block-head { flex-direction: column; gap: 12px; }
  .footer-bottom { justify-content: center; text-align: center; }
}
