@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Karla:wght@400;500;600;700&display=swap');

:root {
  --sage: #7a9e7e;
  --sage-light: #e8f0e9;
  --sage-dark: #4d6e50;
  --warm-grey: #f6f4f1;
  --stone: #e8e4df;
  --ink: #2d3130;
  --ink-soft: #5e6664;
  --cream: #fdfcfb;
  --gold: #c4a265;
  --border: #ddd9d4;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --body: 'Karla', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

.container { max-width: 1040px; margin: 0 auto; padding: 0 24px; }

a { color: var(--sage-dark); text-decoration: none; }
a:hover { color: var(--ink); }

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

/* ---- HEADER ---- */
header {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand svg { flex-shrink: 0; }
.brand:hover { color: var(--sage-dark); }

nav { display: flex; gap: 28px; }
nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.2s;
}
nav a:hover { color: var(--sage-dark); }

/* ---- HERO ---- */
.hero {
  padding: 96px 24px 80px;
  text-align: center;
  background: var(--warm-grey);
}
.hero h1 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--sage); }
.hero .sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.btn-sage {
  display: inline-block;
  background: var(--sage);
  color: #fff;
  padding: 16px 36px;
  border-radius: 48px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background 0.2s;
}
.btn-sage:hover { background: var(--sage-dark); color: #fff; }
.btn-soft {
  display: inline-block;
  border: 1.5px solid var(--sage);
  color: var(--sage-dark);
  padding: 14px 32px;
  border-radius: 48px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
}
.btn-soft:hover { background: var(--sage); color: #fff; }

.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- HERO IMAGE ---- */
.hero-img {
  width: 100%;
  max-width: 920px;
  height: 380px;
  object-fit: cover;
  margin: -48px auto 0;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(45, 49, 48, 0.08);
}

/* ---- SECTION ---- */
section { padding: 80px 0; }
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ---- SERVICE CARDS ---- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--warm-grey);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(45,49,48,0.06); }
.service-card .icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--sage-dark);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 0; line-height: 1.7; }

/* ---- SPLIT SECTION ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; }
.split h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.split p { margin-bottom: 14px; color: var(--ink-soft); line-height: 1.8; }

/* ---- TESTIMONIALS ---- */
.testimonial-section { background: var(--warm-grey); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}
.testimonial-card blockquote { font-size: 15px; color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; font-style: italic; }
.testimonial-card cite { font-style: normal; font-weight: 600; font-size: 14px; color: var(--ink); }

/* ---- PROGRAMS ---- */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  background: var(--warm-grey);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}
.program-card .tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}
.program-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.program-card p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; line-height: 1.7; }
.program-card .price {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 6px;
}
.program-card .freq { font-size: 13px; color: var(--ink-soft); }

/* ---- ARTICLE ---- */
article.page-article {
  max-width: 700px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}
article.page-article h1 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
article.page-article .meta { font-size: 13px; color: var(--ink-soft); margin-bottom: 32px; }
article.page-article h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
}
article.page-article p { margin-bottom: 18px; color: var(--ink-soft); line-height: 1.85; }
article.page-article img { border-radius: 12px; margin: 28px 0; }
article.page-article ul, article.page-article ol { margin-bottom: 18px; padding-left: 24px; color: var(--ink-soft); }
article.page-article li { margin-bottom: 8px; line-height: 1.7; }
article.page-article strong { color: var(--ink); }

/* ---- PAGE HERO ---- */
.page-hero {
  text-align: center;
  padding: 64px 24px 48px;
  background: var(--warm-grey);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.page-hero p { font-size: 17px; color: var(--ink-soft); max-width: 500px; margin: 0 auto; line-height: 1.8; }

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  color: var(--stone);
  padding: 44px 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: var(--stone); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: #fff; }
footer .copy { font-size: 13px; color: var(--stone); opacity: 0.7; }
footer .copy a { color: var(--stone); }

/* ---- RESPONSIVE ---- */
@media (max-width: 800px) {
  .hero h1 { font-size: 36px; }
  .hero { padding: 64px 20px 56px; }
  .page-hero h1 { font-size: 30px; }
  .service-grid { grid-template-columns: 1fr; }
  .program-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-img { height: 240px; margin-top: -28px; }
  nav { gap: 16px; }
  nav a { font-size: 13px; }
  article.page-article h1 { font-size: 28px; }
  section { padding: 48px 0; }
}
