:root {
  --ink: #18243b;
  --ink-soft: #405069;
  --paper: #f7f3ea;
  --paper-deep: #eee8dc;
  --white: #fffdf8;
  --accent: #b13a32;
  --accent-deep: #702020;
  --accent-bright: #e26558;
  --accent-soft: #f3b1aa;
  --accent-wash: #f4dedb;
  --yellow: var(--accent);
  --yellow-deep: var(--accent-deep);
  --coral: var(--accent-bright);
  --coral-dark: var(--accent-deep);
  --sage: #8ea698;
  --line: rgba(24, 36, 59, 0.15);
  --shadow: 0 24px 80px rgba(29, 37, 55, 0.13);
  --radius-sm: 0.8rem;
  --radius: 1.4rem;
  --radius-lg: 2.2rem;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 104px;
  --display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --body: "Manrope", "Helvetica Neue", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 7% 8%, rgba(177, 58, 50, 0.09), transparent 22rem),
    var(--paper);
  font-family: var(--body);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--white);
  background: var(--yellow);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.5rem;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.text-nowrap {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: #ffffff;
  box-shadow: 0 1px 0 var(--line);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 35px rgba(24, 36, 59, 0.1);
}

.header-main {
  display: grid;
  min-height: 104px;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
}

.brand {
  display: block;
  width: 220px;
}

.brand img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  gap: clamp(0.65rem, 1vw, 1rem);
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  padding-block: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 2px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(24, 36, 59, 0.18);
}

.external-link-icon {
  width: 1.15em;
  height: 1.15em;
  flex: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button .external-link-icon {
  transition: transform 180ms ease;
}

.button:hover .external-link-icon {
  transform: translate(2px, -2px);
}

.button--accent {
  color: var(--white);
  background: var(--yellow);
}

.button--accent:hover {
  background: var(--accent-deep);
}

.button--light {
  color: var(--ink);
  background: var(--white);
}

.button--outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(24, 36, 59, 0.35);
}

.button--ghost {
  min-height: auto;
  padding: 0.55rem 0;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  border-bottom: 2px solid var(--coral);
}

.header-donate {
  min-height: 44px;
  padding-inline: 1rem;
}

.header-actions {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.header-phone {
  padding-block: 0.45rem;
  color: var(--accent-deep);
  border-bottom: 1px solid rgba(112, 32, 32, 0.34);
  font-size: 0.78rem;
  font-weight: 800;
  white-space: nowrap;
  transition: color 200ms ease, border-color 200ms ease;
}

.header-phone:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.mobile-nav-actions {
  display: none;
}

.route-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 350ms ease;
}

.route-progress.is-loading {
  transform: scaleX(0.72);
}

.route-progress.is-done {
  transform: scaleX(1);
}

main {
  min-height: 55vh;
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.section--compact {
  padding-block: clamp(3.8rem, 6vw, 6rem);
}

.section--paper-deep {
  background: var(--paper-deep);
}

.section--ink {
  color: var(--white);
  background: var(--ink);
}

.section--white {
  background: var(--white);
}

.eyebrow {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--coral-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section--ink .eyebrow,
.page-hero .eyebrow,
.hero-slider .eyebrow {
  color: var(--accent-soft);
}

.display-title,
.page-title,
.section-title,
.card-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.section-title {
  max-width: 800px;
  font-size: clamp(2.45rem, 5.4vw, 5rem);
}

.section-title em,
.page-title em,
.display-title em {
  color: var(--coral);
  font-style: normal;
  font-weight: inherit;
}

.section-heading {
  display: flex;
  gap: 2rem;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(2.6rem, 5vw, 4.5rem);
}

.section-heading p:last-child {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
}

.section--ink .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.muted {
  color: var(--ink-soft);
}

.hero-slider {
  position: relative;
  min-height: min(760px, calc(100vh - var(--header-height)));
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  visibility: hidden;
  transition: opacity 900ms ease, visibility 900ms ease;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.hero-slide__media {
  position: absolute;
  inset: 0;
}

.hero-slide__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 25, 45, 0.92) 0%, rgba(15, 25, 45, 0.58) 48%, rgba(15, 25, 45, 0.14) 100%),
    linear-gradient(0deg, rgba(15, 25, 45, 0.35), transparent 55%);
  content: "";
}

.hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(var(--hero-media-scale, 1.045));
  transition: transform 7s ease-out;
}

.hero-slide.is-active .hero-slide__media img {
  transform: scale(var(--hero-media-active-scale, 1));
}

.hero-slide__body {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 800px;
  min-height: min(760px, calc(100vh - var(--header-height)));
  flex-direction: column;
  justify-content: center;
  padding-block: 6rem 9rem;
}

.hero-slide .display-title {
  max-width: 760px;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  text-wrap: balance;
}

.hero-slide .display-title span {
  color: var(--accent-soft);
}

.hero-slide__body > p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 0 2.2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-slider__controls {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 2rem;
  left: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-slider__dots {
  display: flex;
  gap: 0.65rem;
}

.hero-dot {
  position: relative;
  width: 48px;
  height: 4px;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.34);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hero-dot::after {
  position: absolute;
  inset: 0;
  background: var(--accent-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dot.is-active::after {
  transform: scaleX(1);
  transition: transform 5.5s linear;
}

.hero-slider__count {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--display);
  font-size: 1.1rem;
}

.hero-slider__count strong {
  color: var(--accent-soft);
  font-size: 1.8rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.intro-grid__aside {
  position: sticky;
  top: 10rem;
}

.intro-grid__body .lead {
  margin-top: 0;
}

.intro-grid__body p {
  max-width: 760px;
}

.scribble-note {
  display: inline-flex;
  margin-top: 1.3rem;
  align-items: center;
  gap: 0.8rem;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
  transform: rotate(-1.5deg);
}

.scribble-note::before {
  display: block;
  width: 42px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='28' viewBox='0 0 44 28' fill='none'%3E%3Cpath d='M1 18c8-15 13 8 21-5s12-2 21-12' stroke='%23d9584d' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
  content: "";
}

.impact-strip {
  color: var(--white);
  background: var(--ink);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.impact-item {
  padding: clamp(2.3rem, 5vw, 4.3rem);
}

.impact-item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--accent-soft);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.impact-item span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.mission-card {
  position: relative;
  min-height: 410px;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.mission-card:hover,
.mission-card.reveal.is-visible:hover {
  z-index: 2;
  box-shadow: var(--shadow);
  transform: translateY(-10px) rotate(-0.5deg);
}

.mission-card:nth-child(2):hover,
.mission-card.reveal.is-visible:nth-child(2):hover {
  transform: translateY(-10px) rotate(0.6deg);
}

.mission-card__number {
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  color: rgba(24, 36, 59, 0.08);
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 700;
  line-height: 1;
}

.mission-card__icon {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 5rem;
  place-items: center;
  color: var(--white);
  background: var(--yellow);
  border-radius: 50% 50% 44% 56% / 44% 56% 50% 50%;
}

.mission-card__icon svg {
  width: 34px;
  height: 34px;
}

.mission-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.05;
}

.mission-card p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: stretch;
  background: var(--ink);
}

.feature-split__media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.feature-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.5);
}

.feature-split__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 55%, rgba(24, 36, 59, 0.42));
  content: "";
}

.feature-split__body {
  display: flex;
  max-width: 660px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
  color: var(--white);
}

.feature-split__body .section-title {
  font-size: clamp(2.35rem, 4vw, 4.2rem);
}

.feature-split__body .eyebrow {
  color: var(--accent-soft);
}

.feature-split__body p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.quote-mark {
  display: block;
  margin-bottom: -1.6rem;
  color: var(--accent-soft);
  font-family: var(--display);
  font-size: 7rem;
  line-height: 0.8;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.support-card {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.support-card--yellow {
  color: var(--white);
  background: var(--yellow);
}

.support-card--yellow .eyebrow {
  color: var(--white);
}

.support-card--yellow .copy-row {
  color: var(--accent-deep);
}

.support-card--blue {
  color: var(--white);
  background: var(--ink);
}

.support-card::after {
  position: absolute;
  right: -5rem;
  bottom: -7rem;
  width: 280px;
  height: 280px;
  border: 36px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.support-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 0 1.1rem;
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-wrap: balance;
}

.support-card p {
  position: relative;
  z-index: 1;
  max-width: 470px;
  margin: 0;
}

.support-card--blue p {
  color: rgba(255, 255, 255, 0.72);
}

.copy-row {
  position: relative;
  z-index: 2;
  display: flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 0.8rem;
  backdrop-filter: blur(8px);
}

.support-card--blue .copy-row {
  background: rgba(255, 255, 255, 0.11);
}

.tshirt-support {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(1.6rem, 4vw, 4.5rem);
  align-items: center;
  margin-top: 1.4rem;
  padding: clamp(2rem, 5vw, 4.5rem);
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(112, 32, 32, 0.96), rgba(24, 36, 59, 0.97)),
    var(--accent-deep);
  border-radius: var(--radius-lg);
}

.tshirt-support::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius-lg) - 0.55rem);
  content: "";
  pointer-events: none;
}

.tshirt-support__copy,
.tshirt-support__gallery {
  position: relative;
  z-index: 1;
}

.tshirt-support__copy {
  max-width: 520px;
}

.tshirt-support h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
}

.tshirt-support__text {
  max-width: 430px;
  margin: 1.15rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.55;
}

.tshirt-support__button {
  margin-top: 1.6rem;
}

.tshirt-support__gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(0.8rem, 1.8vw, 1.2rem);
  align-items: center;
}

.tshirt-support__photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.tshirt-support__photo--portrait {
  aspect-ratio: 3 / 4;
}

.tshirt-support__photo--landscape {
  aspect-ratio: 4 / 3;
  transform: translateY(1.15rem);
}

.tshirt-support__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.copy-row strong {
  overflow-wrap: anywhere;
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  letter-spacing: 0.03em;
}

.copy-button {
  flex: none;
  padding: 0.45rem 0.65rem;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.copy-button:disabled {
  cursor: wait;
}

.copy-button.is-copying {
  opacity: 0.72;
}

.copy-button.is-copied {
  color: var(--white);
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.copy-button.is-copy-error {
  border-style: dashed;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.event-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.event-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.event-card:focus-visible {
  outline: 3px solid rgba(177, 58, 50, 0.28);
  outline-offset: 4px;
}

.event-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-card__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 36, 59, 0.35), transparent 55%);
  content: "";
}

.event-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.event-card:hover .event-card__media img {
  transform: scale(1.055);
}

.event-card__date {
  position: absolute;
  z-index: 1;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--white);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.event-card__date strong {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
}

.event-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.event-card__meta {
  margin: 0 0 0.75rem;
  color: var(--coral-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.event-card__foot {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.event-card__foot span:last-child {
  color: var(--coral);
  font-size: 1.2rem;
}

.event-card__foot .external-link-icon {
  color: var(--coral);
  transition: transform 180ms ease;
}

.event-card:hover .event-card__foot .external-link-icon {
  transform: translate(2px, -2px);
}

.event-detail-hero {
  padding: clamp(4.5rem, 8vw, 7rem) 0 clamp(2.75rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(177, 58, 50, 0.1), rgba(255, 255, 255, 0) 44%),
    var(--paper);
}

.event-detail-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.event-detail-copy {
  max-width: 760px;
}

.back-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.back-link span {
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.back-link:hover span {
  transform: translateX(-3px);
}

.event-detail-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.8vw, 6.1rem);
  line-height: 0.98;
}

.event-detail-poster {
  width: min(100%, 350px);
  margin: 0;
  justify-self: end;
  padding: 0.65rem;
  background: var(--white);
  border: 1px solid rgba(24, 36, 59, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(29, 37, 55, 0.14);
}

.event-detail-poster img {
  width: 100%;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: calc(var(--radius) - 0.55rem);
}

.event-detail-poster--fallback img {
  object-position: center;
}

.event-gallery-section {
  padding-top: clamp(2rem, 5vw, 4.5rem);
}

.event-masonry {
  column-count: 3;
  column-gap: 1rem;
}

.event-masonry__item {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  break-inside: avoid;
  box-shadow: 0 18px 45px rgba(29, 37, 55, 0.08);
}

.event-masonry__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.event-masonry__item:nth-child(5n + 1) img,
.event-masonry__item:nth-child(5n + 4) img {
  aspect-ratio: 4 / 5;
}

.event-masonry__item:nth-child(5n + 2) img {
  aspect-ratio: 1 / 1;
}

.event-masonry__item:nth-child(5n + 3) img,
.event-masonry__item:nth-child(5n + 5) img {
  aspect-ratio: 5 / 4;
}

.event-masonry__item:hover img {
  transform: scale(1.035);
}

.community-showcase-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(177, 58, 50, 0.24), transparent 24rem),
    var(--ink);
}

.community-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.community-showcase__copy {
  position: relative;
  z-index: 2;
}

.community-showcase__copy .eyebrow {
  color: var(--accent-soft);
}

.community-showcase__copy .section-title {
  max-width: 540px;
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
}

.community-showcase__copy > p:not(.eyebrow) {
  max-width: 490px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.community-gallery {
  min-width: 0;
}

.community-gallery__viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.community-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.community-gallery__viewport:focus-visible {
  outline-color: var(--accent-soft);
}

.community-gallery__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 1rem 0;
}

.community-gallery__slide {
  position: relative;
  width: clamp(320px, 42vw, 610px);
  aspect-ratio: 4 / 3;
  flex: none;
  margin: 0;
  overflow: hidden;
  background: #0f192d;
  border-radius: var(--radius-lg);
  opacity: 0.48;
  scroll-snap-align: start;
  transform: scale(0.965);
  transform-origin: center;
  transition: opacity 420ms ease, transform 420ms ease;
}

.community-gallery__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.community-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 5s ease;
}

.community-gallery__slide.is-active img {
  transform: scale(1.045);
}

.community-gallery__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  margin-top: 2.2rem;
}

.community-gallery__controls > button {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.community-gallery__controls > button:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.community-gallery__controls svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.community-gallery__dots {
  display: flex;
  gap: 0.38rem;
  align-items: center;
  padding-inline: 0.25rem;
}

.community-gallery__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.community-gallery__dot.is-active {
  width: 24px;
  background: var(--accent-bright);
}

.community-gallery__count {
  margin-left: 0.35rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 700;
}

.community-gallery__count strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 570px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero__media,
.page-hero__media::after {
  position: absolute;
  inset: 0;
}

.page-hero__media::after {
  background:
    linear-gradient(90deg, rgba(18, 30, 52, 0.94), rgba(18, 30, 52, 0.55) 55%, rgba(18, 30, 52, 0.25)),
    linear-gradient(0deg, rgba(18, 30, 52, 0.52), transparent 50%);
  content: "";
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__body {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 900px;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 8rem 5.5rem;
}

.page-title {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 6rem);
  text-wrap: balance;
}

.page-hero__body > p:last-child {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
}

.prose {
  max-width: 760px;
  color: var(--ink-soft);
}

.prose p:first-child {
  margin-top: 0;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose + .button {
  margin-top: 2rem;
}

.prose > .hero-actions {
  margin-top: 1rem;
}

p + .button {
  margin-top: 1rem;
}

.prose strong {
  color: var(--ink);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.content-split--reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.sla-intro .content-split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 5vw, 4.5rem);
}

.sla-intro .section-title {
  max-width: 13ch;
  font-size: clamp(2.5rem, 3.7vw, 3.7rem);
  hyphens: none;
}

.content-photo {
  position: relative;
}

.content-photo img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.content-photo::before {
  position: absolute;
  z-index: -1;
  top: 1.2rem;
  right: -1.2rem;
  bottom: -1.2rem;
  left: 1.2rem;
  border: 2px solid var(--yellow-deep);
  border-radius: var(--radius-lg);
  content: "";
}

.fact-note {
  position: absolute;
  right: -1.5rem;
  bottom: 2rem;
  max-width: 230px;
  padding: 1.3rem;
  color: var(--white);
  background: var(--yellow);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.25;
  transform: rotate(2deg);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.timeline::before {
  position: absolute;
  top: 20px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  padding-top: 3.6rem;
}

.timeline-item::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border: 6px solid var(--coral);
  border-radius: 50%;
  content: "";
}

.timeline-item strong {
  display: block;
  color: var(--coral-dark);
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 1;
}

.timeline-item h3 {
  margin: 0.7rem 0 0.4rem;
  font-size: 1rem;
}

.timeline-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.info-card {
  padding: clamp(1.7rem, 3vw, 2.6rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card__index {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 2.5rem;
  place-items: center;
  color: var(--white);
  background: var(--coral);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.2rem;
}

.info-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--display);
  font-size: 1.75rem;
  line-height: 1.1;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
}

.quote-panel {
  position: relative;
  padding: clamp(3rem, 7vw, 7rem);
  overflow: hidden;
  color: var(--white);
  background: var(--coral-dark);
  border-radius: var(--radius-lg);
}

.quote-panel::after {
  position: absolute;
  right: -3rem;
  bottom: -9rem;
  color: rgba(255, 255, 255, 0.1);
  content: "“";
  font-family: var(--display);
  font-size: 28rem;
  line-height: 1;
}

.quote-panel blockquote {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.quote-panel--compact {
  padding: clamp(2.8rem, 6vw, 5.5rem);
}

.quote-panel--compact blockquote {
  max-width: 820px;
  font-size: clamp(1.9rem, 3.6vw, 3.6rem);
  line-height: 1.08;
}

.quote-panel cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 1.8rem;
  color: rgba(255, 255, 255, 0.74);
  font-style: normal;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.board-member {
  position: relative;
  min-height: 230px;
  padding: 1.8rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.board-member::after {
  position: absolute;
  right: -1.5rem;
  bottom: -2.8rem;
  width: 110px;
  height: 110px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  opacity: 0.75;
}

.board-member span {
  display: block;
  margin-bottom: 4.6rem;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.board-member h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.05;
}

.statute-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  padding: clamp(2.5rem, 6vw, 6rem);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
}

.statute-panel__visual {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: var(--yellow);
  border-radius: var(--radius);
  transform: rotate(-2deg);
}

.statute-panel__visual span {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  text-align: center;
}

.statute-panel__visual::after {
  position: absolute;
  inset: 1.1rem;
  border: 2px dashed rgba(255, 255, 255, 0.45);
  border-radius: calc(var(--radius) - 0.4rem);
  content: "";
}

.statute-panel h2 {
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1;
}

.statute-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.statute-page-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.statute-download {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  padding: clamp(2rem, 4vw, 3.4rem);
  color: var(--white);
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.statute-download__badge {
  display: inline-flex;
  margin-bottom: 3rem;
  padding: 0.45rem 0.7rem;
  color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.statute-download h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1;
}

.statute-download p {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.statute-document {
  position: relative;
  padding: clamp(2.2rem, 6vw, 5.5rem);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 60px rgba(29, 37, 55, 0.08);
}

.statute-document::after {
  position: absolute;
  top: -3.5rem;
  right: -1.2rem;
  color: var(--accent-wash);
  content: "§";
  font-family: var(--display);
  font-size: 16rem;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.statute-document > * {
  position: relative;
  z-index: 1;
}

.statute-document h2 {
  max-width: 620px;
  margin: 0 0 2.4rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.statute-document__copy {
  margin: 0;
}

.statute-document__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.85;
}

.statute-document__copy p + p {
  margin-top: 1.25rem;
}

.statute-document__copy p:first-child {
  color: var(--ink);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}

.filter-button {
  padding: 0.65rem 1rem;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.event-card[hidden] {
  display: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.4rem;
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-item__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 800;
}

.contact-item small {
  display: block;
  color: var(--ink-soft);
}

.contact-item a,
.contact-item address {
  font-style: normal;
  font-weight: 700;
}

.contact-form {
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-title {
  max-width: 11ch;
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
}

.contact-form h2 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}

.contact-form > p {
  margin: 0 0 2rem;
  color: var(--ink-soft);
}

.contact-form .button.is-sent {
  background: #2f6e52;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

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

.field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid transparent;
  border-radius: 0.7rem;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(24, 36, 59, 0.1);
}

.checkbox-field {
  display: flex;
  grid-column: 1 / -1;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 0.12rem;
  accent-color: var(--ink);
}

.checkbox-field a {
  color: var(--accent-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.legal-hero {
  padding-block: clamp(5rem, 10vw, 9rem);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(226, 101, 88, 0.24), transparent 24rem),
    var(--ink);
}

.legal-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.legal-hero .eyebrow {
  color: var(--accent-soft);
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.legal-hero h1 em {
  color: var(--accent-bright);
  font-style: normal;
}

.legal-hero__intro p {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.legal-hero__intro small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-section {
  background: var(--white);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 800px);
  gap: clamp(3rem, 8vw, 8rem);
  justify-content: center;
  align-items: start;
}

.legal-index {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-index .eyebrow {
  margin-bottom: 1rem;
}

.legal-index a {
  padding-block: 0.68rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 180ms ease, padding-left 180ms ease;
}

.legal-index a:hover {
  padding-left: 0.25rem;
  color: var(--accent-deep);
}

.legal-document {
  min-width: 0;
}

.legal-document > section {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.legal-document > section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-summary {
  padding: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  background: var(--accent-deep);
  border-radius: var(--radius-lg);
}

.legal-summary--clear {
  color: var(--ink);
  background: var(--accent-wash);
}

.legal-summary strong {
  display: block;
  margin-bottom: 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.legal-summary p {
  margin: 0;
  opacity: 0.82;
}

.legal-kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.legal-document h2 {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4.2vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.legal-document h3 {
  margin: 2rem 0 0.55rem;
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 1.15;
}

.legal-document p,
.legal-document li {
  color: var(--ink-soft);
}

.legal-document p {
  margin: 0 0 1.2rem;
}

.legal-document .legal-summary p {
  color: inherit;
}

.legal-document ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding-left: 1.2rem;
}

.legal-document a:not(.button) {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.legal-document code {
  padding: 0.12rem 0.35rem;
  color: var(--ink);
  background: var(--paper-deep);
  border-radius: 0.3rem;
}

.legal-contacts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 0;
}

.legal-contacts div {
  padding: 1.2rem;
  background: var(--paper);
  border-radius: var(--radius-sm);
}

.legal-contacts dt {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-contacts dd {
  margin: 0.2rem 0 0;
}

.legal-purpose-list {
  display: grid;
  margin-bottom: 1.8rem;
  border-top: 1px solid var(--line);
}

.legal-purpose-list div {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.4rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--line);
}

.legal-purpose-list span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.legal-links a {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.65rem 0.9rem;
  background: var(--paper);
  border-radius: 999px;
  font-size: 0.76rem;
  text-decoration: none !important;
}

.cookie-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 0 0 2rem;
}

.cookie-status-grid div {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.cookie-status-grid span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.cookie-status-grid strong {
  font-family: var(--display);
  font-size: 1.15rem;
}

.cta-band {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  background: var(--yellow);
  border-radius: var(--radius-lg);
}

.cta-band h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  line-height: 1.02;
}

.site-footer {
  color: var(--white);
  background: #111a2c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 0.8fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-block: 5.5rem 4rem;
}

.footer-brand img {
  width: 190px;
  height: 80px;
  padding: 0.4rem;
  object-fit: contain;
  background: var(--white);
  border-radius: 0.8rem;
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.social-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.social-links svg {
  width: 21px;
  height: 21px;
  overflow: visible;
}

.social-link--facebook svg,
.social-link--youtube svg {
  fill: currentColor;
}

.social-link--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link--instagram .social-icon-dot {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover {
  border-color: transparent;
  transform: translateY(-4px);
}

.social-link--facebook:hover {
  background: #1877f2;
}

.social-link--instagram:hover {
  background: #c13584;
}

.social-link--youtube:hover {
  background: #ff0033;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column h2 {
  margin: 0 0 0.55rem;
  color: var(--accent-soft);
  font-family: var(--display);
  font-size: 1.2rem;
}

.footer-column a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  transition: color 200ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  padding-block: 1.4rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.site-credit,
.site-credit a {
  color: var(--white);
}

.site-credit a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 180ms ease;
}

.footer-legal a:hover,
.footer-legal a[aria-current="page"] {
  color: var(--white);
}

.toast {
  position: fixed;
  z-index: 1000;
  right: 1.5rem;
  bottom: 1.5rem;
  max-width: min(360px, calc(100vw - 3rem));
  padding: 0.9rem 1.1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.not-found {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding: 5rem 1.5rem;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--yellow-deep);
  font-family: var(--display);
  font-size: clamp(7rem, 22vw, 16rem);
  line-height: 0.8;
}

.not-found h1 {
  margin: 1.5rem 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.not-found p {
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
}

/* Hero senza foto di copertina */
.plain-hero {
  padding-block: clamp(4rem, 8vw, 7.5rem) clamp(3.4rem, 6vw, 5.5rem);
  background:
    linear-gradient(135deg, rgba(177, 58, 50, 0.12), rgba(255, 255, 255, 0) 46%),
    var(--paper-deep);
  border-bottom: 1px solid var(--line);
}

.plain-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: end;
}

.plain-hero .page-title {
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
}

.plain-hero__text {
  max-width: 460px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Hero con più immagini in dissolvenza */
.page-hero--slides .page-hero__stack {
  position: absolute;
  inset: 0;
}

.page-hero--slides .page-hero__media {
  opacity: 0;
  transition: opacity 900ms ease;
}

.page-hero--slides .page-hero__media.is-active {
  opacity: 1;
}

.page-hero__dots {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.6rem;
  padding-bottom: 2.4rem;
  margin-top: -3.2rem;
}

.page-hero__dot {
  width: 34px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.34);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 220ms ease, width 220ms ease;
}

.page-hero__dot.is-active {
  width: 54px;
  background: var(--white);
}

.page-hero__dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

/* Testo espandibile "Leggi di più" */
.read-more__panel[hidden] {
  display: none;
}

.read-more__signature {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.05rem;
}

.section-title + .prose {
  margin-top: clamp(1.5rem, 2.6vw, 2.2rem);
}

.read-more__trigger {
  display: flex;
  width: fit-content;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1.8rem;
  padding: 0;
  color: var(--accent);
  background: none;
  border: 0;
  border-bottom: 2px solid currentColor;
  cursor: pointer;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.read-more__trigger:hover {
  color: var(--accent-deep);
}

.read-more__trigger:focus-visible {
  outline: 3px solid rgba(177, 58, 50, 0.28);
  outline-offset: 4px;
}

.read-more__trigger + .button {
  margin-top: 2.2rem;
}

.disclosure__icon {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  flex: none;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms ease;
}

.is-open > .read-more__trigger .disclosure__icon,
.is-open .disclosure__trigger .disclosure__icon {
  transform: translateY(2px) rotate(225deg);
}

/* Fascia informativa compatta */
.note-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem);
  background: var(--paper-deep);
  border-radius: var(--radius-lg);
}

.note-band__title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.7vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.note-band__title em {
  color: var(--coral);
  font-style: normal;
}

.note-band > p {
  margin: 0;
  color: var(--ink-soft);
}

.note-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  grid-column: 1 / -1;
  margin-top: 0.4rem;
}

/* Card evento senza fotografia */
.event-card__media--empty {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(177, 58, 50, 0.16), transparent 62%),
    var(--paper-deep);
}

.event-card__media--empty::after {
  background: linear-gradient(0deg, rgba(24, 36, 59, 0.12), transparent 55%);
}

.event-card__placeholder {
  color: rgba(177, 58, 50, 0.42);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  letter-spacing: -0.03em;
}

/* Progetti */
.projects-list {
  display: grid;
  gap: 0.9rem;
  max-width: 940px;
  margin-inline: auto;
}

.disclosure {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.disclosure:hover,
.disclosure.is-open {
  border-color: rgba(177, 58, 50, 0.34);
  box-shadow: 0 16px 44px rgba(29, 37, 55, 0.08);
}

.disclosure__heading {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.disclosure__trigger {
  display: flex;
  width: 100%;
  gap: 1.6rem;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.3rem, 2.6vw, 1.9rem) clamp(1.3rem, 2.8vw, 2.2rem);
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--body);
  text-align: left;
}

.disclosure__trigger:focus-visible {
  outline: 3px solid rgba(177, 58, 50, 0.28);
  outline-offset: -3px;
}

.disclosure__label {
  display: grid;
  gap: 0.35rem;
  min-width: 0;
}

.disclosure__meta {
  color: var(--coral-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.disclosure__title {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.disclosure__summary {
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.disclosure__action {
  display: inline-flex;
  gap: 0.55rem;
  flex: none;
  align-items: center;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.disclosure__panel[hidden] {
  display: none;
}

.disclosure__content {
  padding: 0 clamp(1.3rem, 2.8vw, 2.2rem) clamp(1.5rem, 3vw, 2.2rem);
  border-top: 1px solid var(--line);
}

.disclosure__content .prose {
  max-width: 68ch;
  padding-top: 1.4rem;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.project-gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--paper-deep);
}

.project-gallery__item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 110px;
  }

  .header-main {
    min-height: 110px;
    grid-template-columns: 190px 1fr auto;
  }

  .brand {
    width: 190px;
  }

  .brand img {
    height: 76px;
  }

  .header-main {
    display: flex;
    justify-content: space-between;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    order: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 999px;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    display: grid;
    width: 20px;
    gap: 5px;
  }

  .menu-toggle__icon i {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 250ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .menu-toggle[aria-expanded="true"] {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.42);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem max(24px, calc((100vw - 1180px) / 2)) 3rem;
    overflow-y: auto;
    color: var(--white);
    background: var(--ink);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 280ms ease, transform 280ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav a[aria-current="page"] {
    color: var(--white);
    font-family: var(--display);
    font-size: clamp(1.6rem, 3.4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.05;
  }

  .site-nav a::after {
    background: var(--yellow);
  }

  .site-nav .mobile-nav-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.4rem;
  }

  .site-nav .mobile-nav-actions a {
    color: var(--white);
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1;
  }

  .site-nav .mobile-nav-actions a::after {
    display: none;
  }

  .site-nav .mobile-nav-phone {
    padding-block: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  }

  .site-nav .mobile-nav-donate {
    min-height: 44px;
    padding: 0.8rem 1rem;
    background: var(--accent);
  }
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .plain-hero__inner,
  .note-band {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .plain-hero__text {
    max-width: none;
  }

  .note-band__actions {
    margin-top: 0;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    padding-inline: max(24px, calc((100vw - 760px) / 2));
  }

  .site-nav a,
  .site-nav a[aria-current="page"] {
    font-size: clamp(1.75rem, 5.6vw, 2.7rem);
  }

  .legal-hero__inner,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-hero__inner {
    gap: 2.5rem;
  }

  .legal-hero__intro {
    max-width: 620px;
  }

  .legal-index {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.5rem;
  }

  .legal-index .eyebrow {
    grid-column: 1 / -1;
  }

  .community-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .event-detail-hero__inner {
    grid-template-columns: 1fr;
  }

  .event-detail-poster {
    width: min(100%, 330px);
    justify-self: start;
  }

  .community-showcase__copy > p:not(.eyebrow) {
    max-width: 620px;
  }

  .intro-grid,
  .content-split,
  .content-split--reverse,
  .sla-intro .content-split,
  .contact-layout,
  .statute-panel,
  .statute-page-layout {
    grid-template-columns: 1fr;
  }

  .statute-download {
    position: static;
  }

  .intro-grid__aside {
    position: static;
  }

  .mission-grid,
  .events-grid,
  .board-grid,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .event-masonry {
    column-count: 2;
  }

  .mission-card:last-child,
  .info-card:last-child {
    grid-column: 1 / -1;
  }

  .mission-card__icon {
    margin-bottom: 3.5rem;
  }

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

  .feature-split__media {
    min-height: 500px;
  }

  .feature-split__body {
    max-width: none;
  }

  .tshirt-support {
    grid-template-columns: 1fr;
  }

  .tshirt-support__copy {
    max-width: 640px;
  }

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

  .timeline::before {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-contact {
    grid-column: 2 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100vw - 28px);
    --header-height: 94px;
  }

  .plain-hero {
    text-align: center;
  }

  .plain-hero .eyebrow {
    justify-content: center;
  }

  .note-band {
    text-align: center;
  }

  .note-band .eyebrow {
    justify-content: center;
  }

  .note-band__actions {
    justify-content: center;
  }

  .disclosure__trigger {
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .disclosure__action {
    align-self: flex-start;
  }

  .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery__item:first-child {
    grid-column: 1 / -1;
  }

  .project-gallery__item:first-child img {
    aspect-ratio: 4 / 3;
  }

  .header-main {
    min-height: 94px;
  }

  .brand,
  .brand img {
    width: 164px;
  }

  .brand img {
    height: 68px;
  }

  .hero-slider,
  .hero-slide__body {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-slide__body {
    padding-block: 5rem 7.5rem;
    padding-inline: 1.15rem;
  }

  .hero-slide--portrait {
    --hero-media-scale: 1.54;
    --hero-media-active-scale: 1.5;
  }

  .hero-slide--portrait .hero-slide__media img {
    object-position: center;
  }

  .hero-slide .display-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .hero-slide__media::after {
    background: linear-gradient(90deg, rgba(15, 25, 45, 0.9), rgba(15, 25, 45, 0.52));
  }

  .hero-slider__controls {
    right: 1rem;
    bottom: 1.4rem;
    left: 1rem;
  }

  .impact-grid,
  .support-grid,
  .mission-grid,
  .events-grid,
  .board-grid,
  .info-grid,
  .timeline,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-main {
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    display: grid;
    justify-items: center;
  }

  .footer-brand p {
    margin-inline: auto;
  }

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

  .footer-column {
    align-items: center;
  }

  .impact-item {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    padding: 2rem 1.2rem;
  }

  .impact-item strong {
    font-size: 3.2rem;
  }

  .timeline {
    justify-items: center;
    text-align: center;
  }

  .timeline-item {
    width: min(100%, 340px);
  }

  .timeline-item::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .mission-card:last-child,
  .info-card:last-child,
  .footer-contact {
    grid-column: auto;
  }

  .support-card {
    min-height: 420px;
    padding: 3.25rem 2rem 2rem;
  }

  .tshirt-support {
    grid-template-columns: 1fr;
    padding: 3rem 1.35rem 1.55rem;
  }

  .tshirt-support__copy {
    max-width: 640px;
  }

  .tshirt-support h3 {
    font-size: clamp(2.15rem, 11vw, 3.25rem);
  }

  .tshirt-support__gallery {
    gap: 0.7rem;
  }

  .tshirt-support__photo {
    border-radius: 1rem;
  }

  .tshirt-support__photo--landscape {
    transform: translateY(0.6rem);
  }

  .info-grid,
  .board-grid,
  .events-grid {
    width: 100%;
    grid-auto-rows: 1fr;
  }

  .info-card,
  .board-member,
  .event-card {
    width: 100%;
    height: 100%;
  }

  .info-card {
    text-align: center;
  }

  .info-card__index {
    margin-inline: auto;
  }

  .section-heading {
    display: block;
  }

  .section-heading--events > .button {
    margin-top: 1.15rem;
  }

  .section-heading p:last-child {
    margin-top: 1.4rem;
  }

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

  .page-title {
    font-size: clamp(2.8rem, 13vw, 4.8rem);
  }

  .legal-hero h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .legal-index,
  .legal-contacts,
  .cookie-status-grid,
  .legal-purpose-list div {
    grid-template-columns: 1fr;
  }

  .legal-purpose-list div {
    gap: 0.45rem;
  }

  .community-showcase__copy .section-title {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .community-showcase {
    gap: 1.5rem;
  }

  .community-gallery__controls {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    gap: 0;
    width: 100%;
    margin-top: 1.75rem;
  }

  .community-gallery__controls > button {
    width: 56px;
    height: 56px;
    color: var(--ink);
    background: var(--white);
    border-color: transparent;
  }

  .community-gallery__controls > button:hover {
    color: var(--ink);
    background: var(--white);
    border-color: transparent;
    transform: none;
  }

  .community-gallery__controls > [data-gallery-prev] {
    grid-column: 1;
    justify-self: start;
  }

  .community-gallery__controls > [data-gallery-next] {
    grid-column: 3;
    justify-self: end;
  }

  .community-gallery__dots,
  .community-gallery__count {
    display: none;
  }

  .community-gallery__slide {
    width: 82vw;
    aspect-ratio: 4 / 5;
  }

  .event-detail-hero {
    padding-top: 3.5rem;
  }

  .event-detail-title {
    font-size: clamp(2.35rem, 10.8vw, 3.9rem);
  }

  .event-detail-poster {
    width: 100%;
    max-width: 320px;
  }

  .event-masonry {
    column-count: 1;
  }

  .event-masonry__item {
    margin-bottom: 0.9rem;
  }


  .content-photo img {
    min-height: 380px;
  }

  .content-photo::before {
    right: -0.5rem;
    bottom: -0.5rem;
    left: 0.5rem;
  }

  .fact-note {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .quote-panel blockquote {
    font-size: clamp(2.3rem, 11vw, 4rem);
  }

  .quote-panel--compact blockquote {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

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

  .field--full,
  .checkbox-field {
    grid-column: auto;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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