@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,ital,wght@6..96,400;6..96,500;6..96,600;6..96,700;6..96,400&family=Manrope:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap");

:root {
  --cream: #f7f5f2;
  --cream-deep: #ebe4da;
  --sage: #b7ccb1;
  --sage-deep: #74866f;
  --gold: #d6b47c;
  --ink: #2b211d;
  --action-ink: #33241f;
  --ink-hover: #49332b;
  --muted: #69665f;
  --wine: #521f2f;
  --event-ink: #121010;
  --event-paper: #efe7dc;
  --line: rgba(43, 33, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(214, 180, 124, 0.24), transparent 22%),
    var(--cream);
  animation: intro-away 0.65s 1.7s forwards cubic-bezier(0.7, 0, 0.3, 1);
  pointer-events: none;
}

.brand-intro img {
  width: clamp(130px, 18vw, 245px);
  opacity: 0;
  transform: scale(0.72) rotate(-7deg);
  clip-path: circle(0% at 50% 50%);
  animation: flower-build 1.25s 0.1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brand-intro p {
  position: absolute;
  top: calc(50% + clamp(95px, 12vw, 145px));
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.38em;
  opacity: 0;
  animation: intro-word 0.45s 0.95s forwards;
}

.brand-intro__halo {
  position: absolute;
  width: clamp(180px, 25vw, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(214, 180, 124, 0.5);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  animation: halo-build 1.2s 0.18s forwards ease-out;
}

@keyframes flower-build {
  0% {
    opacity: 0;
    transform: scale(0.72) rotate(-7deg);
    clip-path: circle(0% at 50% 50%);
  }
  55% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
    clip-path: circle(75% at 50% 50%);
  }
}

@keyframes halo-build {
  30% { opacity: 0.65; }
  100% { opacity: 0; transform: scale(1.15); }
}

@keyframes intro-word {
  to { opacity: 0.7; transform: translateY(-4px); }
}

@keyframes intro-away {
  to { opacity: 0; visibility: hidden; transform: scale(1.025); }
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  width: min(calc(100% - 28px), 1380px);
  height: 72px;
  padding: 0 18px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(247, 245, 242, 0.72);
  box-shadow: 0 10px 38px rgba(52, 46, 37, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  width: 167px;
  height: 58px;
  padding: 0;
  border: 0;
  background: none;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav > button {
  padding: 6px 0;
  border: 0;
  background: none;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.67;
  transition: opacity 0.2s;
}

.main-nav > button:hover {
  opacity: 1;
}

.header-contact {
  padding: 11px 16px;
  border-radius: 12px;
  color: white;
  background: var(--action-ink);
  font-size: 11px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  background: var(--ink-hover);
  outline: none;
  transform: translateY(-1px);
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
}

.language-switch button {
  padding: 4px;
  border: 0;
  background: none;
  opacity: 0.35;
}

.language-switch button.active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.menu-button {
  display: none;
  border: 0;
  background: none;
  font-size: 11px;
  font-weight: 700;
}

.section-shell {
  width: min(100%, 1500px);
  margin: 0 auto;
  padding: clamp(88px, 10vw, 150px) clamp(22px, 8vw, 120px);
}

.eyebrow {
  margin: 0 0 20px;
  color: #907244;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 155px clamp(22px, 10vw, 155px) 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.58), transparent 48%),
    var(--cream);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 70vw);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font: 500 clamp(46px, 6.3vw, 96px) / 0.96 "Playfair Display", Georgia, serif;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 560px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 0;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(30, 30, 30, 0.12);
}

.button--dark {
  color: white;
  background: var(--action-ink);
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--ink-hover);
  outline: none;
}

.text-link {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: none;
  font-size: 11px;
  font-weight: 700;
}

.text-link span {
  margin-left: 8px;
}

.hero-flower {
  position: absolute;
  z-index: 0;
  right: -3vw;
  top: 10vh;
  width: min(46vw, 630px);
  opacity: 0.1;
  transform: rotate(8deg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.hero-glow--one {
  right: 7vw;
  top: 14vh;
  width: 35vw;
  aspect-ratio: 1;
  background: rgba(183, 204, 177, 0.36);
}

.hero-glow--two {
  right: 23vw;
  bottom: -12vw;
  width: 30vw;
  aspect-ratio: 1;
  background: rgba(214, 180, 124, 0.2);
}

.hero-orbit {
  position: absolute;
  right: 7vw;
  bottom: 55px;
  z-index: 2;
  display: flex;
  gap: 16px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.hero-orbit span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.paths {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(135deg, #e8e1d8, #f1ede6);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading h2 {
  max-width: 850px;
  margin: 0;
  font: 500 clamp(38px, 4.5vw, 65px) / 1.02 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
}

.path-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.glass-card {
  min-height: 315px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 18px 50px rgba(87, 72, 52, 0.08);
  backdrop-filter: blur(15px);
  transition: transform 0.25s, background 0.25s;
}

.glass-card:nth-child(2) {
  background: rgba(214, 180, 124, 0.25);
}

.glass-card:nth-child(3) {
  background: rgba(183, 204, 177, 0.35);
}

.glass-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.68);
}

.card-number {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.55;
}

.glass-card h3 {
  margin: 0 0 12px;
  font: 500 26px / 1.1 "Playfair Display", Georgia, serif;
}

.glass-card p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.glass-card b {
  font-size: 10px;
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
  background: var(--cream);
}

.about h2 {
  margin: 0;
  font: 500 clamp(38px, 4.5vw, 65px) / 1.03 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
}

.about-copy > p:last-child {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.process {
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 50px rgba(87, 72, 52, 0.06);
  backdrop-filter: blur(12px);
}

.process div {
  min-height: 80px;
  padding: 18px 21px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
}

.process div + div {
  border-top: 1px solid var(--line);
}

.process span {
  color: #95774b;
  font-size: 9px;
  font-weight: 700;
}

.process strong {
  font: 500 23px "Playfair Display", Georgia, serif;
}

.event {
  position: relative;
  overflow: hidden;
  color: var(--event-paper);
  background: var(--event-ink);
  font-family: "Bodoni Moda", "Times New Roman", serif;
}

.event-topline {
  padding: 30px clamp(22px, 5vw, 78px);
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(239, 231, 220, 0.18);
  color: var(--gold);
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: 0.18em;
}

.event-hero {
  position: relative;
  min-height: 850px;
  padding: clamp(105px, 12vw, 175px) clamp(22px, 8vw, 125px) 75px;
  background:
    radial-gradient(circle at 78% 26%, rgba(99, 38, 57, 0.82), transparent 24%),
    linear-gradient(118deg, #111 0%, #181313 60%, #26161b 100%);
}

.event-title {
  position: relative;
  z-index: 3;
  opacity: 0;
  transform: translateY(32px);
}

.event.is-visible .event-title {
  animation: event-copy-in 0.85s 0.65s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.event-title p {
  margin: 0 0 28px;
  color: var(--gold);
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: 0.2em;
}

.event-title h2 {
  margin: 0;
  font: 500 clamp(80px, 12.5vw, 180px) / 0.67 "Bodoni Moda", "Times New Roman", serif;
  letter-spacing: -0.075em;
}

.event-title h2 em {
  display: block;
  margin-left: clamp(18px, 9vw, 130px);
  color: var(--gold);
  font-weight: 400;
}

.event-date {
  position: absolute;
  right: clamp(22px, 8vw, 125px);
  top: 45%;
  z-index: 4;
  max-width: 245px;
  opacity: 0;
}

.event.is-visible .event-date {
  animation: event-copy-in 0.75s 0.92s forwards;
}

.event-date strong,
.event-date span {
  display: block;
}

.event-date strong {
  font: 600 15px "Manrope", sans-serif;
}

.event-date span {
  margin-top: 8px;
  color: rgba(239, 231, 220, 0.65);
  font: 500 9px / 1.55 "Manrope", sans-serif;
  letter-spacing: 0.08em;
}

.event-intro {
  position: relative;
  z-index: 3;
  max-width: 650px;
  margin: 65px 0 28px;
  font-size: clamp(22px, 2.1vw, 31px);
  line-height: 1.25;
  opacity: 0;
}

.event.is-visible .event-intro {
  animation: event-copy-in 0.75s 1.05s forwards;
}

.event-button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  padding: 14px 18px;
  border: 1px solid var(--event-paper);
  border-radius: 12px;
  color: var(--event-paper);
  font: 600 10px "Manrope", sans-serif;
  opacity: 0;
}

.event.is-visible .event-button {
  animation: event-copy-in 0.65s 1.18s forwards;
}

.event-editorial {
  min-height: 620px;
  padding: 0 clamp(22px, 8vw, 125px) clamp(85px, 10vw, 140px);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(50px, 9vw, 135px);
  align-items: end;
  background:
    linear-gradient(180deg, var(--event-ink), #1d1716);
}

.editorial-placeholder {
  position: relative;
  aspect-ratio: 0.78;
  max-width: 470px;
  padding: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  border: 1px solid rgba(239, 231, 220, 0.38);
  border-radius: 4px;
  background:
    linear-gradient(140deg, transparent 25%, rgba(214, 180, 124, 0.09)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(239, 231, 220, 0.03) 28px 29px);
  color: rgba(239, 231, 220, 0.66);
  font: 600 8px "Manrope", sans-serif;
  letter-spacing: 0.13em;
}

.editorial-placeholder::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -24%;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--wine);
}

.editorial-placeholder b {
  font-size: 65px;
  font-weight: 400;
}

.editorial-copy {
  padding-bottom: 55px;
}

.editorial-copy h3,
.tiers-wrap > h3 {
  margin: 0;
  font-size: clamp(45px, 5.3vw, 78px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.editorial-copy p {
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(239, 231, 220, 0.67);
  font: 400 14px / 1.7 "Manrope", sans-serif;
}

.season-leaves {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
}

.season-leaves i {
  position: absolute;
  top: -12%;
  width: 22px;
  height: 38px;
  border-radius: 100% 0 100% 0;
  background: var(--sage);
  opacity: 0;
  font-style: normal;
  box-shadow: inset 1px -1px 0 rgba(255, 255, 255, 0.25);
}

.event.is-visible .season-leaves i {
  animation: leaf-fall 1.35s forwards cubic-bezier(0.2, 0.7, 0.2, 1);
}

.leaf-a { left: 7%; width: 20px !important; height: 34px !important; animation-delay: 0.05s !important; }
.leaf-b { left: 20%; width: 29px !important; height: 50px !important; background: var(--sage) !important; animation-delay: 0.2s !important; }
.leaf-c { left: 32%; width: 16px !important; height: 29px !important; background: #9e593f !important; animation-delay: 0.1s !important; }
.leaf-d { left: 46%; width: 31px !important; height: 54px !important; background: var(--gold) !important; animation-delay: 0.24s !important; }
.leaf-e { left: 60%; width: 24px !important; height: 43px !important; background: #7f2e42 !important; animation-delay: 0.02s !important; }
.leaf-f { left: 72%; width: 18px !important; height: 33px !important; background: #e5ddd1 !important; animation-delay: 0.28s !important; }
.leaf-g { left: 85%; width: 27px !important; height: 47px !important; animation-delay: 0.16s !important; }
.leaf-h { left: 94%; width: 15px !important; height: 28px !important; background: #b96f43 !important; animation-delay: 0.08s !important; }

@keyframes leaf-fall {
  0% { opacity: 0; transform: translate3d(0, -50px, 0) rotate(0); }
  18% { opacity: 0.85; }
  75% { opacity: 0.6; }
  100% { opacity: 0; transform: translate3d(-8vw, 82vh, 0) rotate(290deg); }
}

@keyframes event-copy-in {
  to { opacity: 1; transform: translateY(0); }
}

.partners-call,
.tiers-wrap {
  padding: clamp(85px, 10vw, 145px) clamp(22px, 8vw, 125px);
  border-top: 1px solid rgba(239, 231, 220, 0.17);
}

.event-small-label {
  margin: 0 0 45px;
  color: var(--gold);
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: 0.18em;
}

.partner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.partner-cards a {
  min-height: 280px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(239, 231, 220, 0.2);
  background: rgba(239, 231, 220, 0.035);
  transition: background 0.2s;
}

.partner-cards a:first-child {
  border-radius: 14px 0 0 14px;
}

.partner-cards a:last-child {
  border-radius: 0 14px 14px 0;
}

.partner-cards a:hover {
  background: rgba(239, 231, 220, 0.08);
}

.partner-cards span {
  color: var(--gold);
  font: 600 9px "Manrope", sans-serif;
}

.partner-cards h4 {
  margin: auto 0 12px;
  font-size: 31px;
  font-weight: 400;
}

.partner-cards p {
  max-width: 270px;
  margin: 0 0 28px;
  color: rgba(239, 231, 220, 0.62);
  font: 400 12px / 1.5 "Manrope", sans-serif;
}

.partner-cards b {
  font: 600 10px "Manrope", sans-serif;
}

.tiers-wrap {
  background: #21191a;
}

.tiers-wrap > h3 {
  max-width: 780px;
}

.tiers {
  margin: 55px 0 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.tiers article {
  min-height: 265px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(239, 231, 220, 0.23);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.tiers article.featured {
  color: var(--event-ink);
  background: var(--gold);
}

.tiers small {
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: 0.1em;
}

.tiers strong {
  margin: 30px 0 auto;
  font-size: clamp(45px, 5vw, 67px);
  font-weight: 400;
}

.tiers p {
  margin: 20px 0 0;
  color: rgba(239, 231, 220, 0.63);
  font: 400 12px / 1.5 "Manrope", sans-serif;
}

.tiers .featured p {
  color: rgba(18, 16, 16, 0.72);
}

.event-button--outline {
  opacity: 1;
}

.impact {
  background: var(--cream);
}

.impact-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.impact-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 50px rgba(87, 72, 52, 0.06);
}

.impact-grid span {
  color: #987a4d;
  font-size: 9px;
  font-weight: 700;
}

.impact-grid h3 {
  margin: 65px 0 10px;
  font: 500 22px "Playfair Display", Georgia, serif;
}

.impact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.founder {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: center;
  background:
    radial-gradient(circle at 85% 25%, rgba(183, 204, 177, 0.32), transparent 25%),
    var(--cream-deep);
}

.founder-photo {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 25px 70px rgba(59, 44, 28, 0.13);
}

.founder-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.founder-photo span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 9px;
  color: white;
  background: rgba(20, 18, 15, 0.28);
  backdrop-filter: blur(12px);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.founder-content h2 {
  margin: 0;
  font: 500 clamp(52px, 6.4vw, 93px) / 0.83 "Playfair Display", Georgia, serif;
  letter-spacing: -0.07em;
}

.founder-content h2 em {
  display: block;
  margin-left: 12%;
  color: #a67f45;
  font-weight: 500;
}

.founder-content > p:last-of-type {
  max-width: 490px;
  margin: 35px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.founder-content blockquote {
  max-width: 540px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  font: italic 24px / 1.32 "Playfair Display", Georgia, serif;
}

.closing {
  text-align: center;
  background: var(--cream);
}

.closing img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.closing h2 {
  max-width: 850px;
  margin: 25px auto 20px;
  font: 500 clamp(43px, 5.3vw, 76px) / 0.98 "Playfair Display", Georgia, serif;
  letter-spacing: -0.055em;
}

.closing > p {
  max-width: 610px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer {
  margin: 0 14px 14px;
  padding: 35px clamp(22px, 5vw, 70px);
  display: grid;
  grid-template-columns: 190px minmax(220px, 1fr) minmax(280px, auto);
  column-gap: clamp(30px, 5vw, 70px);
  row-gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.52), rgba(183, 204, 177, 0.22)),
    #e8e1d7;
}

.footer > img {
  width: 170px;
  height: 105px;
  object-fit: contain;
}

.footer > p {
  margin: 0;
  color: var(--muted);
  font: 500 20px "Playfair Display", Georgia, serif;
}

.footer-contact {
  justify-self: end;
}

.footer-contact > span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  line-height: 1.4;
}

.footer-links a,
.footer-meta a {
  text-underline-offset: 4px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--wine);
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(30, 30, 30, 0.13);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer-meta nav {
  display: flex;
  gap: 22px;
  font-weight: 700;
}

.footer-meta small {
  font: inherit;
}

@media (max-width: 900px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    height: 64px;
  }

  .brand {
    width: 142px;
    height: 50px;
  }

  .menu-button {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 22px;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 17px;
    background: rgba(247, 245, 242, 0.95);
    box-shadow: 0 18px 45px rgba(52, 46, 37, 0.12);
    backdrop-filter: blur(20px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > button {
    font-size: 13px;
  }

  .hero {
    min-height: 880px;
    padding-top: 140px;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(55px, 15vw, 84px);
  }

  .hero-flower {
    top: auto;
    right: -15vw;
    bottom: 75px;
    width: 75vw;
  }

  .hero-orbit {
    left: 22px;
    right: auto;
    bottom: 30px;
  }

  .path-grid,
  .impact-grid,
  .tiers,
  .partner-cards {
    grid-template-columns: 1fr;
  }

  .glass-card {
    min-height: 240px;
  }

  .about,
  .founder,
  .event-editorial {
    grid-template-columns: 1fr;
  }

  .event-hero {
    min-height: 820px;
    padding-top: 120px;
  }

  .event-title h2 {
    font-size: clamp(74px, 22vw, 118px);
  }

  .event-date {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 75px;
  }

  .event-intro {
    margin-top: 30px;
  }

  .event-editorial {
    padding-top: 65px;
  }

  .editorial-placeholder {
    width: min(84vw, 430px);
  }

  .partner-cards a {
    min-height: 225px;
    border-radius: 0 !important;
  }

  .partner-cards a:first-child {
    border-radius: 14px 14px 0 0 !important;
  }

  .partner-cards a:last-child {
    border-radius: 0 0 14px 14px !important;
  }

  .tiers article {
    min-height: 230px;
  }

  .founder-photo {
    min-height: 560px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-contact {
    justify-self: start;
  }

  .footer-links {
    align-items: flex-start;
  }

  .footer-meta {
    grid-column: 1;
  }
}

@media (max-width: 560px) {
  .section-shell {
    padding: 82px 18px;
  }

  .section-heading {
    display: block;
  }

  .hero {
    min-height: 815px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .hero-orbit {
    gap: 8px;
    font-size: 6px;
  }

  .section-heading h2,
  .about h2 {
    font-size: 43px;
  }

  .event-title h2 {
    font-size: 71px;
  }

  .event-title h2 em {
    margin-left: 11px;
  }

  .event-date {
    margin-top: 67px;
  }

  .event-intro {
    font-size: 23px;
  }

  .partners-call,
  .tiers-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .editorial-copy h3,
  .tiers-wrap > h3 {
    font-size: 45px;
  }

  .founder-photo {
    min-height: 510px;
  }

  .founder-content h2 {
    font-size: 66px;
  }

  .founder-content blockquote {
    font-size: 21px;
  }

  .footer {
    margin: 0 8px 8px;
    padding: 28px 20px;
  }

  .footer-links {
    font-size: 15px;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

/* Event commitments use the same open, circular composition as Stories */
.page-event .event-trust__items {
  gap: clamp(18px, 3vw, 42px);
  border: 0;
}

.page-event .event-trust__items article,
.page-event .event-trust__items article + article,
.page-event .event-trust__items article:is(:hover,:focus-visible) {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-event .event-trust__items article::before {
  border-radius: 50%;
}

/* Final sizing guard: one icon language across every action route */
.page-home .action-gateway .action-choice__icon,
.page-participate .journey-choices .action-choice__icon,
.page-event .partner-cards .action-choice__icon {
  box-sizing: border-box;
  width: 92px;
  min-width: 92px;
  max-width: 92px;
  height: 92px;
  min-height: 92px;
  max-height: 92px;
  padding: 0;
  flex: 0 0 92px;
}

/* Three-column titles keep the reference scale without crowding their copy */
.page-causes .cause-grid h2,
.page-event .event-trust__items h3 {
  font-size: clamp(40px, 4vw, 50px);
}

@media (max-width: 560px) {
  .page-home .action-gateway .action-choice__icon,
  .page-participate .journey-choices .action-choice__icon,
  .page-event .partner-cards .action-choice__icon {
    width: 84px;
    min-width: 84px;
    max-width: 84px;
    height: 84px;
    min-height: 84px;
    max-height: 84px;
    flex-basis: 84px;
  }
}

/* Definitive event commitment composition */
.page-event .event-trust__items {
  gap: clamp(18px, 3vw, 42px);
  border: 0;
}

.page-event .event-trust__items article,
.page-event .event-trust__items article + article,
.page-event .event-trust__items article:is(:hover,:focus-visible) {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-event .event-trust__items article::before {
  border-radius: 50%;
}

/* Event narrative: discover, understand, experience, then participate */
.page-event .event-discovery-link {
  padding: 8px 0 6px;
  border-width: 0 0 1px;
  border-radius: 0;
  color: rgba(239,231,220,0.78);
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.page-event .event-discovery-link:hover {
  color: var(--event-paper);
}

.page-event .event-purpose {
  position: relative;
  z-index: 3;
  padding: clamp(95px, 11vw, 165px) clamp(22px, 8vw, 125px);
  overflow: hidden;
  border-top: 1px solid rgba(239,231,220,0.14);
  background:
    radial-gradient(circle at 12% 22%, rgba(127,46,66,0.2), transparent 24%),
    linear-gradient(180deg, #1c1616, #141111);
}

.page-event .event-purpose__leaves {
  z-index: 0;
}

.page-event .event-purpose__intro,
.page-event .event-purpose__flow {
  position: relative;
  z-index: 1;
}

.page-event .event-purpose__leaves i {
  opacity: 0.42;
}

.page-event .event-purpose__leaves .purpose-leaf-a {
  left: 5%;
  top: 11%;
  width: 17px;
  height: 30px;
  background: var(--gold);
}

.page-event .event-purpose__leaves .purpose-leaf-b {
  left: 90%;
  top: 16%;
  width: 28px;
  height: 48px;
  background: #85405a;
}

.page-event .event-purpose__leaves .purpose-leaf-c {
  left: 12%;
  top: 46%;
  width: 25px;
  height: 43px;
  background: #b7ccb1;
}

.page-event .event-purpose__leaves .purpose-leaf-d {
  left: 36%;
  top: 51%;
  width: 15px;
  height: 27px;
  background: #d6b47c;
}

.page-event .event-purpose__leaves .purpose-leaf-e {
  left: 66%;
  top: 43%;
  width: 20px;
  height: 35px;
  background: #b16c46;
}

.page-event .event-purpose__leaves .purpose-leaf-f {
  left: 94%;
  top: 59%;
  width: 18px;
  height: 32px;
  background: #d7ddd2;
}

.page-event .event-purpose__leaves .purpose-leaf-g {
  left: 77%;
  top: 86%;
  width: 26px;
  height: 44px;
  background: #7f9279;
}

.page-event .event-purpose__intro {
  display: grid;
  grid-template-columns: minmax(150px,0.32fr) minmax(0,1.2fr);
  column-gap: clamp(35px, 7vw, 110px);
  align-items: start;
}

.page-event .event-purpose__intro .event-small-label {
  margin-top: 15px;
}

.page-event .event-purpose__intro h2 {
  max-width: 980px;
  margin: 0;
  color: var(--event-paper);
  font-size: clamp(56px, 7.7vw, 108px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.058em;
}

.page-event .event-purpose__intro h2 span,
.page-event .event-purpose__intro h2 em {
  display: block;
}

.page-event .event-purpose__intro h2 em {
  margin-left: clamp(0px, 5vw, 75px);
  color: var(--gold);
  font-weight: 400;
}

.page-event .event-purpose__intro > p:last-child {
  grid-column: 2;
  max-width: 760px;
  margin: 36px 0 0;
  color: rgba(239,231,220,0.7);
  font: 400 16px/1.78 "Manrope", sans-serif;
}

.page-event .event-purpose__flow {
  margin-top: clamp(75px, 9vw, 125px);
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(24px, 4vw, 65px);
  border-top: 1px solid rgba(239,231,220,0.17);
}

.page-event .event-purpose__flow article {
  --purpose-rgb: 214,180,124;
  position: relative;
  isolation: isolate;
  min-height: 385px;
  padding: 48px 5px 20px;
  outline: none;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.page-event .event-purpose__flow article:nth-child(2) {
  --purpose-rgb: 183,204,177;
  margin-top: 58px;
}

.page-event .event-purpose__flow article:nth-child(3) {
  --purpose-rgb: 173,76,103;
  margin-top: 116px;
}

.page-event .event-purpose__flow article::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 43%;
  top: 49%;
  width: min(28vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--purpose-rgb),0.18), rgba(var(--purpose-rgb),0.045) 54%, transparent 72%);
  transform: translate(-50%,-50%) scale(0.75);
  transition: transform 0.46s cubic-bezier(.2,.8,.2,1);
}

.page-event .event-purpose__flow article:is(:hover,:focus-visible) {
  transform: translateY(-8px);
}

.page-event .event-purpose__flow article:is(:hover,:focus-visible)::before {
  transform: translate(-50%,-50%) scale(1);
}

.page-event .event-purpose__flow small {
  color: rgb(var(--purpose-rgb));
  font: 650 9px "Manrope", sans-serif;
  letter-spacing: 0.16em;
}

.page-event .event-purpose__flow h3 {
  max-width: 390px;
  margin: 90px 0 20px;
  color: var(--event-paper);
  font-size: clamp(34px, 3.3vw, 50px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.page-event .event-purpose__flow p {
  max-width: 390px;
  margin: 0;
  color: rgba(239,231,220,0.62);
  font: 400 13px/1.72 "Manrope", sans-serif;
}

.page-event .event-details__footer p {
  width: 100%;
  max-width: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
}

.page-event .event-details__footer p strong {
  font-weight: 400;
}

.page-event .event-details__footer p span {
  flex: 0 0 auto;
  color: rgba(239,231,220,0.58);
  font: 600 10px "Manrope", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-event .partners-call--final {
  position: relative;
  z-index: 3;
  background:
    radial-gradient(circle at 88% 18%, rgba(214,180,124,0.11), transparent 25%),
    #121010;
}

.page-event .partners-call__intro {
  max-width: 700px;
  margin: -25px 0 clamp(55px, 7vw, 90px);
  color: rgba(239,231,220,0.66);
  font: 400 15px/1.75 "Manrope", sans-serif;
}

.page-event .partners-call__footer {
  margin-top: clamp(60px, 8vw, 105px);
  padding-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid rgba(239,231,220,0.18);
}

.page-event .partners-call__footer p {
  max-width: 800px;
  margin: 0;
  color: var(--event-paper);
  font-size: clamp(22px, 2.35vw, 34px);
  line-height: 1.18;
}

.page-event .partners-call__footer .event-button {
  flex: 0 0 auto;
}

@media (max-width: 900px) {
  .page-event .event-purpose__intro {
    grid-template-columns: 1fr;
  }

  .page-event .event-purpose__intro > p:last-child {
    grid-column: auto;
  }

  .page-event .event-purpose__flow {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-event .event-purpose__flow article,
  .page-event .event-purpose__flow article:nth-child(2),
  .page-event .event-purpose__flow article:nth-child(3) {
    width: min(100%, 620px);
    min-height: 320px;
    margin: 0;
    padding: 46px 0;
    border-bottom: 1px solid rgba(239,231,220,0.15);
  }

  .page-event .event-purpose__flow article::before {
    left: 35%;
    width: min(78vw, 330px);
  }

  .page-event .event-purpose__flow h3 {
    margin-top: 65px;
  }
}

@media (max-width: 640px) {
  .page-event .event-purpose__intro h2 {
    font-size: 54px;
  }

  .page-event .event-purpose__intro h2 em {
    margin-left: 0;
  }

  .page-event .event-purpose__intro > p:last-child {
    font-size: 15px;
  }

  .page-event .event-purpose__flow article,
  .page-event .event-purpose__flow article:nth-child(2),
  .page-event .event-purpose__flow article:nth-child(3) {
    min-height: 295px;
  }

  .page-event .event-purpose__flow h3 {
    margin-top: 55px;
    font-size: 40px;
  }

  .page-event .event-details__footer p,
  .page-event .partners-call__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-event .event-details__footer p {
    gap: 12px;
  }
}

/* Privacy and cookies */
.policy-page {
  background:
    radial-gradient(circle at 88% 9%, rgba(183, 204, 177, 0.26), transparent 23%),
    var(--cream);
}

.policy-hero {
  position: relative;
  min-height: 650px;
  padding-top: clamp(170px, 17vw, 230px);
  padding-bottom: clamp(90px, 10vw, 140px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.58), transparent 55%),
    #eee8df;
}

.policy-hero > div {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.policy-hero h1 {
  max-width: 900px;
  margin: 0;
  font: 500 clamp(49px, 6.2vw, 91px) / 0.96 "Playfair Display", Georgia, serif;
  letter-spacing: -0.06em;
}

.policy-hero > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 30px 0 18px;
  color: var(--muted);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.7;
}

.policy-hero small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.policy-hero > img {
  position: absolute;
  right: clamp(-120px, -5vw, -50px);
  bottom: -18%;
  width: min(43vw, 600px);
  opacity: 0.09;
  transform: rotate(8deg);
}

.policy-hero--cookies {
  background:
    radial-gradient(circle at 78% 38%, rgba(214, 180, 124, 0.22), transparent 26%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.54), transparent 55%),
    #eee8df;
}

.policy-content {
  padding-top: clamp(80px, 9vw, 130px);
}

.policy-section {
  padding: clamp(30px, 4vw, 55px) 0;
  display: grid;
  grid-template-columns: minmax(55px, 0.22fr) minmax(0, 1fr);
  gap: clamp(25px, 5vw, 90px);
  border-top: 1px solid var(--line);
}

.policy-section > span {
  padding-top: 8px;
  color: #9b7745;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.policy-section h2 {
  margin: 0;
  font: 500 clamp(28px, 3vw, 45px) / 1.05 "Playfair Display", Georgia, serif;
  letter-spacing: -0.035em;
}

.policy-section p {
  max-width: 810px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.75;
}

.policy-contact {
  margin-top: clamp(55px, 8vw, 110px);
  padding: clamp(38px, 6vw, 80px);
  overflow-wrap: anywhere;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 22px;
  background:
    radial-gradient(circle at 82% 25%, rgba(183, 204, 177, 0.38), transparent 28%),
    rgba(255, 255, 255, 0.55);
  box-shadow: 0 22px 65px rgba(72, 59, 42, 0.08);
}

.policy-contact h2 {
  max-width: 780px;
  margin: 0 0 25px;
  font: 500 clamp(35px, 4.5vw, 61px) / 1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.045em;
}

.policy-contact a {
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media (max-width: 560px) {
  .policy-hero {
    min-height: 610px;
    padding-top: 155px;
  }

  .policy-hero h1 {
    font-size: 55px;
  }

  .policy-hero > img {
    right: -95px;
    width: 330px;
  }

  .policy-section {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .brand-intro {
    animation-duration: 0.01s;
    animation-delay: 0.2s;
  }

  .brand-intro img {
    clip-path: none;
    opacity: 1;
    transform: none;
    animation: none;
  }

  .brand-intro__halo,
  .brand-intro p,
  .season-leaves {
    display: none;
  }

  .event-title,
  .event-date,
  .event-intro,
  .event-button {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* Three-colour interaction system */
.statement-block article,
.page-causes .cause-grid .glass-card,
.page-stories .story-manifesto article,
.trust-point,
.journey-choice,
.page-home .action-gateway__item,
.page-event .partner-cards a,
.page-event .event-trust__items article,
.page-event .tiers article {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
}

/* About: connection and reinforcement, without card boxes */
.statement-block {
  position: relative;
  gap: clamp(35px,7vw,100px);
}

.statement-block::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 1px;
  background: var(--gold);
  box-shadow: 29px 0 0 -24px var(--gold);
  opacity: 0.6;
  transform: translate(-50%,-50%);
}

.statement-block article {
  position: relative;
  isolation: isolate;
  min-height: 390px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  text-align: center;
  outline: none;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.statement-block article:first-child {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
}

.statement-block article:last-child {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.statement-block article::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(92%,430px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.2), rgba(var(--halo-rgb),0.07) 46%, transparent 72%);
  transform: scale(0.82);
  transition: transform 0.48s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}

.statement-icon {
  width: 74px;
  height: 74px;
  display: block;
  color: var(--accent) !important;
  transition: transform 0.38s cubic-bezier(.2,.8,.2,1);
}

.statement-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.statement-block .statement-kicker {
  margin-top: 20px;
  color: var(--accent);
}

.statement-block h2 {
  margin: 22px 0 14px;
}

.statement-block p {
  max-width: 440px;
  margin: 0;
  text-align: center;
}

.statement-block article:is(:hover,:focus-visible) {
  transform: translateY(-7px) scale(1.025);
}

.statement-block article:is(:hover,:focus-visible)::before {
  filter: saturate(1.12);
  transform: scale(1);
}

.statement-block article:is(:hover,:focus-visible) .statement-icon {
  transform: scale(1.12) rotate(-4deg);
}

/* Causes: equal, centred semantic circles */
.page-causes .cause-grid {
  padding-top: 70px;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(28px,5vw,72px);
  align-items: stretch;
}

.page-causes .cause-grid .glass-card,
.page-causes .cause-grid .glass-card:nth-child(2),
.page-causes .cause-grid .glass-card:nth-child(3) {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 390px;
  margin: 0;
  padding: 45px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  text-align: center;
  outline: none;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.page-causes .cause-grid .glass-card:nth-child(1) {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.page-causes .cause-grid .glass-card:nth-child(2) {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
}

.page-causes .cause-grid .glass-card:nth-child(3) {
  --accent: #a57c42;
  --halo-rgb: 214, 180, 124;
}

.page-causes .cause-grid .glass-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.22), rgba(var(--halo-rgb),0.07) 48%, transparent 72%);
  transform: scale(0.8);
  transition: transform 0.48s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}

.page-causes .cause-grid .glass-card::after {
  display: none;
}

.page-causes .cause-grid .cause-symbol {
  width: 82px;
  height: 82px;
  color: var(--accent);
  transform-origin: center;
}

.page-causes .cause-grid h2 {
  max-width: 320px;
  margin: 26px auto 14px;
  color: var(--ink);
  text-align: center;
  transform-origin: center;
}

.page-causes .cause-grid p {
  max-width: 330px;
  margin: 0 auto;
  text-align: center;
}

.page-causes .cause-grid .glass-card:is(:hover,:focus-visible) {
  background: transparent;
  transform: translateY(-7px) scale(1.035);
}

.page-causes .cause-grid .glass-card:is(:hover,:focus-visible)::before {
  filter: saturate(1.13);
  transform: scale(1);
}

.page-causes .cause-grid .glass-card:is(:hover,:focus-visible) .cause-symbol {
  color: var(--accent);
  transform: scale(1.13) rotate(-4deg);
}

.page-causes .cause-grid .glass-card:is(:hover,:focus-visible) h2 {
  color: var(--accent);
  transform: none;
}

/* Stories: one baseline, centred content and individual colours */
.page-stories .story-manifesto {
  min-height: 620px;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(35px,6vw,92px);
  align-items: center;
}

.page-stories .story-manifesto article,
.page-stories .story-manifesto article:nth-of-type(2),
.page-stories .story-manifesto article:nth-of-type(3) {
  position: relative;
  isolation: isolate;
  min-height: 340px;
  margin: 0;
  padding: 46px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: transparent;
  text-align: center;
  outline: none;
  overflow: visible;
  filter: none;
  transform: none;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.page-stories .story-manifesto article:nth-of-type(1) {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
}

.page-stories .story-manifesto article:nth-of-type(2) {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.page-stories .story-manifesto article:nth-of-type(3) {
  --accent: #a57c42;
  --halo-rgb: 214, 180, 124;
}

.page-stories .story-manifesto article::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.2), rgba(var(--halo-rgb),0.06) 48%, transparent 72%);
  filter: none;
  opacity: 1;
  transform: scale(0.8);
  transition: transform 0.48s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}

.page-stories .story-manifesto .manifesto-mark {
  margin: 0 auto;
  color: var(--accent);
  transform-origin: center;
}

.page-stories .story-manifesto h2 {
  margin: 26px auto 14px;
  color: var(--ink);
  text-align: center;
  transform-origin: center;
}

.page-stories .story-manifesto p {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
}

.page-stories .story-manifesto article:is(:hover,:focus-visible),
.page-stories .story-manifesto article:nth-of-type(2):is(:hover,:focus-visible),
.page-stories .story-manifesto article:nth-of-type(3):is(:hover,:focus-visible) {
  background: transparent;
  filter: none;
  transform: translateY(-7px) scale(1.035);
}

.page-stories .story-manifesto article:is(:hover,:focus-visible)::before {
  filter: saturate(1.14);
  transform: scale(1);
}

.page-stories .story-manifesto article:is(:hover,:focus-visible) .manifesto-mark {
  color: var(--accent);
  transform: scale(1.13) rotate(-4deg);
}

.page-stories .story-manifesto article:is(:hover,:focus-visible) h2 {
  color: var(--accent);
  transform: none;
}

/* Organisations: keep the constellation, remove rectangular hover panels */
.trust-point {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
  isolation: isolate;
  min-height: 260px;
  padding: 35px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  text-align: center;
  overflow: visible;
}

.trust-point--responsibility {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.trust-point--impact {
  --accent: #a57c42;
  --halo-rgb: 214, 180, 124;
}

.trust-point::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.22), rgba(var(--halo-rgb),0.06) 48%, transparent 73%);
  transform: scale(0.8);
  transition: transform 0.48s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}

.trust-point .trust-icon {
  margin: 0 auto;
  color: var(--accent);
  transform-origin: center;
}

.trust-point h3 {
  margin: 22px auto 10px;
  color: var(--ink);
  text-align: center;
  transform-origin: center;
}

.trust-point p,
.trust-point--impact p {
  max-width: 280px;
  margin: 0 auto;
  text-align: center;
}

.trust-point:is(:hover,:focus-visible) {
  color: inherit;
  background: transparent;
  box-shadow: none;
  transform: translateY(-7px) scale(1.035);
}

.trust-point--impact:is(:hover,:focus-visible) {
  transform: translateX(-50%) translateY(-7px) scale(1.035);
}

.trust-point:is(:hover,:focus-visible)::before {
  filter: saturate(1.14);
  transform: scale(1);
}

.trust-point:is(:hover,:focus-visible) .trust-icon {
  color: var(--accent);
  transform: scale(1.13) rotate(-4deg);
}

.trust-point:is(:hover,:focus-visible) h3,
.trust-point--impact:is(:hover,:focus-visible) h3 {
  color: var(--accent);
  transform: none;
}

/* Clean three-path actions on Home and Participate */
.page-home .action-gateway {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-home .action-gateway .action-gateway__item,
.page-home .action-gateway .action-gateway__item:nth-child(2),
.page-home .action-gateway .action-gateway__item:nth-child(3) {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  padding: 38px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255,255,255,0.48);
  box-shadow: 0 18px 55px rgba(75,66,54,0.06);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.35s ease;
}

.page-home .action-gateway .action-gateway__item--support {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.page-home .action-gateway .action-gateway__item--help {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
}

.page-home .action-gateway .action-gateway__item--company {
  --accent: #a57c42;
  --halo-rgb: 214, 180, 124;
}

.page-home .action-gateway .action-gateway__item::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 38%;
  width: 230px;
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.25), rgba(var(--halo-rgb),0.06) 50%, transparent 72%);
  transform: translate(-50%,-50%) scale(0.72);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.page-home .action-gateway .gateway-symbol {
  width: 76px;
  height: 76px;
  border: 0;
  color: var(--accent);
  opacity: 1;
  transition: transform 0.38s cubic-bezier(.2,.8,.2,1);
}

.page-home .action-gateway .glass-card > div {
  margin-top: 28px;
  align-self: center;
}

.page-home .action-gateway .glass-card h3,
.page-home .action-gateway .glass-card p,
.page-home .action-gateway .glass-card b {
  color: var(--ink);
  text-align: center;
}

.page-home .action-gateway .glass-card p {
  max-width: 280px;
  margin: 0 auto;
}

.page-home .action-gateway .glass-card b {
  margin-top: 24px;
}

.page-home .action-gateway .action-gateway__item:is(:hover,:focus-visible),
.page-home .action-gateway .action-gateway__item.action-gateway__item--help:is(:hover,:focus-visible),
.page-home .action-gateway .action-gateway__item.action-gateway__item--company:is(:hover,:focus-visible) {
  padding-left: 30px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 27px 72px rgba(75,66,54,0.12);
  transform: translateY(-8px);
}

.page-home .action-gateway .action-gateway__item:is(:hover,:focus-visible)::before {
  transform: translate(-50%,-50%) scale(1);
}

.page-home .action-gateway .action-gateway__item:is(:hover,:focus-visible) .gateway-symbol {
  transform: scale(1.12) rotate(-4deg);
}

.journey-choice {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
  align-items: center;
  text-align: center;
}

.journey-choice--support {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.journey-choice--join {
  --accent: #a57c42;
  --halo-rgb: 214, 180, 124;
}

.journey-choice::before,
.journey-choice--support::before,
.journey-choice--join::before {
  left: 50%;
  right: auto;
  top: 36%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.26), rgba(var(--halo-rgb),0.05) 52%, transparent 72%);
  transform: translate(-50%,-50%) scale(0.72);
}

.journey-choice__icon,
.journey-choice--support .journey-choice__icon,
.journey-choice--join .journey-choice__icon {
  color: var(--accent);
}

.journey-choice > span:nth-child(2) {
  margin: auto 0 0;
}

.journey-choice small {
  margin-left: auto;
  margin-right: auto;
}

.journey-choice:is(:hover,:focus-visible)::before,
.journey-choice.is-active::before {
  transform: translate(-50%,-50%) scale(1);
}

/* Event actions and sponsorship retain the editorial dark identity */
.page-event .partner-cards {
  gap: 18px;
  border: 0;
}

.page-event .partner-cards a,
.page-event .partner-cards a:first-child,
.page-event .partner-cards a:last-child {
  --accent: var(--sage);
  --halo-rgb: 183, 204, 177;
  position: relative;
  isolation: isolate;
  min-height: 360px;
  padding: 38px 30px;
  align-items: center;
  border: 1px solid rgba(239,231,220,0.12);
  border-radius: 22px;
  background: rgba(239,231,220,0.018);
  text-align: center;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.32s ease;
}

.page-event .partner-cards a:nth-child(1) {
  --accent: #c18395;
  --halo-rgb: 120, 47, 69;
}

.page-event .partner-cards a:nth-child(3) {
  --accent: var(--gold);
  --halo-rgb: 214, 180, 124;
}

.page-event .partner-cards a + a {
  border-left: 1px solid rgba(239,231,220,0.12);
}

.page-event .partner-cards a::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 34%;
  width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.22), rgba(var(--halo-rgb),0.04) 52%, transparent 72%);
  transform: translate(-50%,-50%) scale(0.72);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.event-action-icon {
  width: 70px;
  height: 70px;
  display: block;
  color: var(--accent) !important;
  transition: transform 0.38s cubic-bezier(.2,.8,.2,1);
}

.event-action-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-event .partner-cards h3 {
  margin: auto 0 14px;
  color: var(--event-paper);
}

.page-event .partner-cards p {
  margin-left: auto;
  margin-right: auto;
}

.page-event .partner-cards a:is(:hover,:focus-visible) {
  background: rgba(239,231,220,0.045);
  transform: translateY(-8px);
}

.page-event .partner-cards a:is(:hover,:focus-visible)::before {
  transform: translate(-50%,-50%) scale(1);
}

.page-event .partner-cards a:is(:hover,:focus-visible) .event-action-icon {
  transform: scale(1.12) rotate(-4deg);
}

.page-event .tiers {
  gap: 18px;
  border: 0;
}

.page-event .tiers article,
.page-event .tiers article.featured {
  --accent: var(--sage);
  --halo-rgb: 183, 204, 177;
  min-height: 330px;
  padding: 38px 30px;
  align-items: center;
  border: 1px solid rgba(239,231,220,0.12);
  border-radius: 22px;
  background: rgba(239,231,220,0.018);
  text-align: center;
}

.page-event .tiers article:nth-child(2) {
  --accent: var(--gold);
  --halo-rgb: 214, 180, 124;
}

.page-event .tiers article:nth-child(3) {
  --accent: #c18395;
  --halo-rgb: 120, 47, 69;
}

.page-event .tiers article + article {
  border-left: 1px solid rgba(239,231,220,0.12);
}

.page-event .tiers article::before {
  left: 50%;
  top: 48%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.22), rgba(var(--halo-rgb),0.04) 52%, transparent 72%);
  opacity: 1;
  transform: translate(-50%,-50%) scale(0.72);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.page-event .tiers small {
  color: var(--accent);
}

.page-event .tiers strong {
  position: relative;
  z-index: 1;
  color: var(--event-paper);
}

.page-event .tiers p,
.page-event .tiers .featured p {
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
}

.page-event .tiers article:is(:hover,:focus-visible),
.page-event .tiers article.featured:is(:hover,:focus-visible) {
  color: var(--event-paper);
  background: rgba(239,231,220,0.04);
  transform: translateY(-8px);
}

.page-event .tiers article:is(:hover,:focus-visible)::before {
  transform: translate(-50%,-50%) scale(1);
}

.page-event .tiers article:is(:hover,:focus-visible) strong {
  color: var(--accent);
  transform: scale(1.035);
}

/* Event commitment: centred colour-coded halos */
.page-event .event-trust__items {
  gap: 18px;
  border: 0;
}

.page-event .event-trust__items article {
  --accent: var(--sage);
  --halo-rgb: 183, 204, 177;
  min-height: 320px;
  padding: 42px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 0;
  border-radius: 50%;
  background: transparent;
  text-align: center;
  overflow: visible;
}

.page-event .event-trust__items article:nth-child(1) {
  --accent: #c18395;
  --halo-rgb: 120, 47, 69;
}

.page-event .event-trust__items article:nth-child(3) {
  --accent: var(--gold);
  --halo-rgb: 214, 180, 124;
}

.page-event .event-trust__items article + article {
  border: 0;
}

.page-event .event-trust__items article::before {
  left: 50%;
  top: 50%;
  width: min(100%,340px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.22), rgba(var(--halo-rgb),0.04) 52%, transparent 72%);
  opacity: 1;
  transform: translate(-50%,-50%) scale(0.78);
}

.commitment-icon {
  margin: 0 auto;
  color: var(--accent);
}

.page-event .event-trust__items h3 {
  margin: 26px auto 12px;
  color: var(--event-paper);
  text-align: center;
  transform-origin: center;
}

.page-event .event-trust__items p {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.page-event .event-trust__items article:is(:hover,:focus-visible) {
  background: transparent;
  transform: translateY(-7px) scale(1.035);
}

.page-event .event-trust__items article:is(:hover,:focus-visible)::before {
  transform: translate(-50%,-50%) scale(1);
}

.page-event .event-trust__items article:is(:hover,:focus-visible) .commitment-icon {
  color: var(--accent);
}

.page-event .event-trust__items article:is(:hover,:focus-visible) h3 {
  color: var(--accent);
  transform: none;
}

/* Interactive dots around the Refúgio flower */
.participate-hero__art i {
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
  will-change: transform;
}

.participate-hero__art:hover i {
  box-shadow: 0 0 0 11px color-mix(in srgb, currentColor 9%, transparent);
}

@media (max-width: 900px) {
  .statement-block {
    grid-template-columns: 1fr;
  }

  .statement-block::after {
    top: 50%;
    transform: translate(-50%,-50%) rotate(90deg);
  }

  .statement-block article {
    min-height: 340px;
  }

  .page-causes .cause-grid,
  .page-stories .story-manifesto,
  .page-event .partner-cards,
  .page-event .tiers,
  .page-event .event-trust__items,
  .page-home .action-gateway {
    grid-template-columns: 1fr;
  }

  .page-causes .cause-grid .glass-card,
  .page-causes .cause-grid .glass-card:nth-child(2),
  .page-causes .cause-grid .glass-card:nth-child(3),
  .page-stories .story-manifesto article,
  .page-stories .story-manifesto article:nth-of-type(2),
  .page-stories .story-manifesto article:nth-of-type(3) {
    width: min(100%,560px);
    min-height: 330px;
    margin: 0 auto;
    transform: none;
  }

  .page-home .action-gateway .action-gateway__item,
  .page-home .action-gateway .action-gateway__item:nth-child(2),
  .page-home .action-gateway .action-gateway__item:nth-child(3) {
    min-height: 280px;
  }

  .journey-choice {
    text-align: left;
  }

  .journey-choice > span:nth-child(2) {
    margin: 0;
  }

  .journey-choice small {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .statement-block article {
    min-height: 310px;
    padding: 34px 20px;
  }

  .page-causes .cause-grid,
  .page-stories .story-manifesto {
    gap: 10px;
  }

  .page-causes .cause-grid .glass-card,
  .page-causes .cause-grid .glass-card:nth-child(2),
  .page-causes .cause-grid .glass-card:nth-child(3),
  .page-stories .story-manifesto article,
  .page-stories .story-manifesto article:nth-of-type(2),
  .page-stories .story-manifesto article:nth-of-type(3) {
    min-height: 300px;
    padding: 35px 18px;
  }

  .page-home .action-gateway .action-gateway__item,
  .page-home .action-gateway .action-gateway__item:nth-child(2),
  .page-home .action-gateway .action-gateway__item:nth-child(3) {
    min-height: 285px;
    padding: 32px 24px;
  }

  .journey-choice {
    align-items: center;
    text-align: center;
  }

  .journey-choice > span:nth-child(2) {
    margin-top: auto;
  }

  .journey-choice small {
    margin-left: auto;
    margin-right: auto;
  }

  .page-event .partner-cards a,
  .page-event .tiers article,
  .page-event .event-trust__items article {
    min-height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .participate-hero__art i {
    transition: none;
  }
}

/* Multipage refinement */
body {
  font-size: 17px;
}

.site-header {
  height: 80px;
}

.brand {
  width: 208px;
  height: 68px;
}

.main-nav {
  gap: 22px;
}

.main-nav > a:not(.header-contact) {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.68;
  transition: opacity 0.2s;
}

.main-nav > a:not(.header-contact):hover {
  opacity: 1;
}

.header-contact {
  font-size: 12px;
}

.hero-copy,
.home-about__copy > p,
.inner-hero > p:last-child,
.founder-content > p:last-of-type {
  font-size: 18px;
}

.glass-card p,
.impact-grid p,
.partner-cards p,
.tiers p {
  font-size: 15px;
}

.glass-card b,
.partner-cards b,
.event-button,
.button,
.text-link {
  font-size: 13px;
}

.home-about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.home-about__copy h2 {
  margin: 0;
  font: 500 clamp(41px, 4.8vw, 70px) / 1.02 "Playfair Display", Georgia, serif;
  letter-spacing: -0.055em;
}

.home-about__copy > p {
  max-width: 560px;
  margin: 28px 0;
  color: var(--muted);
  line-height: 1.65;
}

.event-preview {
  min-height: 720px;
  padding: clamp(90px, 10vw, 150px) clamp(22px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  color: var(--event-paper);
  background:
    radial-gradient(circle at 80% 35%, rgba(82, 31, 47, 0.85), transparent 25%),
    var(--event-ink);
  font-family: "Bodoni Moda", "Times New Roman", serif;
}

.event-preview__content h2 {
  margin: 0;
  font-size: clamp(76px, 9vw, 135px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.07em;
}

.event-preview__content h2 em {
  display: block;
  margin-left: 8%;
  color: var(--gold);
  font-weight: 400;
}

.event-preview__content > p:not(.event-small-label) {
  max-width: 620px;
  margin: 45px 0 25px;
  font-size: 25px;
  line-height: 1.32;
}

.event-preview__meta {
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font: 600 12px "Manrope", sans-serif;
}

.event-preview__meta span {
  color: rgba(239, 231, 220, 0.6);
  font-size: 10px;
}

.event-preview__art {
  position: relative;
  min-height: 510px;
  border: 1px solid rgba(239, 231, 220, 0.3);
  border-radius: 6px;
  background:
    linear-gradient(145deg, transparent, rgba(214, 180, 124, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 35px, rgba(255,255,255,0.025) 35px 36px);
}

.event-preview__art::before {
  content: "";
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  top: 15%;
  right: -12%;
  border-radius: 50%;
  background: var(--wine);
}

.event-preview__art span {
  position: absolute;
  left: 24px;
  bottom: 18px;
  font-size: 90px;
}

.event-button.visible {
  opacity: 1;
}

.founder-mini {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  background: var(--cream-deep);
}

.founder-mini .founder-photo {
  min-height: 590px;
}

.inner-page {
  background: var(--cream);
}

.inner-hero {
  min-height: 720px;
  padding-top: 185px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 82% 30%, rgba(183,204,177,0.32), transparent 25%),
    var(--cream);
}

.inner-hero h1 {
  max-width: 1050px;
  margin: 0;
  font: 500 clamp(53px, 6.7vw, 100px) / 0.95 "Playfair Display", Georgia, serif;
  letter-spacing: -0.065em;
}

.inner-hero > p:last-child {
  max-width: 680px;
  margin: 35px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.statement-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--cream-deep);
}

.statement-block article,
.story-principles article {
  padding: 35px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 18px;
  background: rgba(255,255,255,0.48);
  box-shadow: 0 18px 50px rgba(87,72,52,0.06);
}

.statement-block span,
.story-principles span,
.cause-grid article > span {
  color: #987a4d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.statement-block h2,
.story-principles h2,
.cause-grid h2 {
  margin: 80px 0 18px;
  font: 500 34px "Playfair Display", Georgia, serif;
}

.statement-block p,
.story-principles p,
.cause-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.values {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.cause-grid,
.story-principles {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.cause-grid .glass-card {
  min-height: 390px;
}

.criteria {
  background: var(--cream-deep);
}

.coming-soon {
  text-align: center;
}

.coming-soon img {
  width: 90px;
}

.coming-soon h2 {
  max-width: 850px;
  margin: 20px auto 30px;
  font: 500 clamp(41px, 5.1vw, 73px) / 1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.055em;
}

.sponsor-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(38px, 6vw, 90px);
  align-items: center;
  background:
    radial-gradient(circle at 92% 18%, rgba(241, 91, 34, 0.13), transparent 29%),
    var(--cream);
}

.sponsor-showcase__heading h2 {
  max-width: 700px;
  margin: 20px 0 0;
  font: 500 clamp(38px, 4.6vw, 68px) / 1.02 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
}

.sponsor-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(240px, 1.1fr);
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(45, 57, 46, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(52, 46, 37, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.sponsor-card:is(:hover, :focus-visible) {
  transform: translateY(-6px);
  box-shadow: 0 34px 82px rgba(52, 46, 37, 0.18);
}

.sponsor-logo-crop {
  position: relative;
  display: block;
  min-height: 330px;
  overflow: hidden;
  background: #fff;
}

.sponsor-logo-crop img {
  position: absolute;
  top: -126%;
  left: -24.5%;
  width: 360%;
  max-width: none;
}

.sponsor-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 58px);
}

.sponsor-card__copy small {
  color: #e85420;
  font: 700 11px/1.2 Inter, Arial, sans-serif;
  letter-spacing: 0.18em;
}

.sponsor-card__copy strong {
  margin-top: 18px;
  font: 500 clamp(32px, 3vw, 46px) / 1 "Playfair Display", Georgia, serif;
  letter-spacing: -0.04em;
}

.sponsor-card__copy span {
  margin-top: 17px;
  color: rgba(30, 30, 30, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.sponsor-card__copy b {
  margin-top: 27px;
  color: var(--green);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .sponsor-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .sponsor-card {
    grid-template-columns: 1fr;
  }

  .sponsor-logo-crop {
    min-height: 250px;
  }

  .sponsor-logo-crop img {
    top: -204%;
  }
}

.stories-hero {
  background:
    radial-gradient(circle at 75% 35%, rgba(214,180,124,0.28), transparent 26%),
    var(--cream);
}

.event-page .event-hero {
  min-height: 940px;
}

.event-page .event-title,
.event-page .event-date,
.event-page .event-intro,
.event-page .event-button {
  opacity: 1;
  transform: none;
}

.event-title h1 {
  margin: 0;
  font: 500 clamp(82px, 12.4vw, 180px) / 0.69 "Bodoni Moda", "Times New Roman", serif;
  letter-spacing: -0.075em;
}

.event-title h1 em {
  display: block;
  margin-left: clamp(18px, 9vw, 130px);
  color: var(--gold);
  font-weight: 400;
}

.partners-call > div:first-child h2,
.tiers-wrap > div:first-child h2,
.event-trust > div:first-child h2 {
  max-width: 900px;
  margin: 0 0 55px;
  font-size: clamp(50px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.partner-cards h3 {
  margin: auto 0 14px;
  font-size: 35px;
  font-weight: 400;
}

.interactive-leaves {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.interactive-leaves i {
  position: absolute;
  width: 22px;
  height: 38px;
  border-radius: 100% 0 100% 0;
  background: var(--sage);
  opacity: 0.48;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.interactive-leaves .leaf-a { left: 8%; top: 16%; }
.interactive-leaves .leaf-b { left: 21%; top: 40%; width: 30px; height: 50px; }
.interactive-leaves .leaf-c { left: 34%; top: 10%; background: #9e593f; }
.interactive-leaves .leaf-d { left: 48%; top: 55%; width: 31px; height: 54px; background: var(--gold); }
.interactive-leaves .leaf-e { left: 62%; top: 18%; background: #7f2e42; }
.interactive-leaves .leaf-f { left: 73%; top: 46%; background: #e5ddd1; }
.interactive-leaves .leaf-g { left: 85%; top: 12%; width: 27px; height: 47px; }
.interactive-leaves .leaf-h { left: 93%; top: 63%; background: #b96f43; }

.event-trust {
  padding: clamp(85px,10vw,145px) clamp(22px,8vw,125px);
  border-top: 1px solid rgba(239,231,220,0.17);
  background: #171313;
}

.event-trust__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.event-trust__items article {
  min-height: 230px;
  padding: 25px;
  border: 1px solid rgba(239,231,220,0.2);
  border-radius: 14px;
}

.event-trust__items span {
  color: var(--gold);
  font: 600 10px "Manrope", sans-serif;
}

.event-trust__items h3 {
  margin: 70px 0 12px;
  font-size: 32px;
  font-weight: 400;
}

.event-trust__items p {
  color: rgba(239,231,220,0.66);
  font: 400 14px/1.55 "Manrope", sans-serif;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.8,.2,1);
}

.motion-ready .reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 15px;
  }
  .main-nav > a:not(.header-contact) {
    font-size: 11px;
  }
  .brand {
    width: 180px;
  }
}

@media (max-width: 900px) {
  .brand {
    width: 172px;
    height: 57px;
  }
  .main-nav > a:not(.header-contact) {
    font-size: 14px;
  }
  .home-about,
  .event-preview,
  .founder-mini,
  .values {
    grid-template-columns: 1fr;
  }
  .event-preview__art {
    min-height: 430px;
  }
  .statement-block,
  .cause-grid,
  .story-principles,
  .event-trust__items {
    grid-template-columns: 1fr;
  }
  .inner-hero {
    min-height: 650px;
    padding-top: 145px;
  }
  .event-page .event-hero {
    min-height: 850px;
  }
}

@media (max-width: 560px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }
  .site-header {
    height: 70px;
  }
  .brand {
    width: 165px;
    height: 58px;
  }
  .hero-copy,
  .home-about__copy > p,
  .inner-hero > p:last-child,
  .founder-content > p:last-of-type {
    font-size: 16px;
  }
  .event-preview {
    padding-left: 18px;
    padding-right: 18px;
  }
  .event-preview__content h2 {
    font-size: 67px;
  }
  .event-preview__content > p:not(.event-small-label) {
    font-size: 22px;
  }
  .inner-hero h1 {
    font-size: 54px;
  }
  .event-title h1 {
    font-size: 70px;
  }
  .event-page .event-date {
    margin-top: 55px;
  }
  .partners-call > div:first-child h2,
  .tiers-wrap > div:first-child h2,
  .event-trust > div:first-child h2 {
    font-size: 46px;
  }
  .motion-ready .reveal {
    transform: translateY(14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .interactive-leaves i {
    transition: none;
  }
}

/* Distinct page displays, editorial imagery and intelligent navigation */
.site-header {
  transition:
    transform 0.42s cubic-bezier(.2,.8,.2,1),
    opacity 0.28s ease,
    box-shadow 0.25s ease;
  will-change: transform, opacity;
}

.site-header.header-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 28px));
}

.site-header.header-peek {
  box-shadow: 0 16px 50px rgba(52, 46, 37, 0.14);
}

.main-nav > a[aria-current="page"] {
  position: relative;
  opacity: 1;
}

.main-nav > a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: currentColor;
}

.page-hero {
  min-height: 880px;
  padding-top: 155px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  justify-content: normal;
}

.page-hero__copy {
  position: relative;
  z-index: 2;
}

.page-hero .page-hero__copy h1 {
  max-width: 920px;
  margin: 0;
  font: 500 clamp(52px, 6.1vw, 92px) / 0.93 "Playfair Display", Georgia, serif;
  letter-spacing: -0.065em;
}

.page-hero .page-hero__copy h1 em {
  display: block;
  color: #9b7544;
  font-weight: 500;
}

.page-hero .page-hero__copy > p:last-child {
  max-width: 650px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.page-display {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.78);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(64,50,36,0.1);
}

.display-caption {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 25px;
  z-index: 3;
  padding-top: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid currentColor;
}

.display-caption b,
.display-caption small {
  font: 700 9px/1.4 "Manrope", sans-serif;
  letter-spacing: 0.14em;
}

.display-caption small {
  max-width: 190px;
  opacity: 0.62;
  text-align: right;
  letter-spacing: 0;
}

.page-hero--about {
  background:
    radial-gradient(circle at 74% 28%, rgba(183,204,177,0.44), transparent 25%),
    linear-gradient(135deg, #f7f5f2 0%, #f2eee7 100%);
}

.about-display {
  color: #4b5548;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.22), transparent 55%),
    #b9cbb4;
}

.about-display::before {
  content: "";
  position: absolute;
  top: 11%;
  right: -15%;
  width: 72%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,0.58);
  border-radius: 50%;
}

.about-display::after {
  content: "";
  position: absolute;
  top: 19%;
  left: 13%;
  width: 44%;
  height: 58%;
  border-radius: 50% 50% 10px 10px;
  background: rgba(247,245,242,0.28);
  backdrop-filter: blur(10px);
}

.display-flower {
  position: absolute;
  top: 22%;
  left: 18%;
  z-index: 2;
  width: 34%;
}

.display-flower img {
  display: block;
  width: 100%;
  opacity: 0.78;
  mix-blend-mode: multiply;
}

.display-index {
  position: absolute;
  top: 22px;
  right: 25px;
  color: rgba(30,30,30,0.42);
  font: 500 66px "Playfair Display", Georgia, serif;
}

.page-hero--causes {
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  background:
    radial-gradient(circle at 18% 78%, rgba(214,180,124,0.2), transparent 25%),
    #f4efe8;
}

.page-hero--causes .page-hero__copy h1 em {
  color: var(--wine);
  font-style: italic;
}

.causes-display {
  min-height: 520px;
  color: var(--event-paper);
  background:
    radial-gradient(circle at 70% 28%, rgba(214,180,124,0.34), transparent 24%),
    linear-gradient(140deg, #311a22, #6a2b3e);
}

.causes-display::before,
.causes-display::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(239,231,220,0.22);
  border-radius: 50%;
}

.causes-display::before {
  width: 58%;
  aspect-ratio: 1;
  top: 8%;
  left: 8%;
}

.causes-display::after {
  width: 34%;
  aspect-ratio: 1;
  top: 23%;
  right: 8%;
}

.causes-display__line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 1px;
  background: rgba(239,231,220,0.35);
  transform: rotate(-10deg);
}

.causes-display__orb {
  position: absolute;
  top: 23%;
  right: 20%;
  width: 16%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 70px rgba(214,180,124,0.38);
}

.causes-display > strong {
  position: absolute;
  left: 28px;
  top: 25px;
  font: 500 78px "Playfair Display", Georgia, serif;
}

.page-hero--organisations {
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.82fr);
  background:
    radial-gradient(circle at 82% 26%, rgba(183,204,177,0.32), transparent 28%),
    #eef0e9;
}

.page-hero--organisations .page-hero__copy h1 em {
  color: var(--sage-deep);
}

.network-display {
  min-height: 600px;
  color: #e9efe6;
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    #334034;
  background-size: 42px 42px;
}

.network-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: rgba(233,239,230,0.32);
  transform-origin: left center;
}

.line-one { left: 24%; top: 33%; width: 49%; transform: rotate(25deg); }
.line-two { left: 24%; top: 33%; width: 52%; transform: rotate(86deg); }
.line-three { left: 39%; top: 66%; width: 39%; transform: rotate(-30deg); }

.network-node {
  position: absolute;
  z-index: 2;
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(233,239,230,0.6);
  border-radius: 50%;
  background: rgba(233,239,230,0.08);
  font: 600 10px "Manrope", sans-serif;
  font-style: normal;
  backdrop-filter: blur(8px);
}

.node-one { left: 14%; top: 22%; width: 95px; background: var(--gold); color: #334034; border: 0; font: 500 35px "Playfair Display", serif; }
.node-two { right: 13%; top: 25%; }
.node-three { left: 30%; top: 58%; }
.node-four { right: 19%; top: 66%; }

.page-hero--stories {
  grid-template-columns: minmax(380px, 0.75fr) minmax(0, 1.25fr);
  background:
    radial-gradient(circle at 22% 35%, rgba(214,180,124,0.24), transparent 24%),
    #f4f0e9;
}

.page-hero--stories .page-hero__copy h1 em {
  color: var(--wine);
  font-style: italic;
}

.stories-display {
  min-height: 610px;
  padding: 26px;
  color: #f5eee5;
  background: var(--wine);
  border-radius: 5px 110px 5px 5px;
}

.stories-display__issue {
  position: absolute;
  top: 26px;
  left: 28px;
  z-index: 2;
  font: 600 9px/1.45 "Manrope", sans-serif;
  letter-spacing: 0.18em;
}

.stories-display__frame {
  position: absolute;
  left: 11%;
  right: 11%;
  top: 16%;
  bottom: 15%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,238,229,0.35);
  background:
    radial-gradient(circle at 50% 42%, rgba(214,180,124,0.43), transparent 25%),
    linear-gradient(155deg, rgba(255,255,255,0.08), transparent);
}

.stories-display__frame::before {
  content: "“";
  position: absolute;
  top: 2%;
  left: 7%;
  color: var(--gold);
  font: 500 130px "Playfair Display", serif;
}

.stories-display__frame b {
  max-width: 130px;
  text-align: center;
  font: 700 9px/1.5 "Manrope", sans-serif;
  letter-spacing: 0.16em;
}

.stories-display > small {
  position: absolute;
  left: 28px;
  bottom: 25px;
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: 0.08em;
}

.editorial-image {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 0.88;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #231b1b;
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,8,8,0.78));
  pointer-events: none;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.72) contrast(1.04);
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1), filter 0.6s ease;
}

.editorial-image:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.04);
}

.editorial-image figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--event-paper);
}

.editorial-image figcaption span {
  font: 600 8px "Manrope", sans-serif;
  letter-spacing: 0.13em;
}

.editorial-image figcaption b {
  font-size: 68px;
  font-weight: 400;
}

.runway-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  isolation: isolate;
  background: #181313;
}

.runway-visual > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.05);
}

.runway-visual__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12,9,9,0.92) 0%, rgba(12,9,9,0.48) 52%, rgba(12,9,9,0.1) 100%),
    linear-gradient(0deg, rgba(12,9,9,0.65), transparent 45%);
}

.runway-visual__copy {
  width: min(100%, 1500px);
  min-height: 720px;
  margin: 0 auto;
  padding: clamp(85px,10vw,145px) clamp(22px,8vw,125px);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.runway-visual__copy > span {
  color: var(--gold);
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: 0.18em;
}

.runway-visual__copy h2 {
  max-width: 790px;
  margin: 28px 0;
  font-size: clamp(68px, 8vw, 125px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.runway-visual__copy h2 em {
  display: block;
  margin-left: 10%;
  color: var(--gold);
  font-weight: 400;
}

.runway-visual__copy p {
  max-width: 510px;
  color: rgba(239,231,220,0.65);
  font: 500 11px/1.6 "Manrope", sans-serif;
}

.interactive-leaves .leaf-i { left: 13%; top: 72%; width: 18px; height: 31px; background: #d0a565; }
.interactive-leaves .leaf-j { left: 27%; top: 84%; width: 29px; height: 47px; background: #85405a; }
.interactive-leaves .leaf-k { left: 39%; top: 67%; width: 16px; height: 28px; background: #c2d1bc; }
.interactive-leaves .leaf-l { left: 54%; top: 78%; width: 33px; height: 55px; background: #b96f43; }
.interactive-leaves .leaf-m { left: 68%; top: 91%; width: 20px; height: 34px; background: var(--gold); }
.interactive-leaves .leaf-n { left: 82%; top: 73%; width: 25px; height: 43px; background: #8a384f; }
.interactive-leaves .leaf-o { left: 96%; top: 88%; width: 17px; height: 30px; background: #d7ddd2; }
.interactive-leaves .leaf-p { left: 4%; top: 53%; width: 28px; height: 46px; background: #7f9279; }
.interactive-leaves .leaf-q { left: 31%; top: 25%; width: 14px; height: 26px; background: #efe7dc; }
.interactive-leaves .leaf-r { left: 57%; top: 37%; width: 20px; height: 35px; background: #b16c46; }
.interactive-leaves .leaf-s { left: 77%; top: 58%; width: 31px; height: 49px; background: #b7ccb1; }
.interactive-leaves .leaf-t { left: 90%; top: 31%; width: 15px; height: 27px; background: #d6b47c; }

@media (max-width: 1050px) {
  .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 42px;
  }

  .page-hero .page-hero__copy h1 {
    font-size: clamp(52px, 6.6vw, 82px);
  }

  .page-display {
    min-height: 520px;
  }
}

@media (max-width: 900px) {
  .page-hero,
  .page-hero--causes,
  .page-hero--organisations,
  .page-hero--stories {
    min-height: auto;
    padding-top: 135px;
    grid-template-columns: 1fr;
  }

  .page-hero--stories .page-display {
    order: 2;
  }

  .page-display {
    width: min(100%, 620px);
    min-height: 500px;
  }

  .main-nav > a[aria-current="page"]::after {
    right: auto;
    width: 28px;
  }

  .editorial-image {
    width: min(100%, 620px);
    aspect-ratio: 1.08;
  }

  .runway-visual,
  .runway-visual__copy {
    min-height: 620px;
  }
}

@media (max-width: 560px) {
  .page-hero {
    gap: 48px;
  }

  .page-hero .page-hero__copy h1 {
    font-size: 52px;
  }

  .page-hero .page-hero__copy > p:last-child {
    font-size: 16px;
  }

  .page-display,
  .network-display,
  .stories-display {
    min-height: 440px;
    border-radius: 18px;
  }

  .stories-display {
    border-radius: 4px 78px 4px 4px;
  }

  .display-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .display-caption small {
    max-width: none;
    text-align: left;
  }

  .network-node {
    width: 58px;
  }

  .node-one {
    width: 74px;
  }

  .editorial-image {
    aspect-ratio: 0.88;
  }

  .runway-visual,
  .runway-visual__copy {
    min-height: 590px;
  }

  .runway-visual__shade {
    background:
      linear-gradient(0deg, rgba(12,9,9,0.94) 0%, rgba(12,9,9,0.55) 64%, rgba(12,9,9,0.18) 100%);
  }

  .runway-visual__copy {
    justify-content: flex-end;
    padding: 75px 18px;
  }

  .runway-visual__copy h2 {
    font-size: 62px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }

  .editorial-image img {
    transition: none;
  }
}

/* Editorial information system and protected leaf layers */
.home-event-leaves {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.home-event-leaves i {
  position: absolute;
  width: 18px;
  height: 31px;
  border-radius: 100% 0 100% 0;
  background: var(--sage);
  opacity: 0.48;
  transition: transform 0.25s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

.home-event-leaves i:nth-child(1) { left: 5%; top: 18%; background: #a04a61; }
.home-event-leaves i:nth-child(2) { left: 22%; top: 74%; width: 25px; height: 42px; background: var(--gold); }
.home-event-leaves i:nth-child(3) { left: 38%; top: 12%; width: 14px; height: 25px; background: #d7ddd2; }
.home-event-leaves i:nth-child(4) { left: 49%; top: 55%; background: #7f9279; }
.home-event-leaves i:nth-child(5) { left: 65%; top: 23%; width: 29px; height: 47px; background: #b96f43; }
.home-event-leaves i:nth-child(6) { left: 76%; top: 79%; background: #884057; }
.home-event-leaves i:nth-child(7) { left: 88%; top: 13%; width: 16px; height: 28px; background: var(--sage); }
.home-event-leaves i:nth-child(8) { left: 96%; top: 60%; width: 24px; height: 40px; background: var(--gold); }

.event-preview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.event-preview__content,
.event-preview__art {
  position: relative;
  z-index: 3;
}

.event-page .interactive-leaves {
  z-index: 1;
}

.event-topline,
.event-editorial .editorial-image,
.event-editorial .editorial-copy,
.partners-call > *,
.tiers-wrap > *,
.event-trust > * {
  position: relative;
  z-index: 3;
}

.runway-visual {
  z-index: 3;
}

.page-home .path-grid {
  margin-top: 78px;
  display: block;
  border-bottom: 1px solid rgba(30,30,30,0.2);
}

.page-home .path-grid .glass-card {
  position: relative;
  width: 100%;
  min-height: 205px;
  padding: 34px 8px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px,4vw,70px);
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(30,30,30,0.2);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: padding 0.35s cubic-bezier(.2,.8,.2,1);
}

.page-home .path-grid .glass-card:nth-child(2),
.page-home .path-grid .glass-card:nth-child(3) {
  background: transparent;
}

.page-home .path-grid .glass-card:nth-child(2) {
  width: 94%;
  margin-left: 6%;
}

.page-home .path-grid .glass-card:nth-child(3) {
  width: 97%;
  margin-left: 3%;
}

.page-home .path-grid .glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(255,255,255,0.35);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.38s cubic-bezier(.2,.8,.2,1);
}

.page-home .path-grid .glass-card:hover {
  padding-left: 24px;
  background: transparent;
  transform: none;
}

.page-home .path-grid .glass-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.page-home .path-grid .glass-card > * {
  position: relative;
  z-index: 1;
}

.page-home .path-grid .card-number {
  font: 500 42px "Playfair Display", Georgia, serif;
  opacity: 0.5;
}

.page-home .path-grid .glass-card h3 {
  font-size: clamp(30px,3.3vw,48px);
}

.page-home .path-grid .glass-card p {
  max-width: 640px;
  font-size: 15px;
}

.page-home .path-grid .glass-card b {
  min-width: 135px;
  font-size: 12px;
  text-align: right;
}

.page-home .process,
.inner-page .process {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-home .process div,
.inner-page .process div {
  padding: 20px 4px;
  border-top: 1px solid rgba(30,30,30,0.19);
}

.page-home .process div:last-child,
.inner-page .process div:last-child {
  border-bottom: 1px solid rgba(30,30,30,0.19);
}

.page-about .statement-block {
  gap: clamp(55px,9vw,140px);
  align-items: start;
}

.page-about .statement-block article,
.page-stories .story-principles article {
  padding: 34px 0 50px;
  border: 0;
  border-top: 1px solid rgba(30,30,30,0.25);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-about .statement-block article:nth-child(2) {
  margin-top: 115px;
}

.page-about .statement-block h2,
.page-stories .story-principles h2 {
  margin: 42px 0 18px;
  font-size: clamp(38px,4vw,58px);
}

.page-causes .cause-grid {
  padding-top: 80px;
  display: block;
}

.page-causes .cause-grid .glass-card {
  position: relative;
  width: 100%;
  min-height: 225px;
  padding: 45px 8px;
  display: grid;
  grid-template-columns: 80px minmax(260px,0.72fr) minmax(280px,1fr);
  align-items: start;
  gap: clamp(28px,5vw,85px);
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(30,30,30,0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-causes .cause-grid .glass-card:last-child {
  border-bottom: 1px solid rgba(30,30,30,0.24);
}

.page-causes .cause-grid .glass-card:nth-child(2) {
  width: 92%;
  margin-left: 8%;
}

.page-causes .cause-grid .glass-card:nth-child(3) {
  width: 97%;
  margin-left: 3%;
}

.page-causes .cause-grid .glass-card:hover {
  background: rgba(255,255,255,0.3);
  transform: translateX(8px);
}

.page-causes .cause-grid article > span {
  font: 500 46px "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.page-causes .cause-grid h2 {
  margin: 0;
  font-size: clamp(32px,3.4vw,50px);
}

.page-causes .cause-grid p {
  max-width: 560px;
  margin: 5px 0 0;
  font-size: 16px;
}

.page-organisations .impact-grid {
  gap: 0;
  align-items: start;
}

.page-organisations .impact-grid article {
  min-height: 290px;
  padding: 34px 30px;
  border: 0;
  border-top: 1px solid rgba(30,30,30,0.24);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-organisations .impact-grid article + article {
  border-left: 1px solid rgba(30,30,30,0.15);
}

.page-organisations .impact-grid article:nth-child(2) {
  margin-top: 65px;
}

.page-organisations .impact-grid article:nth-child(3) {
  margin-top: 130px;
}

.page-organisations .impact-grid h3 {
  margin-top: 78px;
  font-size: 32px;
}

.page-stories .story-principles {
  gap: 0;
  align-items: start;
}

.page-stories .story-principles article {
  min-height: 330px;
  padding-left: 28px;
  padding-right: 28px;
}

.page-stories .story-principles article + article {
  border-left: 1px solid rgba(30,30,30,0.15);
}

.page-stories .story-principles article:nth-child(2) {
  margin-top: 60px;
}

.page-stories .story-principles article:nth-child(3) {
  margin-top: 120px;
}

.page-event .partner-cards,
.page-event .tiers,
.page-event .event-trust__items {
  gap: 0;
  border-top: 1px solid rgba(239,231,220,0.24);
  border-bottom: 1px solid rgba(239,231,220,0.24);
}

.page-event .partner-cards a,
.page-event .tiers article,
.page-event .event-trust__items article {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.page-event .partner-cards a + a,
.page-event .tiers article + article,
.page-event .event-trust__items article + article {
  border-left: 1px solid rgba(239,231,220,0.18);
}

.page-event .partner-cards a {
  min-height: 330px;
  padding: 30px;
}

.page-event .partner-cards a:first-child,
.page-event .partner-cards a:last-child {
  border-radius: 0;
}

.page-event .partner-cards a:hover {
  background: rgba(239,231,220,0.055);
}

.page-event .tiers article {
  min-height: 310px;
  padding: 30px;
}

.page-event .tiers article.featured {
  color: var(--event-paper);
  background: transparent;
  border-top: 3px solid var(--gold);
}

.page-event .tiers .featured p {
  color: rgba(239,231,220,0.63);
}

.page-event .event-trust__items article {
  min-height: 270px;
  padding: 28px;
}

@media (max-width: 900px) {
  .page-home .path-grid .glass-card,
  .page-causes .cause-grid .glass-card {
    width: 100%;
    margin-left: 0;
  }

  .page-home .path-grid .glass-card {
    grid-template-columns: 62px minmax(0,1fr);
  }

  .page-home .path-grid .glass-card b {
    grid-column: 2;
    text-align: left;
  }

  .page-causes .cause-grid .glass-card {
    grid-template-columns: 65px minmax(0,1fr);
  }

  .page-causes .cause-grid .glass-card p {
    grid-column: 2;
  }

  .page-about .statement-block article:nth-child(2),
  .page-organisations .impact-grid article:nth-child(2),
  .page-organisations .impact-grid article:nth-child(3),
  .page-stories .story-principles article:nth-child(2),
  .page-stories .story-principles article:nth-child(3) {
    margin-top: 0;
  }

  .page-organisations .impact-grid article + article,
  .page-stories .story-principles article + article,
  .page-event .partner-cards a + a,
  .page-event .tiers article + article,
  .page-event .event-trust__items article + article {
    border-left: 0;
    border-top: 1px solid rgba(30,30,30,0.16);
  }

  .page-event .partner-cards a + a,
  .page-event .tiers article + article,
  .page-event .event-trust__items article + article {
    border-top-color: rgba(239,231,220,0.18);
  }

  .page-event .tiers article.featured {
    border-top: 3px solid var(--gold);
  }
}

@media (max-width: 560px) {
  .page-home .path-grid {
    margin-top: 55px;
  }

  .page-home .path-grid .glass-card {
    min-height: 230px;
    padding: 30px 0;
    grid-template-columns: 48px minmax(0,1fr);
    gap: 18px;
  }

  .page-home .path-grid .card-number,
  .page-causes .cause-grid article > span {
    font-size: 32px;
  }

  .page-home .path-grid .glass-card p,
  .page-causes .cause-grid p {
    font-size: 15px;
  }

  .page-causes .cause-grid {
    padding-top: 45px;
  }

  .page-causes .cause-grid .glass-card {
    min-height: 270px;
    padding: 34px 0;
    grid-template-columns: 46px minmax(0,1fr);
    gap: 16px;
  }

  .page-organisations .impact-grid article,
  .page-stories .story-principles article {
    min-height: 260px;
    padding-left: 0;
    padding-right: 0;
  }

  .home-event-leaves i {
    opacity: 0.38;
  }
}

/* Illustrated calls to action, visual journeys and founder watermark */
.site-header {
  background:
    linear-gradient(90deg, rgba(251,249,246,0.98) 0 265px, rgba(247,245,242,0.92) 430px, rgba(247,245,242,0.88) 100%);
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 12px 42px rgba(52,46,37,0.12);
}

.site-header::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  width: 260px;
  z-index: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255,255,255,0.58), rgba(255,255,255,0));
  pointer-events: none;
}

.site-header .brand,
.site-header .main-nav,
.site-header .menu-button {
  position: relative;
  z-index: 1;
}

.site-header .brand {
  width: 228px;
  height: 70px;
  flex: 0 0 auto;
}

.site-header .brand img {
  filter: contrast(1.13) saturate(1.06);
}

.hero .hero-title {
  position: relative;
  max-width: 990px;
  padding-bottom: 22px;
}

.hero .hero-title > span,
.hero .hero-title > em {
  display: block;
}

.hero .hero-title > em {
  margin-left: clamp(18px,5vw,74px);
  color: #a27b43;
  font-weight: 500;
  font-style: italic;
}

.hero .hero-title > span:last-child {
  margin-left: clamp(5px,1.6vw,24px);
}

.hero .hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(115px,14vw,220px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(214,180,124,0));
}

.paths.section-shell {
  padding-top: clamp(78px,8vw,118px);
  padding-bottom: clamp(78px,8vw,118px);
}

.page-home .action-gateway {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 26px;
  background: rgba(255,255,255,0.3);
  box-shadow: 0 24px 65px rgba(70,56,39,0.1);
}

.page-home .action-gateway .action-gateway__item,
.page-home .action-gateway .action-gateway__item:nth-child(2),
.page-home .action-gateway .action-gateway__item:nth-child(3) {
  width: 100%;
  min-height: 228px;
  margin: 0;
  padding: 26px;
  display: grid;
  grid-template-columns: 62px minmax(0,1fr);
  grid-template-rows: 1fr auto;
  align-items: start;
  gap: 16px 20px;
  border: 0;
  border-radius: 0;
  color: #263126;
  background: rgba(183,204,177,0.62);
  transition: background 0.3s ease, transform 0.3s cubic-bezier(.2,.8,.2,1);
}

.page-home .action-gateway .action-gateway__item + .action-gateway__item {
  border-left: 1px solid rgba(255,255,255,0.62);
}

.page-home .action-gateway .action-gateway__item.action-gateway__item--help {
  color: #5f4727;
  background: rgba(226,199,151,0.63);
}

.page-home .action-gateway .action-gateway__item.action-gateway__item--company {
  color: #f4efe7;
  background: #536550;
}

.page-home .action-gateway .action-gateway__item::before {
  display: none;
}

.page-home .action-gateway .action-gateway__item:hover {
  padding-left: 26px;
  background: rgba(183,204,177,0.82);
  transform: translateY(-4px);
}

.page-home .action-gateway .action-gateway__item.action-gateway__item--help:hover {
  background: rgba(226,199,151,0.82);
}

.page-home .action-gateway .action-gateway__item.action-gateway__item--company:hover {
  background: #435440;
}

.gateway-symbol {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.84;
}

.gateway-symbol svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-home .action-gateway .glass-card > div {
  align-self: center;
}

.page-home .action-gateway .glass-card h3 {
  margin: 0 0 9px;
  font-size: clamp(25px,2.2vw,34px);
}

.page-home .action-gateway .glass-card p {
  max-width: 280px;
  color: currentColor;
  font-size: 13px;
  opacity: 0.72;
}

.page-home .action-gateway .glass-card b {
  grid-column: 2;
  min-width: 0;
  color: currentColor;
  font-size: 11px;
  text-align: left;
}

.journey-illustration {
  position: relative;
  min-height: 470px;
  overflow: visible;
}

.journey-line {
  position: absolute;
  inset: 18px -20px 0 0;
  width: calc(100% + 20px);
  height: calc(100% - 18px);
  fill: none;
  stroke: rgba(119,142,112,0.72);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-stop {
  position: absolute;
  width: 175px;
  display: flex;
  flex-direction: column;
}

.journey-stop i {
  width: 13px;
  height: 13px;
  margin-bottom: 12px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--sage-deep);
}

.journey-stop strong {
  font: 500 27px "Playfair Display", Georgia, serif;
}

.journey-stop small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.journey-stop--connect { left: 3%; bottom: 4%; }
.journey-stop--mobilise { left: 31%; bottom: 32%; }
.journey-stop--strengthen { left: 58%; top: 18%; }
.journey-stop--transform { right: -3%; top: 1%; }

.event-preview__art {
  margin: 0;
  overflow: hidden;
  background: #171313;
}

.event-preview__art::before {
  display: none;
}

.event-preview__art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10,8,8,0.78));
  pointer-events: none;
}

.event-preview__art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.04);
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1), filter 0.5s ease;
}

.event-preview__art:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.04);
}

.event-preview__art figcaption {
  position: absolute;
  left: 22px;
  bottom: 19px;
  z-index: 2;
  color: rgba(239,231,220,0.78);
  font: 600 8px "Manrope", sans-serif;
  letter-spacing: 0.14em;
}

.founder-mini,
.founder {
  position: relative;
  overflow: hidden;
}

.rose-watermark {
  position: absolute;
  right: -2%;
  bottom: -19%;
  z-index: 0;
  width: min(47vw,650px);
  opacity: 0.12;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.founder-mini > *:not(.rose-watermark),
.founder > *:not(.rose-watermark) {
  position: relative;
  z-index: 1;
}

.cause-atlas .cause-symbol {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  color: var(--wine);
  letter-spacing: 0;
}

.cause-atlas .cause-symbol svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cause-atlas article:nth-child(2) .cause-symbol {
  color: #99733d;
}

.cause-atlas article:nth-child(3) .cause-symbol {
  color: var(--sage-deep);
}

.trust-constellation {
  position: relative;
  min-height: 690px;
  margin-top: 70px;
}

.trust-constellation__lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(77,95,73,0.28);
  stroke-width: 1.4;
}

.trust-core {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 50%;
  color: #eff3ec;
  background: #526550;
  text-align: center;
  transform: translate(-50%,-50%);
  box-shadow: 0 22px 55px rgba(66,82,63,0.18);
}

.trust-core img {
  width: 72px;
  filter: saturate(0.6);
}

.trust-core strong {
  font: 500 18px/1.1 "Playfair Display", Georgia, serif;
}

.trust-point {
  position: absolute;
  width: min(28%,300px);
}

.trust-point--transparency { left: 2%; top: 4%; }
.trust-point--responsibility { right: 2%; top: 4%; }
.trust-point--impact { left: 50%; bottom: 0; transform: translateX(-50%); text-align: center; }

.trust-icon {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  color: var(--sage-deep);
}

.trust-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-point h3 {
  margin: 16px 0 10px;
  font: 500 clamp(25px,2.7vw,38px) "Playfair Display", Georgia, serif;
}

.trust-point p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.trust-point--impact p {
  margin-left: auto;
  margin-right: auto;
}

.story-manifesto {
  position: relative;
  min-height: 650px;
  padding-top: 110px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: clamp(25px,5vw,80px);
  align-items: start;
  overflow: hidden;
}

.manifesto-line {
  position: absolute;
  left: 7%;
  top: 28%;
  width: 86%;
  height: 42%;
  fill: none;
  stroke: rgba(82,31,47,0.28);
  stroke-width: 2;
  stroke-linecap: round;
}

.manifesto-quote {
  position: absolute;
  left: 8%;
  top: 4%;
  color: rgba(82,31,47,0.2);
  font: 500 190px "Playfair Display", Georgia, serif;
}

.page-stories .story-manifesto article,
.page-stories .story-manifesto article:nth-child(2),
.page-stories .story-manifesto article:nth-child(3) {
  position: relative;
  z-index: 1;
  min-height: 330px;
  margin-top: 0;
  padding: 30px 0;
  border: 0;
  background: rgba(247,245,242,0.74);
  backdrop-filter: blur(5px);
}

.page-stories .story-manifesto article:nth-of-type(2) {
  margin-top: 105px;
}

.page-stories .story-manifesto article:nth-of-type(3) {
  margin-top: 20px;
}

.manifesto-mark {
  width: 58px;
  height: 58px;
  display: block;
  color: var(--wine);
}

.manifesto-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-stories .story-manifesto h2 {
  margin: 28px 0 16px;
}

@media (max-width: 1050px) {
  .site-header .brand {
    width: 205px;
  }

  .journey-stop {
    width: 145px;
  }

  .journey-stop strong {
    font-size: 23px;
  }
}

@media (max-width: 900px) {
  .site-header {
    background: rgba(249,247,244,0.96);
  }

  .site-header::before {
    width: 220px;
  }

  .site-header .brand {
    width: 185px;
    height: 60px;
  }

  .page-home .action-gateway {
    grid-template-columns: 1fr;
  }

  .page-home .action-gateway .action-gateway__item,
  .page-home .action-gateway .action-gateway__item:nth-child(2),
  .page-home .action-gateway .action-gateway__item:nth-child(3) {
    min-height: 174px;
    grid-template-columns: 58px minmax(0,1fr) auto;
    grid-template-rows: 1fr;
    align-items: center;
  }

  .page-home .action-gateway .action-gateway__item + .action-gateway__item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.62);
  }

  .page-home .action-gateway .glass-card b {
    grid-column: 3;
    white-space: nowrap;
  }

  .journey-illustration {
    min-height: 520px;
  }

  .trust-constellation {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .trust-constellation__lines {
    display: none;
  }

  .trust-core,
  .trust-point,
  .trust-point--impact {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
    text-align: left;
  }

  .trust-core {
    width: 180px;
    margin: 0 auto 24px;
    text-align: center;
  }

  .trust-point {
    min-height: 190px;
    padding: 25px 0;
    display: grid;
    grid-template-columns: 80px minmax(0,1fr);
    border-top: 1px solid rgba(30,30,30,0.18);
  }

  .trust-point h3 {
    margin: 8px 0 10px;
  }

  .trust-point p {
    grid-column: 2;
  }

  .story-manifesto {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .manifesto-line {
    left: 25px;
    top: 18%;
    width: 1px;
    height: 72%;
    background: rgba(82,31,47,0.24);
  }

  .page-stories .story-manifesto article,
  .page-stories .story-manifesto article:nth-of-type(2),
  .page-stories .story-manifesto article:nth-of-type(3) {
    min-height: 230px;
    margin: 0 0 0 68px;
    padding: 28px 0;
  }
}

@media (max-width: 560px) {
  .site-header .brand {
    width: 178px;
    height: 58px;
  }

  .site-header::before {
    width: 195px;
  }

  .hero .hero-title > em,
  .hero .hero-title > span:last-child {
    margin-left: 0;
  }

  .page-home .action-gateway {
    border-radius: 19px;
  }

  .page-home .action-gateway .action-gateway__item,
  .page-home .action-gateway .action-gateway__item:nth-child(2),
  .page-home .action-gateway .action-gateway__item:nth-child(3) {
    min-height: 190px;
    padding: 23px 19px;
    grid-template-columns: 54px minmax(0,1fr);
    grid-template-rows: 1fr auto;
    gap: 13px 15px;
  }

  .page-home .action-gateway .glass-card b {
    grid-column: 2;
  }

  .gateway-symbol {
    width: 50px;
    height: 50px;
  }

  .gateway-symbol svg {
    width: 31px;
    height: 31px;
  }

  .journey-illustration {
    min-height: 590px;
  }

  .journey-line {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(5deg);
  }

  .journey-stop {
    width: 150px;
  }

  .journey-stop--connect { left: auto; right: 0; top: 2%; bottom: auto; }
  .journey-stop--mobilise { left: 5%; top: 27%; bottom: auto; }
  .journey-stop--strengthen { left: auto; right: 0; top: 52%; }
  .journey-stop--transform { left: 2%; right: auto; top: auto; bottom: 3%; }

  .event-preview__art {
    min-height: 460px;
  }

  .rose-watermark {
    right: -25%;
    bottom: -8%;
    width: 105vw;
    opacity: 0.1;
  }

  .cause-atlas .cause-symbol {
    width: 46px;
    height: 46px;
  }

  .manifesto-quote {
    font-size: 130px;
  }
}

/* Stable responsive alignment and interactive Refúgio connection map */
.connection-map {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.connection-map__branches {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  pointer-events: none;
}

.connection-branch {
  stroke: rgba(116,134,111,0.42);
  stroke-width: 2;
  stroke-linecap: round;
  transition:
    stroke 0.32s ease,
    stroke-width 0.32s ease,
    filter 0.32s ease;
}

.connection-map__core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(108px,11vw,148px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: translate(-50%,-50%);
}

.connection-map__core::before,
.connection-map__core::after,
.connection-map__core > span {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(214,180,124,0.42);
  border-radius: 50%;
  transition: transform 0.42s cubic-bezier(.2,.8,.2,1), opacity 0.32s ease;
}

.connection-map__core::after {
  inset: 12%;
  border-color: rgba(116,134,111,0.35);
}

.connection-map__core > span {
  inset: -12%;
  border-style: dashed;
  opacity: 0.38;
}

.connection-map__core img {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 82%;
  object-fit: contain;
  filter: saturate(0.85);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), filter 0.35s ease;
}

.connection-node {
  position: absolute;
  z-index: 3;
  width: min(34%,210px);
  padding: 10px 8px;
  cursor: default;
  outline: none;
  transform-origin: left center;
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1), color 0.28s ease;
}

.connection-node::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(214,180,124,0));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
}

.connection-node i {
  width: 11px;
  height: 11px;
  margin-bottom: 12px;
  display: block;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--sage-deep);
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1), background 0.28s ease;
}

.connection-node strong {
  display: block;
  font: 500 clamp(23px,2.5vw,34px)/1.05 "Playfair Display", Georgia, serif;
  transition: color 0.28s ease;
}

.connection-node small {
  max-width: 180px;
  margin-top: 7px;
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.connection-node--connect { left: 1%; top: 8%; }
.connection-node--mobilise { right: 0; top: 8%; }
.connection-node--strengthen { left: 1%; bottom: 7%; }
.connection-node--transform { right: 0; bottom: 7%; }

.connection-node:is(:hover,:focus-visible) {
  color: #8b6533;
  transform: scale(1.055) translateX(5px);
}

.connection-node:is(:hover,:focus-visible)::after {
  transform: scaleX(1);
}

.connection-node:is(:hover,:focus-visible) i {
  background: var(--wine);
  transform: scale(1.35);
}

.connection-map:has(.connection-node:is(:hover,:focus-visible)) .connection-map__core img {
  filter: saturate(1.08);
  transform: scale(1.07) rotate(4deg);
}

.connection-map:has(.connection-node:is(:hover,:focus-visible)) .connection-map__core > span {
  opacity: 0.72;
  transform: rotate(24deg) scale(1.05);
}

.connection-map:has(.connection-node--connect:is(:hover,:focus-visible)) .connection-branch--connect,
.connection-map:has(.connection-node--mobilise:is(:hover,:focus-visible)) .connection-branch--mobilise,
.connection-map:has(.connection-node--strengthen:is(:hover,:focus-visible)) .connection-branch--strengthen,
.connection-map:has(.connection-node--transform:is(:hover,:focus-visible)) .connection-branch--transform {
  stroke: var(--gold);
  stroke-width: 4;
  filter: drop-shadow(0 0 4px rgba(214,180,124,0.28));
}

.values--connection {
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px,7vw,110px);
}

.connection-map--about {
  min-height: 610px;
}

.connection-map--about .connection-node {
  width: min(36%,235px);
}

.page-causes .cause-grid .glass-card,
.page-causes .cause-grid .glass-card:nth-child(2),
.page-causes .cause-grid .glass-card:nth-child(3) {
  width: 100%;
  margin-left: 0;
  grid-template-columns: 88px minmax(280px,0.72fr) minmax(300px,1fr);
  transition: background 0.32s ease, border-color 0.32s ease;
}

.page-causes .cause-grid .glass-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 135px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s cubic-bezier(.2,.8,.2,1);
}

.page-causes .cause-grid .cause-symbol,
.page-causes .cause-grid h2 {
  transform-origin: left center;
  transition: transform 0.34s cubic-bezier(.2,.8,.2,1), color 0.28s ease;
}

.page-causes .cause-grid .glass-card:hover {
  background: rgba(255,255,255,0.28);
  transform: none;
}

.page-causes .cause-grid .glass-card:hover::after {
  transform: scaleX(1);
}

.page-causes .cause-grid .glass-card:hover .cause-symbol {
  color: #9a713a;
  transform: scale(1.1) rotate(-3deg);
}

.page-causes .cause-grid .glass-card:hover h2 {
  color: var(--wine);
  transform: scale(1.035) translateX(5px);
}

.page-stories .story-manifesto {
  align-items: center;
}

.page-stories .story-manifesto article,
.page-stories .story-manifesto article:nth-of-type(2),
.page-stories .story-manifesto article:nth-of-type(3) {
  align-self: center;
  margin-top: 0;
  background: rgba(247,245,242,0.68);
  transform-origin: left center;
  transition: transform 0.34s cubic-bezier(.2,.8,.2,1), background 0.28s ease;
}

.page-stories .story-manifesto article::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 92px;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(.2,.8,.2,1);
}

.page-stories .story-manifesto .manifesto-mark,
.page-stories .story-manifesto h2 {
  transform-origin: left center;
  transition: transform 0.34s cubic-bezier(.2,.8,.2,1), color 0.28s ease;
}

.page-stories .story-manifesto article:hover,
.page-stories .story-manifesto article:focus-within {
  z-index: 3;
  background: rgba(247,245,242,0.92);
  transform: scale(1.035);
}

.page-stories .story-manifesto article:hover::after,
.page-stories .story-manifesto article:focus-within::after {
  transform: scaleX(1);
}

.page-stories .story-manifesto article:hover .manifesto-mark,
.page-stories .story-manifesto article:focus-within .manifesto-mark {
  color: #9a713a;
  transform: scale(1.12) rotate(-3deg);
}

.page-stories .story-manifesto article:hover h2,
.page-stories .story-manifesto article:focus-within h2 {
  color: var(--wine);
  transform: translateX(5px);
}

@media (max-width: 1180px) and (min-width: 701px) {
  .page-home .action-gateway {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .page-home .action-gateway .action-gateway__item,
  .page-home .action-gateway .action-gateway__item:nth-child(2),
  .page-home .action-gateway .action-gateway__item:nth-child(3) {
    min-height: 152px;
    grid-template-columns: 62px minmax(0,1fr) minmax(120px,auto);
    grid-template-rows: 1fr;
    align-items: center;
  }

  .page-home .action-gateway .action-gateway__item + .action-gateway__item {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.65);
  }

  .page-home .action-gateway .glass-card p {
    max-width: 500px;
  }

  .page-home .action-gateway .glass-card b {
    grid-column: 3;
    text-align: right;
  }
}

@media (max-width: 900px) {
  .values--connection {
    grid-template-columns: 1fr;
  }

  .connection-map,
  .connection-map--about {
    width: min(100%,700px);
    min-height: 570px;
    margin: 0 auto;
  }

  .page-causes .cause-grid .glass-card,
  .page-causes .cause-grid .glass-card:nth-child(2),
  .page-causes .cause-grid .glass-card:nth-child(3) {
    grid-template-columns: 70px minmax(0,1fr);
  }

  .page-causes .cause-grid p {
    grid-column: 2;
  }
}

@media (max-width: 700px) {
  .connection-map,
  .connection-map--about {
    min-height: 560px;
    padding: 28px 0 28px 120px;
    display: grid;
    grid-template-rows: repeat(4,1fr);
    gap: 4px;
  }

  .connection-map::before {
    content: "";
    position: absolute;
    left: 71px;
    top: 70px;
    bottom: 70px;
    width: 1px;
    background: linear-gradient(var(--gold), var(--sage-deep));
    opacity: 0.5;
  }

  .connection-map__branches {
    display: none;
  }

  .connection-map__core {
    left: 70px;
    top: 50%;
    width: 98px;
  }

  .connection-node,
  .connection-map--about .connection-node {
    position: relative;
    inset: auto;
    width: 100%;
    align-self: center;
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid rgba(30,30,30,0.12);
  }

  .connection-node i {
    position: absolute;
    left: -55px;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
  }

  .connection-node:is(:hover,:focus-visible) {
    transform: scale(1.035) translateX(3px);
  }

  .connection-node:is(:hover,:focus-visible) i {
    transform: translateY(-50%) scale(1.3);
  }

  .connection-node strong {
    font-size: 26px;
  }

  .page-stories .story-manifesto article,
  .page-stories .story-manifesto article:nth-of-type(2),
  .page-stories .story-manifesto article:nth-of-type(3) {
    margin-left: 68px;
    transform-origin: left center;
  }
}

/* Refined interactive editorial elements */
.trust-point {
  padding: 18px;
  border-radius: 22px;
  outline: none;
  transition:
    color 0.28s ease,
    background 0.32s ease,
    box-shadow 0.32s ease,
    transform 0.36s cubic-bezier(.2,.8,.2,1);
}

.trust-point .trust-icon,
.trust-point h3 {
  transform-origin: left center;
  transition: transform 0.36s cubic-bezier(.2,.8,.2,1), color 0.28s ease;
}

.trust-point--impact .trust-icon,
.trust-point--impact h3 {
  transform-origin: center;
}

.trust-point:is(:hover,:focus-visible) {
  color: var(--wine);
  background: rgba(255,255,255,0.52);
  box-shadow: 0 22px 55px rgba(67,76,61,0.09);
  transform: translateY(-7px);
}

.trust-point:is(:hover,:focus-visible) .trust-icon {
  color: #9a713a;
  transform: scale(1.13) rotate(-4deg);
}

.trust-point:is(:hover,:focus-visible) h3 {
  transform: translateX(5px) scale(1.025);
}

.trust-point--impact:is(:hover,:focus-visible) {
  transform: translateX(-50%) translateY(-7px);
}

.trust-point--impact:is(:hover,:focus-visible) h3 {
  transform: scale(1.025);
}

.trust-constellation:has(.trust-point:is(:hover,:focus-visible)) .trust-core {
  box-shadow: 0 28px 68px rgba(66,82,63,0.28);
}

.trust-core {
  transition: box-shadow 0.35s ease, transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.trust-core img {
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.trust-constellation:has(.trust-point:is(:hover,:focus-visible)) .trust-core img {
  transform: scale(1.08) rotate(4deg);
}

.page-stories .story-manifesto {
  min-height: 610px;
  gap: clamp(42px,7vw,112px);
  align-items: center;
}

.page-stories .manifesto-line {
  display: none;
}

.manifesto-orbit {
  position: absolute;
  border: 1px solid rgba(82,31,47,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.manifesto-orbit--one {
  width: 380px;
  height: 380px;
  left: 8%;
  top: 18%;
}

.manifesto-orbit--two {
  width: 520px;
  height: 520px;
  right: -7%;
  bottom: -32%;
  border-color: rgba(183,204,177,0.34);
}

.page-stories .story-manifesto article,
.page-stories .story-manifesto article:nth-of-type(2),
.page-stories .story-manifesto article:nth-of-type(3) {
  min-height: 290px;
  margin: 0;
  padding: 34px 10px;
  border: 0;
  border-radius: 46% 54% 45% 55% / 58% 42% 58% 42%;
  background:
    radial-gradient(circle at 46% 48%, rgba(255,255,255,0.7), rgba(247,245,242,0.16) 66%, transparent 68%);
  backdrop-filter: none;
  outline: none;
  transform-origin: center;
  transition:
    transform 0.38s cubic-bezier(.2,.8,.2,1),
    filter 0.32s ease;
}

.page-stories .story-manifesto article::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 6%;
  border-radius: inherit;
  background: rgba(183,204,177,0.16);
  filter: blur(24px);
  opacity: 0;
  transform: scale(0.78);
  transition: opacity 0.34s ease, transform 0.38s cubic-bezier(.2,.8,.2,1);
}

.page-stories .story-manifesto article::after {
  display: none;
}

.page-stories .story-manifesto article:nth-of-type(2) {
  transform: translateY(58px);
}

.page-stories .story-manifesto article:nth-of-type(3) {
  transform: translateY(-18px);
}

.page-stories .story-manifesto article:is(:hover,:focus-visible) {
  z-index: 3;
  background:
    radial-gradient(circle at 46% 48%, rgba(255,255,255,0.92), rgba(247,245,242,0.2) 66%, transparent 69%);
  filter: drop-shadow(0 20px 26px rgba(82,31,47,0.08));
  transform: scale(1.055) translateY(-4px);
}

.page-stories .story-manifesto article:nth-of-type(2):is(:hover,:focus-visible) {
  transform: translateY(50px) scale(1.055);
}

.page-stories .story-manifesto article:nth-of-type(3):is(:hover,:focus-visible) {
  transform: translateY(-25px) scale(1.055);
}

.page-stories .story-manifesto article:is(:hover,:focus-visible)::before {
  opacity: 1;
  transform: scale(1);
}

.page-event .tiers article {
  position: relative;
  isolation: isolate;
  outline: none;
  overflow: hidden;
  transition:
    color 0.3s ease,
    background 0.32s ease,
    transform 0.36s cubic-bezier(.2,.8,.2,1);
}

.page-event .tiers article::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(145deg, rgba(214,180,124,0.14), transparent 58%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-event .tiers article strong,
.page-event .tiers article small {
  transition: color 0.28s ease, transform 0.36s cubic-bezier(.2,.8,.2,1);
}

.page-event .tiers article:is(:hover,:focus-visible) {
  z-index: 2;
  background: rgba(255,255,255,0.045);
  transform: translateY(-9px) scale(1.018);
}

.page-event .tiers article:is(:hover,:focus-visible)::before {
  opacity: 1;
}

.page-event .tiers article:is(:hover,:focus-visible) strong {
  color: var(--gold);
  transform: translateX(6px);
}

.page-event .tiers article.featured:is(:hover,:focus-visible) {
  color: var(--event-paper);
  background: rgba(214,180,124,0.08);
}

.page-event .event-trust__items article {
  position: relative;
  isolation: isolate;
  outline: none;
  overflow: hidden;
  transition: background 0.32s ease, transform 0.36s cubic-bezier(.2,.8,.2,1);
}

.page-event .event-trust__items article::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 180px;
  height: 180px;
  left: -70px;
  top: -90px;
  border-radius: 50%;
  background: rgba(214,180,124,0.13);
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.commitment-icon {
  width: 58px;
  height: 58px;
  display: block;
  color: var(--gold);
  transition: color 0.3s ease, transform 0.38s cubic-bezier(.2,.8,.2,1);
}

.commitment-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-event .event-trust__items h3 {
  margin-top: 42px;
  transform-origin: left center;
  transition: color 0.28s ease, transform 0.36s cubic-bezier(.2,.8,.2,1);
}

.page-event .event-trust__items article:is(:hover,:focus-visible) {
  z-index: 2;
  background: rgba(239,231,220,0.045);
  transform: translateY(-7px);
}

.page-event .event-trust__items article:is(:hover,:focus-visible)::before {
  opacity: 1;
  transform: scale(1);
}

.page-event .event-trust__items article:is(:hover,:focus-visible) .commitment-icon {
  color: #f1d39f;
  transform: scale(1.13) rotate(-4deg);
}

.page-event .event-trust__items article:is(:hover,:focus-visible) h3 {
  color: var(--gold);
  transform: translateX(5px);
}

/* Get involved / Participe */
.page-participate {
  background:
    radial-gradient(circle at 88% 8%, rgba(183,204,177,0.24), transparent 23%),
    var(--cream);
}

.participate-hero {
  min-height: 780px;
  padding-top: 170px;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(360px,0.75fr);
  gap: clamp(55px,8vw,130px);
  align-items: center;
  overflow: hidden;
}

.participate-hero__copy {
  position: relative;
  z-index: 2;
}

.participate-hero__copy h1 {
  max-width: 830px;
  margin: 0;
  font: 500 clamp(64px,7.5vw,112px)/0.85 "Playfair Display", Georgia, serif;
  letter-spacing: -0.075em;
}

.participate-hero__copy h1 em {
  display: block;
  margin-left: 9%;
  color: #a57c42;
  font-weight: 500;
}

.participate-hero__copy > p:last-child {
  max-width: 570px;
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.participate-hero__art {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
}

.participate-hero__art img {
  position: relative;
  z-index: 2;
  width: min(68%,310px);
  filter: saturate(0.72);
  animation: participate-float 6s ease-in-out infinite;
}

.participate-orbit {
  position: absolute;
  border: 1px solid rgba(116,134,111,0.3);
  border-radius: 50%;
}

.participate-orbit--one {
  width: min(88%,430px);
  aspect-ratio: 1;
}

.participate-orbit--two {
  width: min(62%,305px);
  aspect-ratio: 1;
  border-color: rgba(214,180,124,0.58);
  transform: rotate(28deg);
}

.participate-hero__art i {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--wine);
  box-shadow: 0 0 0 8px rgba(82,31,47,0.08);
}

.participate-hero__art i:nth-of-type(1) { left: 4%; top: 24%; }
.participate-hero__art i:nth-of-type(2) { right: 3%; top: 46%; background: var(--gold); }
.participate-hero__art i:nth-of-type(3) { left: 16%; bottom: 13%; background: var(--sage-deep); }

@keyframes participate-float {
  0%,100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.journey-picker {
  padding-top: 110px;
  background: #eee8df;
}

.journey-choices {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}

.journey-choice {
  position: relative;
  min-height: 350px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255,255,255,0.46);
  box-shadow: 0 18px 55px rgba(75,66,54,0.06);
  text-align: left;
  overflow: hidden;
  transition:
    color 0.3s ease,
    background 0.34s ease,
    box-shadow 0.34s ease,
    transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.journey-choice::before {
  content: "";
  position: absolute;
  right: -95px;
  top: -105px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(183,204,177,0.32);
  transform: scale(0.76);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}

.journey-choice--support::before { background: rgba(82,31,47,0.15); }
.journey-choice--join::before { background: rgba(214,180,124,0.3); }

.journey-choice__icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  color: var(--sage-deep);
  transition: color 0.3s ease, transform 0.4s cubic-bezier(.2,.8,.2,1);
}

.journey-choice--support .journey-choice__icon { color: var(--wine); }
.journey-choice--join .journey-choice__icon { color: #9a713a; }

.journey-choice__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-choice > span:nth-child(2) {
  margin-top: auto;
}

.journey-choice strong {
  display: block;
  font: 500 clamp(28px,2.7vw,42px)/1.02 "Playfair Display", Georgia, serif;
  letter-spacing: -0.045em;
}

.journey-choice small {
  max-width: 280px;
  margin-top: 16px;
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.journey-choice > b {
  position: absolute;
  right: 28px;
  bottom: 26px;
  color: var(--wine);
  font-size: 20px;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
}

.journey-choice:is(:hover,:focus-visible),
.journey-choice.is-active {
  z-index: 2;
  border-color: rgba(255,255,255,0.96);
  background: rgba(255,255,255,0.76);
  box-shadow: 0 26px 70px rgba(75,66,54,0.12);
  transform: translateY(-8px);
  outline: none;
}

.journey-choice:is(:hover,:focus-visible)::before,
.journey-choice.is-active::before {
  transform: scale(1);
}

.journey-choice:is(:hover,:focus-visible) .journey-choice__icon,
.journey-choice.is-active .journey-choice__icon {
  transform: scale(1.1) rotate(-4deg);
}

.journey-choice:is(:hover,:focus-visible) > b,
.journey-choice.is-active > b {
  transform: translate(4px,-4px);
}

.journey-workspace {
  padding-top: 0;
  background: #eee8df;
}

.journey-panel {
  scroll-margin-top: 120px;
  padding: clamp(45px,6vw,85px);
  display: grid;
  grid-template-columns: minmax(300px,0.72fr) minmax(460px,1.28fr);
  gap: clamp(55px,8vw,120px);
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 12%, rgba(183,204,177,0.23), transparent 25%),
    rgba(247,245,242,0.78);
  box-shadow: 0 30px 90px rgba(71,62,50,0.09);
  animation: journey-panel-in 0.55s cubic-bezier(.2,.8,.2,1) both;
}

.journey-panel[hidden] {
  display: none;
}

.journey-panel--support {
  background:
    radial-gradient(circle at 8% 12%, rgba(82,31,47,0.11), transparent 27%),
    rgba(247,245,242,0.84);
}

.journey-panel--join {
  background:
    radial-gradient(circle at 8% 12%, rgba(214,180,124,0.24), transparent 27%),
    rgba(247,245,242,0.84);
}

@keyframes journey-panel-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.journey-back {
  margin: 0 0 55px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.journey-back:hover {
  color: var(--wine);
}

.journey-panel__intro h2 {
  margin: 0;
  font: 500 clamp(41px,4.5vw,65px)/0.98 "Playfair Display", Georgia, serif;
  letter-spacing: -0.055em;
}

.journey-panel__intro > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.safety-note {
  margin-top: 38px;
  padding: 24px;
  border-left: 3px solid var(--wine);
  border-radius: 0 16px 16px 0;
  background: rgba(82,31,47,0.07);
}

.safety-note strong {
  font: 600 18px "Playfair Display", Georgia, serif;
}

.safety-note p {
  margin: 10px 0 17px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.safety-note a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 12px;
  color: white;
  background: var(--wine);
  box-shadow: 0 9px 24px rgba(82,31,47,0.18);
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.safety-note a:hover,
.safety-note a:focus-visible {
  background: #6b2940;
  box-shadow: 0 13px 30px rgba(82,31,47,0.27);
  outline: none;
  transform: translateY(-2px);
}

.quick-exit {
  position: relative;
  display: inline-flex;
}

.quick-exit__tooltip {
  position: absolute;
  left: 0;
  bottom: calc(100% + 12px);
  z-index: 10;
  width: min(300px, calc(100vw - 70px));
  padding: 13px 15px;
  border-radius: 11px;
  color: white;
  background: #241c1f;
  box-shadow: 0 14px 35px rgba(30,30,30,0.2);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  visibility: hidden;
}

.quick-exit__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 24px;
  border: 7px solid transparent;
  border-top-color: #241c1f;
}

.quick-exit:hover .quick-exit__tooltip,
.quick-exit:focus-within .quick-exit__tooltip {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.connection-form {
  display: grid;
  gap: 22px;
  align-content: start;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
}

.connection-form label:not(.check-field) {
  display: grid;
  gap: 9px;
  color: #3f3c37;
  font-size: 11px;
  font-weight: 700;
}

.connection-form input,
.connection-form select,
.connection-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  border: 1px solid rgba(30,30,30,0.14);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255,255,255,0.72);
  font: 400 14px "Manrope", Arial, sans-serif;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.connection-form textarea {
  min-height: 135px;
  resize: vertical;
  line-height: 1.55;
}

.connection-form :is(input,select,textarea):focus {
  border-color: var(--sage-deep);
  background: white;
  box-shadow: 0 0 0 4px rgba(116,134,111,0.12);
}

.check-field {
  min-height: 52px;
  display: flex;
  gap: 11px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 0;
  accent-color: var(--wine);
}

.check-field--consent {
  padding-top: 6px;
  align-items: flex-start;
}

.form-action {
  padding-top: 8px;
  display: flex;
  gap: 18px;
  align-items: center;
}

.form-action small {
  max-width: 250px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--sage-deep);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .participate-hero {
    grid-template-columns: minmax(0,1fr) 330px;
    gap: 40px;
  }

  .journey-choice {
    min-height: 320px;
    padding: 28px;
  }

  .journey-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .participate-hero {
    min-height: auto;
    padding-top: 145px;
    grid-template-columns: 1fr;
  }

  .participate-hero__art {
    min-height: 360px;
  }

  .journey-choices {
    grid-template-columns: 1fr;
  }

  .journey-choice {
    min-height: 190px;
    display: grid;
    grid-template-columns: 72px minmax(0,1fr) 30px;
    gap: 22px;
    align-items: center;
  }

  .journey-choice > span:nth-child(2) {
    margin-top: 0;
  }

  .journey-choice > b {
    position: static;
  }

  .page-stories .story-manifesto {
    display: grid;
    gap: 20px;
    padding-top: 110px;
  }

  .page-stories .story-manifesto article,
  .page-stories .story-manifesto article:nth-of-type(2),
  .page-stories .story-manifesto article:nth-of-type(3) {
    width: calc(100% - 52px);
    min-height: 230px;
    margin-left: 52px;
    transform: none;
  }

  .page-stories .story-manifesto article:is(:hover,:focus-visible),
  .page-stories .story-manifesto article:nth-of-type(2):is(:hover,:focus-visible),
  .page-stories .story-manifesto article:nth-of-type(3):is(:hover,:focus-visible) {
    transform: scale(1.025);
  }
}

@media (max-width: 560px) {
  .participate-hero__copy h1 {
    font-size: 59px;
  }

  .participate-hero__copy h1 em {
    margin-left: 0;
  }

  .participate-hero__art {
    min-height: 290px;
  }

  .journey-picker {
    padding-top: 82px;
  }

  .journey-choices {
    margin-top: 45px;
  }

  .journey-choice {
    min-height: 235px;
    padding: 27px;
    display: flex;
  }

  .journey-choice > span:nth-child(2) {
    margin-top: auto;
  }

  .journey-choice > b {
    position: absolute;
  }

  .journey-workspace {
    padding: 0 12px 82px;
  }

  .journey-panel {
    padding: 30px 20px;
    gap: 45px;
    border-radius: 22px;
  }

  .journey-back {
    margin-bottom: 40px;
  }

  .journey-panel__intro h2 {
    font-size: 45px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-stories .story-manifesto article,
  .page-stories .story-manifesto article:nth-of-type(2),
  .page-stories .story-manifesto article:nth-of-type(3) {
    width: 100%;
    margin-left: 0;
    padding: 28px 8px;
  }

  .trust-point {
    padding: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .participate-hero__art img {
    animation: none;
  }

  .journey-panel {
    animation: none;
  }

  .journey-choice,
  .trust-point,
  .page-stories .story-manifesto article,
  .page-event .tiers article,
  .page-event .event-trust__items article {
    transition: none;
  }
}

/* Final priority layer for the shared halo system */
.page-about .statement-block {
  gap: clamp(35px,7vw,100px);
}

.page-about .statement-block article,
.page-about .statement-block article:nth-child(2) {
  min-height: 390px;
  padding: 48px;
  border: 0;
  background: transparent;
  text-align: center;
}

.page-about .statement-block article::after {
  display: none;
}

.page-about .statement-block h2 {
  margin: 22px 0 14px;
}

.page-causes .cause-grid {
  padding-top: 70px;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(28px,5vw,72px);
}

.page-causes .cause-grid .glass-card,
.page-causes .cause-grid .glass-card:nth-child(2),
.page-causes .cause-grid .glass-card:nth-child(3) {
  width: 100%;
  min-height: 390px;
  margin: 0;
  padding: 45px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.page-causes .cause-grid .glass-card::after {
  display: none;
}

.page-causes .cause-grid .cause-symbol {
  width: 82px;
  height: 82px;
  color: var(--accent);
}

.page-causes .cause-grid h2 {
  max-width: 320px;
  margin: 26px auto 14px;
  color: var(--ink);
  text-align: center;
}

.page-causes .cause-grid p {
  max-width: 330px;
  margin: 0 auto;
  grid-column: auto;
  text-align: center;
}

.page-causes .cause-grid .glass-card:is(:hover,:focus-visible) {
  background: transparent;
  transform: translateY(-7px) scale(1.035);
}

.page-causes .cause-grid .glass-card:is(:hover,:focus-visible) h2 {
  color: var(--accent);
  transform: none;
}

.page-stories .story-manifesto {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: clamp(35px,6vw,92px);
  align-items: center;
}

.page-stories .story-manifesto article,
.page-stories .story-manifesto article:nth-of-type(2),
.page-stories .story-manifesto article:nth-of-type(3) {
  min-height: 340px;
  margin: 0;
  padding: 46px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: transparent;
  text-align: center;
  transform: none;
}

.page-stories .story-manifesto article::before {
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.2), rgba(var(--halo-rgb),0.06) 48%, transparent 72%);
  opacity: 1;
  filter: none;
  transform: scale(0.8);
}

.page-stories .story-manifesto .manifesto-mark {
  margin: 0 auto;
  color: var(--accent);
}

.page-stories .story-manifesto h2 {
  margin: 26px auto 14px;
  text-align: center;
}

.page-stories .story-manifesto p {
  max-width: 290px;
  margin: 0 auto;
  text-align: center;
}

.page-stories .story-manifesto article:is(:hover,:focus-visible),
.page-stories .story-manifesto article:nth-of-type(2):is(:hover,:focus-visible),
.page-stories .story-manifesto article:nth-of-type(3):is(:hover,:focus-visible) {
  background: transparent;
  filter: none;
  transform: translateY(-7px) scale(1.035);
}

.page-stories .story-manifesto article:is(:hover,:focus-visible) h2 {
  color: var(--accent);
  transform: none;
}

.page-home .action-gateway {
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-home .action-gateway .action-gateway__item,
.page-home .action-gateway .action-gateway__item:nth-child(2),
.page-home .action-gateway .action-gateway__item:nth-child(3) {
  min-height: 330px;
  padding: 38px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 24px;
  color: var(--ink);
  background: rgba(255,255,255,0.48);
  box-shadow: 0 18px 55px rgba(75,66,54,0.06);
  text-align: center;
}

.page-home .action-gateway .action-gateway__item + .action-gateway__item {
  border-left: 1px solid rgba(255,255,255,0.82);
}

.page-home .action-gateway .action-gateway__item::before {
  left: 50%;
  top: 38%;
  display: block;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.25), rgba(var(--halo-rgb),0.06) 50%, transparent 72%);
  transform: translate(-50%,-50%) scale(0.72);
}

.page-home .action-gateway .gateway-symbol {
  width: 76px;
  height: 76px;
  border: 0;
  color: var(--accent);
}

.page-home .action-gateway .glass-card > div {
  margin-top: 28px;
}

.page-home .action-gateway .glass-card h3,
.page-home .action-gateway .glass-card p,
.page-home .action-gateway .glass-card b {
  color: var(--ink);
  text-align: center;
}

.page-home .action-gateway .glass-card b {
  margin-top: 24px;
  grid-column: auto;
}

.page-home .action-gateway .action-gateway__item:is(:hover,:focus-visible),
.page-home .action-gateway .action-gateway__item.action-gateway__item--help:is(:hover,:focus-visible),
.page-home .action-gateway .action-gateway__item.action-gateway__item--company:is(:hover,:focus-visible) {
  padding-left: 30px;
  background: rgba(255,255,255,0.72);
  transform: translateY(-8px);
}

.journey-choice {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
  align-items: center;
  text-align: center;
}

.journey-choice--support {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.journey-choice--join {
  --accent: #a57c42;
  --halo-rgb: 214, 180, 124;
}

.journey-choice::before,
.journey-choice--support::before,
.journey-choice--join::before {
  left: 50%;
  right: auto;
  top: 36%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.26), rgba(var(--halo-rgb),0.05) 52%, transparent 72%);
  transform: translate(-50%,-50%) scale(0.72);
}

.journey-choice__icon,
.journey-choice--support .journey-choice__icon,
.journey-choice--join .journey-choice__icon {
  color: var(--accent);
}

.journey-choice > span:nth-child(2) {
  margin: auto 0 0;
}

.journey-choice small {
  margin-left: auto;
  margin-right: auto;
}

.journey-choice:is(:hover,:focus-visible)::before,
.journey-choice.is-active::before {
  transform: translate(-50%,-50%) scale(1);
}

@media (max-width: 900px) {
  .page-about .statement-block {
    grid-template-columns: 1fr;
  }

  .page-causes .cause-grid,
  .page-stories .story-manifesto,
  .page-home .action-gateway {
    grid-template-columns: 1fr;
  }

  .page-causes .cause-grid .glass-card,
  .page-causes .cause-grid .glass-card:nth-child(2),
  .page-causes .cause-grid .glass-card:nth-child(3),
  .page-stories .story-manifesto article,
  .page-stories .story-manifesto article:nth-of-type(2),
  .page-stories .story-manifesto article:nth-of-type(3) {
    width: min(100%,560px);
    margin: 0 auto;
  }

  .page-stories .story-manifesto article,
  .page-stories .story-manifesto article:nth-of-type(2),
  .page-stories .story-manifesto article:nth-of-type(3) {
    transform: none;
  }

  .journey-choice {
    text-align: left;
  }

  .journey-choice > span:nth-child(2) {
    margin: 0;
  }

  .journey-choice small {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .page-about .statement-block article,
  .page-about .statement-block article:nth-child(2),
  .page-causes .cause-grid .glass-card,
  .page-causes .cause-grid .glass-card:nth-child(2),
  .page-causes .cause-grid .glass-card:nth-child(3),
  .page-stories .story-manifesto article,
  .page-stories .story-manifesto article:nth-of-type(2),
  .page-stories .story-manifesto article:nth-of-type(3) {
    min-height: 300px;
    padding: 34px 20px;
  }

  .journey-choice {
    align-items: center;
    text-align: center;
  }

  .journey-choice > span:nth-child(2) {
    margin-top: auto;
  }

  .journey-choice small {
    margin-left: auto;
    margin-right: auto;
  }
}

.page-causes .cause-grid .glass-card:nth-child(1) {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.page-causes .cause-grid .glass-card:nth-child(2) {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
}

.page-causes .cause-grid .glass-card:nth-child(3) {
  --accent: #a57c42;
  --halo-rgb: 214, 180, 124;
}

.page-stories .story-manifesto article:nth-of-type(1) {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
}

.page-stories .story-manifesto article:nth-of-type(2) {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.page-stories .story-manifesto article:nth-of-type(3) {
  --accent: #a57c42;
  --halo-rgb: 214, 180, 124;
}

.page-stories .story-manifesto article:is(:hover,:focus-visible) .manifesto-mark {
  color: var(--accent);
}

.page-causes .cause-grid .glass-card:nth-child(1) .cause-symbol,
.page-causes .cause-grid .glass-card:nth-child(2) .cause-symbol,
.page-causes .cause-grid .glass-card:nth-child(3) .cause-symbol {
  color: var(--accent);
}

/* Exact shared pattern: icon, title, copy and responsive colour halo */
.page-causes .cause-grid .glass-card,
.page-causes .cause-grid .glass-card:nth-child(2),
.page-causes .cause-grid .glass-card:nth-child(3) {
  min-height: 410px;
  padding: 46px 30px;
}

.page-causes .cause-grid .glass-card::before {
  inset: 0;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.22), rgba(var(--halo-rgb),0.065) 47%, transparent 72%);
}

.page-causes .cause-grid .cause-symbol {
  width: 72px;
  height: 72px;
}

.page-causes .cause-grid h2 {
  margin: 26px auto 16px;
  font-size: clamp(42px,4.15vw,60px);
  line-height: 1.02;
}

.page-causes .cause-grid p {
  max-width: 350px;
  font-size: 16px;
  line-height: 1.65;
}

.page-event .event-trust__items article {
  min-height: 390px;
  padding: 46px 30px;
}

.page-event .event-trust__items article::before {
  width: min(100%,390px);
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.24), rgba(var(--halo-rgb),0.055) 48%, transparent 72%);
}

.page-event .event-trust__items .commitment-icon {
  width: 72px;
  height: 72px;
}

.page-event .event-trust__items h3 {
  margin: 26px auto 16px;
  font-size: clamp(42px,4.15vw,60px);
  line-height: 1.02;
}

.page-event .event-trust__items p {
  max-width: 350px;
  font-size: 16px;
  line-height: 1.65;
}

.action-choice {
  --halo-x: 50%;
  --halo-y: 31%;
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  will-change: transform;
}

.action-choice--support {
  --accent: var(--wine);
  --halo-rgb: 82, 31, 47;
}

.action-choice--help {
  --accent: var(--sage-deep);
  --halo-rgb: 116, 134, 111;
}

.action-choice--join {
  --accent: #a57c42;
  --halo-rgb: 214, 180, 124;
}

.page-home .action-gateway .action-choice,
.page-participate .journey-choices .action-choice,
.page-event .partner-cards .action-choice {
  min-height: 360px;
  padding: 38px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  text-align: center;
  transition:
    transform 0.38s cubic-bezier(.2,.8,.2,1),
    box-shadow 0.34s ease,
    background 0.3s ease;
}

.page-home .action-gateway .action-choice,
.page-participate .journey-choices .action-choice {
  border: 1px solid rgba(255,255,255,0.86);
  color: var(--ink);
  background: rgba(255,255,255,0.5);
  box-shadow: 0 18px 55px rgba(75,66,54,0.06);
}

.page-event .partner-cards .action-choice {
  border: 1px solid rgba(239,231,220,0.13);
  color: var(--event-paper);
  background: rgba(239,231,220,0.018);
  box-shadow: none;
}

.page-home .action-gateway .action-choice::before,
.page-participate .journey-choices .action-choice::before,
.page-event .partner-cards .action-choice::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: var(--halo-x);
  right: auto;
  top: var(--halo-y);
  width: 270px;
  height: 270px;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.27), rgba(var(--halo-rgb),0.055) 50%, transparent 72%);
  opacity: 1;
  transform: translate(-50%,-50%) scale(0.72);
  transition:
    left 0.18s ease-out,
    top 0.18s ease-out,
    transform 0.46s cubic-bezier(.2,.8,.2,1);
}

.page-event .partner-cards .action-choice::before {
  background: radial-gradient(circle, rgba(var(--halo-rgb),0.25), rgba(var(--halo-rgb),0.045) 50%, transparent 72%);
}

.page-home .action-gateway .action-choice__icon,
.page-participate .journey-choices .action-choice__icon,
.page-event .partner-cards .action-choice__icon {
  position: relative;
  z-index: 1;
  width: 92px;
  height: 92px;
  flex: 0 0 92px;
  margin: 0 auto;
  display: block;
  border: 0;
  color: var(--accent);
  opacity: 1;
  transition: transform 0.38s cubic-bezier(.2,.8,.2,1);
}

.page-home .action-gateway .action-choice__icon svg,
.page-participate .journey-choices .action-choice__icon svg,
.page-event .partner-cards .action-choice__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-hand-icon {
  width: 100%;
  height: 100%;
  display: block;
  background: currentColor;
  -webkit-mask: url("assets/icone-mao-cabo-transparente.png") center / 88% 88% no-repeat;
  mask: url("assets/icone-mao-cabo-transparente.png") center / 88% 88% no-repeat;
}

.page-home .action-gateway .action-choice > div,
.page-participate .journey-choices .action-choice > span:nth-child(2),
.page-event .partner-cards .action-choice h3 {
  margin-top: auto;
}

.page-home .action-gateway .action-choice h3,
.page-participate .journey-choices .action-choice strong,
.page-event .partner-cards .action-choice h3 {
  color: inherit;
  font-size: clamp(30px,2.8vw,42px);
  line-height: 1.04;
  text-align: center;
}

.page-home .action-gateway .action-choice p,
.page-participate .journey-choices .action-choice small,
.page-event .partner-cards .action-choice p {
  max-width: 310px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
  opacity: 0.68;
}

.page-home .action-gateway .action-choice b,
.page-participate .journey-choices .action-choice > b,
.page-event .partner-cards .action-choice b {
  margin-top: 22px;
  color: var(--accent);
  text-align: center;
}

.page-participate .journey-choices .action-choice > b {
  position: absolute;
  right: 28px;
  bottom: 26px;
}

.page-home .action-gateway .action-choice:is(:hover,:focus-visible),
.page-participate .journey-choices .action-choice:is(:hover,:focus-visible),
.page-participate .journey-choices .action-choice.is-active,
.page-event .partner-cards .action-choice:is(:hover,:focus-visible) {
  transform: translateY(-8px) scale(1.012);
}

.page-home .action-gateway .action-choice:is(:hover,:focus-visible),
.page-participate .journey-choices .action-choice:is(:hover,:focus-visible),
.page-participate .journey-choices .action-choice.is-active {
  background: rgba(255,255,255,0.74);
  box-shadow: 0 27px 72px rgba(75,66,54,0.12);
}

.page-event .partner-cards .action-choice:is(:hover,:focus-visible) {
  background: rgba(239,231,220,0.045);
}

.page-home .action-gateway .action-choice:is(:hover,:focus-visible)::before,
.page-participate .journey-choices .action-choice:is(:hover,:focus-visible)::before,
.page-participate .journey-choices .action-choice.is-active::before,
.page-event .partner-cards .action-choice:is(:hover,:focus-visible)::before {
  transform: translate(-50%,-50%) scale(1);
}

.page-home .action-gateway .action-choice:is(:hover,:focus-visible) .action-choice__icon,
.page-participate .journey-choices .action-choice:is(:hover,:focus-visible) .action-choice__icon,
.page-participate .journey-choices .action-choice.is-active .action-choice__icon,
.page-event .partner-cards .action-choice:is(:hover,:focus-visible) .action-choice__icon {
  transform: scale(1.11) rotate(-4deg);
}

.page-organisations .trust-point:is(:hover,:focus-visible),
.page-organisations .trust-point--impact:is(:hover,:focus-visible) {
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 900px) {
  .page-event .event-trust__items article {
    width: min(100%,560px);
    margin: 0 auto;
  }

  .page-home .action-gateway .action-choice,
  .page-participate .journey-choices .action-choice,
  .page-event .partner-cards .action-choice {
    min-height: 330px;
    text-align: center;
  }

  .page-participate .journey-choices .action-choice > span:nth-child(2) {
    margin-top: auto;
  }

  .page-participate .journey-choices .action-choice small {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .page-causes .cause-grid .glass-card,
  .page-causes .cause-grid .glass-card:nth-child(2),
  .page-causes .cause-grid .glass-card:nth-child(3),
  .page-event .event-trust__items article {
    min-height: 330px;
    padding: 36px 22px;
  }

  .page-causes .cause-grid h2,
  .page-event .event-trust__items h3 {
    font-size: 45px;
  }

  .page-home .action-gateway .action-choice,
  .page-participate .journey-choices .action-choice,
  .page-event .partner-cards .action-choice {
    min-height: 325px;
    padding: 34px 24px;
  }

  .page-home .action-gateway .action-choice__icon,
  .page-participate .journey-choices .action-choice__icon,
  .page-event .partner-cards .action-choice__icon {
    width: 84px;
    height: 84px;
    flex-basis: 84px;
  }
}

/* Definitive shared component dimensions */
.page-home .action-gateway .action-choice__icon,
.page-participate .journey-choices .action-choice__icon,
.page-event .partner-cards .action-choice__icon {
  box-sizing: border-box;
  width: 92px;
  min-width: 92px;
  max-width: 92px;
  height: 92px;
  min-height: 92px;
  max-height: 92px;
  padding: 0;
  flex: 0 0 92px;
}

.page-causes .cause-grid h2,
.page-event .event-trust__items h3 {
  font-size: clamp(40px, 4vw, 50px);
}

@media (max-width: 560px) {
  .page-home .action-gateway .action-choice__icon,
  .page-participate .journey-choices .action-choice__icon,
  .page-event .partner-cards .action-choice__icon {
    width: 84px;
    min-width: 84px;
    max-width: 84px;
    height: 84px;
    min-height: 84px;
    max-height: 84px;
    flex-basis: 84px;
  }
}

/* Final event commitment surface reset */
.page-event .event-trust__items {
  gap: clamp(18px, 3vw, 42px);
  border: 0;
}

.page-event .event-trust__items article,
.page-event .event-trust__items article + article,
.page-event .event-trust__items article:is(:hover,:focus-visible) {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.page-event .event-trust__items article::before {
  left: 50%;
  top: 50%;
  width: min(100%, 340px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0.8);
  transition: transform 0.42s cubic-bezier(.2,.8,.2,1);
}

.page-event .event-trust__items article:is(:hover,:focus-visible)::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Causes: clean circular reference effect, without clipped oval cards */
.page-causes .cause-grid {
  gap: clamp(24px, 4vw, 58px);
}

.page-causes .cause-grid .glass-card,
.page-causes .cause-grid .glass-card:nth-child(2),
.page-causes .cause-grid .glass-card:nth-child(3),
.page-causes .cause-grid .glass-card:is(:hover,:focus-visible) {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  padding: 42px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.page-causes .cause-grid .glass-card::before {
  inset: auto;
  left: 50%;
  top: 50%;
  width: min(100%, 330px);
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--halo-rgb), 0.23) 0%,
    rgba(var(--halo-rgb), 0.09) 46%,
    rgba(var(--halo-rgb), 0.025) 62%,
    transparent 74%
  );
  transform: translate(-50%, -50%) scale(0.82);
  filter: none;
  transition: transform 0.46s cubic-bezier(.2,.8,.2,1);
}

.page-causes .cause-grid .glass-card:is(:hover,:focus-visible) {
  transform: translateY(-6px) scale(1.015);
}

.page-causes .cause-grid .glass-card:is(:hover,:focus-visible)::before {
  transform: translate(-50%, -50%) scale(1);
  filter: none;
}

.page-causes .cause-grid .cause-symbol,
.page-causes .cause-grid h2,
.page-causes .cause-grid p {
  position: relative;
  z-index: 1;
}

.page-causes .cause-grid .cause-symbol {
  width: 76px;
  height: 76px;
}

.page-causes .cause-grid h2 {
  max-width: 320px;
  margin: 24px auto 16px;
  font-size: clamp(40px, 3.55vw, 50px);
  line-height: 1.02;
}

.page-causes .cause-grid p {
  max-width: 300px;
}

/* Event idea: a full editorial heading fills the opening space */
.page-event .event-editorial {
  padding-top: clamp(72px, 8vw, 118px);
  column-gap: clamp(50px, 9vw, 135px);
  row-gap: clamp(42px, 5vw, 72px);
}

.page-event .editorial-heading {
  grid-column: 1 / -1;
  max-width: 1040px;
}

.page-event .editorial-heading h2 {
  max-width: 980px;
  margin: 18px 0 0;
  color: var(--event-paper);
  font-size: clamp(54px, 7.2vw, 104px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.page-event .editorial-heading h2 span,
.page-event .editorial-heading h2 em {
  display: block;
}

.page-event .editorial-heading h2 em {
  color: var(--gold);
  font-weight: 400;
}

@media (max-width: 900px) {
  .page-causes .cause-grid .glass-card,
  .page-causes .cause-grid .glass-card:nth-child(2),
  .page-causes .cause-grid .glass-card:nth-child(3) {
    min-height: 390px;
  }

  .page-event .editorial-heading {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .page-causes .cause-grid .glass-card,
  .page-causes .cause-grid .glass-card:nth-child(2),
  .page-causes .cause-grid .glass-card:nth-child(3) {
    min-height: 350px;
    padding: 34px 22px;
  }

  .page-causes .cause-grid .glass-card::before {
    width: min(100%, 310px);
  }

  .page-causes .cause-grid h2 {
    font-size: 43px;
  }

  .page-event .event-editorial {
    padding-top: 74px;
    row-gap: 38px;
  }

  .page-event .editorial-heading h2 {
    font-size: clamp(48px, 15vw, 68px);
  }
}

/* Event idea title belongs to the copy column beside the image */
.page-event .editorial-copy {
  align-self: center;
  padding-bottom: 0;
}

.page-event .editorial-copy .editorial-heading {
  grid-column: auto;
  max-width: 650px;
  margin: 0 0 clamp(30px, 4vw, 48px);
}

.page-event .editorial-copy .editorial-heading .event-small-label {
  max-width: none;
  margin: 0;
  color: var(--gold);
  font: 600 9px "Manrope", sans-serif;
  letter-spacing: 0.16em;
}

.page-event .editorial-copy .editorial-heading h2 {
  max-width: 650px;
  margin: 18px 0 0;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.94;
}

.page-event .editorial-copy .editorial-subtitle {
  max-width: 520px;
  margin: 0;
  color: var(--event-paper);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.page-event .editorial-copy > p {
  margin-top: 22px;
}

@media (max-width: 900px) {
  .page-event .editorial-copy {
    width: min(100%, 620px);
    padding-bottom: 0;
  }

  .page-event .editorial-copy .editorial-heading h2 {
    font-size: clamp(50px, 10vw, 72px);
  }
}

@media (max-width: 560px) {
  .page-event .editorial-copy .editorial-heading {
    margin-bottom: 30px;
  }

  .page-event .editorial-copy .editorial-heading h2 {
    font-size: clamp(46px, 14vw, 62px);
  }

  .page-event .editorial-copy .editorial-subtitle {
    font-size: 29px;
  }
}

/* Clearer spacing between symbols and their messages */
.page-causes .cause-grid h2 {
  margin-top: 8px;
}

.page-home .action-gateway .action-choice,
.page-participate .journey-choices .action-choice,
.page-event .partner-cards .action-choice {
  justify-content: center;
}

.page-home .action-gateway .action-choice > div,
.page-participate .journey-choices .action-choice > span:nth-child(2),
.page-event .partner-cards .action-choice h3 {
  margin-top: 14px;
}

.page-home .action-gateway .action-choice b,
.page-participate .journey-choices .action-choice > b,
.page-event .partner-cards .action-choice b {
  margin-top: 18px;
}

.page-participate .journey-choices .action-choice small {
  margin-top: 10px;
}

/* The support request stays open and human */
.page-participate .support-open-field {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(82,31,47,0.12);
  border-radius: 20px;
  background: rgba(255,255,255,0.42);
}

.page-participate .support-open-field textarea {
  min-height: 150px;
}

.page-participate .support-open-field > small {
  display: block;
  margin-top: 10px;
  color: rgba(35,31,29,0.58);
  font: 500 12px/1.55 "Manrope", sans-serif;
}

/* Event information replaces public sponsorship pricing */
.page-event .event-details {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 10vw, 150px) clamp(22px, 8vw, 125px);
  border-top: 1px solid rgba(239,231,220,0.14);
  background:
    radial-gradient(circle at 88% 14%, rgba(120,47,69,0.18), transparent 25%),
    linear-gradient(180deg, #211919, #1b1515);
}

.page-event .event-details__heading {
  display: grid;
  grid-template-columns: minmax(150px,0.35fr) minmax(0,1.15fr);
  column-gap: clamp(35px, 7vw, 110px);
  align-items: start;
}

.page-event .event-details__heading .event-small-label {
  margin-top: 13px;
}

.page-event .event-details__heading h2 {
  max-width: 900px;
  margin: 0;
  color: var(--event-paper);
  font-size: clamp(54px, 7vw, 98px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.page-event .event-details__heading > p:last-child {
  grid-column: 2;
  max-width: 720px;
  margin: 30px 0 0;
  color: rgba(239,231,220,0.68);
  font: 400 15px/1.75 "Manrope", sans-serif;
}

.page-event .event-details__grid {
  margin-top: clamp(65px, 8vw, 110px);
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  column-gap: clamp(45px, 8vw, 120px);
  row-gap: clamp(50px, 7vw, 90px);
}

.page-event .event-detail {
  --detail-accent: var(--gold);
  position: relative;
  min-height: 250px;
  padding: 34px 0 0 54px;
  border-top: 1px solid rgba(239,231,220,0.18);
  outline: none;
  transition: transform 0.38s cubic-bezier(.2,.8,.2,1);
}

.page-event .event-detail--experience {
  --detail-accent: #c18395;
}

.page-event .event-detail--people {
  --detail-accent: var(--sage);
}

.page-event .event-detail--purpose {
  --detail-accent: #e1ba78;
}

.page-event .event-detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 31px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--detail-accent);
  border-radius: 50%;
  box-shadow: 0 0 42px 13px color-mix(in srgb, var(--detail-accent) 16%, transparent);
  transition: transform 0.36s cubic-bezier(.2,.8,.2,1), background 0.3s ease;
}

.page-event .event-detail:is(:hover,:focus-visible) {
  transform: translateY(-7px);
}

.page-event .event-detail:is(:hover,:focus-visible)::before {
  transform: scale(1.18);
  background: color-mix(in srgb, var(--detail-accent) 12%, transparent);
}

.page-event .event-detail small {
  color: var(--detail-accent);
  font: 650 9px "Manrope", sans-serif;
  letter-spacing: 0.15em;
}

.page-event .event-detail h3 {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--event-paper);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.page-event .event-detail p {
  max-width: 530px;
  margin: 20px 0 0;
  color: rgba(239,231,220,0.62);
  font: 400 13px/1.72 "Manrope", sans-serif;
}

.page-event .event-details__footer {
  margin-top: clamp(70px, 8vw, 110px);
  padding-top: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid rgba(239,231,220,0.18);
}

.page-event .event-details__footer p {
  max-width: 760px;
  margin: 0;
  color: var(--event-paper);
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.18;
}

.page-event .event-details__footer .event-button {
  flex: 0 0 auto;
  opacity: 1;
}

@media (max-width: 900px) {
  .page-event .event-details__heading {
    grid-template-columns: 1fr;
  }

  .page-event .event-details__heading > p:last-child {
    grid-column: auto;
  }

  .page-event .event-details__grid {
    grid-template-columns: 1fr;
  }

  .page-event .event-detail {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .page-causes .cause-grid h2 {
    margin-top: 4px;
  }

  .page-home .action-gateway .action-choice,
  .page-participate .journey-choices .action-choice,
  .page-event .partner-cards .action-choice {
    min-height: 305px;
  }

  .page-event .event-details__heading h2 {
    font-size: 52px;
  }

  .page-event .event-detail {
    padding-left: 44px;
  }

  .page-event .event-details__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Causes keep each symbol visually attached to its title */
.page-causes .cause-grid .glass-card,
.page-causes .cause-grid .glass-card:nth-child(2),
.page-causes .cause-grid .glass-card:nth-child(3) {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}

.page-causes .cause-grid h2 {
  margin: 6px auto 16px;
}

/* Consistent, calmer title scale across every page. */
.editorial-copy h3,
.tiers-wrap > h3 {
  font-size: clamp(40px, 4.7vw, 69px);
}

.page-event .event-purpose__intro h2 {
  font-size: clamp(50px, 6.8vw, 96px);
}

.page-event .event-purpose__flow h3 {
  font-size: clamp(30px, 3vw, 45px);
}

.partners-call > div:first-child h2,
.tiers-wrap > div:first-child h2,
.event-trust > div:first-child h2 {
  font-size: clamp(45px, 5.4vw, 79px);
}

.page-event .event-trust__items h3,
.page-causes .cause-grid h2 {
  font-size: clamp(36px, 3.7vw, 53px);
}

.event-preview__content h2 {
  font-size: clamp(68px, 8vw, 119px);
}

.runway-visual__copy h2 {
  font-size: clamp(60px, 7.1vw, 110px);
}

.page-home .path-grid .glass-card h3 {
  font-size: clamp(27px, 3vw, 43px);
}

.page-about .statement-block h2,
.page-stories .story-principles h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}

.page-organisations .impact-grid h3 {
  font-size: 29px;
}

.page-home .action-gateway .action-choice h3,
.page-participate .journey-choices .action-choice strong,
.page-event .partner-cards .action-choice h3 {
  font-size: clamp(27px, 2.5vw, 38px);
}

.page-event .editorial-heading h2 {
  font-size: clamp(48px, 6.4vw, 92px);
}

.page-event .editorial-copy .editorial-heading h2 {
  font-size: clamp(43px, 4.5vw, 65px);
}

.page-event .editorial-copy .editorial-subtitle {
  font-size: clamp(23px, 2.25vw, 34px);
}

.page-event .event-details__heading h2 {
  font-size: clamp(48px, 6.3vw, 87px);
}

.page-event .event-detail h3 {
  font-size: clamp(27px, 2.7vw, 41px);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: clamp(49px, 13.3vw, 75px);
  }

  .event-title h2 {
    font-size: clamp(66px, 19.5vw, 105px);
  }

  .page-hero .page-hero__copy h1 {
    font-size: clamp(46px, 5.9vw, 73px);
  }
}

@media (max-width: 640px) {
  .page-event .event-purpose__leaves .purpose-leaf-b {
    left: 86%;
    top: 21%;
  }

  .page-event .event-purpose__leaves .purpose-leaf-c {
    left: 4%;
    top: 41%;
  }

  .page-event .event-purpose__leaves .purpose-leaf-d {
    display: none;
  }

  .page-event .event-purpose__leaves .purpose-leaf-e {
    left: 88%;
    top: 55%;
  }

  .page-event .event-purpose__leaves .purpose-leaf-g {
    display: none;
  }

  .page-event .event-purpose__intro h2 {
    font-size: 48px;
  }

  .page-event .event-purpose__flow h3 {
    font-size: 36px;
  }

  .page-event .event-details__heading h2 {
    font-size: 46px;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 50px;
  }

  .section-heading h2,
  .about h2 {
    font-size: 38px;
  }

  .event-title h2 {
    font-size: 64px;
  }

  .editorial-copy h3,
  .tiers-wrap > h3 {
    font-size: 40px;
  }

  .founder-content h2 {
    font-size: 59px;
  }

  .event-preview__content h2 {
    font-size: 59px;
  }

  .inner-hero h1 {
    font-size: 48px;
  }

  .event-title h1 {
    font-size: 62px;
  }

  .partners-call > div:first-child h2,
  .tiers-wrap > div:first-child h2,
  .event-trust > div:first-child h2 {
    font-size: 41px;
  }

  .page-hero .page-hero__copy h1 {
    font-size: 46px;
  }

  .runway-visual__copy h2 {
    font-size: 55px;
  }

  .participate-hero__copy h1 {
    font-size: 52px;
  }

  .journey-panel__intro h2 {
    font-size: 40px;
  }

  .page-causes .cause-grid h2,
  .page-event .event-trust__items h3 {
    font-size: 38px;
  }

  .page-event .editorial-heading h2 {
    font-size: clamp(43px, 13.2vw, 61px);
  }

  .page-event .editorial-copy .editorial-heading h2 {
    font-size: clamp(41px, 12.3vw, 56px);
  }

  .page-event .editorial-copy .editorial-subtitle {
    font-size: 26px;
  }
}

/* Refúgio refinement: portrait feature, unavailable support and organic framework */
.page-home .action-gateway .action-gateway__item--sponsor,
.action-choice--sponsor {
  --accent: #9b7138;
  --halo-rgb: 214, 180, 124;
}

.event-preview__art--portrait {
  isolation: isolate;
}

.event-preview__art--portrait::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  inset: -28px;
  width: auto;
  aspect-ratio: auto;
  border-radius: 0;
  background: linear-gradient(rgba(14, 11, 10, 0.34), rgba(14, 11, 10, 0.58)), url("assets/event-runway-refugio.png") center / cover no-repeat;
  filter: blur(22px) saturate(0.62);
  transform: scale(1.08);
}

.event-preview__art--portrait::after {
  z-index: 2;
}

.event-preview__art--portrait img {
  z-index: 1;
  box-sizing: border-box;
  padding: clamp(10px, 1.4vw, 18px);
  object-fit: contain;
  object-position: center;
  filter: saturate(0.9) contrast(1.03) drop-shadow(0 18px 38px rgba(0, 0, 0, 0.28));
}

.event-preview__art--portrait:hover img {
  transform: scale(1.012);
  filter: saturate(1) contrast(1.03) drop-shadow(0 20px 42px rgba(0, 0, 0, 0.32));
}

.page-participate .journey-choices .journey-choice--disabled {
  --accent: #77726b;
  --halo-rgb: 118, 114, 107;
  cursor: not-allowed;
  color: #6f6b65;
  border-color: rgba(92, 88, 82, 0.2);
  background: rgba(219, 216, 209, 0.72);
  box-shadow: none;
  filter: grayscale(0.72);
}

.page-participate .journey-choices .journey-choice--disabled:is(:hover, :focus-visible) {
  color: #625e58;
  background: rgba(226, 223, 217, 0.82);
  box-shadow: 0 16px 42px rgba(60, 56, 50, 0.08);
  transform: translateY(-3px);
}

.page-participate .journey-choice--disabled .action-choice__icon {
  position: relative;
  opacity: 0.68;
}

.page-participate .journey-choices .journey-choice--disabled .journey-choice__lock {
  position: absolute;
  right: -4px;
  bottom: 2px;
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 50%;
  color: #f4f1eb;
  background: #716d67;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.journey-choice__status {
  display: block;
  width: max-content;
  margin: 16px auto 0;
  padding: 7px 11px;
  border: 1px solid rgba(89, 85, 78, 0.22);
  border-radius: 999px;
  color: #68635d;
  font: 700 9px/1 "Manrope", sans-serif;
  font-style: normal;
  letter-spacing: 0.14em;
}

.page-participate .journey-choices .journey-choice--disabled > .journey-choice__locked-label {
  color: #716d67;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-about .page-hero__story {
  max-width: 690px;
  display: grid;
  gap: 18px;
}

.page-about .page-hero__story p {
  margin: 0;
}

.page-about .page-hero__story p:last-child {
  color: var(--muted);
}

.page-about .statement-block {
  align-items: stretch;
}

.page-about .statement-block article,
.page-about .statement-block article:nth-child(2) {
  height: 100%;
  margin-top: 0;
}

.about-framework__orbit {
  position: relative;
  max-width: 1160px;
  min-height: 760px;
  margin: clamp(65px, 8vw, 110px) auto 0;
}

.about-framework__connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.about-framework__connections path {
  fill: none;
  stroke: rgba(140, 109, 58, 0.35);
  stroke-width: 1.25;
  stroke-dasharray: 5 8;
}

.about-framework__core {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 46%;
  width: 230px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 47% 53% 58% 42% / 53% 43% 57% 47%;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.78), rgba(183, 204, 177, 0.7));
  box-shadow: 0 25px 70px rgba(79, 94, 73, 0.12);
  transform: translate(-50%, -50%) rotate(-3deg);
}

.about-framework__core img {
  width: 88px;
  opacity: 0.72;
}

.about-framework__core span {
  position: absolute;
  bottom: 37px;
  color: #5d6f58;
  font: 700 9px/1 "Manrope", sans-serif;
  letter-spacing: 0.13em;
}

.about-framework__step {
  position: absolute;
  z-index: 1;
  width: min(27%, 280px);
  min-height: 205px;
  padding: 26px 25px 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 42% 58% 52% 48% / 48% 43% 57% 52%;
  outline: 0;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 55px rgba(75, 66, 54, 0.045);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease;
}

.about-framework__step::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 180, 124, 0.2), transparent 68%);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.about-framework__step:is(:hover, :focus-visible) {
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 70px rgba(87, 72, 52, 0.11);
  transform: translateY(-8px) rotate(-1deg);
}

.about-framework__step:is(:hover, :focus-visible)::before {
  opacity: 1;
  transform: scale(1);
}

.about-framework__step > span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(140, 109, 58, 0.38);
  border-radius: 50%;
  color: #8b6c38;
  font: 700 9px/1 "Manrope", sans-serif;
}

.about-framework__step h3 {
  margin: 20px 0 10px;
  color: var(--ink);
  font: 500 clamp(22px, 2vw, 30px)/1.05 "Playfair Display", Georgia, serif;
  letter-spacing: -0.03em;
}

.about-framework__step p {
  margin: 0;
  color: var(--muted);
  font: 400 12px/1.6 "Manrope", sans-serif;
}

.about-framework__step--one { left: 3%; top: 1%; transform: rotate(-2deg); }
.about-framework__step--two { right: 3%; top: 1%; transform: rotate(2deg); }
.about-framework__step--three { left: 0; bottom: 4%; transform: rotate(1.5deg); }
.about-framework__step--four { right: 0; bottom: 4%; transform: rotate(-1.5deg); }
.about-framework__step--five { left: 50%; bottom: -4%; transform: translateX(-50%); }
.about-framework__step--five:is(:hover, :focus-visible) { transform: translateX(-50%) translateY(-8px) rotate(-1deg); }

.page-about .founder-biography {
  color: var(--ink);
  font: 500 clamp(20px, 1.8vw, 25px)/1.55 "Playfair Display", Georgia, serif;
}

.page-about .founder-social-intro {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .about-framework__orbit {
    min-height: 1020px;
  }

  .about-framework__step {
    width: min(36%, 290px);
  }

  .about-framework__step--one,
  .about-framework__step--three { left: 1%; }
  .about-framework__step--two,
  .about-framework__step--four { right: 1%; }
  .about-framework__step--three,
  .about-framework__step--four { bottom: 15%; }
  .about-framework__step--five { bottom: -1%; }
}

@media (max-width: 700px) {
  .about-framework__orbit {
    min-height: 0;
    display: grid;
    gap: 24px;
    padding-left: 30px;
  }

  .about-framework__orbit::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 135px;
    bottom: 65px;
    width: 1px;
    background: linear-gradient(rgba(140, 109, 58, 0.12), rgba(140, 109, 58, 0.55), rgba(140, 109, 58, 0.12));
  }

  .about-framework__connections {
    display: none;
  }

  .about-framework__core,
  .about-framework__step,
  .about-framework__step--one,
  .about-framework__step--two,
  .about-framework__step--three,
  .about-framework__step--four,
  .about-framework__step--five {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .about-framework__core {
    justify-self: center;
    width: 190px;
    margin-bottom: 16px;
  }

  .about-framework__step {
    min-height: 0;
    padding: 28px;
    border-radius: 28px 48px 32px 46px;
  }

  .about-framework__step::after {
    content: "";
    position: absolute;
    left: -24px;
    top: 42px;
    width: 11px;
    height: 11px;
    border: 3px solid var(--cream-deep);
    border-radius: 50%;
    background: #9b7138;
  }

  .about-framework__step--five:is(:hover, :focus-visible),
  .about-framework__step:is(:hover, :focus-visible) {
    transform: translateY(-4px);
  }
}

@media (max-width: 560px) {
  .page-about .page-hero__story {
    gap: 14px;
  }

  .event-preview__art--portrait img {
    padding: 8px;
  }

  .journey-choice__status {
    margin-top: 12px;
  }
}

/* Compact title scale: headings stay expressive without filling the screen. */
.hero h1 {
  font-size: clamp(40px, 5.2vw, 78px);
}

.section-heading h2,
.about h2 {
  font-size: clamp(32px, 3.8vw, 54px);
}

.home-about__copy h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.founder-content h2 {
  font-size: clamp(43px, 5.3vw, 76px);
}

.closing h2,
.coming-soon h2 {
  font-size: clamp(36px, 4.4vw, 62px);
}

.inner-hero h1 {
  font-size: clamp(44px, 5.6vw, 82px);
}

.page-hero .page-hero__copy h1 {
  font-size: clamp(42px, 5vw, 76px);
}

.policy-hero h1 {
  font-size: clamp(42px, 5.2vw, 78px);
}

.policy-section h2 {
  font-size: clamp(25px, 2.7vw, 39px);
}

.policy-contact h2 {
  font-size: clamp(31px, 3.8vw, 52px);
}

.participate-hero__copy h1 {
  font-size: clamp(48px, 6.2vw, 86px);
}

.journey-panel__intro h2 {
  font-size: clamp(34px, 3.8vw, 54px);
}

.event-title h1,
.event-title h2 {
  font-size: clamp(64px, 10vw, 145px);
}

.event-preview__content h2,
.runway-visual__copy h2 {
  font-size: clamp(48px, 6vw, 86px);
}

.partners-call > div:first-child h2,
.tiers-wrap > div:first-child h2,
.event-trust > div:first-child h2,
.page-event .event-purpose__intro h2,
.page-event .editorial-heading h2,
.page-event .event-details__heading h2 {
  font-size: clamp(40px, 5vw, 72px);
}

.page-event .editorial-copy .editorial-heading h2 {
  font-size: clamp(36px, 3.9vw, 56px);
}

.page-home .path-grid .glass-card h3,
.page-home .action-gateway .action-choice h3,
.page-participate .journey-choices .action-choice strong,
.page-event .partner-cards .action-choice h3,
.page-event .event-purpose__flow h3,
.page-event .event-detail h3,
.trust-point h3 {
  font-size: clamp(24px, 2.3vw, 34px);
}

.page-causes .cause-grid h2,
.page-event .event-trust__items h3 {
  font-size: clamp(30px, 3.1vw, 42px);
}

.page-about .statement-block h2,
.page-stories .story-principles h2 {
  font-size: clamp(29px, 3.1vw, 44px);
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 42px;
  }

  .section-heading h2,
  .about h2,
  .home-about__copy h2 {
    font-size: 34px;
  }

  .founder-content h2 {
    font-size: 48px;
  }

  .inner-hero h1,
  .page-hero .page-hero__copy h1,
  .policy-hero h1,
  .participate-hero__copy h1 {
    font-size: 42px;
  }

  .journey-panel__intro h2 {
    font-size: 34px;
  }

  .event-title h1,
  .event-title h2 {
    font-size: 52px;
  }

  .event-preview__content h2,
  .runway-visual__copy h2 {
    font-size: 46px;
  }

  .partners-call > div:first-child h2,
  .tiers-wrap > div:first-child h2,
  .event-trust > div:first-child h2,
  .page-event .event-purpose__intro h2,
  .page-event .editorial-heading h2,
  .page-event .event-details__heading h2,
  .page-event .editorial-copy .editorial-heading h2 {
    font-size: 38px;
  }

  .page-causes .cause-grid h2,
  .page-event .event-trust__items h3 {
    font-size: 32px;
  }

  .quick-exit {
    display: flex;
    width: 100%;
  }

  .safety-note a {
    width: 100%;
    min-height: 52px;
    font-size: 14px;
  }

  .quick-exit__tooltip {
    left: 50%;
    transform: translate(-50%, 6px);
  }

  .quick-exit:hover .quick-exit__tooltip,
  .quick-exit:focus-within .quick-exit__tooltip {
    transform: translate(-50%, 0);
  }

  .quick-exit__tooltip::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Final interaction refinements. */
.safety-note .quick-exit > a {
  min-height: 58px;
  padding: 17px 30px;
  font-size: 15px;
}

.direction-arrow {
  position: relative;
  display: block;
  width: 30px;
  height: 22px;
  font-size: 0;
}

.direction-arrow::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 10px;
  width: 23px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(-35deg);
  transform-origin: right center;
}

.direction-arrow::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 2px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.motion-consent {
  display: none;
}

@media (max-width: 900px) {
  .site-header {
    overflow: visible;
  }

  .site-header .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 80;
    width: 100%;
    max-height: calc(100svh - 105px);
    padding: 18px;
    gap: 3px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 16px;
    background: rgba(247, 245, 242, 0.98);
    box-shadow: 0 22px 52px rgba(43, 33, 29, 0.2);
  }

  .site-header .main-nav > a:not(.header-contact) {
    width: 100%;
    min-height: 45px;
    padding: 12px 10px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(43, 33, 29, 0.09);
    font-size: 14px;
  }

  .site-header .main-nav .header-contact {
    width: 100%;
    min-height: 49px;
    margin-top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
  }

  .site-header .main-nav .language-switch {
    min-height: 43px;
    padding: 8px 10px 2px;
  }
}

@media (max-width: 900px) and (pointer: coarse) {
  .motion-consent {
    position: fixed;
    left: 50%;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 200;
    width: min(calc(100% - 28px), 410px);
    padding: 20px;
    display: block;
    border: 1px solid rgba(171, 139, 74, 0.34);
    border-radius: 18px;
    color: var(--ink);
    background: rgba(247, 245, 242, 0.97);
    box-shadow: 0 22px 55px rgba(43, 33, 29, 0.24);
    opacity: 0;
    transform: translate(-50%, 18px);
    transition: opacity 240ms ease, transform 240ms ease;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .motion-consent.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .motion-consent__close {
    position: absolute;
    top: 10px;
    right: 11px;
    width: 36px;
    height: 36px;
    padding: 0;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: rgba(43, 33, 29, 0.68);
    background: transparent;
    font: 400 25px/1 "Manrope", sans-serif;
    cursor: pointer;
  }

  .motion-consent__eyebrow {
    margin: 0 42px 7px 0;
    display: block;
    color: #8b6c38;
    font: 700 10px/1.2 "Manrope", sans-serif;
    letter-spacing: 0.14em;
  }

  .motion-consent strong {
    padding-right: 32px;
    display: block;
    color: var(--ink);
    font: 600 19px/1.25 "Cormorant Garamond", serif;
  }

  .motion-consent p {
    margin: 7px 0 16px;
    max-width: 35ch;
    color: rgba(43, 33, 29, 0.74);
    font: 400 12px/1.55 "Manrope", sans-serif;
  }

  .motion-consent__actions {
    display: flex;
    gap: 8px;
  }

  .motion-consent__allow,
  .motion-consent__decline {
    min-height: 43px;
    padding: 10px 15px;
    border-radius: 10px;
    font: 700 11px/1.2 "Manrope", sans-serif;
    cursor: pointer;
  }

  .motion-consent__allow {
    flex: 1;
    border: 1px solid var(--action-ink);
    color: var(--cream);
    background: var(--action-ink);
  }

  .motion-consent__decline {
    border: 1px solid rgba(43, 33, 29, 0.22);
    color: var(--ink);
    background: transparent;
  }

  .motion-consent button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }
}

@media (max-width: 560px) {
  .safety-note .quick-exit > a {
    min-height: 62px;
    padding: 18px 26px;
    font-size: 16px;
  }

  .site-header .main-nav {
    top: calc(100% + 8px);
    padding: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-consent {
    transition: none;
  }
}

/* Expanded institutional story for the About page. */
.page-about .about-display .display-caption b {
  max-width: 210px;
}

.about-identity {
  padding-top: clamp(90px, 11vw, 160px);
  padding-bottom: clamp(90px, 10vw, 145px);
}

.about-identity__heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: clamp(35px, 7vw, 110px);
  align-items: start;
}

.about-identity__heading h2,
.about-framework__heading h2,
.about-initiative__copy h2 {
  max-width: 950px;
  margin: 0;
  color: var(--ink);
  font: 500 clamp(36px, 4.6vw, 66px)/1.02 "Playfair Display", Georgia, serif;
  letter-spacing: -0.05em;
}

.about-identity__intro {
  margin: clamp(55px, 7vw, 95px) 0 0 min(24vw, 340px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(40px, 7vw, 105px);
  align-items: start;
}

.about-identity__intro > p,
.about-framework__heading > p:last-child,
.about-initiative__copy > p {
  margin: 0;
  color: var(--muted);
  font: 400 16px/1.75 "Manrope", sans-serif;
}

.about-identity__intro blockquote {
  margin: 0;
  padding: 0 0 0 28px;
  border-left: 2px solid var(--gold);
  color: #8b6c38;
  font: italic 25px/1.45 "Playfair Display", Georgia, serif;
}

.about-identity__principles {
  margin-top: clamp(70px, 9vw, 125px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 75px);
}

.about-identity__principles article {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 4vw, 50px);
  overflow: hidden;
  border: 1px solid rgba(43, 33, 29, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.38);
}

.about-identity__principles article::before {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 280px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 204, 177, 0.34), transparent 68%);
}

.about-identity__principles article:nth-child(2)::before {
  background: radial-gradient(circle, rgba(214, 180, 124, 0.28), transparent 68%);
}

.about-identity__principles span,
.about-framework__steps span {
  display: block;
  color: rgba(43, 33, 29, 0.34);
  font: 500 12px/1 "Manrope", sans-serif;
  letter-spacing: 0.12em;
}

.about-identity__principles small {
  margin-top: 68px;
  display: block;
  color: #8b6c38;
  font: 700 10px/1.2 "Manrope", sans-serif;
  letter-spacing: 0.15em;
}

.about-identity__principles h3 {
  position: relative;
  max-width: 580px;
  margin: 18px 0;
  color: var(--ink);
  font: 500 clamp(28px, 3vw, 43px)/1.08 "Playfair Display", Georgia, serif;
  letter-spacing: -0.035em;
}

.about-identity__principles p {
  position: relative;
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font: 400 14px/1.7 "Manrope", sans-serif;
}

.about-framework {
  padding-top: clamp(90px, 11vw, 160px);
  padding-bottom: clamp(90px, 11vw, 160px);
  background:
    radial-gradient(circle at 88% 12%, rgba(214, 180, 124, 0.2), transparent 25%),
    var(--cream-deep);
}

.about-framework__heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1.1fr);
  column-gap: clamp(35px, 7vw, 110px);
  align-items: start;
}

.about-framework__heading > p:last-child {
  grid-column: 2;
  max-width: 680px;
  margin-top: 30px;
}

.about-framework__steps {
  margin-top: clamp(70px, 8vw, 115px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(43, 33, 29, 0.18);
}

.about-framework__steps article {
  min-height: 335px;
  padding: 34px 24px 28px;
  border-right: 1px solid rgba(43, 33, 29, 0.13);
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-framework__steps article:first-child {
  border-left: 1px solid rgba(43, 33, 29, 0.13);
}

.about-framework__steps article:is(:hover, :focus-within) {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-6px);
}

.about-framework__steps h3 {
  margin: 82px 0 18px;
  color: var(--ink);
  font: 500 clamp(23px, 2.1vw, 31px)/1.05 "Playfair Display", Georgia, serif;
  letter-spacing: -0.035em;
}

.about-framework__steps p {
  margin: 0;
  color: var(--muted);
  font: 400 13px/1.65 "Manrope", sans-serif;
}

.about-initiative {
  padding-top: clamp(90px, 11vw, 155px);
  padding-bottom: clamp(90px, 11vw, 155px);
  display: grid;
  grid-template-columns: minmax(270px, 0.62fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 140px);
  align-items: center;
}

.about-initiative__mark {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 48% 52% 45% 55% / 56% 45% 55% 44%;
  background: rgba(183, 204, 177, 0.62);
}

.about-initiative__mark::after {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: inherit;
}

.about-initiative__mark img {
  width: min(55%, 230px);
  opacity: 0.72;
  mix-blend-mode: multiply;
}

.about-initiative__mark span {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 1;
  color: rgba(43, 33, 29, 0.62);
  font: 700 10px/1 "Manrope", sans-serif;
  letter-spacing: 0.15em;
  white-space: nowrap;
  transform: translateX(-50%);
}

.about-initiative__copy > p {
  max-width: 690px;
  margin-top: 30px;
}

.about-initiative__copy .text-link {
  margin-top: 35px;
  display: inline-flex;
}

.page-about .founder {
  padding-top: clamp(95px, 11vw, 150px);
  padding-bottom: clamp(95px, 11vw, 150px);
}

.founder-timeline {
  margin-top: 42px;
  border-top: 1px solid var(--line);
}

.founder-timeline article {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}

.founder-timeline time {
  color: #8b6c38;
  font: 700 10px/1.5 "Manrope", sans-serif;
  letter-spacing: 0.06em;
}

.founder-timeline p {
  margin: 0;
  color: var(--muted);
  font: 400 13px/1.65 "Manrope", sans-serif;
}

@media (max-width: 1100px) {
  .about-framework__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-framework__steps article:nth-child(4),
  .about-framework__steps article:nth-child(5) {
    border-top: 1px solid rgba(43, 33, 29, 0.13);
  }
}

@media (max-width: 900px) {
  .about-identity__heading,
  .about-framework__heading,
  .about-initiative {
    grid-template-columns: 1fr;
  }

  .about-identity__intro {
    margin-left: 0;
  }

  .about-framework__heading > p:last-child {
    grid-column: auto;
  }

  .about-initiative__mark {
    width: min(100%, 520px);
    min-height: 390px;
  }
}

@media (max-width: 700px) {
  .about-identity__intro,
  .about-identity__principles,
  .about-framework__steps {
    grid-template-columns: 1fr;
  }

  .about-identity__intro blockquote {
    font-size: 22px;
  }

  .about-identity__principles article {
    min-height: 330px;
  }

  .about-identity__principles small {
    margin-top: 48px;
  }

  .about-framework__steps article,
  .about-framework__steps article:first-child,
  .about-framework__steps article:nth-child(4),
  .about-framework__steps article:nth-child(5) {
    min-height: 245px;
    border: 0;
    border-bottom: 1px solid rgba(43, 33, 29, 0.16);
  }

  .about-framework__steps h3 {
    margin-top: 48px;
  }
}

@media (max-width: 560px) {
  .page-about .about-display .display-caption {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-about .about-display .display-caption small {
    text-align: left;
  }

  .about-identity__heading h2,
  .about-framework__heading h2,
  .about-initiative__copy h2 {
    font-size: 36px;
  }

  .about-initiative__mark {
    min-height: 330px;
  }

  .founder-timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Final visual refinements: portrait framing, centred framework and founder story */
.event-preview__art--portrait {
  width: min(100%, 340px);
  min-height: 0;
  aspect-ratio: 797 / 1194;
  justify-self: center;
  background: #171313;
}

.event-preview__art--portrait::before {
  display: none;
  background: none;
  filter: none;
}

.event-preview__art--portrait img {
  padding: 0;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.03);
}

.event-preview__art--portrait:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.04);
}

.founder-photo img {
  filter: saturate(0.86) contrast(1.02);
  transition: transform 0.9s cubic-bezier(.2,.8,.2,1), filter 0.6s ease;
  will-change: transform;
}

.founder-photo:hover img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.04);
}

.page-about .page-hero__story {
  max-width: 650px;
  margin-top: 34px;
  gap: 15px;
}

.page-about .page-hero__story p,
.page-about .page-hero__story p:last-child {
  margin: 0;
  color: var(--muted);
  font: 400 16px/1.7 "Manrope", sans-serif;
}

.about-identity__principles small {
  margin-top: 0;
}

.about-framework__core {
  top: 50%;
}

.motion-ready .about-framework__core.reveal,
.motion-ready .about-framework__core.reveal.is-revealed {
  transform: translate(-50%, -50%) rotate(-3deg);
}

.about-framework__step {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.about-framework__step h3 {
  margin: 0 0 12px;
}

.about-framework__step p {
  max-width: 225px;
  margin-inline: auto;
  text-align: center;
}

.page-about .founder-biography,
.page-about .founder-social-intro {
  max-width: 560px;
  color: var(--muted);
  font: 400 15px/1.72 "Manrope", sans-serif;
}

.page-about .founder-biography {
  margin: 34px 0 0;
}

.page-about .founder-social-intro,
.page-about .founder-content > p:last-of-type {
  margin: 16px 0 34px;
}

.founder-volunteer {
  grid-column: 1 / -1;
  margin-top: clamp(35px, 6vw, 85px);
  padding-top: clamp(42px, 6vw, 75px);
  display: grid;
  grid-template-columns: minmax(230px, 0.55fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.founder-volunteer__heading h3 {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--ink);
  font: 500 clamp(31px, 3.6vw, 48px)/1.08 "Playfair Display", Georgia, serif;
  letter-spacing: -0.035em;
}

.founder-volunteer .founder-timeline {
  margin-top: 0;
}

@media (max-width: 900px) {
  .founder-volunteer {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 700px) {
  .about-identity__principles small {
    margin-top: 0;
  }

  .about-framework__step {
    text-align: center;
  }

  .motion-ready .about-framework__core.reveal,
  .motion-ready .about-framework__core.reveal.is-revealed {
    transform: none;
  }

  .about-framework__core {
    margin-bottom: 120px;
  }
}

@media (max-width: 560px) {
  .event-preview__art--portrait {
    width: min(100%, 340px);
  }

  .event-preview__art--portrait img {
    padding: 0;
  }

  .page-about .page-hero__story {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-photo img,
  .event-preview__art--portrait img {
    transition: none;
  }
}
