/* Homepage landing – namespaced for Shoptet */
.home-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-variant-numeric: lining-nums;
}

.home-wrapper {
  --home-purple: #a62cde;
  --home-purple-deep: #8a1fc7;
  --home-magenta: #9f2192;
  --home-ink: #2a1a2a;
  --home-ink-soft: #4a3a4a;
  --home-mist: #f8faff;
  --home-lilac: #f2e8ff;
  --home-lilac-mid: #ebe0f7;
  --home-teal: #7eb8b8;
  --home-teal-soft: #e8f4f4;
  --home-white: #ffffff;
  --home-max: 1100px;
  --home-ease: cubic-bezier(0.22, 1, 0.36, 1);

  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
  color: var(--home-ink);
  background: var(--home-white);
  font-size: 1.6rem;
  overflow-x: clip;
}

.home-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

.home-wrapper a {
  color: inherit;
}

.home-container {
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* —— Reveal motion —— */
.home-reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition:
    opacity 0.9s var(--home-ease),
    transform 0.9s var(--home-ease);
}

.home-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-reveal-delay-1 {
  transition-delay: 0.12s;
}

.home-reveal-delay-2 {
  transition-delay: 0.24s;
}

/* —— Buttons (outline) —— */
.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.2rem 2.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.6rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  background: transparent;
  color: var(--home-magenta);
  box-shadow: inset 0 0 0 1.5px rgba(159, 33, 146, 0.45);
  transition:
    background 0.35s var(--home-ease),
    color 0.35s var(--home-ease),
    box-shadow 0.35s var(--home-ease),
    transform 0.35s var(--home-ease);
}

.home-btn:hover {
  background: rgba(166, 44, 222, 0.08);
  color: var(--home-purple);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1.5px var(--home-purple);
}

.home-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.6rem;
  color: var(--home-magenta);
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.3s ease, gap 0.3s var(--home-ease);
}

.home-link-arrow-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  background: currentColor;
  -webkit-mask: url("icons/icon-arrow.svg") center / contain no-repeat;
  mask: url("icons/icon-arrow.svg") center / contain no-repeat;
  transition: transform 0.3s var(--home-ease);
}

.home-link-arrow:hover {
  color: var(--home-purple);
  gap: 0.8rem;
}

.home-link-arrow:hover .home-link-arrow-icon {
  transform: translateX(3px);
}

/* —— Hero —— */
.home-hero {
  text-align: center;
  padding: 0;
  background: linear-gradient(
    180deg,
    var(--home-mist) 0%,
    var(--home-lilac) 75%,
    var(--home-lilac) 100%
  );
}

.home-hero-media {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.home-hero-media img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  display: block;
  animation: home-hero-ken 18s var(--home-ease) both;
}

@keyframes home-hero-ken {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

.home-hero-copy {
  padding: 3.6rem 0 3.2rem;
}

.home-hero h1 {
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  color: var(--home-purple);
  font-weight: normal;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 1.6rem;
}

.home-hero-lead {
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  color: var(--home-ink-soft);
  max-width: 34em;
  margin: 0 auto !important;
}

/* —— Shared section rhythm ——
   Pattern: each section starts light (clear edge after previous
   section’s colored end) and finishes on a saturated wash. */
.home-section {
  padding: 6.4rem 0;
  position: relative;
}

.home-section-soft {
  background: linear-gradient(
    180deg,
    var(--home-white) 0%,
    var(--home-mist) 35%,
    var(--home-lilac) 100%
  );
}

/* Post-hero fade baked into the first content section (no extra band). */
.home-section-soft-from-hero {
  background: linear-gradient(
    180deg,
    var(--home-lilac) 0%,
    var(--home-mist) 18%,
    var(--home-white) 38%,
    var(--home-mist) 72%,
    var(--home-lilac) 100%
  );
}

.home-section-white {
  background: linear-gradient(
    180deg,
    var(--home-white) 0%,
    var(--home-mist) 45%,
    var(--home-lilac) 100%
  );
}

.home-section-teal {
  background: linear-gradient(
    180deg,
    var(--home-white) 0%,
    var(--home-teal-soft) 45%,
    var(--home-mist) 100%
  );
}

.home-section-end {
  background: linear-gradient(
    180deg,
    var(--home-white) 0%,
    var(--home-lilac) 55%,
    var(--home-mist) 100%
  );
  padding-bottom: 7.2rem;
}

.home-eyebrow {
  display: block;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-magenta);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.home-section h2 {
  font-size: clamp(2.6rem, 3.5vw, 3.6rem);
  color: var(--home-purple);
  font-weight: normal;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: center;
}

.home-prose {
  max-width: 42em;
  margin: 0 auto;
  text-align: center;
}

.home-prose p {
  font-size: 1.7rem;
  color: var(--home-ink-soft);
  margin-bottom: 1.4rem;
}

.home-prose p:last-child {
  margin-bottom: 0;
}

.home-prose-cta {
  margin-top: 0.8rem;
}

.home-prose-cta .home-link-arrow {
  justify-content: center;
}

.home-prose blockquote {
  margin: 2.4rem auto 1.2rem;
  padding: 0.4rem 0 0.4rem 2rem;
  max-width: 36em;
  border-left: 2px solid rgba(166, 44, 222, 0.35);
  font-size: 1.65rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--home-ink-soft);
  text-align: left;
}

.home-prose blockquote p {
  margin-bottom: 0;
}

.home-prose blockquote footer {
  margin-top: 0.6rem;
  text-align: right;
}

.home-prose blockquote cite {
  font-style: normal;
  font-size: 1.4rem;
  color: inherit;
}

.home-media {
  margin: 3.6rem auto 0;
  max-width: 820px;
}

.home-media img {
  width: 100%;
  border-radius: 2.4rem;
}

.home-media-round img {
  border-radius: 2.4rem;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

/* —— Paths (two choices) —— */
.home-paths-intro {
  text-align: center;
  margin-bottom: 3.6rem;
}

.home-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.home-paths::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(166, 44, 222, 0.28),
    transparent
  );
  transform: translateX(-50%);
}

.home-path {
  padding: 3.2rem 3.6rem;
  text-align: center;
}

.home-path-icon {
  width: 5.6rem;
  height: 5.6rem;
  margin: 0 auto 1.8rem;
}

.home-path-icon img {
  width: 100%;
  height: 100%;
}

.home-path h3 {
  font-size: 2.2rem;
  color: var(--home-purple);
  font-weight: normal;
  margin-bottom: 1.4rem;
  line-height: 1.25;
}

.home-path p {
  font-size: 1.65rem;
  color: var(--home-ink-soft);
  max-width: 28em;
  margin: 0 auto;
}

.home-path-cta {
  margin-top: 2.4rem;
  display: flex;
  justify-content: center;
}

/* —— About —— */
.home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.home-about-copy {
  text-align: left;
}

.home-about-copy h2 {
  text-align: left;
  margin-bottom: 1.2rem;
}

.home-about-name {
  font-size: 1.8rem;
  color: var(--home-magenta);
  margin-bottom: 1.8rem;
}

.home-about-copy p {
  font-size: 1.65rem;
  color: var(--home-ink-soft);
  margin-bottom: 1.3rem;
}

.home-about-copy p:last-child {
  margin-bottom: 0;
}

.home-about-cta .home-link-arrow {
  margin-top: 0.8rem;
}

.home-wrapper strong {
  font-weight: 700;
}

.home-about-photo img {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  box-shadow: 0 24px 48px rgba(166, 44, 222, 0.14);
}

/* —— Soft wash divider between bands —— */
.home-wash {
  height: 4.8rem;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(242, 232, 255, 0.7),
    transparent
  );
  pointer-events: none;
}

/* —— Responsive —— */
@media (max-width: 800px) {
  .home-hero-copy {
    padding: 2.8rem 0 2rem;
  }

  .home-section {
    padding: 4.8rem 0;
  }

  /* Fixed-height post-hero fade so the heading sits on white, not lilac. */
  .home-section-soft-from-hero {
    background: linear-gradient(
      180deg,
      var(--home-lilac) 0,
      var(--home-mist) 2.4rem,
      var(--home-white) 5.2rem,
      var(--home-mist) 72%,
      var(--home-lilac) 100%
    );
  }

  .home-paths {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .home-paths::before {
    display: none;
  }

  .home-path {
    padding: 2.4rem 1.6rem;
    background: var(--home-white);
    border-radius: 2rem;
    box-shadow: 0 8px 24px rgba(166, 44, 222, 0.08);
  }

  .home-about {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .home-about-photo {
    order: -1;
  }

  .home-about-copy,
  .home-about-copy h2 {
    text-align: center;
  }

  .home-about-cta .home-link-arrow {
    justify-content: center;
  }

  .home-path-cta .home-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-reveal,
  .home-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .home-hero-media img {
    animation: none;
  }

  .home-btn,
  .home-link-arrow,
  .home-link-arrow-icon {
    transition: none;
  }
}
