/* =========================
   Base
========================= */

:root {
  --purple-dark: #4e168c;
  --purple: #8d45df;
  --purple-light: #dcbcfb;
  --lavender: #f4ebff;
  --aqua: #28b8cf;
  --aqua-light: #dff9ff;
  --pink-light: #f7eaff;
  --ink: #34313c;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(86, 46, 136, 0.16);
  --page-gutter: max(7vw, 70px);
  --radius-pill: 999px;
  --radius-large: 38px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================
   Announcement Bar
========================= */

.announcement-bar {
  position: relative;
  z-index: 30;
  padding: 12px max(6vw, 40px);
  background: var(--purple-light);
  text-align: center;
}

.announcement-bar p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #5a3488;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
}

.announcement-bar ion-icon {
  flex: 0 0 auto;
  color: var(--purple);
  font-size: 1.1rem;
}

.announcement-bar a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar a:hover {
  color: #1c8ea3;
}

.page-shell {
  position: relative;
}

@media (max-width: 620px) {
  .announcement-bar {
    padding: 12px 20px;
  }

  .announcement-bar p {
    font-size: 0.8rem;
  }
}

/* =========================
   Header
========================= */

.site-header {
  position: absolute;
  z-index: 20;
  top: 30px;
  left: var(--page-gutter);
  right: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  flex: 0 1 390px;
  margin: 0;
  padding: 0;
}

.brand img {
  width: auto;
  max-width: 100%;
  max-height: 150px;
  margin: 0;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 68px);
  min-height: 80px;
  padding: 0 48px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.44);
  box-shadow:
    inset 0 0 0 1px rgba(151, 85, 218, 0.12),
    0 10px 28px rgba(104, 61, 143, 0.13);
  backdrop-filter: blur(18px);
}

.main-nav a {
  position: relative;
  color: #7338c7;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--aqua);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  font-size: 1.8rem;
  cursor: pointer;
}

/* =========================
   Hero
========================= */

.hero {
  position: relative;
  min-height: 805px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 0.92fr);
  align-items: center;
  gap: 50px;
  padding: 205px var(--page-gutter) 55px;
  background-image: url("images/hero-background.png");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -115px;
  width: 62%;
  height: 300px;
  border-radius: 50% 45% 0 0;
  background: rgba(231, 208, 255, 0.62);
  filter: blur(2px);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 710px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 30px;
  color: #32205f;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.eyebrow ion-icon {
  flex: 0 0 auto;
  color: var(--aqua);
  font-size: 1.6rem;
}

.hero h1 {
  margin: 0;
  color: var(--purple-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 5.2vw, 6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--aqua);
}

.small-line {
  width: 56px;
  height: 4px;
  margin: 33px 0 28px;
  border-radius: var(--radius-pill);
  background: #bd77ef;
}

.hero-copy {
  max-width: 580px;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  padding: 9px 18px;
  border: 1.5px solid var(--purple-light);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  color: var(--purple-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-status ion-icon {
  color: var(--aqua);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 30px;
}

.button {
  min-width: 205px;
  padding: 16px 28px;
  border: 2px solid var(--purple);
  border-radius: var(--radius-pill);
  text-align: center;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #8f46df, #a451e5);
  box-shadow: 0 12px 22px rgba(136, 63, 216, 0.25);
}

.button-primary:hover {
  box-shadow: 0 16px 28px rgba(136, 63, 216, 0.32);
}

.button-secondary {
  color: var(--purple);
  background: rgba(255, 255, 255, 0.76);
}

.button-secondary:hover {
  background: var(--white);
}

.social-links {
  display: flex;
  gap: 26px;
  margin-top: 28px;
}

.social-links a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1.5px solid #c697f1;
  border-radius: 50%;
  color: #8643d7;
  background: rgba(255, 255, 255, 0.76);
  font-size: 1.45rem;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--white);
}

.hero-visual {
  position: relative;
  z-index: 5;
  justify-self: center;
  width: min(100%, 600px);
  min-height: 585px;
}

.photo-frame {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 50%;
  width: 430px;
  height: 610px;
  padding: 13px;
  border: 4px solid #9c5be1;
  border-radius: 220px 220px 6px 6px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 8px #f8f1ff,
    0 24px 60px rgba(95, 48, 141, 0.18);
  transform: translateX(50%);
}

.photo-frame::before {
  position: absolute;
  inset: -17px;
  z-index: -1;
  border: 3px solid rgba(170, 98, 226, 0.7);
  border-radius: 235px 235px 8px 8px;
  content: "";
}

.photo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 0 0;
  object-fit: cover;
}

.rainbow {
  position: absolute;
  top: 100px;
  left: -20px;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  transform: rotate(12deg);
}

.rainbow span {
  position: absolute;
  inset: 0;
  border: 28px solid #ca77ed;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.rainbow span:nth-child(2) {
  inset: 30px;
  border-color: #56cbe2;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.rainbow span:nth-child(3) {
  inset: 60px;
  border-color: #8f63df;
  border-right-color: transparent;
  border-bottom-color: transparent;
}

.love-badge {
  position: absolute;
  z-index: 6;
  right: -35px;
  bottom: -10px;
  display: grid;
  width: 210px;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  padding: 30px;
  border: 6px double #9f5cd8;
  border-radius: 50%;
  color: #6d2eb9;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(101, 48, 148, 0.24);
  text-align: center;
  text-transform: uppercase;
}

.love-badge span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
}

.love-badge ion-icon {
  margin: 12px 0 9px;
  color: var(--aqua);
  font-size: 3rem;
}

.love-badge small {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.05em;
}

.hero-decor {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-decor-left {
  bottom: -90px;
  left: -80px;
  width: 220px;
  height: 290px;
  background: rgba(211, 179, 246, 0.6);
}

.hero-decor-right {
  top: 245px;
  right: 0;
  width: 210px;
  height: 230px;
  background: rgba(220, 181, 246, 0.42);
}

/* =========================
   About Us
========================= */

.about-section {
  position: relative;
  z-index: 8;
  padding: 78px max(6vw, 40px) 30px;
  background: var(--white);
}

.about-subheading {
  max-width: 900px;
  margin: 0 auto 22px;
  color: var(--purple-dark);
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  text-align: center;
}

.about-bio {
  display: grid;
  grid-template-columns: 1fr 260px;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 54px;
}

.about-bio-text p {
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-bio-text p:last-child {
  margin-bottom: 0;
}

.about-bio-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-bio {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-bio-photo {
    max-width: 280px;
    order: -1;
  }
}

.about-story {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 34px;
  max-width: 900px;
  margin: 0 auto 54px;
  padding: 40px;
  border-radius: var(--radius-large);
  background: linear-gradient(135deg, var(--lavender), var(--aqua-light));
}

.about-photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-button {
  display: inline-block;
  min-width: 0;
  margin-top: 22px;
  padding: 13px 26px;
}

.about-eyebrow {
  margin: 0 0 10px;
  color: var(--purple);
  font-weight: 700;
  font-size: 1.05rem;
  font-family: "Playfair Display", serif;
}

.about-story p:last-child {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 20px;
  padding: 10px;
}

.about-card h3 {
  margin: 0 0 8px;
  color: var(--purple-dark);
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.about-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .about-section {
    padding-inline: 24px;
  }

  .about-story {
    padding: 28px;
  }

  .about-photo {
    width: 150px;
    height: 150px;
  }
}

/* =========================
   What Makes Us Unique
========================= */

.unique-section {
  position: relative;
  z-index: 8;
  padding: 42px max(6vw, 40px) 58px;
  background: var(--white);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-lead {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.section-lead a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-lead a:hover {
  color: var(--aqua);
}

.section-heading h2 {
  margin: 0;
  color: var(--purple-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.feature-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.feature-icon {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border: 10px solid #f7ecff;
  border-radius: 50%;
  color: #9354d9;
  background: #fff;
  box-shadow:
    inset 0 0 0 2px #ead2fb,
    0 10px 28px rgba(101, 52, 148, 0.12);
  font-size: 3.2rem;
}

.feature-icon.blue {
  border-color: #ebf8ff;
  color: #18a8c8;
  box-shadow:
    inset 0 0 0 2px #cbeef8,
    0 10px 28px rgba(30, 158, 187, 0.12);
}

.feature-card h3 {
  margin: 0 0 8px;
  color: #7436c6;
  font-size: 1.05rem;
}

.feature-card:nth-child(even) h3 {
  color: #079dbd;
}

.feature-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* =========================
   Who We Serve
========================= */

.serve-section {
  position: relative;
  z-index: 8;
  padding: 78px max(6vw, 40px) 30px;
  background: linear-gradient(180deg, var(--lavender) 0%, #ffffff 60%);
}

.serve-content {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.serve-photo {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

.serve-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.serve-points {
  display: grid;
  gap: 30px;
}

.serve-point {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 22px;
}

.serve-point h3 {
  margin: 0 0 6px;
  color: var(--purple-dark);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.serve-point p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .serve-content {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .serve-content {
    grid-template-columns: 1fr;
  }

  .serve-photo {
    max-width: 460px;
    margin: 0 auto;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 620px) {
  .serve-section {
    padding-inline: 24px;
  }

  .serve-point .feature-icon {
    width: 74px;
    height: 74px;
    border-width: 8px;
    font-size: 2.3rem;
  }

  .serve-point {
    grid-template-columns: 74px 1fr;
    gap: 16px;
  }
}

/* =========================
   Interest Form
========================= */

.interest-section {
  padding: 40px max(6vw, 40px) 60px;
}

.interest-form {
  display: grid;
  gap: 22px;
  max-width: 720px;
  margin: 0 auto;
  padding: 44px;
  border-radius: var(--radius-large);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-status {
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 16px 22px;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.form-status.success {
  color: #1c7a4d;
  background: #e3f7ec;
  border: 1.5px solid #b6e6cc;
}

.form-status.error {
  color: #a83b3b;
  background: #fdecec;
  border: 1.5px solid #f3c3c3;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  color: var(--purple-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  padding: 13px 16px;
  border: 1.5px solid #e2d3f7;
  border-radius: 14px;
  color: var(--ink);
  background: #fbf8ff;
  font-size: 0.98rem;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 4px rgba(141, 69, 223, 0.14);
}

.interest-form .button {
  justify-self: start;
  margin-top: 6px;
  cursor: pointer;
  background-color: var(--purple);
}

.connect-centered {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.connect-centered h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  color: var(--purple-dark);
}

.connect-centered > p {
  margin: 0 0 26px;
  line-height: 1.75;
}

.connect-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-large);
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender), var(--aqua-light));
  box-shadow: var(--shadow);
}

.connect-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.connect-form-button {
  display: inline-block;
  margin-top: 28px;
}

@media (max-width: 620px) {
  .interest-section {
    padding-inline: 24px;
  }

  .interest-form {
    padding: 28px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .interest-form .button {
    justify-self: stretch;
  }
}

/* =========================
   Contact
========================= */

.contact-section {
  padding: 40px max(6vw, 40px) 100px;
  background: var(--white);
  text-align: center;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  max-width: 700px;
  margin: 0 auto;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  text-align: left;
}

.contact-info-item .feature-icon {
  width: 64px;
  height: 64px;
  border-width: 6px;
  font-size: 1.9rem;
  flex: 0 0 auto;
}

.contact-info-item strong {
  display: block;
  color: var(--purple-dark);
  font-size: 1.05rem;
  transition: color 0.2s ease;
}

.contact-info-item:hover strong {
  color: var(--purple);
}

.contact-info-item small {
  color: var(--aqua);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-cta {
  margin-top: 48px;
}

.support-button {
  min-width: 260px;
}

@media (max-width: 620px) {
  .contact-section {
    padding-inline: 24px;
  }

  .contact-info {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-info-item {
    justify-content: center;
  }
}

/* =========================
   Additional starter sections
========================= */

.placeholder-section {
  padding: 90px max(8vw, 40px);
  text-align: center;
}

.placeholder-section.soft {
  background: linear-gradient(135deg, #fbf5ff, #effcff);
}

.placeholder-section h2 {
  margin: 0 0 16px;
  color: var(--purple-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.placeholder-section p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}


/* =========================
   Subtle motion
========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s ease var(--reveal-delay, 0ms),
    transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-24px);
}

.reveal-right {
  transform: translateX(24px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.hero-content {
  animation: gentle-rise 5.5s ease-in-out infinite alternate;
}

.hero-visual {
  transform: translateY(var(--parallax-y, 0));
  transition: transform 0.12s linear;
}

.rainbow {
  transform: translateY(var(--rainbow-y, 0)) rotate(12deg);
  transition: transform 0.12s linear;
}

.love-badge {
  transform: translateY(var(--badge-y, 0));
  transition: transform 0.12s linear;
}

.photo-frame {
  animation: photo-float 6.5s ease-in-out infinite;
}

.social-links a,
.feature-icon {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.social-links a:hover,
.feature-card:hover .feature-icon {
  transform: translateY(-4px);
}

@keyframes gentle-rise {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -4px;
  }
}

@keyframes photo-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-visual,
  .rainbow,
  .love-badge {
    transform: none !important;
  }
}

/* =========================
   Footer
========================= */

.site-footer {
  background: var(--purple-light);
  color: #5a3488;
}

.footer-brand img {
  max-height: 60px;
  width: auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px max(6vw, 40px) 34px;
}

.footer-brand {
  display: grid;
  gap: 10px;
}

.footer-brand p {
  margin: 0;
  color: #6b3fa0;
  font-size: 0.92rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
}

.footer-nav a {
  color: #5a3488;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #1c8ea3;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.footer-social a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1.5px solid rgba(90, 52, 136, 0.3);
  border-radius: 50%;
  color: #5a3488;
  font-size: 1.25rem;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
}

.footer-bottom {
  padding: 20px max(6vw, 40px);
  border-top: 1px solid rgba(90, 52, 136, 0.16);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #6b3fa0;
  font-size: 0.85rem;
}

.footer-bottom .footer-credit {
  margin-top: 6px;
  font-size: 0.8rem;
  opacity: 0.85;
}

.footer-bottom .footer-credit a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    padding-inline: 28px;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .footer-top {
    padding-inline: 24px;
  }

  .footer-bottom {
    padding-inline: 24px;
  }
}

/* =========================
   Standalone pages (Support the Vision, Thank You)
========================= */

.page-banner {
  padding: 190px max(6vw, 40px) 70px;
  background: linear-gradient(135deg, var(--lavender), var(--aqua-light));
  text-align: center;
}

.page-banner p.section-kicker {
  justify-content: center;
  display: flex;
}

.page-banner h1 {
  margin: 0;
  color: var(--purple-dark);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
}

.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px max(6vw, 24px) 100px;
}

.page-content p {
  margin: 0 0 22px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.page-content .letter-signoff {
  margin-top: 40px;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--purple-dark);
}

.page-disclaimer {
  color: #7a7382;
  font-size: 0.88rem;
  font-style: italic;
}

.vision-quote {
  margin: 34px 0;
  padding: 6px 0 6px 26px;
  border-left: 4px solid var(--purple);
  color: var(--purple-dark);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.6;
}

.page-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--purple);
  font-weight: 600;
  font-size: 0.95rem;
}

.page-content .button {
  margin-top: 10px;
}

.page-content-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.page-content-actions .button {
  margin-top: 0;
}

@media (max-width: 620px) {
  .page-banner {
    padding: 150px 24px 50px;
  }

  .page-content {
    padding: 48px 24px 70px;
  }
}

@media (max-width: 1180px) {
  :root {
    --page-gutter: 48px;
  }

  .site-header {
    align-items: flex-start;
  }

  .brand {
    flex-basis: 300px;
  }

  .main-nav {
    gap: 24px;
    padding: 0 28px;
  }

  .hero {
    grid-template-columns: 1fr 430px;
    padding-inline: 48px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 5.5vw, 5rem);
  }

  .photo-frame {
    width: 370px;
    height: 545px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 28px;
  }

  .site-header {
    position: absolute;
    top: 18px;
    align-items: center;
  }

  .brand {
    flex-basis: 250px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    right: 0;
    display: none;
    width: min(340px, 92vw);
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 18px;
    border-radius: 14px;
  }

  .main-nav a:hover {
    background: var(--lavender);
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 175px 28px 80px;
    text-align: center;
  }

  .hero-content {
    max-width: 760px;
    margin: 0 auto;
  }

  .eyebrow,
  .hero-actions,
  .social-links {
    justify-content: center;
  }

  .hero-status {
    margin-inline: auto;
  }

  .small-line {
    margin-inline: auto;
  }

  .hero-copy {
    margin-inline: auto;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .rainbow {
    left: 5%;
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 14px;
  }

  .brand {
    flex-basis: 205px;
  }

  .brand img {
    max-height: 100px;
  }

  .hero {
    padding-top: 145px;
  }

  .eyebrow {
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.28em;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .hero-actions {
    gap: 14px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

  .hero-visual {
    min-height: 500px;
  }

  .photo-frame {
    width: min(330px, 86vw);
    height: 475px;
  }

  .rainbow {
    top: 110px;
    left: -20px;
    width: 210px;
    height: 210px;
  }

  .rainbow span {
    border-width: 22px;
  }

  .rainbow span:nth-child(2) {
    inset: 24px;
  }

  .rainbow span:nth-child(3) {
    inset: 48px;
  }

  .love-badge {
    right: -2px;
    bottom: -30px;
    width: 155px;
    padding: 20px;
  }

  .love-badge span {
    font-size: 0.6rem;
  }

  .love-badge ion-icon {
    font-size: 2.2rem;
  }

  .love-badge small {
    font-size: 0.58rem;
  }

  .unique-section {
    padding-inline: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 82px 1fr;
  }

  .feature-icon {
    width: 82px;
    height: 82px;
    border-width: 8px;
    font-size: 2.6rem;
  }
}


/* The supplied hero artwork already includes these decorative elements. */
.hero::after,
.hero-decor,
.rainbow {
  display: none;
}

/* Keep the content readable over the artwork without adding a visible panel. */
.hero-content {
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.7);
}

@media (max-width: 900px) {
  .hero {
    background-position: 62% top;
  }
}

@media (max-width: 620px) {
  .hero {
    background-position: 68% top;
    background-size: auto 100%;
  }
}
