:root {
  --pine: #3f5b25;
  --pine-deep: #273817;
  --pine-soft: #58733a;
  --mint: #dce7c7;
  --mint-bright: #eef4e4;
  --cream: #fffaf1;
  --paper: #f4eee3;
  --ink: #26331e;
  --coral: #efa089;
  --coral-deep: #b95f49;
  --sun: #dfb45f;
  --blue: #cddfd2;
  --white: #ffffff;
  --line: rgba(39, 56, 23, 0.18);
  --line-light: rgba(255, 255, 255, 0.18);
  --radius-sm: 0.75rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.5rem;
  --shadow: 0 24px 80px rgba(39, 56, 23, 0.14);
  --header-height: 6.25rem;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

button,
summary {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  transform: translateY(-150%);
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  background: var(--white);
  color: var(--pine-deep);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 241, 0.95);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body.menu-open .site-header {
  border-color: var(--line);
  background: var(--paper);
  backdrop-filter: none;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(39, 56, 23, 0.06);
}

.header-inner {
  width: min(100% - 2.5rem, 94rem);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
  color: var(--pine-deep);
  text-decoration: none;
}

.brand-logo {
  width: 4.8rem;
  height: 4.8rem;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  display: grid;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 0.96;
}

.brand-name small {
  margin-bottom: 0.22rem;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  position: fixed;
  z-index: 1;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

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

.menu-shell {
  width: min(100% - 3rem, 88rem);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 5rem;
}

.menu-heading {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.menu-heading .eyebrow,
.menu-heading p {
  margin: 0;
}

.menu-heading > p:last-child {
  max-width: 28rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.25;
  text-align: right;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.25rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem);
}

.menu-group {
  min-width: 0;
  padding-top: 1rem;
  border-top: 2px solid var(--pine);
}

.menu-group-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
}

.menu-group-title span {
  color: var(--coral-deep);
  font-family: var(--sans);
  font-size: 1rem;
}

.menu-group ul {
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.52rem;
  list-style: none;
}

.menu-group li {
  position: relative;
  padding-left: 1rem;
}

.menu-group li::before {
  position: absolute;
  top: 0.76em;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.menu-group li a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1.4;
  text-decoration: none;
}

.menu-group a:hover,
.menu-group a:focus-visible {
  color: var(--coral-deep);
}

.header-waitlist {
  position: relative;
  z-index: 2;
  min-height: 2.9rem;
  padding: 0.66rem 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--coral);
  color: var(--pine-deep);
  box-shadow: 0 9px 24px rgba(185, 95, 73, 0.2);
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-waitlist:hover {
  transform: translateY(-2px);
  background: var(--pine);
  color: var(--white);
}

.header-waitlist span {
  font-size: 0.9rem;
}

.menu-button {
  position: relative;
  z-index: 2;
  margin-left: auto;
  padding: 0.65rem 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  background: transparent;
  color: var(--pine-deep);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 850;
}

.menu-icon {
  width: 1.65rem;
  display: grid;
  gap: 0.34rem;
}

.menu-icon i {
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] .menu-icon i:first-child {
  transform: translateY(0.17rem) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon i:last-child {
  transform: translateY(-0.17rem) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 8rem) max(1.25rem, calc((100vw - 88rem) / 2)) 9rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.98fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 7rem);
  background:
    radial-gradient(circle at 91% 6%, rgba(205, 223, 210, 0.65) 0 10rem, transparent 10.1rem),
    linear-gradient(130deg, var(--cream) 0 67%, var(--mint-bright) 67% 100%);
}

.hero::before {
  position: absolute;
  top: 20%;
  left: -5rem;
  width: 9rem;
  height: 16rem;
  border: 2px solid rgba(239, 160, 137, 0.4);
  border-radius: 50%;
  content: "";
  transform: rotate(24deg);
}

.hero-copy,
.hero-scene,
.hero-facts {
  position: relative;
  z-index: 1;
}

.hero-copy,
.hero-scene {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--mint);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.7rem, 6.7vw, 6.6rem);
  text-wrap: balance;
}

h1 em {
  color: var(--coral-deep);
  font-weight: 500;
}

h2 {
  color: var(--pine-deep);
  font-size: clamp(3rem, 5.4vw, 5.55rem);
}

h3 {
  line-height: 1.25;
}

.hero-intro {
  max-width: 39rem;
  margin: 2rem 0 0;
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.button {
  min-height: 3.3rem;
  padding: 0.83rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--pine);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(63, 91, 37, 0.2);
}

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

.text-link {
  color: var(--pine);
  font-size: 0.96rem;
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  margin-left: 0.35rem;
  color: var(--coral-deep);
}

.hero-scene {
  min-height: 33rem;
  display: grid;
  place-items: center;
}

.scene-orbit {
  position: absolute;
  border: 1.5px solid rgba(63, 91, 37, 0.32);
  border-radius: 50%;
}

.orbit-one {
  width: 27rem;
  height: 27rem;
  transform: rotate(20deg);
}

.orbit-two {
  width: 20rem;
  height: 31rem;
  border-color: rgba(239, 160, 137, 0.48);
  transform: rotate(48deg);
}

.scene-card {
  position: relative;
  width: min(90%, 22rem);
  min-height: 24rem;
  padding: 3.4rem 2.35rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 49% 51% 42% 58% / 56% 45% 55% 44%;
  background: var(--pine);
  color: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-3deg);
}

.scene-card::after {
  position: absolute;
  right: -2.2rem;
  bottom: 1.4rem;
  width: 6.7rem;
  height: 6.7rem;
  border-radius: 50%;
  background: var(--sun);
  content: "";
  z-index: -1;
}

.scene-card span {
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scene-card strong {
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  line-height: 1;
}

.scene-card p {
  margin: 1.5rem 0 0;
  color: var(--mint);
  line-height: 1.7;
}

.hero-photo-frame {
  position: relative;
  width: min(100%, 35rem);
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 1rem;
  transform: rotate(-1.25deg);
}

.hero-photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  border: 0.55rem solid var(--cream);
  border-radius: 2.2rem 4.5rem 2.8rem 5rem;
  background: var(--mint);
  object-fit: cover;
  object-position: center 42%;
  box-shadow: var(--shadow);
}

.hero-photo-frame figcaption {
  position: static;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.94);
  color: var(--pine-deep);
  text-align: center;
  transform: rotate(1.25deg);
}

.hero-photo-frame figcaption span {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-photo-frame figcaption strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.05;
}

.scene-word {
  position: absolute;
  z-index: 2;
  padding: 0.45rem 0.82rem;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  box-shadow: 0 12px 35px rgba(39, 56, 23, 0.12);
}

.scene-word-heart {
  top: 12%;
  right: 3%;
  background: var(--coral);
  color: var(--pine-deep);
  transform: rotate(7deg);
}

.scene-word-star {
  bottom: 14%;
  left: 0;
  background: var(--cream);
  color: var(--pine);
  transform: rotate(-7deg);
}

.hero-facts {
  position: absolute;
  right: max(1.25rem, calc((100vw - 88rem) / 2));
  bottom: 1.6rem;
  left: max(1.25rem, calc((100vw - 88rem) / 2));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-facts p {
  margin: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  border-right: 1px solid var(--line);
}

.hero-facts p:first-child {
  padding-left: 0;
}

.hero-facts p:last-child {
  border-right: 0;
}

.hero-facts strong {
  color: var(--pine);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.hero-facts span {
  font-size: 0.79rem;
  font-weight: 700;
}

.quick-links {
  width: min(100% - 2.5rem, 88rem);
  margin: -1px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-top: 0;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(39, 56, 23, 0.07);
}

.quick-links a {
  min-height: 5.5rem;
  padding: 1.2rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease;
}

.quick-links a:last-child {
  border-right: 0;
}

.quick-links a:hover {
  background: var(--mint-bright);
}

.quick-links span {
  color: var(--coral-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.quick-links strong {
  color: var(--pine-deep);
  font-size: 0.92rem;
}

.quick-links i {
  color: var(--pine);
  font-style: normal;
}

.section {
  padding: clamp(6rem, 10vw, 10rem) max(1.25rem, calc((100vw - 88rem) / 2));
}

.section-kicker {
  margin-bottom: clamp(2.5rem, 5vw, 4.75rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--pine);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-kicker::after {
  width: min(8rem, 15vw);
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0.32;
}

.section-kicker span {
  color: var(--coral-deep);
}

.section-kicker-light {
  color: var(--mint);
}

.section-kicker-light span {
  color: var(--sun);
}

.intro-grid,
.values-heading,
.day-heading,
.wellbeing-heading,
.community-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.82fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.intro-copy {
  max-width: 39rem;
}

.intro-copy p,
.values-heading p,
.day-heading > p,
.wellbeing-heading > p,
.community-heading > p {
  margin: 0 0 1.25rem;
}

.intro-copy .lead {
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.35;
}

.feature-strip {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip article {
  padding: 2.35rem clamp(1.4rem, 3vw, 2.7rem);
  border-right: 1px solid var(--line);
}

.feature-strip article:first-child {
  padding-left: 0;
}

.feature-strip article:last-child {
  border-right: 0;
}

.feature-number,
.partner-index {
  color: var(--coral-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.feature-strip h3 {
  margin: 1.15rem 0 0.6rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.feature-strip p {
  margin: 0;
}

.story-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.story-card {
  min-height: 20rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.story-card-accent {
  background: var(--mint-bright);
}

.card-kicker {
  margin: 0 0 1.1rem;
  color: var(--coral-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-kicker-light {
  color: var(--sun);
}

.story-card h3,
.curriculum h3,
.documents h3,
.partners h3,
.community-card h3,
.norming-band h3 {
  margin: 0 0 1rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

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

.story-photo {
  width: min(100%, 76rem);
  margin: clamp(4.5rem, 8vw, 7rem) auto 0;
  display: grid;
  grid-template-columns: minmax(15rem, 0.46fr) minmax(0, 1.35fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.story-photo figcaption {
  padding-bottom: clamp(1rem, 3vw, 3.5rem);
}

.story-photo figcaption .card-kicker {
  margin-bottom: 0.85rem;
}

.story-photo figcaption strong {
  display: block;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.story-photo figcaption span {
  max-width: 27rem;
  margin-top: 1rem;
  display: block;
}

.story-photo-media {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--mint);
  box-shadow: var(--shadow);
}

.story-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  object-position: center 48%;
  transition: transform 500ms ease;
}

.story-photo:hover img {
  transform: scale(1.025);
}

.content-drawer {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: clip;
}

.content-drawer summary {
  min-height: 7.25rem;
  padding: 1.7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--pine-deep);
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 700;
}

.content-drawer summary::-webkit-details-marker {
  display: none;
}

.content-drawer summary small {
  margin-bottom: 0.3rem;
  display: block;
  color: var(--coral-deep);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.content-drawer summary i {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  border: 1.5px solid var(--pine);
  border-radius: 50%;
}

.content-drawer summary i::before,
.content-drawer summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1.5px;
  background: var(--pine);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.content-drawer summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.content-drawer[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.drawer-content {
  padding: 0 2rem 2.25rem;
  border-top: 1px solid var(--line);
}

.drawer-content > p:first-child {
  margin-top: 1.8rem;
}

.team-showcase {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
  scroll-margin-top: 6rem;
}

.team-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
}

.team-heading h3 {
  margin: 0;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.team-heading > p {
  margin: 0;
  font-size: 1.05rem;
}

.team-grid {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
  list-style: none;
}

.team-grid li {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(39, 56, 23, 0.055);
}

.team-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  object-fit: cover;
  background: var(--mint);
}

.team-grid strong {
  padding: 0.85rem 0.65rem 0.95rem;
  display: block;
  color: var(--pine-deep);
  font-size: 0.84rem;
  text-align: center;
}

.team-grid li > span {
  margin: -0.65rem 0 0;
  padding: 0 0.65rem 0.95rem;
  display: block;
  color: rgba(38, 51, 30, 0.68);
  font-size: 0.76rem;
  line-height: 1.35;
  text-align: center;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--pine-deep);
  color: var(--white);
}

.section-dark::before {
  position: absolute;
  top: 7rem;
  right: -11rem;
  width: 30rem;
  height: 30rem;
  border: 1px solid rgba(205, 223, 210, 0.32);
  border-radius: 50%;
  content: "";
}

.values-heading,
.value-list,
.heart-note,
.pedagogy-pillars,
.curriculum,
.method-grid {
  position: relative;
  z-index: 1;
}

.values-heading h2,
.contact h2 {
  color: var(--cream);
}

.values-heading > p {
  color: var(--mint);
  font-size: 1.08rem;
}

.value-list {
  margin-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--line-light);
}

.value-list article {
  padding: 1.6rem 0;
  display: grid;
  grid-template-columns: 4.5rem minmax(10rem, 0.55fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line-light);
}

.value-list article > span {
  color: var(--sun);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.value-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.value-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.heart-note {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2.4rem, 5vw, 4.5rem);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.heart-note blockquote {
  max-width: 35ch;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.7vw, 3.45rem);
  line-height: 1.18;
}

.pedagogy-pillars {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pedagogy-pillars article {
  min-height: 24rem;
  padding: clamp(1.8rem, 3vw, 2.65rem);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
}

.pedagogy-pillars article:nth-child(2) {
  background: var(--mint);
  color: var(--pine-deep);
}

.pedagogy-pillars article:nth-child(3) {
  background: var(--coral);
  color: var(--pine-deep);
}

.pillar-label {
  margin: 0 0 auto;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pedagogy-pillars h3 {
  margin: 4rem 0 1rem;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.25rem);
}

.pedagogy-pillars p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.pedagogy-pillars article:nth-child(n + 2) p:last-child {
  color: rgba(39, 56, 23, 0.8);
}

.curriculum {
  margin-top: 1.25rem;
  padding: clamp(2.4rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
  gap: clamp(3rem, 6vw, 6rem);
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
}

.curriculum-intro > p:last-child {
  margin-bottom: 0;
}

.theme-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.theme-list li {
  padding: 0.85rem 0;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.8rem;
  border-bottom: 1px solid var(--line);
  color: var(--pine-deep);
  font-weight: 750;
}

.theme-list span {
  color: var(--coral-deep);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.method-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.method-grid article {
  min-height: 23rem;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
}

.method-symbol {
  min-width: 3.8rem;
  height: 3.8rem;
  padding: 0 0.7rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sun);
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
}

.method-grid h3 {
  margin: 1.7rem 0 0.75rem;
  font-family: var(--serif);
  font-size: 2rem;
}

.method-grid p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.72);
}

.method-grid a {
  margin-top: auto;
  color: var(--mint);
  font-size: 0.85rem;
  font-weight: 850;
  text-decoration: none;
}

.day {
  background: var(--paper);
}

.day-heading > p,
.wellbeing-heading > p,
.community-heading > p {
  padding-top: 0.5rem;
  font-size: 1.08rem;
}

.day-flow {
  margin: clamp(4rem, 8vw, 7rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.day-flow li {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: minmax(8rem, 0.35fr) minmax(0, 1fr);
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.flow-time {
  color: var(--coral-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.day-flow h3 {
  margin: 0 0 0.45rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
}

.day-flow p {
  max-width: 55rem;
  margin: 0;
}

.location {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(28rem, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  border-radius: var(--radius-lg);
  background: var(--cream);
}

.location-copy p:last-child {
  max-width: 33rem;
  margin: 1.8rem 0 0;
}

.location-map {
  position: relative;
  min-height: 40rem;
  overflow: hidden;
  border: 1px solid rgba(63, 91, 37, 0.14);
  border-radius: clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(circle at 84% 15%, rgba(239, 160, 137, 0.2) 0 4.5rem, transparent 4.6rem),
    radial-gradient(circle at 12% 84%, rgba(223, 180, 95, 0.2) 0 5.5rem, transparent 5.6rem),
    linear-gradient(145deg, #f1f5e8, #dce9e2);
  box-shadow: inset 0 0 0 0.55rem rgba(255, 250, 241, 0.34);
}

.map-line {
  position: absolute;
  border: 3px dashed rgba(63, 91, 37, 0.32);
  border-radius: 50%;
}

.line-one {
  inset: 4.8rem 4.4rem 4.6rem;
  transform: rotate(8deg);
}

.line-two {
  inset: 10.5rem 4.5rem 10rem 7rem;
  border-color: rgba(255, 255, 255, 0.72);
  transform: rotate(-15deg);
}

.map-places {
  position: absolute;
  inset: 2.5rem 1.5rem;
  z-index: 1;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 0;
  list-style: none;
}

.map-stop {
  width: min(100%, 9.2rem);
  min-width: 0;
  align-self: center;
  justify-self: center;
  text-align: center;
  line-height: 1.2;
}

.map-icon {
  width: 3.3rem;
  height: 3.3rem;
  margin: 0 auto 0.55rem;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255, 250, 241, 0.96);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--pine);
  box-shadow: 0 8px 20px rgba(39, 56, 23, 0.14);
}

.map-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-label {
  min-height: 3.8rem;
  padding: 0.48rem 0.55rem;
  display: grid;
  align-content: start;
  border: 1px solid rgba(63, 91, 37, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 250, 241, 0.86);
  box-shadow: 0 6px 18px rgba(39, 56, 23, 0.07);
}

.map-label strong,
.map-label small {
  display: block;
  hyphens: auto;
}

.map-label strong {
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: 1rem;
}

.map-label small {
  margin-top: 0.22rem;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 750;
  line-height: 1.3;
}

.stop-forest { grid-area: 1 / 1 / 2 / 5; }
.stop-library { grid-area: 1 / 5 / 2 / 9; }
.stop-station { grid-area: 1 / 9 / 2 / 13; }
.stop-water { grid-area: 2 / 1 / 3 / 5; }
.stop-house { grid-area: 2 / 5 / 3 / 9; z-index: 2; }
.stop-gjethuset { grid-area: 2 / 9 / 3 / 13; }
.stop-kosmorama { grid-area: 3 / 1 / 4 / 5; }
.stop-harbour { grid-area: 3 / 5 / 4 / 9; }
.stop-church { grid-area: 3 / 9 / 4 / 13; }

.stop-house .map-icon {
  width: 4.1rem;
  height: 4.1rem;
  background: var(--pine);
  color: var(--white);
  box-shadow: 0 0 0 0.45rem rgba(255, 250, 241, 0.72), 0 12px 28px rgba(39, 56, 23, 0.22);
}

.stop-house .map-label {
  border-color: rgba(63, 91, 37, 0.28);
  background: rgba(255, 250, 241, 0.98);
  box-shadow: 0 9px 24px rgba(39, 56, 23, 0.13);
}

.stop-forest .map-icon {
  background: #d7e5bf;
  color: #3f662f;
}

.stop-water .map-icon {
  background: #c9e3e4;
  color: #356b70;
}

.stop-library .map-icon {
  background: #f2dca4;
  color: #815f25;
}

.stop-station .map-icon {
  background: #ead7cc;
  color: #80584c;
}

.stop-gjethuset .map-icon {
  background: #efd0c4;
  color: #8a5143;
}

.stop-kosmorama .map-icon {
  background: #d9d5e8;
  color: #5f5a7b;
}

.stop-harbour .map-icon {
  background: #d2e0e9;
  color: #4f6b7c;
}

.stop-church .map-icon {
  background: #e3dfc5;
  color: #686237;
}

.year-wheel-panel {
  margin-top: clamp(2.5rem, 6vw, 5rem);
  padding: clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(18rem, 0.92fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  border: 1px solid rgba(63, 91, 37, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 8% 92%, rgba(239, 160, 137, 0.2) 0 7rem, transparent 7.1rem),
    linear-gradient(135deg, var(--mint-bright), #e4ede4);
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.year-wheel-copy h2 {
  max-width: 8ch;
  font-size: clamp(2.6rem, 4.7vw, 4.6rem);
  line-height: 0.98;
}

.year-wheel-copy-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.year-wheel-copy-grid > div {
  padding-top: 1.15rem;
  border-top: 1px solid rgba(63, 91, 37, 0.18);
}

.year-wheel-copy-grid h3 {
  margin: 0 0 0.45rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.year-wheel-copy-grid p {
  margin: 0;
  font-size: 0.95rem;
}

.year-wheel-key {
  margin-top: 1.65rem;
  display: grid;
  gap: 0.55rem;
  color: var(--pine-deep);
  font-size: 0.78rem;
  font-weight: 850;
}

.year-wheel-key span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.year-wheel-key i {
  width: 0.8rem;
  height: 0.8rem;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 250, 241, 0.92);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(63, 91, 37, 0.16);
}

.year-wheel-key-theme {
  background: var(--coral);
}

.year-wheel-key-date {
  background: var(--blue);
}

.year-wheel-preview {
  position: relative;
  width: min(100%, 30rem);
  justify-self: end;
  padding: 0.7rem;
  border: 1px solid rgba(63, 91, 37, 0.16);
  border-radius: 2rem;
  background: rgba(255, 250, 241, 0.92);
  color: var(--pine-deep);
  cursor: pointer;
  box-shadow: 0 20px 55px rgba(39, 56, 23, 0.14);
  text-align: left;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.year-wheel-preview:hover {
  box-shadow: 0 26px 68px rgba(39, 56, 23, 0.19);
  transform: translateY(-0.25rem);
}

.year-wheel-graphic {
  width: 100%;
  display: block;
  border-radius: 1.5rem;
  background: var(--cream);
  overflow: hidden;
}

.year-wheel-graphic svg {
  width: 100%;
  height: auto;
  display: block;
}

.year-wheel-open-label {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  padding: 0.8rem 0.9rem 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(63, 91, 37, 0.16);
  border-radius: 1rem;
  background: rgba(255, 250, 241, 0.95);
  box-shadow: 0 10px 30px rgba(39, 56, 23, 0.16);
  backdrop-filter: blur(12px);
}

.year-wheel-open-label > span,
.year-wheel-open-label strong,
.year-wheel-open-label small {
  display: block;
}

.year-wheel-open-label strong {
  font-family: var(--serif);
  font-size: 1.12rem;
}

.year-wheel-open-label small {
  margin-top: 0.08rem;
  font-size: 0.72rem;
  font-weight: 750;
}

.year-wheel-open-label i {
  width: 2.35rem;
  height: 2.35rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--pine);
  color: var(--white);
  font-style: normal;
}

.year-wheel-dialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
}

.year-wheel-dialog::backdrop {
  background: rgba(8, 28, 26, 0.86);
}

.year-wheel-dialog-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.year-wheel-dialog-header {
  position: relative;
  z-index: 2;
  padding: 1.2rem max(1.25rem, calc((100vw - 76rem) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 8px 28px rgba(39, 56, 23, 0.08);
  backdrop-filter: blur(16px);
}

.year-wheel-dialog-header h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.year-wheel-dialog-header .eyebrow {
  margin-bottom: 0.25rem;
}

.year-wheel-dialog-help {
  max-width: 45rem;
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
}

.year-wheel-dialog-header button {
  padding: 0.65rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  border: 1px solid var(--pine);
  border-radius: 999px;
  background: var(--pine);
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
}

.year-wheel-dialog-header button span {
  font-size: 1.2rem;
}

.year-wheel-dialog-scroll {
  min-height: 0;
  padding: 2rem;
  display: flex;
  justify-content: center;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.year-wheel-graphic-large {
  width: min(100%, 72rem);
  flex: 0 0 auto;
  align-self: flex-start;
  border: 1px solid rgba(63, 91, 37, 0.14);
  border-radius: 2rem;
  box-shadow: 0 24px 80px rgba(39, 56, 23, 0.16);
}

.year-wheel-svg .wheel-month {
  fill: var(--pine-deep);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.year-wheel-svg .wheel-event {
  fill: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 730;
}

.year-wheel-svg .wheel-theme {
  fill: var(--pine-deep);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 900;
}

.year-wheel-svg .wheel-center-label {
  fill: var(--pine);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.year-wheel-svg .wheel-center-year {
  fill: var(--pine-deep);
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 700;
}

.drawer-columns,
.volunteer-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.drawer-columns h3,
.volunteer-content h3 {
  margin: 1.8rem 0 0.8rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.gallery-section {
  overflow: hidden;
  background: var(--pine);
  color: var(--white);
}

.gallery-section .section-kicker {
  color: var(--mint);
}

.gallery-section .section-kicker span {
  color: var(--sun);
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.72fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 8rem);
}

.gallery-heading h2 {
  max-width: 11ch;
  color: var(--cream);
}

.gallery-heading .eyebrow {
  color: var(--sun);
}

.gallery-heading > p {
  margin: 0 0 0.4rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.gallery-carousel {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  min-width: 0;
}

.gallery-controls {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.gallery-controls p {
  margin: 0;
  display: grid;
  gap: 0.12rem;
}

.gallery-controls strong {
  color: var(--sun);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.gallery-controls p span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
}

.gallery-buttons {
  display: flex;
  gap: 0.65rem;
}

.gallery-buttons button {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.gallery-buttons button:hover {
  transform: translateY(-2px);
  background: var(--cream);
  color: var(--pine-deep);
}

.gallery-viewport {
  width: 100%;
  min-width: 0;
  padding: 0 0 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--sun) rgba(255, 255, 255, 0.13);
  scrollbar-width: thin;
}

.gallery-viewport::-webkit-scrollbar {
  height: 0.55rem;
}

.gallery-viewport::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.gallery-viewport::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--sun);
}

.gallery-viewport:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 0.4rem;
}

.gallery-track {
  width: max-content;
  display: flex;
  gap: 1rem;
}

.gallery-empty {
  width: min(34rem, 85vw);
  margin: 0;
  padding: 3rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  color: rgba(38, 51, 30, 0.72);
}

.gallery-item {
  position: relative;
  width: clamp(19rem, 32vw, 30rem);
  height: clamp(18rem, 31vw, 25rem);
  min-width: 0;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.15rem;
  background: var(--pine-deep);
  color: var(--white);
  cursor: zoom-in;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  text-decoration: none;
}

.gallery-item-wide {
  width: clamp(23rem, 38vw, 35rem);
}

.gallery-item-tall {
  width: clamp(16rem, 24vw, 21rem);
}

.gallery-item-large {
  width: clamp(28rem, 46vw, 42rem);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 400ms ease, filter 400ms ease;
}

.gallery-item::after {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.92);
  color: var(--pine-deep);
  content: "Se foto +";
  font-size: 0.7rem;
  font-weight: 900;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.05);
  transform: scale(1.035);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.photo-dialog {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(8, 28, 26, 0.96);
  color: var(--white);
}

.photo-dialog::backdrop {
  background: rgba(8, 28, 26, 0.84);
}

.photo-dialog-inner {
  position: relative;
  min-height: 100%;
  padding: 4.5rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 74rem) 3.5rem;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
}

.photo-dialog figure {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
}

.photo-dialog figure img {
  width: auto;
  max-width: 100%;
  max-height: 80vh;
  display: block;
  border-radius: 1rem;
  object-fit: contain;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

.photo-dialog figcaption {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  text-align: center;
}

.photo-dialog-close,
.photo-dialog-nav {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  cursor: pointer;
  font-weight: 850;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, color 180ms ease;
}

.photo-dialog-close:hover,
.photo-dialog-nav:hover {
  background: var(--cream);
  color: var(--pine-deep);
}

.photo-dialog-close {
  position: absolute;
  z-index: 1;
  top: 1rem;
  right: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
}

.photo-dialog-close span {
  margin-left: 0.35rem;
  font-size: 1.15rem;
}

.photo-dialog-nav {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.25rem;
}

.wellbeing {
  background: var(--cream);
}

.wellbeing > .section-kicker,
.wellbeing-heading {
  width: min(100%, 72rem);
  margin-right: auto;
  margin-left: auto;
}

.wellbeing-heading h2 {
  max-width: 12ch;
}

.document-showcase {
  width: min(100%, 72rem);
  margin: clamp(4rem, 8vw, 7rem) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.document-card {
  min-width: 0;
  min-height: 27rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.document-card-featured {
  background: var(--pine);
  color: var(--white);
}

.document-card-blue {
  background: var(--blue);
}

.document-card-coral {
  background: var(--coral);
}

.document-card-wide {
  min-height: 23rem;
  background: var(--sun);
}

.document-card-mint {
  background: var(--mint);
}

.document-meta {
  width: 100%;
  margin-bottom: auto;
  padding-bottom: 3rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.document-card-featured .document-meta {
  border-color: var(--line-light);
}

.document-meta span {
  color: var(--coral-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.document-card-featured .document-meta span {
  color: var(--sun);
}

.document-meta strong {
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.document-card-featured .document-meta strong {
  color: var(--mint);
}

.document-card h3 {
  max-width: 17ch;
  margin: 2rem 0 1rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  hyphens: auto;
  overflow-wrap: anywhere;
}

.document-card-featured h3 {
  color: var(--cream);
}

.document-card > p {
  max-width: 38rem;
  margin: 0 0 1.8rem;
}

.document-card-featured > p {
  color: rgba(255, 255, 255, 0.76);
}

.document-card > a {
  min-width: 0;
  width: 100%;
  margin-top: auto;
  padding-top: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--pine-deep);
  font-size: 0.9rem;
  font-weight: 850;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.document-card-featured > a {
  border-color: var(--line-light);
  color: var(--mint);
}

.document-card > a:hover {
  color: var(--coral-deep);
}

.document-card > a span {
  flex: 0 0 auto;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.document-highlight {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid rgba(39, 56, 23, 0.2);
  border-bottom: 1px solid rgba(39, 56, 23, 0.2);
}

.document-highlight strong {
  flex: 0 0 auto;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.document-highlight span {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.result-grid {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.result-card {
  min-height: 32rem;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.result-card-primary {
  background: var(--pine);
  color: var(--white);
}

.result-year,
.result-number,
.result-symbol {
  min-height: 6rem;
  display: flex;
  align-items: center;
  color: var(--coral-deep);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.result-card-primary .result-year {
  color: var(--sun);
}

.result-card-primary .card-kicker {
  color: var(--sun);
}

.result-card h3 {
  margin: 0 0 1rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
}

.result-card-primary h3 {
  color: var(--cream);
}

.result-card p:not(.card-kicker) {
  margin: 0 0 1.5rem;
}

.result-card-primary p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.76);
}

.document-link {
  margin-top: auto;
  color: var(--pine);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

.result-card-primary .document-link {
  color: var(--mint);
}

.documents {
  margin-top: 1.25rem;
  padding: clamp(2.4rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(28rem, 1.25fr);
  gap: clamp(3rem, 7vw, 7rem);
  border-radius: var(--radius-lg);
  background: var(--mint-bright);
}

.documents-copy p {
  max-width: 30rem;
  margin-bottom: 0;
}

.document-list {
  border-top: 1px solid var(--line);
}

.document-list a {
  min-height: 5rem;
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--pine-deep);
  font-weight: 800;
  text-decoration: none;
}

.document-list a:hover {
  color: var(--coral-deep);
}

.document-list span {
  display: grid;
}

.document-list small {
  margin-bottom: 0.15rem;
  color: var(--pine-soft);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.document-list i {
  flex: 0 0 auto;
  color: var(--coral-deep);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.practical {
  background: var(--paper);
}

.practical-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.practical-intro {
  max-width: 30rem;
  margin: 2rem 0 0;
}

.practical-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.practical-cards article {
  min-height: 17rem;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.practical-cards h3 {
  margin: 0 0 1rem;
  color: var(--pine-deep);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.practical-cards p {
  margin: 0 0 1.2rem;
}

.practical-cards a:not(.button) {
  color: var(--pine);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration: none;
}

.practical-cards .card-button {
  width: fit-content;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pine);
  color: var(--white);
}

.practical-cards .card-button:hover {
  background: var(--pine-deep);
  color: var(--white);
}

.hours-card {
  grid-row: span 2;
  background: var(--pine) !important;
  color: var(--white);
}

.hours-card h3 {
  color: var(--cream);
}

.hours-card dl {
  margin: 0;
}

.hours-card dl div {
  padding: 0.65rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-light);
}

.hours-card dt {
  color: var(--mint);
}

.hours-card dd {
  margin: 0;
  font-weight: 850;
}

.card-note {
  color: var(--pine-soft);
  font-size: 0.82rem;
}

.hours-card .card-note {
  margin-top: 1.4rem;
  color: rgba(255, 255, 255, 0.66);
}

.norming-band {
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2.4rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  border-radius: var(--radius-lg);
  background: var(--sun);
}

.norming-band > div:first-child {
  max-width: 42rem;
}

.norming-band .eyebrow {
  margin-bottom: 1rem;
}

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

.norming-numbers {
  display: flex;
  gap: 1rem;
}

.norming-numbers p {
  width: 10rem;
  min-height: 10rem;
  margin: 0;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--pine-deep);
  text-align: center;
}

.norming-numbers strong {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}

.norming-numbers span {
  margin-top: 0.45rem;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-soft {
  background: var(--mint-bright);
}

.community-heading h2 {
  max-width: 12ch;
}

.community-grid {
  margin-top: clamp(4rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 1.25rem;
}

.community-card {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.community-card-large {
  background: var(--pine);
  color: var(--white);
}

.community-card-large .card-kicker {
  color: var(--sun);
}

.community-card-large h3 {
  color: var(--cream);
}

.community-card-large > p:not(.card-kicker) {
  color: rgba(255, 255, 255, 0.77);
}

.check-list {
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.7rem 0 0.7rem 2rem;
  border-top: 1px solid currentColor;
  color: inherit;
}

.check-list li::before {
  position: absolute;
  top: 0.75rem;
  left: 0;
  color: var(--sun);
  content: "✓";
  font-weight: 900;
}

.community-card-large .check-list li {
  border-color: var(--line-light);
}

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

.board-composition p {
  margin: 0;
  padding: 1.4rem;
  display: grid;
  border-radius: var(--radius-md);
  background: var(--mint-bright);
}

.board-composition strong {
  color: var(--coral-deep);
  font-family: var(--serif);
  font-size: 3rem;
  line-height: 1;
}

.board-composition span {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
}

.partners {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: clip;
}

.partners > * {
  padding: clamp(1.8rem, 3.5vw, 3rem);
  border-right: 1px solid var(--line);
}

.partners > *:last-child {
  border-right: 0;
}

.partners-heading {
  background: var(--sun);
}

.partners-heading .eyebrow {
  margin-bottom: 2rem;
}

.partners-heading h3 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.partners article h3 {
  margin-top: 2.5rem;
  font-size: 1.85rem;
}

.partners article p {
  font-size: 0.91rem;
}

.partners article a {
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
}

.volunteer-drawer {
  background: var(--cream);
}

.volunteer-content .button {
  margin-top: 1rem;
}

.volunteer-content .check-list li {
  border-color: var(--line);
}

.volunteer-content .check-list li::before {
  color: var(--coral-deep);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  gap: clamp(4rem, 8vw, 9rem);
  background: var(--coral);
  color: var(--pine-deep);
}

.contact .eyebrow-light {
  color: var(--pine);
}

.contact-main > p:not(.eyebrow) {
  max-width: 42rem;
  margin: 2rem 0 0;
  font-size: 1.08rem;
}

.button-light {
  background: var(--cream);
  color: var(--pine-deep);
}

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

.button-outline {
  border-color: var(--pine-deep);
  color: var(--pine-deep);
}

.button-outline:hover {
  background: var(--pine-deep);
  color: var(--white);
}

.contact-details {
  margin: 0;
  border-top: 1px solid rgba(39, 56, 23, 0.28);
  font-style: normal;
}

.contact-details div {
  padding: 1.35rem 0;
  display: grid;
  border-bottom: 1px solid rgba(39, 56, 23, 0.28);
}

.contact-details span:first-child {
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.contact-details a {
  width: fit-content;
  text-decoration: none;
}

.contact-details div > a + a,
.contact-details strong + a,
.contact-details strong ~ a {
  margin-top: 0.35rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 850;
}

.site-footer {
  padding: 3.5rem max(1.25rem, calc((100vw - 88rem) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 2.5rem;
  background: var(--pine-deep);
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
  width: 10rem;
  height: 10rem;
  padding: 0.55rem;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: var(--cream);
  color: var(--white);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.2);
}

.footer-brand .brand-logo {
  width: 100%;
  height: 100%;
}

.site-footer > p {
  margin: 0;
  font-size: 0.84rem;
}

.site-footer > p:not(.footer-meta) {
  grid-column: 2;
}

.footer-links {
  grid-column: 2;
  display: flex;
  justify-content: flex-start;
  gap: 1.3rem;
}

.footer-links a {
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-meta {
  grid-column: 3;
  grid-row: 1 / 3;
  text-align: right;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (max-width: 1180px) {
  .header-inner {
    width: min(100% - 2rem, 88rem);
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .menu-grid {
    column-gap: 2.5rem;
  }

  .team-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .partners {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-heading {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 5.5rem;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand-logo {
    width: 4.15rem;
    height: 4.15rem;
  }

  .menu-shell {
    width: min(100% - 2.5rem, 60rem);
    padding-top: 2.75rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 3rem;
  }

  .header-waitlist {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 5.5rem;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 48rem;
  }

  .hero-scene {
    width: min(100%, 35rem);
    min-height: 31rem;
    margin: 0 auto;
  }

  .hero-facts {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-column: 1;
  }

  .hero-facts p {
    padding: 1.1rem;
    display: grid;
    gap: 0.1rem;
  }

  .hero-facts p:first-child {
    padding-left: 0;
  }

  .quick-links {
    width: 100%;
  }

  .intro-grid,
  .values-heading,
  .day-heading,
  .wellbeing-heading,
  .community-heading,
  .gallery-heading,
  .team-heading,
  .practical-grid,
  .contact,
  .curriculum,
  .documents {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .values-heading > p,
  .day-heading > p,
  .wellbeing-heading > p,
  .community-heading > p {
    max-width: 45rem;
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pedagogy-pillars,
  .method-grid,
  .result-grid,
  .document-showcase {
    grid-template-columns: 1fr;
  }

  .pedagogy-pillars article,
  .method-grid article,
  .result-card {
    min-height: auto;
  }

  .pillar-label {
    margin-bottom: 3rem;
  }

  .pedagogy-pillars h3 {
    margin-top: 0;
  }

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

  .location-map {
    min-height: 37rem;
  }

  .documents {
    gap: 2.5rem;
  }

  .practical-grid > div:first-child {
    max-width: 42rem;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .brand {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
  }

  .site-footer .footer-brand {
    width: 8.75rem;
    height: 8.75rem;
  }

  .site-footer > p:not(.footer-meta),
  .footer-links,
  .footer-meta {
    grid-column: auto;
    grid-row: auto;
  }

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

  .footer-meta {
    text-align: center;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 5.1rem;
  }

  .header-inner {
    width: calc(100% - 1.5rem);
    gap: 0.7rem;
  }

  .brand-logo {
    width: 3.85rem;
    height: 3.85rem;
  }

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

  .menu-shell {
    width: calc(100% - 2rem);
    padding: 2rem 0 4rem;
  }

  .menu-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }

  .menu-heading > p:last-child {
    max-width: 23rem;
    font-size: 1.2rem;
    text-align: left;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2.1rem;
  }

  .menu-group-title {
    font-size: 1.55rem;
  }

  .header-waitlist {
    min-height: 2.6rem;
    padding: 0.55rem 0.78rem;
    font-size: 0.75rem;
  }

  .menu-button {
    gap: 0.45rem;
  }

  .hero {
    padding-right: 1rem;
    padding-left: 1rem;
    background:
      radial-gradient(circle at 93% 9%, rgba(205, 223, 210, 0.68) 0 5rem, transparent 5.1rem),
      linear-gradient(160deg, var(--cream) 0 72%, var(--mint-bright) 72% 100%);
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 4.7rem);
  }

  h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .text-link {
    padding: 0.6rem;
    text-align: center;
  }

  .hero-scene {
    min-height: 25rem;
  }

  .orbit-one {
    width: 21rem;
    height: 21rem;
  }

  .orbit-two {
    width: 17rem;
    height: 25rem;
  }

  .hero-photo-frame {
    width: min(100%, 34rem);
    min-height: 0;
  }

  .scene-card {
    padding: 2.6rem 1.5rem;
  }

  .scene-word {
    font-size: 1rem;
  }

  .scene-word-heart {
    right: -0.2rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-facts p,
  .hero-facts p:first-child {
    padding: 0.9rem 0;
    display: flex;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-facts p:last-child {
    border-bottom: 0;
  }

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

  .quick-links a {
    min-height: 4.8rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-links a:last-child {
    border-bottom: 0;
  }

  .section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .feature-strip,
  .story-grid,
  .story-photo,
  .practical-cards,
  .drawer-columns,
  .volunteer-content,
  .partners {
    grid-template-columns: 1fr;
  }

  .feature-strip article,
  .feature-strip article:first-child {
    padding: 1.6rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-strip article:last-child {
    border-bottom: 0;
  }

  .story-card {
    min-height: auto;
    padding: 2rem 1.4rem;
  }

  .story-photo {
    gap: 1.5rem;
  }

  .story-photo figcaption {
    padding-bottom: 0;
  }

  .content-drawer summary {
    min-height: 6.5rem;
    padding: 1.35rem 1.2rem;
  }

  .drawer-content {
    padding: 0 1.2rem 1.8rem;
  }

  .year-wheel-panel {
    padding: 2rem 1.25rem 1.25rem;
    grid-template-columns: 1fr;
    gap: 2rem;
    border-radius: 2rem;
  }

  .year-wheel-copy h2 {
    max-width: 9ch;
    font-size: clamp(2.55rem, 12vw, 3.6rem);
  }

  .year-wheel-copy-grid {
    gap: 1.2rem;
  }

  .year-wheel-preview {
    width: 100%;
    justify-self: stretch;
    border-radius: 1.5rem;
  }

  .year-wheel-graphic {
    border-radius: 1.05rem;
  }

  .year-wheel-open-label {
    right: 0.95rem;
    bottom: 0.95rem;
    left: 0.95rem;
  }

  .year-wheel-dialog-header {
    padding: 1rem;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .year-wheel-dialog-header h2 {
    font-size: 2.15rem;
  }

  .year-wheel-dialog-help {
    max-width: 17rem;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .year-wheel-dialog-header button {
    padding: 0.55rem 0.7rem;
  }

  .year-wheel-dialog-scroll {
    padding: 1rem 0.75rem 2rem;
    justify-content: flex-start;
  }

  .year-wheel-graphic-large {
    width: 56rem;
    max-width: none;
    border-radius: 1.25rem;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.7rem;
  }

  .gallery-controls {
    align-items: center;
    gap: 1rem;
  }

  .gallery-buttons button {
    width: 2.9rem;
    height: 2.9rem;
  }

  .gallery-track {
    gap: 0.75rem;
  }

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item-large {
    width: min(82vw, 28rem);
    height: 21rem;
    border-radius: 0.9rem;
  }

  .gallery-item-tall {
    height: 25rem;
  }

  .gallery-item::after {
    content: "Åbn foto +";
    opacity: 1;
    transform: none;
  }

  .photo-dialog-inner {
    padding: 4.25rem 0.35rem 1.25rem;
    grid-template-columns: 2.7rem minmax(0, 1fr) 2.7rem;
    gap: 0.2rem;
  }

  .photo-dialog-nav {
    width: 2.55rem;
    height: 2.55rem;
  }

  .photo-dialog figure img {
    max-height: 76vh;
  }

  .value-list article {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.8rem;
  }

  .value-list p {
    grid-column: 2;
  }

  .heart-note,
  .curriculum,
  .documents,
  .norming-band,
  .community-card {
    padding: 2rem 1.35rem;
  }

  .curriculum {
    gap: 2rem;
  }

  .day-flow li {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .location {
    padding: 2rem 1.25rem;
  }

  .location-map {
    min-height: auto;
    padding: 1.5rem 0.65rem;
    border-radius: 2.25rem;
  }

  .line-one {
    inset: 4rem 1.2rem;
    transform: rotate(2deg);
  }

  .line-two {
    display: none;
  }

  .map-places {
    position: relative;
    inset: auto;
    min-height: 44rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(5, minmax(7.6rem, auto));
    gap: 0.9rem 0;
  }

  .map-stop {
    width: min(100%, 8.8rem);
  }

  .map-label {
    min-height: 4.25rem;
  }

  .stop-forest { grid-area: 1 / 1 / 2 / 4; }
  .stop-library { grid-area: 1 / 4 / 2 / 7; }
  .stop-water { grid-area: 2 / 1 / 3 / 4; }
  .stop-station { grid-area: 2 / 4 / 3 / 7; }
  .stop-house { grid-area: 3 / 2 / 4 / 6; width: min(100%, 10rem); }
  .stop-gjethuset { grid-area: 4 / 1 / 5 / 4; }
  .stop-kosmorama { grid-area: 4 / 4 / 5 / 7; }
  .stop-harbour { grid-area: 5 / 1 / 6 / 4; }
  .stop-church { grid-area: 5 / 4 / 6 / 7; }

  .result-card {
    min-height: auto;
    padding: 2rem 1.4rem;
  }

  .document-list a {
    align-items: flex-start;
    gap: 1rem;
  }

  .practical-cards article {
    min-height: auto;
  }

  .hours-card {
    grid-row: auto;
  }

  .norming-band {
    grid-template-columns: 1fr;
  }

  .norming-numbers {
    justify-content: center;
  }

  .norming-numbers p {
    width: 8.3rem;
    min-height: 8.3rem;
  }

  .norming-numbers strong {
    font-size: 2rem;
  }

  .board-composition {
    grid-template-columns: 1fr;
  }

  .partners > * {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .partners > *:last-child {
    border-bottom: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.7rem;
  }
}

@media (max-width: 460px) {
  .brand-name {
    font-size: 1.02rem;
  }

  .brand-name small,
  .menu-button-label,
  .header-waitlist span {
    display: none;
  }

  .gallery-controls p span {
    max-width: 9rem;
    line-height: 1.35;
  }

  .gallery-item,
  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item-large {
    width: 82vw;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
