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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class],
ol[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

body {
  min-height: 100vh;
  background: #F6F6F6;
  color: #19374F;
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

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

table {
  border-collapse: collapse;
}

:target {
  scroll-margin-top: 5.5rem;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: #19374F;
  color: #F6F6F6;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  z-index: 1000;
  transition: top 250ms ease;
}
.skip-link:focus-visible {
  top: 1rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #19374F;
  letter-spacing: -0.01em;
}

h1 {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}

h3 {
  font-size: 1.375rem;
}

p {
  color: #19374F;
}

.lede {
  font-size: 1.125rem;
  color: #5C6B76;
}
@media (min-width: 768px) {
  .lede {
    font-size: 1.375rem;
  }
}

.font-display {
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C22C79;
}

.section-title {
  max-width: 42rem;
  margin-bottom: 3rem;
}
.section-title h2 {
  margin-top: 0.75rem;
}
.section-title .lede {
  margin-top: 1rem;
}

.section-title--center {
  margin-inline: auto;
  text-align: center;
}

.text-muted {
  color: #5C6B76;
}

.text-balance {
  text-wrap: balance;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 480px) {
  .container {
    padding-inline: 2rem;
  }
}
@media (min-width: 768px) {
  .container {
    padding-inline: 3rem;
  }
}

.section {
  padding-block: 4rem;
}
@media (min-width: 768px) {
  .section {
    padding-block: 6rem;
  }
}
@media (min-width: 1024px) {
  .section {
    padding-block: 8rem;
  }
}
.section {
  position: relative;
}

.section--alt {
  background: #ECEDEE;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

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

.flow > * + * {
  margin-top: 1.5rem;
}

.stack-sm > * + * {
  margin-top: 0.75rem;
}

.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}
.btn:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn--primary {
  background: #00C7BD;
  color: #F6F6F6;
  box-shadow: 0 10px 22px rgba(0, 144, 136, 0.28);
}
.btn--primary:hover {
  background: #009088;
}

.btn--secondary {
  background: #F6F6F6;
  color: #19374F;
  border: 1.5px solid #DADDE0;
}
.btn--secondary:hover {
  border-color: #00C7BD;
  color: #009088;
}

.btn--ghost-inverse {
  background: transparent;
  color: #F6F6F6;
  border: 1.5px solid rgba(246, 246, 246, 0.5);
}
.btn--ghost-inverse:hover {
  background: rgba(246, 246, 246, 0.12);
  border-color: #F6F6F6;
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.8125rem;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .btn-row {
    justify-content: flex-start;
  }
}

.text-enfase {
  color: #FDEAF4;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  isolation: isolate;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(246, 246, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms ease, box-shadow 250ms ease;
}
.header.is-scrolled::before {
  border-color: #DADDE0;
  box-shadow: 0 2px 8px rgba(25, 55, 79, 0.06);
}

.nav {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 480px) {
  .nav {
    padding-inline: 2rem;
  }
}
@media (min-width: 768px) {
  .nav {
    padding-inline: 3rem;
  }
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
}
.nav__brand:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}

.nav__brand-mark {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: linear-gradient(125deg, #F950A1, #FF6FB8, #2EBE97, #00C7BD);
  flex-shrink: 0;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border-radius: 0.5rem;
}
.nav__toggle:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: #19374F;
  border-radius: 2px;
  transition: transform 250ms ease, opacity 250ms ease;
}
@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__menu {
  position: fixed;
  inset: 4.5rem 0 0 0;
  background: #F6F6F6;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__menu.is-open {
  transform: translateX(0);
}
@media (min-width: 1024px) {
  .nav__menu {
    position: static;
    inset: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    gap: 3rem;
    overflow: visible;
  }
}

.nav__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .nav__links {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    font-size: 0.9375rem;
  }
}

.nav__link {
  position: relative;
  padding-bottom: 0.25rem;
}
.nav__link:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #F950A1, #FF6FB8, #2EBE97, #00C7BD);
  transition: width 250ms ease;
}
.nav__link:hover::after, .nav__link.is-active::after {
  width: 100%;
}
.nav__link.is-active {
  color: #C22C79;
}

.nav__actions {
  margin-top: auto;
}
@media (min-width: 1024px) {
  .nav__actions {
    margin-top: 0;
  }
}

.card-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.proposal-card {
  background: #F6F6F6;
  border: 1px solid #DADDE0;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(25, 55, 79, 0.06);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.proposal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(25, 55, 79, 0.1);
}

.proposal-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proposal-card__icon i {
  font-size: 1.375rem;
}

.proposal-card--red .proposal-card__icon {
  background: #FDEAF4;
  color: #C22C79;
}

.proposal-card--yellow .proposal-card__icon {
  background: #FFEAF6;
  color: #D63F8C;
}

.proposal-card--green .proposal-card__icon {
  background: #E3F7F0;
  color: #1D8F71;
}

.proposal-card--blue .proposal-card__icon {
  background: #E0F9F7;
  color: #009088;
}

.proposal-card h3 {
  margin-top: 0;
}

.value-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: #F6F6F6;
  border: 1px solid #DADDE0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-card__index {
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.375rem;
  color: #DADDE0;
  line-height: 1;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.agenda-item {
  background: #F6F6F6;
  border: 1px solid #DADDE0;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(25, 55, 79, 0.06);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
}

.agenda-item__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 0.875rem;
  background: #FDEAF4;
  color: #C22C79;
  flex-shrink: 0;
}
.agenda-item__date strong {
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
}
.agenda-item__date span {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.agenda-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: #5C6B76;
  margin-top: 0.5rem;
}

.news-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.news-card {
  background: #F6F6F6;
  border: 1px solid #DADDE0;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(25, 55, 79, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 250ms ease, box-shadow 250ms ease;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(25, 55, 79, 0.1);
}

.news-card__media {
  aspect-ratio: 16/10;
  background: #ECEDEE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5C6B76;
}

.news-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.news-card__date {
  font-size: 0.8125rem;
  color: #5C6B76;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-card__link {
  margin-top: auto;
  font-weight: 600;
  color: #009088;
}
.news-card__link:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}

.form {
  display: grid;
  gap: 1.5rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-grid > .field--full {
  grid-column: 1/-1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field label {
  font-size: 0.9375rem;
  font-weight: 600;
}

.field__hint {
  font-size: 0.8125rem;
  color: #5C6B76;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  border: 1.5px solid #DADDE0;
  background: #F6F6F6;
  color: #19374F;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #B8C0C6;
}
.field input::-moz-placeholder, .field select::-moz-placeholder, .field textarea::-moz-placeholder {
  color: #5C6B76;
}
.field input::placeholder,
.field select::placeholder,
.field textarea::placeholder {
  color: #5C6B76;
}
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-color: #F950A1;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}
.field--checkbox input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: #F950A1;
  flex-shrink: 0;
}
.field--checkbox label {
  font-weight: 400;
  font-size: 0.9375rem;
}

.form-feedback {
  display: none;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
}
.form-feedback.is-visible {
  display: block;
}

.form-feedback--success {
  background: #E3F7F0;
  color: #1D8F71;
}

.form-feedback--error {
  background: #FDEAF4;
  color: #C22C79;
}

.form-panel {
  background: #F6F6F6;
  border: 1px solid #DADDE0;
  border-radius: 1.5rem;
  box-shadow: 0 2px 8px rgba(25, 55, 79, 0.06);
  padding: 2rem;
}
@media (min-width: 768px) {
  .form-panel {
    padding: 3rem;
  }
}

.gallery-tabs {
  display: inline-flex;
  gap: 0.5rem;
  padding: 0.25rem;
  background: #ECEDEE;
  border-radius: 999px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5C6B76;
  transition: background-color 150ms ease, color 150ms ease;
}
.gallery-tab:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.gallery-tab.is-active {
  background: #F6F6F6;
  color: #C22C79;
  box-shadow: 0 2px 8px rgba(25, 55, 79, 0.06);
}

.gallery-grid {
  --gallery-gutter: 20px;
  position: relative;
  max-width: 72rem;
  margin-inline: auto;
}

.gallery-item {
  width: 100%;
  margin-bottom: var(--gallery-gutter);
}
@media (min-width: 480px) {
  .gallery-item {
    width: calc(50% - var(--gallery-gutter) / 2);
  }
}
@media (min-width: 1024px) {
  .gallery-item {
    width: calc(33.333% - var(--gallery-gutter) * 2 / 3);
  }
}
.gallery-item {
  position: relative;
  display: block;
  cursor: pointer;
  background: #ECEDEE;
  border: none;
  padding: 0;
  border-radius: 0.875rem;
  overflow: hidden;
}
.gallery-item:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.gallery-item.is-hidden {
  display: none;
}

.gallery-item__thumb,
.gallery-item__img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .gallery-item:hover .gallery-item__thumb,
  .gallery-item:hover .gallery-item__img {
    transform: scale(1.04);
  }
}
.gallery-item__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 0.75rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  color: #F6F6F6;
  background: linear-gradient(to top, rgba(25, 55, 79, 0.88), transparent);
  text-align: left;
  z-index: 2;
}

@media (hover: hover) {
  .gallery-item__caption {
    opacity: 0;
    transition: opacity 250ms ease;
  }
  .gallery-item:hover .gallery-item__caption,
  .gallery-item:focus-visible .gallery-item__caption {
    opacity: 1;
  }
}
.gallery-item__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: rgba(25, 55, 79, 0.25);
  transition: background-color 150ms ease;
}
.gallery-item__play svg {
  width: 2.75rem;
  height: 2.75rem;
  color: #F6F6F6;
  filter: drop-shadow(0 2px 6px rgba(25, 55, 79, 0.5));
  transition: transform 250ms ease;
}
.gallery-item:hover .gallery-item__play {
  background: rgba(25, 55, 79, 0.38);
}
.gallery-item:hover .gallery-item__play svg {
  transform: scale(1.12);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-item__thumb,
  .gallery-item__img,
  .gallery-item__caption,
  .gallery-item__play svg {
    transition: none;
  }
  .gallery-item:hover .gallery-item__thumb,
  .gallery-item:hover .gallery-item__img,
  .gallery-item:hover .gallery-item__play svg {
    transform: none;
  }
}
.lightbox {
  border: none;
  border-radius: 1.5rem;
  padding: 0;
  max-width: min(92vw, 56rem);
  width: 100%;
  background: #19374F;
  box-shadow: 0 24px 48px rgba(25, 55, 79, 0.14);
  overflow: hidden;
}
.lightbox::backdrop {
  background: rgba(25, 55, 79, 0.85);
  backdrop-filter: blur(4px);
}

.lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(246, 246, 246, 0.15);
  color: #F6F6F6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms ease;
}
.lightbox__close:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.lightbox__close svg {
  width: 1.1rem;
  height: 1.1rem;
}
.lightbox__close:hover {
  background: rgba(246, 246, 246, 0.28);
}

.lightbox__media {
  width: 100%;
  aspect-ratio: 16/9;
  background: #19374F;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.lightbox__media iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox--foto .lightbox__media {
  aspect-ratio: unset;
  max-height: 80vh;
}

.lightbox__caption {
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(246, 246, 246, 0.85);
  text-align: center;
}

.sash-photo {
  position: relative;
  isolation: isolate;
}
.sash-photo__ribbon {
  position: absolute;
  top: 12%;
  left: -12%;
  width: 135%;
  padding: 0.55rem 0;
  text-align: center;
  transform: rotate(-8deg);
  background: linear-gradient(100deg, #F950A1, #FF6FB8, #2EBE97, #00C7BD);
  color: #F6F6F6;
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(25, 55, 79, 0.1);
  z-index: 2;
}

.sash-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.75rem;
  position: relative;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #5C6B76;
}
.sash-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #F950A1, #FF6FB8, #2EBE97, #00C7BD);
}

.sash-divider {
  height: 6px;
  width: 100%;
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, #F950A1, #FF6FB8, #2EBE97, #00C7BD);
}

.sash-edge {
  position: absolute;
  left: 0;
  right: 0;
  height: clamp(40px, 6vw, 90px);
  overflow: hidden;
  pointer-events: none;
}
.sash-edge svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sash-edge--top {
  top: -1px;
  transform: translateY(-99%);
}

.sash-divider--numbers {
  height: clamp(36px, 5vw, 50px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sash-divider__track {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
  white-space: nowrap;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}

.sash-divider__num {
  flex-shrink: 0;
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1.1rem, 2.6vw, 1.75rem);
  color: #F6F6F6;
  opacity: 0.92;
}

:root {
  --cc-bg: #F6F6F6;
  --cc-primary-color: #19374F;
  --cc-secondary-color: #5C6B76;
  --cc-btn-primary-bg: #F950A1;
  --cc-btn-primary-color: #F6F6F6;
  --cc-btn-primary-hover-bg: #C22C79;
  --cc-btn-secondary-bg: #ECEDEE;
  --cc-btn-secondary-color: #19374F;
  --cc-btn-secondary-hover-bg: #DADDE0;
  --cc-btn-secondary-border-color: #DADDE0;
  --cc-toggle-on-bg: #F950A1;
  --cc-toggle-off-bg: #DADDE0;
  --cc-toggle-readonly-bg: #E3F7F0;
  --cc-separator-border-color: #DADDE0;
  --cc-cookie-category-block-bg: #ECEDEE;
  --cc-cookie-category-block-border: #DADDE0;
  --cc-cookie-category-block-hover-bg: #ECEDEE;
  --cc-cookie-table-border: #DADDE0;
  --cc-overlay-bg: rgba(#19374F, 0.55);
  --cc-modal-border-radius: 1.5rem;
  --cc-btn-border-radius: 999px;
  --cc-toggle-border-radius: 4rem;
}

#cc-main {
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif !important;
}
#cc-main .cm {
  box-shadow: 0 24px 48px rgba(25, 55, 79, 0.14);
}
#cc-main .cm[data-layout=bar] {
  border-top: 3px solid #F950A1;
}
#cc-main .cm__title {
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 700;
}
#cc-main .cm__desc {
  font-size: 0.9375rem;
  line-height: 1.55;
}
#cc-main .cm__footer a {
  color: #009088;
  text-decoration: underline;
}
#cc-main .cm__footer a:hover {
  color: #C22C79;
}
#cc-main .cm__btn {
  font-family: "Outfit", "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.4rem;
  transition: background-color 150ms ease, transform 150ms ease;
}
#cc-main .cm__btn:active {
  transform: scale(0.98);
}

body {
  padding-top: 4.5rem;
}

.footer {
  background: #19374F;
  color: #F6F6F6;
  padding-top: 6rem;
}

.footer__top {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 480px) {
  .footer__top {
    padding-inline: 2rem;
  }
}
@media (min-width: 768px) {
  .footer__top {
    padding-inline: 3rem;
  }
}
.footer__top {
  display: grid;
  gap: 3rem;
  padding-bottom: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer__about {
  color: rgba(246, 246, 246, 0.7);
  font-size: 0.9375rem;
  max-width: 28rem;
}

.footer__heading {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(246, 246, 246, 0.55);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.footer__links a {
  color: rgba(246, 246, 246, 0.85);
  transition: color 150ms ease;
}
.footer__links a:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.footer__links a:hover {
  color: #FF6FB8;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(246, 246, 246, 0.08);
  transition: background-color 150ms ease, transform 150ms ease;
}
.footer__social a:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.footer__social a svg {
  width: 1.1rem;
  height: 1.1rem;
}
.footer__social a:hover {
  background: #F950A1;
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid rgba(246, 246, 246, 0.12);
}

.footer__bottom-inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 480px) {
  .footer__bottom-inner {
    padding-inline: 2rem;
  }
}
@media (min-width: 768px) {
  .footer__bottom-inner {
    padding-inline: 3rem;
  }
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-block: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(246, 246, 246, 0.55);
}
@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__legal-links {
  display: flex;
  gap: 1rem;
}
.footer__legal-links a:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.footer__legal-links a:hover {
  color: #F6F6F6;
}

.footer__brand-logo {
  width: 35px;
  height: 35px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #F950A1;
  color: #F6F6F6;
  padding-block: 4rem 0;
}
@media (min-width: 1024px) {
  .hero {
    padding-block: 6rem 0;
  }
}

.hero__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__decor-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.hero__decor-shape--a {
  width: 60vw;
  height: 60vw;
  top: -20vw;
  right: -15vw;
  background: #FA9CC9;
}
.hero__decor-shape--b {
  width: 34vw;
  height: 34vw;
  bottom: -12vw;
  left: -10vw;
  background: #FDEAF4;
  opacity: 0.12;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding-inline: 6rem;
  }
}

.hero__copy {
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__copy {
    width: 52%;
    text-align: left;
    padding-bottom: 6rem;
  }
}

.hero__kicker {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0.85;
  margin: 0 0 0.75rem;
}

.hero__headline {
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 6.5vw, 3.25rem);
}
.hero__headline em {
  font-style: normal;
  color: #FDEAF4;
}
@media (min-width: 1024px) {
  .hero__headline {
    font-size: clamp(2.5rem, 4vw, 3.75rem);
  }
}

.hero__text {
  font-size: clamp(0.9rem, 2.6vw, 1.0625rem);
  line-height: 1.55;
  max-width: 46ch;
  margin: 0 auto 1.5rem;
  opacity: 0.92;
}
@media (min-width: 1024px) {
  .hero__text {
    margin: 0 0 2rem;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .hero__actions {
    justify-content: flex-start;
    margin-bottom: 3rem;
  }
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 0;
}
@media (min-width: 1024px) {
  .hero__stats {
    justify-content: flex-start;
  }
}

.hero__stat {
  text-align: center;
}
@media (min-width: 1024px) {
  .hero__stat {
    text-align: left;
  }
}

.hero__stat-value {
  display: block;
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1;
  color: #FDEAF4;
}

.hero__stat-label {
  display: block;
  font-size: 0.8125rem;
  opacity: 0.8;
  margin-top: 0.25rem;
  max-width: 14ch;
}

.hero__portrait {
  position: relative;
  width: min(90vw, 480px);
}
@media (min-width: 1024px) {
  .hero__portrait {
    width: 80%;
    max-width: 1000px;
    align-self: flex-end;
  }
}

.hero__portrait-img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

@media (prefers-reduced-motion: reduce) {
  .hero * {
    transition: none !important;
  }
}
.about__inner {
  display: grid;
  gap: 4rem;
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .about__inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 6rem;
  }
}

.about__portrait {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 12px 28px rgba(25, 55, 79, 0.1);
}

.about__portrait img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__quote {
  margin-top: 2rem;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-radius: 0.875rem;
  background: #ECEDEE;
  position: relative;
}

.about__quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  bottom: 0.75rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #F950A1, #FF6FB8, #2EBE97, #00C7BD);
}

.about__quote p {
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
}

.about__quote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.8125rem;
  color: #5C6B76;
}

.flow {
  margin-bottom: 4rem;
}

.timeline {
  margin-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline__item {
  position: relative;
  padding-left: 3rem;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.3rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #F950A1;
}

.timeline__item::after {
  content: "";
  position: absolute;
  left: 0.34rem;
  top: 1.1rem;
  bottom: -2.6rem;
  width: 2px;
  background: #DADDE0;
}

.timeline__item:last-child::after {
  display: none;
}

.timeline__year {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #C22C79;
}

.timeline__item h3 {
  margin-top: 0.5rem;
}

.timeline__item p {
  margin-top: 0.75rem;
  color: #5C6B76;
}

.values {
  background: #19374F;
  color: #F6F6F6;
  position: relative;
}

.values .eyebrow {
  color: #FF6FB8;
}

.values .eyebrow::before {
  background: #FF6FB8;
}

.values h2 {
  color: #F6F6F6;
}

.values .lede {
  color: rgba(246, 246, 246, 0.65);
}

.values-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.value-card {
  background: rgba(246, 246, 246, 0.06);
  border: 1px solid rgba(246, 246, 246, 0.12);
}

.value-card__index {
  color: rgba(246, 246, 246, 0.25);
}

.value-card h3 {
  color: #F6F6F6;
}

.value-card p {
  color: rgba(246, 246, 246, 0.7);
  margin-top: 0.5rem;
}

.agenda__cta {
  margin-top: 3rem;
  text-align: center;
}

.agenda-item__type {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.agenda-item__type--green {
  color: #1D8F71;
}

.agenda-item__type--blue {
  color: #009088;
}

.agenda-item__type--yellow {
  color: #D63F8C;
}

.news__footer {
  margin-top: 3rem;
  text-align: center;
}

.volunteer__inner {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .volunteer__inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
  }
}

.volunteer__reasons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.volunteer__reason {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.volunteer__reason-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #DADDE0;
  background: #E3F7F0;
  color: #1D8F71;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.volunteer__reason-icon i {
  font-size: 1.125rem;
}

.volunteer__reason h3 {
  font-size: 1.125rem;
}

.volunteer__reason p {
  color: #5C6B76;
  margin-top: 0.25rem;
  font-size: 0.9375rem;
}

.contact__inner {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .contact__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 6rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid #5FE0D6;
  background: #E0F9F7;
  color: #009088;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon i {
  font-size: 1.125rem;
  color: #009088;
}

.contact-info__item strong {
  display: block;
  font-size: 0.9375rem;
}

.contact-info__item span,
.contact-info__item a {
  font-size: 0.9375rem;
  color: #5C6B76;
}

.contact-info__item a:hover {
  color: #009088;
}

.contact-social {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
}

.contact-social a {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ECEDEE;
  color: #19374F;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}
.contact-social a:focus-visible {
  outline: 3px solid #00C7BD;
  outline-offset: 3px;
  border-radius: 0.5rem;
}
.contact-social a i {
  font-size: 1.125rem;
}
.contact-social a:hover {
  background: #F950A1;
  color: #F6F6F6;
  transform: translateY(-2px);
}

.community {
  background: #00C7BD;
  color: #F6F6F6;
  padding-block: clamp(3.5rem, 10vw, 5rem);
}
@media (min-width: 1024px) {
  .community {
    padding-block: clamp(5rem, 8vw, 7rem);
  }
}

.community__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 68rem;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .community__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 6rem;
  }
}

.community__text {
  text-align: center;
}
@media (min-width: 1024px) {
  .community__text {
    text-align: left;
  }
}

.community__eyebrow {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-bottom: 0.75rem;
}

.community__heading {
  font-family: "Bricolage Grotesque", "Outfit", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 6vw, 2.75rem);
}
@media (min-width: 1024px) {
  .community__heading {
    font-size: clamp(2.25rem, 3.6vw, 3.25rem);
  }
}

.community__lede {
  margin: 0 auto;
  max-width: 42ch;
  font-size: clamp(0.95rem, 2.6vw, 1.0625rem);
  line-height: 1.65;
  opacity: 0.92;
}
@media (min-width: 1024px) {
  .community__lede {
    margin: 0;
    font-size: 1.125rem;
  }
}

.community__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 480px) {
  .community__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .community__actions {
    justify-content: flex-start;
  }
}

.community__actions .btn--light {
  background: #F6F6F6;
  color: #C22C79;
  padding: 1rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
}
.community__actions .btn--light:hover {
  opacity: 0.92;
}

.community__secondary {
  font-size: 1rem;
  font-weight: 600;
  color: #F6F6F6;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0.9;
}
.community__secondary:hover {
  opacity: 1;
}

.community__illustration {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .community__illustration {
    justify-content: flex-end;
  }
}

.community__illustration-img {
  display: block;
  width: min(64vw, 500px);
  height: auto;
  filter: drop-shadow(0 20px 36px rgba(1, 97, 114, 0.25));
}
@media (min-width: 1024px) {
  .community__illustration-img {
    width: 100%;
    max-width: 1000px;
  }
}/*# sourceMappingURL=main.css.map */