:root {
  --bg: #fdfbfd;
  --bg-soft: #f7f0fa;
  --text: #2f2038;
  --muted: #5c436c;
  --line: #e2d2ea;
  --p-1: #7a5494;
  --p-2: #9862b0;
  --p-3: #aa63c8;
  --p-4: #c19fcf;
  --p-5: #c373da;
  --shadow: 0 16px 40px rgba(122, 84, 148, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

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

.container {
  width: min(1100px, calc(100% - 2.2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  background: rgba(253, 251, 253, 0.85);
  border-bottom: 1px solid rgba(193, 159, 207, 0.35);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--p-1);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--p-4);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.menu a {
  font-size: 0.94rem;
  color: var(--muted);
}

.menu a:hover {
  color: var(--p-2);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--p-1);
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 6rem 0 4rem;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(195, 115, 218, 0.32), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(170, 99, 200, 0.25), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fbf7fd 72%, #f7f0fa 100%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--p-2);
  margin: 0 0 0.85rem;
}

.hero-copy h1,
.section-head h2,
.cta-box h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.hero-copy h1 span {
  color: var(--p-2);
  display: block;
}

.hero-copy p {
  color: var(--muted);
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--p-1), var(--p-3));
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, filter 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.05);
}

.btn-ghost {
  background: transparent;
  border-color: var(--p-4);
  color: var(--p-2);
  box-shadow: none;
}

.btn-small {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.77);
  border: 1px solid rgba(193, 159, 207, 0.56);
  border-radius: 1.2rem;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.quote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.6vw, 2.05rem);
  color: var(--p-1);
  line-height: 1.15;
}

.tags {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

.section-soft {
  background: linear-gradient(180deg, #fbf7fd, #f7f0fa);
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.split p {
  margin: 0;
  color: var(--muted);
}

.pillars,
.cards,
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillars article,
.card,
.testimonials blockquote {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem;
  background: #fff;
}

.pillars h3,
.card h3,
.timeline h3 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  color: var(--p-1);
}

.pillars p,
.card p,
.timeline p,
.faq p,
.cta-box p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.timeline li {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  padding: 1.1rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--p-3);
}

.timeline li h3 {
  padding-left: 0.85rem;
}

.testimonials blockquote {
  font-size: 1.05rem;
  line-height: 1.5;
}

.faq {
  display: grid;
  gap: 0.8rem;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #fff;
  padding: 0.95rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--p-1);
}

.faq details[open] {
  background: #fbf7fd;
}

.faq p {
  margin-top: 0.7rem;
}

.cta {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}

.cta-box {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 2rem 1.3rem;
  background:
    linear-gradient(155deg, rgba(170, 99, 200, 0.09), rgba(195, 115, 218, 0.11)),
    #fff;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cta-box p {
  max-width: 62ch;
  margin: 0.7rem auto 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  background: var(--bg-soft);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-wrap p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-wrap a {
  color: var(--p-2);
  font-weight: 600;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 500ms ease, transform 500ms ease;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .pillars,
  .cards,
  .timeline,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: calc(100% + 0.3rem);
    right: 1.1rem;
    left: 1.1rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 1rem;
    padding: 0.8rem;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 0.5rem 0.4rem;
  }
}
