:root {
  --ink: #10263d;
  --paper: #fffaf0;
  --cream: #f5ecd9;
  --coral: #f05d4e;
  --sky: #7ac9e7;
  --mustard: #f3bd3d;
  --mint: #92c9ad;
  --white: #ffffff;
  --line: rgba(16, 38, 61, 0.2);
  --shadow: 8px 8px 0 var(--ink);
  --radius: 22px;
  --sans: "Trebuchet MS", "Avenir Next", Avenir, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12px 12px, rgba(16, 38, 61, 0.06) 1.5px, transparent 1.6px) 0 0 / 24px 24px,
    var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.skip {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

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

.nav {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 92px;
  padding: 12px clamp(20px, 4vw, 72px);
  border-bottom: 3px solid var(--ink);
  background: rgba(255, 250, 240, 0.96);
}

.logo {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  width: max-content;
  text-decoration: none;
  line-height: 0.9;
  transform: rotate(-1deg);
}

.logo span {
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.logo b {
  margin-left: 6px;
  padding: 6px 8px;
  border: 2px solid var(--ink);
  background: var(--mustard);
  font-size: 1.65rem;
}

.logo small {
  grid-column: 1 / -1;
  margin-top: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.nav nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav nav a,
.about,
.menu {
  border: 2px solid transparent;
  padding: 8px 11px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.nav nav a:hover,
.nav nav a:focus-visible,
.about:hover,
.about:focus-visible {
  border-color: var(--ink);
  background: var(--sky);
}

.about {
  border-color: var(--ink);
  background: var(--coral);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu {
  display: none;
  background: var(--mustard);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr) 130px;
  min-height: 690px;
  border-bottom: 3px solid var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 8vw, 130px) clamp(24px, 6vw, 100px);
  background: var(--sky);
}

.eyebrow,
.stage-no {
  margin: 0 0 18px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.plan-hero h1,
.info-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.9rem, 8vw, 8.2rem);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.06em;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -8px;
  bottom: 4px;
  left: -8px;
  height: 22%;
  background: var(--mustard);
  content: "";
  transform: rotate(-1deg);
}

.lede {
  max-width: 760px;
  margin: 34px 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  line-height: 1.35;
}

.go {
  display: inline-block;
  width: max-content;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  background: var(--mustard);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.go:hover,
.go:focus-visible {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(3px, 3px);
}

.hero figure,
.plan-hero figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-left: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  background: var(--cream);
}

.hero figure img,
.plan-hero figure img {
  height: 100%;
  object-fit: cover;
}

figcaption {
  font-size: 0.7rem;
}

.hero figure figcaption,
.plan-hero figure figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 9px 12px;
  background: rgba(255, 250, 240, 0.92);
  font-weight: 700;
}

.hero aside {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 18px;
  background: var(--coral);
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.hero aside b {
  color: var(--mustard);
  font-family: var(--serif);
  font-size: 3rem;
}

.hero aside span {
  margin-bottom: 20px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ribbon {
  display: flex;
  overflow: hidden;
  justify-content: space-around;
  gap: 32px;
  padding: 14px 20px;
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  white-space: nowrap;
}

.ribbon span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.ribbon span::before {
  margin-right: 32px;
  color: var(--mustard);
  content: "✦";
}

.intro {
  display: grid;
  grid-template-columns: 0.5fr 1.3fr 0.8fr;
  gap: 40px;
  align-items: start;
  padding: clamp(70px, 10vw, 150px) clamp(24px, 7vw, 120px);
}

.intro h2,
.decisions h2,
.postcards h2,
.games h2,
.closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.intro > p:last-child {
  margin: 0;
  padding: 24px;
  border: 2px dashed var(--ink);
  background: var(--mustard);
  font-weight: 700;
  transform: rotate(1deg);
}

.plans {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 26px;
  padding: 0 clamp(20px, 5vw, 90px) clamp(80px, 10vw, 150px);
}

.plan-card {
  grid-column: span 4;
  padding: 16px 16px 25px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.plan-card:nth-child(2),
.plan-card:nth-child(5) {
  transform: translateY(28px) rotate(0.5deg);
}

.plan-card > a:first-child {
  display: block;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 12px;
}

.plan-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 400ms ease;
}

.plan-card:hover img {
  transform: scale(1.035);
}

.plan-card .meta {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card .meta b {
  padding: 3px 8px;
  background: var(--coral);
  color: var(--white);
}

.plan-card h2 {
  margin: 15px 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
}

.plan-card h2 a,
.plan-card .go {
  text-decoration: none;
}

.plan-card .age {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card p:not(.age) {
  font-size: 0.92rem;
}

.plan-card .go {
  margin-top: 8px;
  padding: 8px 11px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.68rem;
}

.decisions {
  padding: clamp(75px, 10vw, 150px) clamp(20px, 6vw, 100px);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--mustard);
}

.decisions > header,
.postcards > header,
.games > header {
  display: grid;
  grid-template-columns: 0.6fr 2fr;
  gap: 30px;
  align-items: start;
  margin-bottom: 60px;
}

.decisions > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.decisions article {
  position: relative;
  min-height: 250px;
  padding: 22px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.44);
}

.decisions article:nth-child(8n + 2),
.decisions article:nth-child(8n + 5) {
  background: var(--sky);
}

.decisions article:nth-child(8n + 3),
.decisions article:nth-child(8n + 8) {
  background: var(--coral);
  color: var(--white);
}

.decisions article span {
  font-family: var(--serif);
  font-size: 2rem;
}

.decisions article h3 {
  margin: 30px 0 8px;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.15;
}

.decisions article p {
  font-size: 0.76rem;
  line-height: 1.45;
}

.decisions article > b {
  position: absolute;
  bottom: 14px;
  left: 22px;
  font-size: 0.57rem;
  letter-spacing: 0.1em;
}

.postcards {
  padding: clamp(75px, 10vw, 150px) clamp(20px, 6vw, 100px);
}

.postcards > figure {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  margin: 0 0 36px;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.postcards > figure:nth-of-type(even) {
  grid-template-columns: 0.6fr 1.4fr;
}

.postcards > figure:nth-of-type(even) img {
  grid-column: 2;
}

.postcards > figure:nth-of-type(even) figcaption {
  grid-column: 1;
  grid-row: 1;
}

.postcards figure img {
  height: 390px;
  object-fit: cover;
}

.postcards figure figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px;
  border-left: 3px solid var(--ink);
}

.postcards figure:nth-of-type(even) figcaption {
  border-right: 3px solid var(--ink);
  border-left: 0;
}

.postcards figcaption > b {
  width: max-content;
  padding: 5px 9px;
  background: var(--mint);
  font-size: 0.7rem;
}

.postcards figcaption h3 {
  margin: 18px 0 4px;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
}

.postcards figcaption a {
  margin-top: 20px;
  font-weight: 900;
}

.games {
  padding: clamp(75px, 10vw, 150px) clamp(20px, 6vw, 100px);
  border-top: 3px solid var(--ink);
  background: var(--sky);
}

.games > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.games article {
  min-height: 220px;
  padding: 25px;
  border: 3px solid var(--ink);
  border-radius: 50% 50% 16px 16px / 25% 25% 16px 16px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
}

.games article:nth-child(3n + 2) {
  background: var(--mustard);
  transform: rotate(1deg);
}

.games article:nth-child(3n + 3) {
  background: var(--mint);
  transform: rotate(-1deg);
}

.games article span {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.games article h3 {
  margin: 20px 0 8px;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1.05;
}

.games article p {
  font-size: 0.82rem;
}

.closing {
  padding: clamp(90px, 12vw, 190px) clamp(24px, 12vw, 210px);
  border-top: 3px solid var(--ink);
  background: var(--coral);
  color: var(--white);
  text-align: center;
}

.promise {
  padding: clamp(75px, 10vw, 150px) clamp(20px, 6vw, 100px);
  border-top: 3px solid var(--ink);
  background: var(--cream);
}

.promise > header {
  display: grid;
  grid-template-columns: 0.6fr 2fr;
  gap: 30px;
  margin-bottom: 55px;
}

.promise h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.promise > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.promise article {
  min-height: 260px;
  padding: 25px;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.promise article:nth-child(even) {
  background: var(--mint);
  transform: translateY(16px);
}

.promise article b {
  font-family: var(--serif);
  font-size: 2.2rem;
}

.promise article h3 {
  margin: 32px 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.08;
}

.promise article p {
  font-size: 0.84rem;
}

.closing h2 {
  max-width: 1000px;
  margin: 0 auto 50px;
}

.closing .go {
  color: var(--ink);
}

.plan-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 650px;
  border-bottom: 3px solid var(--ink);
}

.plan-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 8vw, 120px);
  background: var(--sky);
}

.plan-hero h1 {
  font-size: clamp(3.7rem, 7vw, 7.2rem);
}

.plan-hero dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 720px;
  margin: 20px 0 0;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.plan-hero dl div {
  padding: 13px 16px;
  border-right: 2px solid var(--ink);
}

.plan-hero dl div:last-child {
  border: 0;
}

.plan-hero dt {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.plan-hero dd {
  margin: 3px 0 0;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.plan-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.28fr) minmax(0, 1fr);
  max-width: 1500px;
  margin: 0 auto;
}

.plan-layout > aside {
  position: sticky;
  top: 20px;
  align-self: start;
  margin: 70px 0;
  padding: 25px;
  border: 3px solid var(--ink);
  background: var(--mustard);
  box-shadow: 6px 6px 0 var(--ink);
}

.plan-layout > aside b {
  display: block;
  margin-bottom: 14px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.plan-layout > aside a {
  display: block;
  padding: 9px 0;
  border-top: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

.plan-layout > aside a:hover {
  padding-left: 6px;
}

.copy {
  max-width: 930px;
  padding: 70px clamp(30px, 7vw, 110px) 110px;
}

.standfirst {
  margin: 0 0 80px;
  padding-bottom: 40px;
  border-bottom: 3px solid var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.38;
}

.stage {
  padding: 70px 0;
  border-bottom: 3px solid var(--ink);
  scroll-margin-top: 20px;
}

.stage h2,
.ages h2,
.family-card h2,
.source-box h2,
.info-copy h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stage-intro {
  max-width: 700px;
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.45;
}

.family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 40px 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.family-grid article {
  min-height: 180px;
  padding: 22px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--white);
}

.family-grid article:nth-child(2),
.family-grid article:nth-child(3) {
  background: var(--cream);
}

.family-grid span {
  padding: 3px 7px;
  background: var(--coral);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.family-grid h3 {
  margin: 20px 0 5px;
  font-family: var(--serif);
  font-size: 1.35rem;
}

.family-grid p {
  margin: 0;
  font-size: 0.85rem;
}

.stage > h3 {
  margin-top: 40px;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.stage ol {
  counter-reset: procedure;
  padding: 0;
  list-style: none;
}

.stage ol li {
  position: relative;
  margin: 8px 0;
  padding: 11px 15px 11px 52px;
  border: 2px solid var(--ink);
  background: var(--white);
  counter-increment: procedure;
}

.stage ol li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: grid;
  width: 38px;
  place-items: center;
  border-right: 2px solid var(--ink);
  background: var(--mustard);
  content: counter(procedure, decimal-leading-zero);
  font-weight: 900;
}

.stage blockquote {
  margin: 40px 0 0;
  padding: 25px 30px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--sky);
  box-shadow: var(--shadow);
  transform: rotate(-0.5deg);
}

.stage blockquote b {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.stage blockquote p {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.ages,
.family-card,
.source-box {
  padding: 80px 0;
  border-bottom: 3px solid var(--ink);
  scroll-margin-top: 20px;
}

.ages > div,
.family-card > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 35px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.ages article,
.family-card article {
  min-height: 190px;
  padding: 24px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.ages article:nth-child(odd),
.family-card article:nth-child(3n + 1) {
  background: var(--mustard);
}

.ages article b,
.family-card article span {
  font-family: var(--serif);
  font-size: 2rem;
}

.ages article h3,
.family-card article h3 {
  margin: 20px 0 5px;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.source-box {
  margin-top: 30px;
  padding: 45px;
  border: 3px solid var(--ink);
  background: var(--mint);
  box-shadow: var(--shadow);
}

.source-box ol {
  padding-left: 25px;
}

.related {
  padding: 90px clamp(24px, 7vw, 120px);
  border-top: 3px solid var(--ink);
  background: var(--coral);
}

.related > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.related > a,
.related > div > a {
  min-height: 230px;
  padding: 25px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--ink);
  text-decoration: none;
}

.related b,
.related span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.related h3 {
  margin: 45px 0 20px;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.1;
}

.info-hero {
  min-height: 500px;
  padding: clamp(75px, 11vw, 170px) clamp(24px, 12vw, 210px);
  border-bottom: 3px solid var(--ink);
  background: var(--sky);
}

.info-hero h1 {
  font-size: clamp(4rem, 8vw, 8rem);
}

.info-copy {
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 30px 130px;
}

.info-copy h2 {
  margin-top: 60px;
  font-size: 2.6rem;
}

footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 45px;
  padding: 80px clamp(24px, 6vw, 100px) 35px;
  border-top: 3px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

footer .logo b {
  color: var(--ink);
}

footer > div > strong {
  display: block;
  margin-bottom: 15px;
  color: var(--mustard);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer > div > a:not(.logo) {
  display: block;
  margin: 9px 0;
  font-size: 0.78rem;
  text-decoration: none;
}

footer > div > a:hover {
  color: var(--mustard);
}

footer > div > p {
  max-width: 280px;
  font-size: 0.78rem;
}

.copyright {
  grid-column: 1 / -1;
  margin-top: 35px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.68rem;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero aside {
    display: none;
  }

  .plan-card {
    grid-column: span 6;
  }

  .decisions > div {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .plan-layout {
    grid-template-columns: 1fr;
  }

  .plan-layout > aside {
    position: static;
    margin: 40px 30px 0;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

  .nav .about {
    display: none;
  }

  .menu {
    display: block;
  }

  .nav nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-wrap: wrap;
    padding: 18px;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    background: var(--paper);
  }

  .nav nav.open {
    display: flex;
  }

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

  .hero-copy {
    min-height: 570px;
  }

  .hero figure,
  .plan-hero figure {
    min-height: 420px;
    border: 0;
    border-top: 3px solid var(--ink);
  }

  .intro,
  .decisions > header,
  .postcards > header,
  .games > header,
  .promise > header {
    grid-template-columns: 1fr;
  }

  .plans {
    display: block;
  }

  .plan-card,
  .plan-card:nth-child(2),
  .plan-card:nth-child(5) {
    margin-bottom: 28px;
    transform: none;
  }

  .decisions > div,
  .games > div,
  .promise > div,
  .related > div,
  footer {
    grid-template-columns: 1fr;
  }

  .promise article:nth-child(even) {
    transform: none;
  }

  .postcards > figure,
  .postcards > figure:nth-of-type(even) {
    grid-template-columns: 1fr;
  }

  .postcards > figure:nth-of-type(even) img,
  .postcards > figure:nth-of-type(even) figcaption {
    grid-column: 1;
    grid-row: auto;
  }

  .postcards figure figcaption,
  .postcards figure:nth-of-type(even) figcaption {
    border: 0;
    border-top: 3px solid var(--ink);
  }

  .plan-hero dl,
  .family-grid,
  .ages > div,
  .family-card > div {
    grid-template-columns: 1fr;
  }

  .plan-hero dl div {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .copy {
    padding-right: 25px;
    padding-left: 25px;
  }

  .source-box {
    padding: 28px;
  }

  footer .copyright {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
