:root {
  --bg: #fffaf8;
  --surface: rgba(255, 243, 245, 0.92);
  --surface-strong: #fdf1f2;
  --surface-alt: #fff7f7;
  --ink: #3f2832;
  --ink-soft: #775965;
  --ink-muted: #a48692;
  --line: rgba(168, 115, 139, 0.16);
  --rose: #c52f63;
  --rose-deep: #9d1f4e;
  --rose-soft: #ee7a97;
  --rose-pale: #f9dce3;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(97, 34, 57, 0.08);
  --radius-card: 2rem;
  --radius-soft: 1.5rem;
  --max-width: 1120px;
  --header-height: 92px;
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
  --font-headline: "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-label: "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(241, 203, 216, 0.28), transparent 30%),
    radial-gradient(circle at bottom right, rgba(252, 221, 229, 0.38), transparent 24%),
    linear-gradient(180deg, #fffaf8 0%, #fff5f4 46%, #fffaf8 100%);
  line-height: 1.6;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background-image: radial-gradient(rgba(131, 132, 231, 0.18) 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  opacity: 0.5;
}

body::after {
  inset: auto -16vw -16vh auto;
  width: 44vw;
  height: 44vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 47, 99, 0.12), transparent 68%);
  filter: blur(18px);
  animation: drift-haze 18s ease-in-out infinite;
}

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

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

button {
  font: inherit;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 50;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(197, 47, 99, 0.06);
  transition: background-color 240ms ease, box-shadow 240ms ease, padding 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 0;
  background: rgba(255, 250, 250, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 47, 99, 0.08);
  box-shadow: 0 4px 24px rgba(97, 34, 57, 0.04);
}

.nav-shell {
  width: min(var(--max-width), calc(100% - 1.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

.brand,
.footer-brand {
  font-family: var(--font-headline);
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #b04a6e;
}

.brand {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  font-weight: 900;
  transition: transform 220ms ease, color 220ms ease;
}

@media (min-width: 768px) {
  .brand {
    font-size: 1.6rem;
  }
}

.brand:hover {
  color: var(--rose);
  transform: translateY(-1px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
  margin: 0 auto;
}

.nav-link {
  position: relative;
  font-family: var(--font-label);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  transition: color 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(197, 47, 99, 0.4), var(--rose), rgba(197, 47, 99, 0.4));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms var(--ease-spring);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--rose);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  padding: 0.82rem 1.45rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition:
    transform 220ms var(--ease-spring),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.nav-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.52), transparent 75%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
  z-index: -1;
}

.nav-cta {
  color: var(--white);
  background: linear-gradient(135deg, #bc3c65, #9c244f);
  box-shadow: 0 12px 24px rgba(188, 60, 101, 0.22);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-3px);
}

.nav-cta:hover::before,
.button:hover::before {
  transform: translateX(120%);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(197, 47, 99, 0.1);
  padding: 0;
  color: var(--ink);
  position: relative;
  transition: transform 220ms ease, background-color 220ms ease;
}

.menu-toggle:hover {
  transform: rotate(4deg) scale(1.03);
  background: rgba(197, 47, 99, 0.16);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 16px;
}

.menu-toggle span:nth-child(2) {
  top: 22px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateX(-50%) translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  width: min(var(--max-width), calc(100% - 1.5rem));
  margin: 0.75rem auto 0;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.4rem;
  background: rgba(255, 247, 247, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(97, 34, 57, 0.1);
}

.mobile-nav.is-open {
  display: flex;
  animation: mobile-nav-in 320ms var(--ease-spring);
}

.mobile-nav-link {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  font-family: var(--font-label);
  font-weight: 700;
  color: var(--ink-soft);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mobile-nav-link:hover {
  background: rgba(197, 47, 99, 0.08);
  color: var(--rose);
  transform: translateX(4px);
}

main {
  padding: 2.2rem 0 0;
}

.section-shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - var(--header-height)));
  padding-top: 1.75rem;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  isolation: isolate;
}

.hero-aurora {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb,
.petal {
  position: absolute;
  pointer-events: none;
}

.hero-orb {
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(4px);
  opacity: 0.8;
  animation: hero-orb-drift 13s ease-in-out infinite;
}

.hero-orb-one {
  top: 12%;
  left: 7%;
  width: min(24vw, 280px);
  height: min(24vw, 280px);
  background: radial-gradient(circle, rgba(255, 210, 221, 0.92), transparent 68%);
}

.hero-orb-two {
  top: 8%;
  right: 10%;
  width: min(19vw, 220px);
  height: min(19vw, 220px);
  background: radial-gradient(circle, rgba(255, 238, 205, 0.92), transparent 70%);
  animation-delay: -4s;
}

.hero-orb-three {
  bottom: 10%;
  left: 50%;
  width: min(14vw, 170px);
  height: min(14vw, 170px);
  background: radial-gradient(circle, rgba(212, 239, 222, 0.85), transparent 72%);
  animation-delay: -8s;
}

.petal {
  width: 34px;
  height: 22px;
  border-radius: 75% 10% 75% 10%;
  background: linear-gradient(145deg, rgba(255, 224, 233, 0.95), rgba(226, 111, 149, 0.92));
  box-shadow: 0 10px 18px rgba(197, 47, 99, 0.12);
  opacity: 0;
  animation: petal-drift 12s linear infinite;
}

.petal-one {
  left: 12%;
  top: 18%;
  animation-delay: -1.5s;
}

.petal-two {
  right: 18%;
  top: 10%;
  animation-delay: -4.5s;
}

.petal-three {
  left: 30%;
  bottom: 14%;
  animation-delay: -7s;
}

.petal-four {
  right: 28%;
  bottom: 8%;
  animation-delay: -9.4s;
}

.petal-five {
  left: 45%;
  top: 5%;
  animation-delay: -2s;
}

.petal-six {
  right: 40%;
  top: 25%;
  animation-delay: -5.2s;
}

.petal-seven {
  left: 5%;
  bottom: 35%;
  animation-delay: -8.1s;
}

.petal-eight {
  right: 5%;
  bottom: 40%;
  animation-delay: -3.3s;
}

.petal-nine {
  left: 60%;
  top: 40%;
  animation-delay: -10.5s;
}

.petal-ten {
  right: 60%;
  bottom: 25%;
  animation-delay: -6.8s;
}

.petal-eleven {
  left: 20%;
  top: 50%;
  animation-delay: -0.5s;
}

.petal-twelve {
  right: 15%;
  top: 60%;
  animation-delay: -11.2s;
}

.hero-card {
  position: relative;
  z-index: 5;
  max-width: 860px;
  margin: 0 auto;
}

.eyebrow,
.contact-kicker {
  margin: 0 0 1rem;
  font-family: var(--font-label);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #775965;
  font-weight: 800;
}

.hero h1,
.manifesto-copy h2,
.foundations-header h2,
.contact-header h2,
.cta-card h2 {
  margin: 0;
  font-family: var(--font-headline);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  line-height: 0.88;
}

.hero-title-line,
.hero h1 span,
.manifesto-copy h2 span {
  display: block;
}

.hero h1 em,
.manifesto-copy h2 em,
.cta-card h2 em {
  display: inline-block;
  font-style: italic;
  color: var(--rose);
}

.hero-card .eyebrow,
.hero-card .hero-title-line,
.hero-card .hero-copy {
  opacity: 0;
  transform: translateY(34px);
}

.hero-card.is-visible .eyebrow {
  animation: text-rise 700ms var(--ease-spring) forwards 120ms;
}

.hero-card.is-visible .hero-title-line:nth-child(1) {
  animation: text-rise 900ms var(--ease-spring) forwards 200ms;
}

.hero-card.is-visible .hero-title-line:nth-child(2) {
  animation: text-rise 900ms var(--ease-spring) forwards 320ms;
}

.hero-card.is-visible .hero-title-line:nth-child(3) {
  animation: text-rise 900ms var(--ease-spring) forwards 440ms;
}

.hero-card.is-visible .hero-copy {
  animation: text-rise 820ms var(--ease-spring) forwards 560ms;
}

.hero-copy {
  max-width: 580px;
  margin: 1.5rem auto 0;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: var(--ink);
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(255,255,255,0.8);
}

.hero-mark {
  position: relative;
  z-index: 2;
  width: min(92vw, 920px);
  max-width: 100%;
  margin: -10rem auto 0;
  overflow: visible;
}

.hero-mark::before {
  content: none;
}

.flower-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.flower-stage::before,
.flower-stage::after {
  content: none;
}

.flower-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 0.72;
}

.flower-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  opacity: 0.85;
}

.flower-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0.9;
  transform:
    perspective(1200px)
    rotateX(var(--flower-tilt-x, 0deg))
    rotateY(var(--flower-tilt-y, 0deg))
    scale(var(--flower-scale, 1));
  transform-style: preserve-3d;
  transition: transform 420ms var(--ease-spring), filter 420ms ease;
}

.flower-container::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.58), rgba(255, 236, 241, 0.12) 68%, transparent 72%);
  filter: blur(10px);
  z-index: -1;
}

.flower-float {
  display: block;
  width: 100%;
  animation: flower-float 8.8s ease-in-out infinite;
  will-change: transform;
}

.flower-orbit {
  position: relative;
  display: block;
  width: 100%;
  transform-origin: center;
  animation: flower-spin 34s linear infinite;
  will-change: transform;
}

.flower-image {
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 26px 36px rgba(205, 82, 120, 0.14));
  transition: filter 420ms ease;
}

.flower-container:hover,
.flower-container:focus-visible,
.flower-stage.is-active .flower-container {
  --flower-scale: 1.03;
}

.flower-container:hover .flower-float,
.flower-container:focus-visible .flower-float {
  animation-duration: 7.4s;
}

.flower-container:hover .flower-orbit,
.flower-container:focus-visible .flower-orbit {
  animation-duration: 20s;
}

.flower-stage.is-active .flower-float {
  animation-duration: 6.2s;
}

.flower-stage.is-active .flower-orbit {
  animation-duration: 11s;
}

.flower-container:hover .flower-image,
.flower-container:focus-visible .flower-image,
.flower-stage.is-active .flower-image {
  filter: drop-shadow(0 34px 48px rgba(205, 82, 120, 0.22)) brightness(1.04);
}

.flower-container:focus-visible {
  outline: 2px solid rgba(197, 47, 99, 0.38);
  outline-offset: 10px;
  border-radius: 50%;
}

.flower-ripple {
  position: absolute;
  width: 68px;
  height: 68px;
  margin-left: -34px;
  margin-top: -34px;
  border-radius: 999px;
  border: 1px solid rgba(252, 213, 222, 0.9);
  box-shadow: 0 0 0 10px rgba(255, 238, 243, 0.28);
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  animation: flower-ripple 760ms ease-out forwards;
}

.grant-section {
  padding: 0.75rem 0 4rem;
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 0.9rem 0;
  border-radius: 999px;
  border: 1px solid rgba(197, 47, 99, 0.08);
  background: linear-gradient(180deg, rgba(255, 250, 250, 0.9), rgba(255, 245, 247, 0.76));
  box-shadow: 0 18px 40px rgba(97, 34, 57, 0.06);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 84px;
  z-index: 1;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), rgba(255, 250, 248, 0));
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg), rgba(255, 250, 248, 0));
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  padding-right: 0.95rem;
  flex-shrink: 0;
}

.marquee-group span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  padding: 0.66rem 1.08rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(197, 47, 99, 0.08);
  box-shadow: 0 10px 22px rgba(97, 34, 57, 0.05);
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.marquee-group span:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--rose-deep);
  border-color: rgba(197, 47, 99, 0.16);
}

.manifesto,
.foundations,
.quote,
.contact,
.cta {
  padding-bottom: 3.75rem;
}

.manifesto-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(1.2rem, 2vw, 2.5rem);
  align-items: center;
}

.manifesto-media {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 2.4rem 2.4rem 5.5rem 2rem;
  box-shadow: 0 28px 56px rgba(97, 34, 57, 0.12);
}

.manifesto-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(0deg, rgba(197, 47, 99, 0.04), transparent 32%);
  pointer-events: none;
}

.manifesto-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.2s ease, filter 600ms ease;
}

.manifesto-media.is-visible img,
.manifesto-media:hover img {
  transform: scale(1.01);
  filter: saturate(1.04);
}

.manifesto-copy {
  position: relative;
  align-self: center;
  padding: clamp(0.5rem, 2vw, 1.25rem);
}

.manifesto-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto -0.6rem;
  width: 2px;
  height: 110px;
  background: linear-gradient(180deg, rgba(197, 47, 99, 0), rgba(197, 47, 99, 0.6), rgba(197, 47, 99, 0));
  transform: scaleY(0.3);
  transform-origin: top;
  opacity: 0;
  transition: transform 620ms var(--ease-spring), opacity 620ms ease;
}

.manifesto-copy.is-visible::before {
  transform: scaleY(1);
  opacity: 1;
}

.manifesto-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.96;
}

.manifesto-copy p {
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  max-width: 34ch;
}

.manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.6rem;
  color: var(--rose);
  font-weight: 800;
}

.manifesto-link::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  transition: width 220ms ease, transform 220ms ease;
}

.manifesto-link:hover::before {
  width: 3.2rem;
  transform: translateX(4px);
}

.foundations-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: rgba(255, 243, 244, 0.94);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.foundations-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent);
  pointer-events: none;
}

.foundations-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.foundations-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.foundations-header p {
  margin: 0.65rem 0 0;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ba8697;
}

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

.foundation-card,
.location-card,
.cta-card {
  --pointer-x: 50%;
  --pointer-y: 28%;
}

.foundation-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: 1.7rem;
  background: rgba(255, 249, 249, 0.78);
  border: 1px solid rgba(197, 47, 99, 0.08);
  text-align: center;
  box-shadow: 0 16px 28px rgba(112, 50, 73, 0.05);
  transition:
    transform 360ms var(--ease-spring),
    box-shadow 360ms ease,
    border-color 220ms ease;
}

.foundation-card::before,
.location-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.foundation-card::before,
.location-card::before {
  background: radial-gradient(220px circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.82), transparent 64%);
  opacity: 0;
  transition: opacity 280ms ease;
}

.foundation-card:hover,
.foundation-card.is-visible:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 60px rgba(197, 47, 99, 0.15), 0 0 40px rgba(238, 122, 151, 0.2);
  border-color: rgba(197, 47, 99, 0.3);
  z-index: 10;
}

.foundation-card:hover::before {
  opacity: 1;
}

.foundation-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #d06588;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(208, 101, 136, 0.18);
  box-shadow: 0 14px 24px rgba(208, 101, 136, 0.12);
}

.foundation-card.is-visible .foundation-icon {
  animation: icon-breathe 4.2s ease-in-out infinite;
}

.foundation-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.foundation-card h3 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.foundation-card p {
  margin: 0.95rem auto 1.3rem;
  max-width: 29ch;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.foundation-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 1rem;
}

.foundation-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.05);
  transition: transform 1s ease, filter 600ms ease;
}

.foundation-card.is-visible .foundation-media img,
.foundation-card:hover .foundation-media img {
  filter: grayscale(0.16) saturate(1.08);
  transform: scale(1);
}

.quote-card {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 3.25rem 2rem 0;
  text-align: center;
  transition: transform 500ms var(--ease-spring), filter 500ms ease;
  cursor: default;
}

.quote-card:hover {
  transform: scale(1.02) translateY(-4px);
  filter: drop-shadow(0 20px 40px rgba(197, 47, 99, 0.08));
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: 0 14% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 47, 99, 0.4), transparent);
  animation: quote-line 5s ease-in-out infinite;
}

.quote-mark {
  margin: 0 0 1rem;
  color: var(--rose-pale);
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 800;
  animation: quote-mark-float 4.5s ease-in-out infinite;
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.quote-attribution {
  margin: 1.25rem 0 0;
  font-family: var(--font-label);
  color: #c16c88;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-panel {
  padding: 0;
  background: transparent;
  border-radius: 0;
  color: var(--ink);
  box-shadow: none;
}

.contact-header {
  max-width: 700px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.contact-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  line-height: 1;
}

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

.location-card {
  position: relative;
  overflow: hidden;
  padding: 0.85rem 0.85rem 1.2rem;
  background: rgba(255, 250, 250, 0.72);
  border: 1px solid rgba(197, 47, 99, 0.08);
  border-radius: 1.65rem;
  box-shadow: 0 18px 34px rgba(97, 34, 57, 0.06);
  transition:
    transform 500ms var(--ease-spring),
    box-shadow 500ms ease,
    border-color 500ms ease;
}

.location-card:hover {
  transform: translateY(-12px) scale(1.03) rotate(-1deg);
  box-shadow: 0 30px 50px rgba(197, 47, 99, 0.15);
  border-color: rgba(197, 47, 99, 0.25);
  z-index: 10;
}

.location-card:hover::before {
  opacity: 1;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1.15 / 1;
  background: #12172a;
  box-shadow: 0 22px 44px rgba(17, 24, 39, 0.12);
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 25%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.18));
  pointer-events: none;
}

.map-frame a {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #5c6992;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.08) contrast(1.02);
  transition: transform 900ms ease, filter 600ms ease;
}

.location-card:hover .map-frame iframe {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.06) saturate(1.08);
}

.location-copy {
  text-align: center;
  padding: 1.15rem 0.2rem 0;
}

.location-copy h3 {
  margin: 0;
  font-family: var(--font-label);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.location-copy p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(2.3rem, 5vw, 3.2rem);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 38%),
    linear-gradient(145deg, rgba(255, 248, 249, 0.94), rgba(255, 236, 240, 0.82));
  color: var(--ink);
  text-align: center;
  border: 1px solid rgba(197, 47, 99, 0.08);
  box-shadow: 0 28px 54px rgba(97, 34, 57, 0.1);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: -45%;
  background: conic-gradient(from 0deg, transparent, rgba(197, 47, 99, 0.09), transparent 32%, rgba(232, 138, 166, 0.18), transparent 58%);
  animation: cta-aura-rotate 14s linear infinite;
  pointer-events: none;
}

.cta-card::after {
  background: radial-gradient(280px circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.74), transparent 62%);
  opacity: 0.55;
}

.cta-card h2,
.cta-card p,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-card h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 0.95;
}

.cta-card p {
  max-width: 550px;
  margin: 1.15rem auto 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button-light {
  background: linear-gradient(135deg, #bc3c65, #9c244f);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(188, 60, 101, 0.18);
}

.button-outline {
  border: 1px solid rgba(197, 47, 99, 0.18);
  color: var(--rose-deep);
  background: rgba(255, 255, 255, 0.5);
}

.button-outline:hover {
  border-color: rgba(197, 47, 99, 0.36);
  box-shadow: 0 16px 30px rgba(188, 60, 101, 0.12);
}

.site-footer {
  padding: 0 1rem 2.25rem;
}

.footer-shell {
  width: min(var(--max-width), calc(100% - 1.5rem));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(197, 47, 99, 0.1);
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-copy {
  margin: 0;
  text-align: right;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 28px;
  --reveal-scale: 1;
  --reveal-blur: 0px;
  --parallax-shift: 0px;
  opacity: 0;
  transform: translate3d(var(--reveal-x), calc(var(--reveal-y) + var(--parallax-shift)), 0) scale(var(--reveal-scale));
  filter: blur(var(--reveal-blur));
  transition:
    opacity 820ms var(--ease-spring),
    transform 820ms var(--ease-spring),
    filter 820ms ease;
  will-change: transform, opacity, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-shift), 0) scale(1);
  filter: blur(0);
}

[data-parallax].reveal.is-visible {
  transition-duration: 820ms, 220ms, 820ms;
  transition-timing-function: var(--ease-spring), linear, ease;
}

.reveal-left {
  --reveal-x: -42px;
  --reveal-y: 12px;
  --reveal-scale: 0.96;
}

.reveal-right {
  --reveal-x: 42px;
  --reveal-y: 12px;
  --reveal-scale: 0.96;
}

.reveal-pop {
  --reveal-y: 16px;
  --reveal-scale: 0.92;
}

.reveal-soft {
  --reveal-blur: 12px;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes drift-haze {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-3vw, -2vh, 0) scale(1.08);
  }
}

@keyframes hero-orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  33% {
    transform: translate3d(18px, -14px, 0) scale(1.05);
  }

  66% {
    transform: translate3d(-12px, 16px, 0) scale(0.96);
  }
}

@keyframes petal-drift {
  0% {
    transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.85);
    opacity: 0;
  }

  10%,
  82% {
    opacity: 0.72;
  }

  100% {
    transform: translate3d(26px, 180px, 0) rotate(110deg) scale(1.14);
    opacity: 0;
  }
}

@keyframes text-rise {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flower-float {
  0%,
  100% {
    transform: translateY(6px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes flower-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes flower-ripple {
  0% {
    transform: scale(0.36);
    opacity: 0.58;
  }

  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

@keyframes halo-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes halo-breathe {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes icon-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 14px 24px rgba(208, 101, 136, 0.12);
  }

  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 18px 28px rgba(208, 101, 136, 0.18);
  }
}

@keyframes quote-line {
  0%,
  100% {
    opacity: 0.48;
    transform: scaleX(0.78);
  }

  50% {
    opacity: 0.92;
    transform: scaleX(1);
  }
}

@keyframes quote-mark-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes cta-aura-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes mobile-nav-in {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

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

  .manifesto-card,
  .foundations-grid,
  .contact-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 0.75rem;
  }

  .hero-aurora {
    inset-inline: 0;
    height: 360px;
  }

  .manifesto-media img {
    min-height: 360px;
  }

  .footer-shell {
    display: grid;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
  
  .manifesto-copy {
    margin-top: 2rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 0.75rem;
  }

  .section-shell {
    width: min(var(--max-width), calc(100% - 1.2rem));
  }

  .hero {
    padding-top: 1rem;
  }

  .hero-mark {
    width: min(100vw, 720px);
    margin-top: -2rem;
  }

  .flower-stage {
    padding-inline: 1rem;
  }

  .hero-card {
    margin-bottom: 2rem;
  }

  .foundations-panel,
  .cta-card {
    border-radius: 1.75rem;
  }

  .quote-card {
    padding-inline: 1rem;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    width: calc(100% - 0.5rem);
    padding: 0.85rem 1rem;
  }

  .brand {
    font-size: 1.08rem;
  }

  main {
    padding-top: 1.5rem;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

  .hero-card {
    margin-bottom: 1rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .flower-stage {
    padding-inline: 0;
  }

  .foundations-header h2,
  .contact-header h2,
  .cta-card h2 {
    line-height: 1.02;
  }

  .manifesto-copy h2 {
    font-size: 2rem;
  }

  .quote-card blockquote {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .marquee-group {
    gap: 0.7rem;
    padding-right: 0.7rem;
  }

  .marquee-group span {
    padding: 0.58rem 0.86rem;
    font-size: 0.74rem;
  }

  .location-card {
    padding: 0.7rem 0.7rem 1rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-card .eyebrow,
  .hero-card .hero-title-line,
  .hero-card .hero-copy {
    opacity: 1;
    transform: none;
  }
}

@keyframes fall-down {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes float-down {
  0% { top: -10%; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { top: 110%; opacity: 0; }
}

@keyframes float-up {
  0% { bottom: -10%; opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { bottom: 110%; opacity: 0; }
}
