:root {
  --cream: #fbf2d0;
  --cream-soft: #fff9df;
  --ink: #1d1b20;
  --muted: #5f564f;
  --blue: #4658c5;
  --blue-soft: #a9c3ff;
  --coral: #f4765b;
  --coral-soft: #ffa28f;
  --yellow: #ffdf0a;
  --gold: #ffc51d;
  --pink: #dc4b89;
  --red: #f04436;
  --green: #176b55;
  --line: rgba(29, 27, 32, 0.18);
  --shadow: 0 20px 50px rgba(29, 27, 32, 0.16);
  --max: 1120px;
  --header-offset: 104px;
  --copy-size: 1.42rem;
  --copy-line-height: 1.38;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Glacial Indifference", "Avenir Next", "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: clip;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h2 {
  margin-bottom: 24px;
  font-size: 4.25rem;
  line-height: 0.95;
  font-weight: 500;
  text-shadow: 0 8px 10px rgba(29, 27, 32, 0.18);
  overflow-wrap: anywhere;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.08;
  font-style: italic;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

strong {
  font-weight: 800;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--coral);
  border-bottom: 2px solid rgba(29, 27, 32, 0.08);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 17px 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 160px;
  text-decoration: none;
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 900;
}

.brand span,
.brand strong {
  letter-spacing: 0;
}

.brand span {
  color: var(--yellow);
  font-size: 1.42rem;
  font-weight: 950;
  text-shadow: 0 1px 0 rgba(29, 27, 32, 0.45);
}

.brand strong {
  padding: 3px 9px 4px;
  color: #fff;
  background: var(--blue);
  border-radius: 6px;
  box-shadow: 0 2px 0 rgba(29, 27, 32, 0.28);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.nav-links a {
  min-width: 170px;
  padding: 10px 18px 11px;
  color: #fff;
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  text-align: center;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nav-controls {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.language-toggle {
  position: relative;
  display: block;
  width: 23px;
  height: 38px;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.14);
  text-decoration: none;
}

.language-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 13px;
  height: 13px;
  background: var(--ink);
  border-radius: 50%;
  transition: transform 0.18s ease;
}

.language-toggle.is-de::before {
  transform: translateY(15px);
}

.language-labels {
  display: grid;
  align-content: space-between;
  min-height: 34px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 0.9;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 0;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  place-items: center;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.14);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.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-links a:hover,
.nav-links a:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: #3345ae;
  outline: 3px solid rgba(255, 223, 10, 0.58);
  outline-offset: 3px;
}

.nav-links .nav-highlight {
  color: var(--ink);
  background: var(--yellow);
}

.nav-links .nav-highlight:hover,
.nav-links .nav-highlight:focus-visible {
  background: #ffe94c;
}

@media (max-width: 1040px) {
  .nav-shell {
    width: min(var(--max), calc(100% - 24px));
    gap: 10px;
  }

  .brand {
    min-width: 136px;
  }

  .brand span {
    font-size: 1.05rem;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .nav-links {
    gap: 8px;
  }

  .nav-links a {
    min-width: auto;
    padding: 8px 10px 9px;
    font-size: 0.78rem;
  }

  .nav-controls {
    gap: 10px;
  }
}

main {
  overflow: hidden;
}

section {
  scroll-margin-top: var(--header-offset);
}

.hero {
  padding: 38px 0 70px;
  background:
    linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 58%, var(--cream) 100%);
}

.hero-image {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero-intro {
  width: min(930px, calc(100% - 48px));
  margin: 34px auto 0;
  text-align: center;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero-intro,
.profile ul,
.partner-copy p,
.partner-note,
.plan-preview-copy,
.project-intro p:not(.section-kicker),
.workbook-bridge p,
.impact-line,
.workshop-card p,
.support-copy p:not(.section-kicker),
.support-copy li,
.share-copy li,
.donation-box p,
.legal-block p,
.legal-block address {
  font-size: var(--copy-size);
  line-height: var(--copy-line-height);
}

.schedule time,
.schedule-card > strong,
.schedule-card-inline > span,
.schedule-card ul,
.schedule-note > div,
.workshop-option {
  font-size: var(--copy-size);
}

.section-kicker {
  display: inline-block;
  min-width: 108px;
  margin-bottom: 18px;
  padding: 10px 22px;
  color: #fff;
  background: var(--blue);
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1;
}

.project-kicker {
  color: var(--ink);
  background: var(--yellow);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr);
  gap: 64px;
}

.section-grid > *,
.project-intro > *,
.plan-preview-layout > *,
.partner-grid > *,
.support-layout > *,
.workbook-layout > *,
.workshop-grid > * {
  min-width: 0;
}

.section-grid-center {
  align-items: center;
}

.goals-image {
  width: min(420px, 100%);
  justify-self: center;
}

.goal-list {
  display: grid;
  gap: 17px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 2rem;
  line-height: 1.15;
}

.goal-list li {
  position: relative;
  padding-left: 36px;
}

.goal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38em;
  width: 13px;
  height: 13px;
  background: var(--ink);
  border-radius: 50%;
}

.section-heading {
  max-width: 760px;
}

.team-layout {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 700px;
  margin-top: 28px;
}

.team-image {
  width: min(620px, 64%);
}

.profile {
  position: relative;
  z-index: 2;
}

.team-card {
  position: absolute;
  z-index: 2;
  width: min(310px, 100%);
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.team-card-hanna {
  left: 0;
  top: 25%;
}

.team-card-eva {
  right: 0;
  top: 8%;
  width: min(290px, 100%);
}

.profile h3,
.partner-copy h3,
.support-copy h3,
.workshop-card h3 {
  margin-bottom: 18px;
}

.profile ul,
.support-copy ul {
  margin: 0;
  padding-left: 23px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 46px 70px;
  align-items: center;
  margin-top: 18px;
}

.partner-copy p,
.partner-note {
  text-align: center;
}

.hirwa-copy {
  max-width: 430px;
  justify-self: center;
}

.partner-copy h3 {
  max-width: 360px;
}

.team-card h3 {
  max-width: none;
}

.partner-note {
  max-width: 520px;
  margin: 0 auto;
}

.polaroid {
  margin: 0;
  padding: 15px 15px 46px;
  background: #f4f7f4;
  box-shadow: var(--shadow);
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
}

.partner-group-polaroid {
  width: min(520px, 92%);
  justify-self: center;
}

.partner-group-polaroid img {
  aspect-ratio: 1773 / 525;
  object-fit: contain;
}

.tilt-left {
  transform: rotate(-1.5deg);
}

.tilt-right {
  transform: rotate(1deg);
}

.project-section {
  padding-top: 86px;
}

.newsletter-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.newsletter-page main {
  flex: 1;
}

.newsletter-section ul,
.newsletter-section ol {
  font-size: var(--copy-size);
  line-height: var(--copy-line-height);
}

#projekt-verfolgen-teilen,
#follow-share-project {
  scroll-margin-top: calc(var(--header-offset) + 24px);
}

.project-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 72px;
  align-items: stretch;
}

.project-copy {
  display: flex;
  flex-direction: column;
}

.project-copy .section-kicker {
  width: fit-content;
  flex: 0 0 auto;
  align-self: flex-start;
  white-space: nowrap;
}

.project-intro p:not(.section-kicker) {
  margin-top: 42px;
  text-align: center;
}

.project-videos {
  align-self: center;
  justify-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  width: min(720px, 100%);
  align-items: center;
}

.project-video {
  display: block;
  width: 100%;
  max-width: 350px;
  height: auto;
  justify-self: center;
}

.schedule {
  width: min(100%, 594px);
  margin: 0 auto;
  padding-top: 60px;
}

.schedule h3 {
  margin: 0 0 31px;
  text-align: center;
  font-size: 2.45rem;
  line-height: 0.9;
  font-weight: 900;
}

.schedule ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.schedule ol > li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.schedule time {
  padding-top: 4px;
  font-variant-numeric: tabular-nums;
  text-align: left;
  line-height: 1.08;
}

.schedule-card {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 48px;
  padding: 12px 29px;
  border-radius: 34px;
}

.schedule-card > strong {
  display: block;
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
}

.schedule-card-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.schedule-card-inline > span,
.schedule-card ul {
  line-height: 1.25;
}

.schedule-card ul {
  margin: 8px 0 0;
  padding-left: 22px;
  list-style-type: disc;
}

.schedule-card li {
  padding-left: 2px;
}

.schedule-pill .schedule-card {
  min-height: 44px;
  padding-block: 7px 8px;
  border-radius: 999px;
}

.schedule-block .schedule-card {
  min-height: 99px;
}

.schedule .is-blue > .schedule-card {
  background: var(--blue-soft);
}

.schedule .is-yellow > .schedule-card {
  background: var(--gold);
}

.schedule .is-red > .schedule-card {
  color: #fff;
  background: var(--red);
}

.schedule-note {
  min-height: 21px;
}

.schedule-note time {
  padding-top: 0;
}

.schedule-note > div {
  align-self: center;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
}

.lunch-pause {
  margin-top: 1px;
}

.lunch-pause > div {
  text-transform: none;
}

.workshop-two {
  margin-top: 3px;
}

.workshop-two time {
  display: grid;
  gap: 7px;
  justify-items: center;
  padding-top: 43px;
}

.workshop-two .schedule-card {
  min-height: 154px;
  padding: 14px 28px 12px;
}

.workshop-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 9px;
  min-width: 0;
}

.workshop-option {
  display: grid;
  align-content: center;
  min-width: 0;
  min-height: 99px;
  padding: 14px 12px;
  color: #000;
  background: var(--cream);
  border-radius: 31px;
  text-align: center;
  font-weight: 800;
  line-height: 1.22;
}

.workshop-option strong,
.workshop-option span {
  display: block;
}

.workbook-bridge {
  width: 100%;
  margin: 96px auto 0;
  display: flex;
  justify-content: center;
}

.spiral-art {
  display: block;
  pointer-events: none;
  user-select: none;
}

.spiral-art-workbook {
  align-self: center;
  width: 260px;
  margin: auto auto 0;
}

.workbook-bridge p {
  width: min(880px, 100%);
  margin: 0;
  text-align: center;
}

.workbook-layout {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(0, 0.9fr);
  gap: 56px;
  align-items: center;
  margin-top: 32px;
}

.workbook-map {
  margin: 0;
}

.workbook-map img {
  width: min(470px, 100%);
  margin: 0;
}

.workbook-photos {
  position: relative;
  min-height: 470px;
}

.workbook-photos figure {
  margin: 0;
}

.workbook-cover {
  position: absolute;
  right: 0;
  top: 0;
  width: 82%;
  box-shadow: var(--shadow);
}

.workbook-cover img {
  width: 100%;
  object-fit: cover;
}

.workbook-spread {
  position: absolute;
  left: clamp(-28px, -2.2vw, -14px);
  bottom: 0;
  width: 54%;
  padding: 1px 1px 2px;
  background: #293238;
  border-width: 0px;
  border-radius: 4px;
  box-shadow:
    0 22px 38px rgba(29, 27, 32, 0.28),
    0 6px 0 rgba(29, 27, 32, 0.34);
  transform: rotate(7deg);
}

.workbook-spread::after {
  position: absolute;
  right: 5px;
  bottom: -8px;
  left: 12px;
  height: 8px;
  content: "";
  background: rgba(29, 27, 32, 0.34);
  border-radius: 50%;
  filter: blur(6px);
  transform: skewX(-12deg);
}

.impact-line {
  width: min(850px, 100%);
  margin: 72px auto 36px;
  text-align: center;
}

.workshop-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-areas:
    "art art"
    "math theater";
  gap: 30px 88px;
  align-items: start;
  padding-bottom: 42px;
}

.math-card {
  grid-area: math;
  margin-top: -28px;
}

.theater-card {
  grid-area: theater;
}

.workshop-card {
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.workshop-card h3 {
  margin-bottom: 22px;
  font-size: 1.95rem;
  text-align: center;
}

.workshop-card p {
  margin-bottom: 26px;
  text-align: center;
}

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

.legal-section h2 {
  margin-bottom: 52px;
}

.legal-block {
  padding: 42px 0 16px;
  border-top: 3px solid var(--ink);
}

.legal-block + .legal-block {
  margin-top: 34px;
}

.legal-block h3 {
  margin-bottom: 30px;
}

.legal-block h4 {
  margin: 30px 0 8px;
  font-size: 1.08rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-block p,
.legal-block address {
  margin-bottom: 16px;
}

.legal-block address {
  font-style: normal;
}

.legal-block a {
  overflow-wrap: anywhere;
}

.workshop-art {
  grid-area: art;
  position: relative;
  width: min(820px, 100%);
  min-height: 610px;
  margin: 0 auto -18px;
}

.workshop-art span {
  position: absolute;
  inset: 116px 8% 78px 23%;
  background: var(--red);
  border-radius: 52% 48% 46% 54% / 62% 39% 61% 38%;
}

.workshop-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.spiral-art-workshop {
  width: min(340px, 100%);
  margin: 34px auto 0;
}

.plan-preview-section h2 {
  margin-bottom: 36px;
  text-align: center;
}

.plan-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 56px;
  align-items: center;
}

.plan-preview-image {
  width: min(680px, 100%);
  justify-self: start;
}

.plan-preview-copy {
  width: min(470px, 100%);
  justify-self: center;
  margin: 0;
  text-align: center;
}

.support-section {
  padding-bottom: 100px;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 54px;
  align-items: start;
}

.support-copy h2 {
  margin-bottom: 58px;
  font-style: italic;
}

.support-copy {
  grid-column: 1;
  grid-row: 1;
}

.contact-block {
  margin-bottom: 52px;
}

.contact-list {
  margin-bottom: 2px;
}

.contact-block p {
  margin-bottom: 0;
}

.contact-emphasis {
  text-align: center;
  font-weight: 900;
}

.contact-emphasis a {
  text-decoration-line: underline;
}

.donation-block {
  margin-bottom: 30px;
}

.donation-block h3 {
  text-align: center;
}

.donation-box {
  padding: 16px 22px;
  background: var(--coral-soft);
  border: 3px solid var(--blue);
  text-align: center;
}

.donation-box p {
  margin: 0;
}

.support-bullets {
  display: grid;
  gap: 8px;
}

.support-bullets ul {
  margin-top: 4px;
  padding-left: 24px;
}

.support-visual {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  justify-items: end;
  gap: 58px;
  padding-top: 64px;
}

.support-visual .section-kicker {
  margin-bottom: 0;
}

.get-in-touch-image {
  width: min(420px, 100%);
}

.mobile-get-in-touch-image {
  display: none;
}

.share-block {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 62px;
  align-items: center;
  margin-top: 34px;
}

.qr-share-image {
  width: min(470px, 100%);
  justify-self: center;
}

.share-copy h3 {
  margin-bottom: 46px;
  font-size: 2.15rem;
}

.share-copy ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding-left: 36px;
}

.share-copy span,
.share-copy strong {
  display: block;
}

.share-copy a {
  font-weight: 900;
  text-decoration-line: underline;
}

.site-footer {
  padding: 30px 24px;
  color: #fff;
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
}

@media (max-width: 1040px) {
  body {
    font-size: 17px;
  }

  h2 {
    font-size: 3.4rem;
  }

  .team-layout,
  .project-intro,
  .workbook-layout {
    grid-template-columns: 1fr;
  }

  .team-layout {
    min-height: 0;
    gap: 24px;
    justify-items: center;
  }

  .team-image {
    width: min(560px, 100%);
  }

  .team-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: min(650px, 100%);
  }

  .team-card-hanna {
    justify-self: stretch;
    margin-top: 0;
  }

  .team-card-eva {
    justify-self: stretch;
    margin-top: 20px;
  }

  .profile {
    max-width: 650px;
  }

  .partner-grid {
    margin-top: 64px;
  }

  .project-intro {
    gap: 42px;
  }

  .workbook-bridge {
    width: 100%;
    margin: 78px auto 0;
  }

  .spiral-art-workbook {
    width: min(220px, 45vw);
    margin: auto auto 0;
  }

  .workbook-bridge p {
    width: min(880px, 100%);
  }

  .workbook-layout {
    gap: 36px;
  }

  .workbook-map img {
    width: min(540px, 100%);
  }

  .workbook-photos {
    min-height: 540px;
  }

  .workshop-grid {
    gap: 26px 54px;
    padding-bottom: 36px;
  }

  .workshop-art {
    min-height: 500px;
  }

  .spiral-art-workshop {
    width: min(300px, 100%);
  }
}

@media (max-width: 760px) {
  :root {
    --header-offset: 88px;
    --copy-size: 1rem;
    --copy-line-height: 1.44;
    --team-partner-gap: 36px;
  }

  body {
    font-size: 16px;
  }

  h2 {
    font-size: 2.7rem;
    line-height: 1;
  }

  h3 {
    font-size: 1.18rem;
  }

  .nav-shell {
    width: min(var(--max), calc(100% - 24px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: auto;
  }

  .nav-controls {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-shell.is-open .nav-controls {
    display: contents;
  }

  .nav-shell.is-open .language-switcher {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .nav-shell.is-open .nav-toggle {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: end;
  }

  .nav-shell.is-collapsible .nav-toggle {
    display: inline-grid;
    align-content: center;
    justify-items: center;
    gap: 5px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .nav-shell.is-collapsible .nav-links {
    display: none;
  }

  .nav-shell.is-collapsible.is-open .nav-links {
    display: grid;
  }

  .nav-links a {
    min-width: 0;
    padding: 10px 9px 11px;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-image {
    width: min(var(--max), calc(100% - 28px));
  }

  .hero-intro {
    width: min(930px, calc(100% - 32px));
  }

  .section {
    width: min(var(--max), calc(100% - 28px));
    padding: 64px 0;
  }

  .section-grid,
  .partner-grid,
  .plan-preview-layout,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .goals-image {
    width: 250px;
    margin: 0 auto;
  }

  .goal-list {
    font-size: 1.38rem;
  }

  .team-layout {
    gap: var(--team-partner-gap);
  }

  .team-card {
    padding: 0;
  }

  .team-card-hanna,
  .team-card-eva {
    justify-self: stretch;
    margin-top: 0;
    width: 100%;
  }

  .partner-grid {
    gap: 28px;
    margin-top: var(--team-partner-gap);
  }

  .hirwa-copy {
    max-width: none;
    justify-self: stretch;
  }

  .hirwa-copy p {
    text-align: left;
  }

  .plan-preview-layout {
    gap: 24px;
  }

  .plan-preview-image {
    width: min(430px, 100%);
    justify-self: center;
  }

  .plan-preview-copy {
    justify-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .project-intro {
    gap: 30px;
  }

  .schedule h3 {
    margin-bottom: 24px;
    font-size: 2.1rem;
  }

  .schedule ol {
    gap: 12px;
  }

  .schedule ol > li {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px;
  }

  .schedule time {
    padding-top: 7px;
  }

  .schedule-card {
    padding-inline: 15px;
    border-radius: 26px;
  }

  .schedule-card ul {
    padding-left: 18px;
  }

  .schedule-pill .schedule-card {
    min-height: 40px;
    padding-inline: 11px;
  }

  .schedule-block .schedule-card {
    min-height: 86px;
  }

  .workshop-two time {
    padding-top: 35px;
  }

  .workshop-two .schedule-card {
    min-height: 130px;
    padding: 12px 15px;
  }

  .workshop-options {
    gap: 10px;
    margin-top: 8px;
  }

  .workshop-option {
    min-height: 78px;
    padding: 10px 8px;
    border-radius: 22px;
  }

  .workbook-bridge {
    margin-top: 64px;
  }

  .workbook-bridge p {
    width: 100%;
  }

  .spiral-art-workbook {
    width: 170px;
    margin: 32px auto 0;
  }

  .workbook-layout {
    gap: 28px;
    margin-top: 28px;
  }

  .workbook-map img {
    width: min(430px, 100%);
  }

  .workbook-photos {
    min-height: 405px;
  }

  .workbook-cover {
    width: 92%;
  }

  .workbook-spread {
    width: 64%;
  }

  .workshop-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "art"
      "math"
      "theater";
    gap: 28px;
    padding-bottom: 32px;
  }

  .math-card {
    margin-top: 0;
  }

  .workshop-card h3 {
    font-size: 1.55rem;
  }

  .legal-section h2 {
    margin-bottom: 34px;
  }

  .legal-block {
    padding-top: 32px;
  }

  .workshop-art {
    min-height: 320px;
    margin-bottom: 0;
  }

  .workshop-art span {
    inset: 62px 6% 48px 19%;
  }

  .spiral-art-workshop {
    width: min(210px, 72%);
    margin-top: 22px;
  }

  .support-layout {
    gap: 36px;
  }

  .support-copy,
  .support-visual,
  .share-block {
    grid-column: auto;
    grid-row: auto;
  }

  .support-copy h2 {
    margin-bottom: 38px;
  }

  .donation-box {
    padding: 14px;
  }

  .support-visual {
    display: none;
  }

  .mobile-get-in-touch-image {
    display: block;
    width: min(320px, 100%);
    margin: 0 auto 28px;
  }

  .share-block {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 0;
  }

  .share-copy {
    order: 1;
  }

  .qr-share-image {
    order: 2;
    width: min(300px, 100%);
  }

  .share-copy h3 {
    margin-bottom: 24px;
    font-size: 1.55rem;
  }
}

@media (max-width: 460px) {
  :root {
    --header-offset: 88px;
  }

  h2 {
    font-size: 2.18rem;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .project-videos {
    grid-template-columns: 1fr;
    width: min(350px, 100%);
  }

  .workshop-options {
    grid-template-columns: 1fr;
  }

  .workbook-photos {
    min-height: 330px;
  }
}
