/* ===== Phase 1 — The Invitation (overrides & additions) ===== */

.phase1 .hero--invitation {
  grid-template-columns: 1fr 0.85fr;
  min-height: min(100vh, 920px);
}

.phase1 .hero__title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.phase1 .hero__sub {
  max-width: 42ch;
}

.hero__figure-solo {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__figure-solo .figure-card {
  width: min(100%, 340px);
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  box-shadow: var(--shadow-plush);
  overflow: hidden;
  transform: rotate(2deg);
  background: var(--paper-2);
}

.hero__figure-solo .figure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.hero__figure-solo::before {
  content: "";
  position: absolute;
  inset: 10% -5% -5% 15%;
  background: radial-gradient(circle, rgba(255, 159, 203, 0.35), transparent 70%);
  z-index: -1;
  border-radius: 50%;
}

.story--brief {
  padding-bottom: 4rem;
}

.story--brief .story__chapter {
  max-width: 640px;
  margin: 0 auto;
}

.section-lead--center {
  text-align: center;
  max-width: 52ch;
  margin: 0.75rem auto 0;
  color: rgba(255, 250, 243, 0.85);
}

.values__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.teaser {
  padding: 5rem 1.5rem;
  background: var(--plush-gradient);
  border-top: 1px solid rgba(255, 192, 224, 0.4);
  border-bottom: 1px solid rgba(255, 192, 224, 0.4);
}

.teaser__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.teaser h2 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 1rem;
}

.teaser__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.teaser__list {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.teaser__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--ink);
}

.teaser__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum-2), var(--coral));
}

.teaser__note {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 2rem;
}

.teaser__cta {
  background: var(--plum-2);
  border-color: var(--plum-2);
}

.teaser__cta:hover {
  background: var(--plum);
  border-color: var(--plum);
}

.launch__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.launch__perks {
  list-style: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 250, 243, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.92rem;
  opacity: 0.9;
}

.launch__perks li::before {
  content: "✓ ";
  font-weight: 700;
}

.phase1 .launch__inner {
  max-width: 720px;
}

.founding {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 250, 243, 0.2);
  text-align: left;
}

.founding__title {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  text-align: center;
  margin-bottom: 1.75rem;
  color: var(--cream);
}

.founding__perks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.founding__perk {
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(255, 250, 243, 0.12);
  border-radius: calc(var(--radius) - 4px);
  padding: 1.15rem 1.25rem;
}

.founding__perk-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.4rem;
}

.founding__perk p {
  font-size: 0.88rem;
  line-height: 1.5;
  opacity: 0.92;
  margin: 0;
}

.founding__disclosure {
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  font-size: 0.78rem;
  line-height: 1.55;
  opacity: 0.75;
  background: rgba(255, 250, 243, 0.06);
  border-radius: calc(var(--radius) - 6px);
  border: 1px solid rgba(255, 250, 243, 0.1);
}

.founding__disclosure a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.founding__disclosure a:hover {
  opacity: 1;
}

.footer__inner--phase1 {
  grid-template-columns: 1.2fr 1fr;
}

.footer__cols--phase1 {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .phase1 .hero--invitation {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 7rem;
  }

  .phase1 .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .phase1 .hero__cta {
    justify-content: center;
  }

  .phase1 .hero__stats {
    justify-content: center;
  }

  .hero__figure-solo {
    min-height: 320px;
    order: -1;
    margin-bottom: 1rem;
  }

  .hero__figure-solo .figure-card {
    width: min(72vw, 280px);
    transform: rotate(0deg);
  }

  .values__grid--3 {
    grid-template-columns: 1fr;
  }

  .founding__perks {
    grid-template-columns: 1fr;
  }

  .footer__inner--phase1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .phase1 .nav__links {
    display: none;
  }

  .phase1 .nav.open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 245, 249, 0.97);
    backdrop-filter: blur(14px);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(45, 15, 30, 0.08);
  }

  .phase1 .nav__toggle {
    display: flex;
  }
}
