:root {
  --green-950: #062b18;
  --green-900: #0b3b23;
  --green-800: #104f2f;
  --green-700: #166438;
  --mint-50: #effaf3;
  --ivory: #fbfaf5;
  --sand: #d2b46f;
  --sand-dark: #aa8845;
  --ink: #123120;
  --muted: #6e756c;
  --line: rgba(16, 79, 47, 0.16);
  --shadow: 0 24px 60px rgba(7, 36, 20, 0.12);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--ivory);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
  background: var(--ivory);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(50px, calc((100vw - 1440px) / 2 + 50px));
  color: #fff;
  background: linear-gradient(90deg, var(--green-900), #0e4327);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.16));
}

.brand span,
.nav-links a,
.button,
.eyebrow {
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand span {
  white-space: nowrap;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  padding: 30px 0 27px;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--sand);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links .nav-create {
  top: -5px;
  isolation: isolate;
  padding: 14px 22px;
  color: var(--green-950);
  background: #4be42f;
  border: 2px solid #ffe94d;
  border-radius: 22px 22px 22px 8px;
  box-shadow:
    0 16px 24px rgba(3, 33, 16, 0.26),
    inset 0 -4px 0 rgba(6, 43, 24, 0.12);
  transform: rotate(-1deg);
  transition: color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav-links .nav-create::after {
  display: block;
  inset: -10px -18px;
  bottom: -10px;
  height: auto;
  border: 1px solid rgba(255, 233, 77, 0.64);
  border-radius: 999px;
  background: transparent;
  clip-path: polygon(3% 44%, 22% 16%, 86% 17%, 98% 58%, 68% 92%, 12% 78%);
  transform: none;
  transition: none;
  z-index: -1;
}

.nav-links .nav-create::before {
  position: absolute;
  content: "";
  left: -15px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffe94d;
  border: 0;
  box-shadow:
    20px -10px 0 -3px #fff,
    156px 0 0 0 #baf735,
    178px 24px 0 -2px #15cbe8,
    132px 48px 0 -4px #ffe94d,
    -2px 42px 0 -3px #15cbe8;
}

.nav-links .nav-create:hover {
  color: var(--green-950);
  box-shadow:
    0 20px 30px rgba(3, 33, 16, 0.32),
    inset 0 -4px 0 rgba(6, 43, 24, 0.1);
  transform: translateY(-3px) rotate(1deg);
}

.nav-links .nav-create:hover::after {
  transform: none;
}

.menu-toggle {
  display: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
}

.hero {
  width: min(100%, 1440px);
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(0, 1.22fr);
  margin-inline: auto;
  padding-top: 74px;
  background:
    radial-gradient(circle at 2% 50%, rgba(16, 79, 47, 0.08), transparent 38%),
    linear-gradient(90deg, #fff 0%, #fff 38%, rgba(255, 255, 255, 0.72) 53%, transparent 72%),
    var(--ivory);
  overflow: hidden;
}

.hero-copy {
  min-height: 606px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 52px 74px 74px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--sand-dark);
}

.hero-copy h1,
.hero-copy h2,
.section-heading h2,
.center-heading h2,
.education-copy h2,
.community h2,
.visit h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0;
  color: var(--green-900);
}

.hero-copy h1 {
  max-width: 600px;
  font-size: clamp(54px, 5vw, 82px);
  line-height: 0.96;
}

.hero-subcopy {
  width: min(440px, 100%);
  margin: 28px 0 0;
  color: #4d5a50;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.create-callout {
  width: min(420px, 100%);
  margin-top: 34px;
  min-height: 164px;
  padding: 28px 172px 28px 28px;
  position: relative;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(210, 180, 111, 0.52);
  border-radius: 30px 30px 30px 8px;
  box-shadow: 0 22px 54px rgba(7, 36, 20, 0.14);
  transform: rotate(-1deg);
}

.create-mascot {
  --mascot-rotate: 0deg;
  position: absolute;
  right: -28px;
  bottom: -18px;
  width: 190px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(7, 36, 20, 0.16));
  animation: mascotFloat 4.8s ease-in-out infinite;
}

.create-callout h2 {
  color: var(--green-900);
  font-size: 28px;
  line-height: 1.02;
}

.create-callout p:not(.eyebrow) {
  margin: 0 0 18px;
  color: #546257;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.04;
}

.create-callout .button {
  min-height: 46px;
  padding: 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 34px;
  border: 1px solid currentColor;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--green-800);
  border-color: var(--green-800);
}

.button-primary:hover {
  background: var(--green-950);
  border-color: var(--green-950);
}

.external-arrow {
  display: inline-block;
  margin-left: 7px;
  font-size: 1.05em;
  line-height: 1;
  transform: translateY(-1px);
}

.button-ghost,
.button-outline {
  color: var(--green-800);
  background: transparent;
}

.button-ghost:hover,
.button-outline:hover {
  color: #fff;
  background: var(--green-800);
  border-color: var(--green-800);
}

.hero-media {
  position: relative;
  min-height: 606px;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 -32%;
  width: 62%;
  z-index: 1;
  background: linear-gradient(90deg, var(--ivory) 0%, rgba(251, 250, 245, 0.9) 38%, rgba(251, 250, 245, 0));
  pointer-events: none;
}

.hero-media > img {
  height: 100%;
  object-position: center center;
}

.hero-panel {
  position: absolute;
  right: 0;
  top: 155px;
  width: min(360px, 48vw);
  z-index: 3;
  padding: 20px 0;
  background: rgba(8, 58, 32, 0.9);
  color: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-panel a {
  min-height: 92px;
  display: grid;
  grid-template-columns: 46px 1fr 18px;
  align-items: center;
  gap: 18px;
  padding: 0 30px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  transition: background 180ms ease;
}

.hero-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.panel-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  border: 1px solid rgba(210, 180, 111, 0.75);
  border-radius: 999px;
}

.section-pad {
  width: min(100%, 1440px);
  margin-inline: auto;
  padding: 86px 70px;
}

.belief-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  background: #fff;
}

.belief-pair {
  display: grid;
  gap: 26px;
  align-content: start;
}

.section-heading h2 {
  font-size: clamp(44px, 4vw, 70px);
  line-height: 0.98;
  max-width: 560px;
}

.section-heading p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 26px 0 0;
}

.belief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-content: end;
}

.belief-card {
  min-height: 280px;
  padding: 34px;
  background: var(--mint-50);
  border: 1px solid var(--line);
}

.belief-card h3 {
  margin: 0;
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 35px;
  line-height: 1.04;
  letter-spacing: 0;
}

.belief-card p {
  margin: 24px 0 0;
  color: #506357;
  font-size: 15px;
  line-height: 1.65;
}

.source-card,
.source-text-card,
.content-feature,
.source-detail-card,
.membership-card {
  background: #fff;
  border: 1px solid var(--line);
}

.source-card {
  min-height: 360px;
  overflow: hidden;
}

.source-text-card {
  padding: 34px;
  background: var(--mint-50);
}

.belief-pair .source-text-card {
  padding: 0;
  background: transparent;
  border: 0;
}

.source-text-card h3,
.content-feature h3,
.source-detail-card h3,
.membership-card h3 {
  margin: 0;
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.04;
  letter-spacing: 0;
}

.belief-pair .source-text-card h3 {
  font-size: clamp(44px, 4vw, 70px);
  line-height: 0.98;
  max-width: 560px;
}

.source-text-card p,
.content-feature p,
.source-detail-card p {
  color: #506357;
  font-size: 15px;
  line-height: 1.65;
}

.belief-pair .source-text-card p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  margin: 26px 0 0;
}

.center-heading {
  text-align: center;
  margin: 0 auto 52px;
}

.center-heading h2 {
  font-size: clamp(45px, 4vw, 64px);
  line-height: 0.96;
}

.center-heading h2::after,
.education-copy h2::after,
.visit h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--sand);
}

.center-heading p {
  margin: 18px 0 0;
  color: #7d7667;
  font-size: 17px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

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

.content-feature {
  overflow: hidden;
}

.content-feature img {
  height: 320px;
}

.content-feature img.image-contain,
.source-detail-card img.image-contain {
  object-fit: contain;
  background: #f6f8f2;
}

.content-feature div {
  padding: 30px 32px 34px;
}

.content-feature p {
  margin: 18px 0 0;
}

.image-feature,
.image-tile {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  color: #fff;
  background: var(--green-900);
  isolation: isolate;
}

.image-feature::after,
.image-tile::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2, 26, 14, 0.02) 26%, rgba(6, 43, 24, 0.88) 100%);
  transition: opacity 200ms ease;
}

.image-feature img,
.image-tile img {
  transition: transform 480ms ease, filter 480ms ease;
}

.image-feature:hover img,
.image-tile:hover img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.image-feature:hover::after,
.image-tile:hover::after {
  opacity: 0.94;
}

.image-feature span,
.image-tile span {
  position: absolute;
  z-index: 2;
  left: 34px;
  right: 28px;
  bottom: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.image-feature strong,
.image-tile span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: 0;
}

.image-feature small,
.image-tile i {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.88);
}

.programs-section {
  background: #fff;
}

.tile-grid {
  display: grid;
  gap: 26px;
}

.source-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

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

.source-detail-card {
  overflow: hidden;
}

.source-detail-card img {
  height: 245px;
}

.four-source .source-detail-card img {
  height: 300px;
}

.source-detail-card img.birthday-rental-image {
  object-position: center 42%;
}

.image-backed {
  height: 245px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f6f8f2;
}

.image-backed::before {
  position: absolute;
  content: "";
  inset: -18px;
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  filter: blur(16px) saturate(1.04);
  transform: scale(1.08);
}

.image-backed::after {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
}

.image-backed img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  object-fit: contain;
}

.source-detail-card h3 {
  padding: 26px 28px 0;
  font-size: 29px;
}

.source-detail-card p {
  margin: 16px 0 0;
  padding: 0 28px 30px;
}

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

.image-tile {
  min-height: 330px;
}

.image-tile.short {
  min-height: 230px;
}

.image-tile span {
  align-items: center;
  font-size: 30px;
}

.education {
  background: linear-gradient(90deg, var(--mint-50), #f7fff9);
}

.education-image {
  height: 455px;
}

.education-copy h2 {
  font-size: clamp(44px, 4vw, 60px);
}

.education-copy h2::after,
.visit h2::after {
  margin-left: 0;
}

.education-list {
  margin-top: 42px;
}

.education-list article {
  display: grid;
  grid-template-columns: 58px 1fr 22px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(16, 79, 47, 0.2);
}

.education-list article:last-child {
  border-bottom: 1px solid rgba(16, 79, 47, 0.2);
}

.education-list article > span {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
  background: var(--green-800);
  border-radius: 50%;
}

.education-list h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 18px;
}

.education-list p {
  margin: 6px 0 0;
  color: #536157;
  font-size: 14px;
  line-height: 1.45;
}

.education-list article > i {
  color: #1b7253;
}

.community {
  width: min(100%, 1440px);
  display: grid;
  grid-template-columns: minmax(360px, 0.55fr) minmax(0, 1fr);
  margin-inline: auto;
  min-height: 520px;
  color: #fff;
  background: var(--green-900);
}

.community-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 76px 70px;
}

.community .eyebrow,
.visit .eyebrow {
  color: var(--sand);
}

.community h2 {
  color: #fff;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1;
}

.community p:not(.eyebrow) {
  max-width: 450px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
  margin: 24px 0 32px;
}

.community .button {
  align-self: flex-start;
  color: #fff;
}

.community .button:hover {
  background: #fff;
  color: var(--green-900);
  border-color: #fff;
}

.community-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
}

.community-gallery img {
  min-height: 260px;
}

.membership-card {
  max-width: 460px;
  justify-self: end;
  overflow: hidden;
}

.contact-image {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.contact-image > img:first-child {
  position: relative;
  z-index: 1;
}

.photo-mascot {
  --mascot-rotate: 0deg;
  position: absolute;
  z-index: 2;
  bottom: 9%;
  width: 112px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter:
    drop-shadow(0 16px 18px rgba(6, 43, 24, 0.22))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.45));
  animation: mascotFloat 5.4s ease-in-out infinite;
}

.photo-mascot-one {
  --mascot-rotate: -5deg;
  left: -1%;
  bottom: 8%;
  width: 114px;
}

.photo-mascot-two {
  --mascot-rotate: 4deg;
  left: 16%;
  bottom: 10%;
  width: 108px;
  animation-delay: 0.8s;
}

.photo-mascot-three {
  --mascot-rotate: -3deg;
  left: 33%;
  bottom: 8%;
  width: 104px;
  animation-delay: 1.4s;
}

.photo-mascot-four {
  --mascot-rotate: 4deg;
  left: 49%;
  bottom: 10%;
  width: 108px;
  animation-delay: 2s;
}

.photo-mascot-five {
  --mascot-rotate: -4deg;
  left: 66%;
  bottom: 8%;
  width: 110px;
  animation-delay: 2.6s;
}

.photo-mascot-six {
  --mascot-rotate: 5deg;
  left: 83%;
  bottom: 10%;
  width: 114px;
  animation-delay: 3.2s;
}

.membership-card img {
  height: 300px;
}

.membership-card h3 {
  padding: 28px 30px 32px;
  font-size: 30px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(360px, 1fr);
  align-items: stretch;
  gap: 56px;
  background: #fff;
}

.visit h2 {
  max-width: 620px;
  font-size: clamp(43px, 4vw, 62px);
  line-height: 1;
}

.visit p:not(.eyebrow) {
  max-width: 630px;
  color: #667068;
  line-height: 1.7;
  font-size: 17px;
}

.contact-options {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-option {
  padding: 24px 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-option h3 {
  margin: 0;
  color: var(--green-900);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1.04;
  letter-spacing: 0;
}

.contact-option p {
  margin: 12px 0 0;
  color: #5e6a61;
  font-size: 15px;
  line-height: 1.62;
}

.contact-create {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 210px);
  align-items: center;
  gap: 22px;
  padding: 28px;
  overflow: hidden;
  color: #fff;
  background: var(--green-900);
  border-color: var(--green-900);
  box-shadow: 0 22px 54px rgba(7, 36, 20, 0.16);
}

.contact-create .eyebrow {
  color: var(--sand);
  margin-bottom: 14px;
}

.contact-create h3 {
  color: #fff;
  font-size: 36px;
}

.contact-create p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.contact-create .button {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--green-950);
  background: #fff;
  border-color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.contact-create .button:hover {
  color: #fff;
  background: transparent;
}

.contact-create-visual {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.contact-create-visual img {
  --mascot-rotate: 0deg;
  width: min(176px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.18));
  animation: mascotFloat 5.2s ease-in-out infinite;
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(0) rotate(var(--mascot-rotate, 0deg));
  }

  50% {
    transform: translateY(-8px) rotate(calc(var(--mascot-rotate, 0deg) + 1.5deg));
  }
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
  justify-content: flex-end;
}

.site-footer {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px 70px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-950);
}

.site-footer > div {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
}

.footer-mascot {
  --mascot-rotate: 0deg;
  grid-row: 1 / 3;
  width: 74px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.2));
  animation: mascotFloat 4.8s ease-in-out infinite;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.site-footer span {
  display: block;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1100px) {
  .site-header {
    padding: 0 28px;
  }

  .nav-links {
    gap: 18px;
  }

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

  .hero-copy {
    min-height: 540px;
    padding: 92px 38px 48px;
  }

  .hero-media {
    min-height: 520px;
  }

  .hero-media::before {
    display: none;
  }

  .hero-panel {
    top: 50%;
  }

  .belief-section,
  .education,
  .community {
    grid-template-columns: 1fr;
  }

  .belief-grid,
  .feature-grid,
  .feature-grid.three,
  .source-detail-grid,
  .source-detail-grid.four-source,
  .tile-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand span {
    max-width: 130px;
    white-space: normal;
    line-height: 1.15;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    inset: 68px 0 auto 0;
    display: grid;
    gap: 0;
    padding: 18px;
    background: rgba(6, 43, 24, 0.98);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-links .nav-create {
    top: 0;
    width: max-content;
    padding: 14px 18px;
    border-bottom: 0;
  }

  .nav-links .nav-create::after {
    inset: -8px -10px;
  }

  .nav-links .nav-create::before {
    box-shadow:
      18px -9px 0 -4px #fff,
      130px 0 0 -1px #baf735,
      146px 21px 0 -4px #15cbe8,
      108px 42px 0 -6px #ffe94d,
      -2px 38px 0 -5px #15cbe8;
  }

  .nav-links a::after {
    bottom: 10px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-copy {
    min-height: auto;
    padding: 62px 22px 36px;
  }

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

  .hero-subcopy {
    font-size: 16px;
  }

  .create-callout {
    padding: 24px;
  }

  .create-mascot {
    position: static;
    width: 150px;
    margin: -8px 0 12px auto;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-media {
    min-height: 430px;
  }

  .hero-panel {
    position: relative;
    inset: auto;
    width: 100%;
    box-shadow: none;
  }

  .section-pad {
    padding: 62px 22px;
  }

  .belief-grid,
  .feature-grid,
  .feature-grid.three,
  .source-detail-grid,
  .source-detail-grid.four-source,
  .tile-grid.four {
    grid-template-columns: 1fr;
  }

  .belief-section {
    gap: 34px;
  }

  .belief-card {
    min-height: 0;
    padding: 28px;
  }

  .image-feature,
  .image-tile,
  .image-tile.short {
    min-height: 330px;
  }

  .education {
    gap: 34px;
  }

  .education-image {
    height: 330px;
  }

  .education-list article {
    grid-template-columns: 48px 1fr;
  }

  .education-list article > i {
    display: none;
  }

  .education-list article > span {
    width: 46px;
    height: 46px;
  }

  .community {
    min-height: 0;
  }

  .visit {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .community-copy {
    padding: 62px 22px;
  }

  .community-gallery {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .community-gallery img,
  .membership-card img {
    min-height: 280px;
  }

  .membership-card {
    max-width: none;
  }

  .contact-image {
    min-height: 340px;
  }

  .photo-mascot-one {
    left: -2%;
    bottom: 8%;
    width: 56px;
  }

  .photo-mascot-two {
    left: 15%;
    bottom: 10%;
    width: 52px;
  }

  .photo-mascot-three {
    left: 32%;
    bottom: 8%;
    width: 50px;
  }

  .photo-mascot-four {
    left: 49%;
    bottom: 10%;
    width: 52px;
  }

  .photo-mascot-five {
    left: 66%;
    bottom: 8%;
    width: 54px;
  }

  .photo-mascot-six {
    left: 84%;
    bottom: 10%;
    width: 56px;
  }

  .contact-create {
    grid-template-columns: 1fr;
  }

  .contact-create-visual {
    justify-items: stretch;
  }

  .contact-create-visual img {
    justify-self: center;
    width: 150px;
  }

  .visit-actions {
    justify-content: stretch;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 42px 22px;
  }
}
