:root {
  --bg: #f7f1ea;
  --bg-alt: #efe6dc;
  --ink: #2c2420;
  --muted: #6a5c54;
  --accent: #7a4e5a;
  --accent-deep: #5c3540;
  --card: #fffaf6;
  --line: #e2d5c8;
  --sage: #6d7a68;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  font-weight: 400;
  line-height: 1.55;
}
h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
a { color: var(--accent-deep); }
.top {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(247,241,234,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
}
nav { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--muted); font-size: 0.92rem; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}
.btn:hover { background: var(--accent-deep); }
.btn-sm { padding: 0.5rem 0.95rem; font-size: 0.88rem; }
.btn-ghost {
  background: transparent;
  color: var(--accent-deep) !important;
  border: 1px solid var(--accent);
}
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: 3.5rem 1.5rem 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--sage);
  margin: 0 0 0.75rem;
}
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 1rem; }
.lede { font-size: 1.1rem; color: var(--muted); max-width: 36rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-visual {
  min-height: 340px;
  border-radius: 1.5rem;
  background:
    linear-gradient(160deg, rgba(122,78,90,0.18), rgba(44,36,32,0.12)),
    url("images/gen-hero-mist.jpg") center/cover;
  box-shadow: 0 20px 50px rgba(44,36,32,0.12);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.75rem;
  align-items: center;
  max-width: 1000px;
}
.about-photo {
  width: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 16px 40px rgba(44,36,32,0.12);
}
.band-photo {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 1.1rem;
  margin: 0 0 1.25rem;
  box-shadow: 0 12px 30px rgba(44,36,32,0.1);
}
@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-height: 360px; }
}
.strip {
  text-align: center;
  padding: 1rem 1.25rem;
  background: var(--accent-deep);
  color: #f7f1ea;
  font-size: 0.95rem;
}
.section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
.section.alt { background: var(--bg-alt); max-width: none; padding-left: max(1.5rem, calc((100% - 1000px) / 2)); padding-right: max(1.5rem, calc((100% - 1000px) / 2)); }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 0.75rem; }
.section-lede { color: var(--muted); max-width: 40rem; margin-bottom: 1.75rem; }
.cards { display: grid; gap: 1rem; }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.35rem;
}
.card.featured { border-color: var(--accent); box-shadow: 0 10px 30px rgba(122,78,90,0.12); }
.card h3 { margin: 0.2rem 0 0.55rem; font-size: 1.45rem; }
.not-for {
  margin-top: 2rem;
  padding: 1.25rem 1.4rem;
  border-left: 3px solid var(--sage);
  background: rgba(255,250,246,0.7);
}
.not-for ul { margin: 0.5rem 0 0.75rem; padding-left: 1.1rem; color: var(--muted); }
.outcomes { padding-left: 1.1rem; max-width: 40rem; }
.outcomes li { margin-bottom: 0.65rem; }
.tier { text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; color: var(--sage); margin: 0; }
.price { font-size: 1.35rem; font-weight: 500; margin: 0.25rem 0 0.75rem; }
.price-sm { font-weight: 500; color: var(--accent-deep); }
.meta { color: var(--muted); font-size: 0.95rem; }
.center { text-align: center; }
.fine { font-size: 0.88rem; color: var(--muted); }
.about p { max-width: 40rem; color: var(--muted); }
.cta-final { text-align: center; }
.cta-final h2 { font-size: 2.3rem; }
footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.apply-wrap { max-width: 640px; margin: 0 auto; padding: 3rem 1.25rem 4rem; }
.apply-form { display: grid; gap: 1rem; margin-top: 1.5rem; }
.apply-form label { display: grid; gap: 0.4rem; font-size: 0.95rem; }
.apply-form input, .apply-form textarea {
  font: inherit;
  padding: 0.75rem 0.85rem;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
}
@media (max-width: 820px) {
  .hero, .cards.two, .cards.three { grid-template-columns: 1fr; }
  nav a:not(.btn) { display: none; }
  .hero-visual { min-height: 220px; }
}

.lotus-mark {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px rgba(44,36,32,0.12);
}
.strip-visual {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 1.5rem;
  display: block;
  border-radius: 1.1rem;
  max-height: 240px;
  object-fit: cover;
}
