:root {
  --cream: #fdf8f4;
  --cream-deep: #f7ede4;
  --blush: #f3d9dd;
  --blush-deep: #e8b8c0;
  --rose: #c98a94;
  --rose-deep: #a9636f;
  --gold: #cba268;
  --ink: #4a3b3d;
  --ink-soft: #7a6a6c;
  --white: #ffffff;
  --shadow: 0 20px 40px -20px rgba(169, 99, 111, 0.25);
  --radius: 20px;
  --serif: 'Playfair Display', serif;
  --sans: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-weight: 300;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--rose-deep);
  font-weight: 600;
  line-height: 1.2;
}

em { color: var(--gold); font-style: italic; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--rose);
  font-weight: 500;
  margin-bottom: 12px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin-top: 12px;
  margin-bottom: 48px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 44px -18px rgba(169, 99, 111, 0.4); }
.btn-large { padding: 18px 44px; font-size: 1.05rem; }
.btn-ghost {
  background: transparent;
  color: var(--rose-deep);
  border: 1.5px solid var(--blush-deep);
}
.btn-ghost:hover { background: var(--blush); }
.btn-small { padding: 10px 22px; font-size: 0.85rem; background: var(--rose-deep); color: var(--white); }
.btn-small:hover { background: var(--rose); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 244, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 138, 148, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); font-weight: 600; }
.logo span { color: var(--rose-deep); }
.nav { display: flex; gap: 32px; }
.nav a { color: var(--ink-soft); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.nav a:hover { color: var(--rose-deep); }

/* Hero */
.hero { padding: 90px 0 70px; overflow: hidden; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { font-size: 3rem; margin-bottom: 22px; }
.hero-sub { color: var(--ink-soft); font-size: 1.05rem; max-width: 480px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-note { font-size: 0.8rem; color: var(--ink-soft); font-style: italic; }

.hero-visual { position: relative; height: 380px; }
.hero-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--blush) 0%, var(--cream-deep) 70%);
  border-radius: 50% 50% 45% 55% / 55% 45% 55% 45%;
}
.hero-card {
  position: absolute;
  bottom: 30px;
  right: 20px;
  background: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  width: 200px;
}
.hero-card-avatar {
  width: 64px; height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blush-deep), var(--rose));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.3rem;
}
.hero-card-name { font-weight: 500; color: var(--ink); }
.hero-card-role { font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }

/* Strip */
.strip { background: var(--rose-deep); padding: 32px 0; }
.strip-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}
.strip-item { display: flex; flex-direction: column; color: var(--cream); }
.strip-item strong { font-family: var(--serif); font-size: 1.7rem; }
.strip-item span { font-size: 0.8rem; opacity: 0.85; letter-spacing: 0.04em; }

/* About */
.about { padding: 100px 0; }
.about-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.about-image { position: relative; height: 400px; }
.about-frame {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream-deep) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(201,138,148,0.25);
}
.about-frame::after {
  content: "Photo Placeholder";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--rose-deep); font-family: var(--serif); font-size: 1rem; letter-spacing: 0.04em;
}
.about-text h2 { font-size: 2.1rem; margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); margin-bottom: 16px; }
.about-points { list-style: none; margin-top: 20px; }
.about-points li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.95rem;
}
.about-points li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--gold);
}

/* Program cards */
.program { padding: 100px 0; background: var(--cream-deep); }
.program h2 { font-size: 2.1rem; }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.card {
  background: var(--white);
  padding: 36px 26px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 14px 30px -18px rgba(169,99,111,0.18);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-6px); }
.card-icon {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.9rem; }

/* Testimonials */
.testimonials { padding: 100px 0; }
.testimonials h2 { font-size: 2.1rem; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.testimonial {
  background: var(--white);
  border: 1px solid rgba(201,138,148,0.18);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.testimonial p { font-style: italic; color: var(--ink); margin-bottom: 18px; }
.testimonial footer { color: var(--rose-deep); font-size: 0.85rem; font-weight: 500; }

/* CTA section */
.cta-section {
  padding: 110px 0;
  background: linear-gradient(160deg, var(--blush) 0%, var(--cream) 100%);
  text-align: center;
}
.cta-section h2 { font-size: 2.3rem; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }

/* FAQ */
.faq { padding: 100px 0; }
.faq h2 { font-size: 2.1rem; }
.faq-list { max-width: 720px; margin: 0 auto; }
details {
  background: var(--white);
  border: 1px solid rgba(201,138,148,0.18);
  border-radius: 14px;
  padding: 18px 24px;
  margin-bottom: 14px;
}
summary {
  cursor: pointer;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--rose-deep);
  font-size: 1.2rem;
}
details[open] summary::after { content: "–"; }
details p { margin-top: 12px; color: var(--ink-soft); font-size: 0.92rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0 32px;
}
.footer-inner { text-align: center; }
.site-footer .logo { color: var(--cream); justify-content: center; margin-bottom: 16px; display: inline-block; }
.site-footer .logo span { color: var(--blush-deep); }
.footer-note {
  max-width: 520px;
  margin: 0 auto 20px;
  font-size: 0.82rem;
  color: rgba(253,248,244,0.65);
}
.footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; }
.footer-links a { color: var(--cream); text-decoration: none; font-size: 0.85rem; opacity: 0.8; }
.footer-links a:hover { opacity: 1; }
.copyright { font-size: 0.78rem; color: rgba(253,248,244,0.5); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 260px; order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 520px) {
  .hero h1 { font-size: 2.2rem; }
  .cards { grid-template-columns: 1fr; }
  .strip-inner { gap: 28px 40px; }
}
