:root {
  --ink: #15132a;
  --blue: #00a8ff;
  --deep-blue: #0739a8;
  --pink: #ff2f9a;
  --yellow: #ffe34d;
  --lime: #7ef658;
  --white: #fff;
  --paper: #fff7e8;
  --shadow: 0 24px 70px rgba(10, 24, 92, 0.25);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "BIZ UDPGothic", system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 47, 154, 0.2), transparent 30%),
    radial-gradient(circle at 82% 2%, rgba(255, 227, 77, 0.3), transparent 28%),
    linear-gradient(180deg, #7dddff 0%, #f5fbff 36%, #fff7e8 72%, #fff 100%);
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 10px max(20px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(7, 57, 168, 0.16);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(7, 57, 168, 0.08);
}

.brand,
.mini-cta,
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.brand {
  gap: 8px;
  min-width: 0;
  font-size: 0.86rem;
  white-space: nowrap;
}

.scroll-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.scroll-nav::-webkit-scrollbar {
  display: none;
}

.scroll-nav a {
  flex: 0 0 auto;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--deep-blue);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.scroll-nav a:hover,
.scroll-nav a:focus-visible {
  background: rgba(0, 168, 255, 0.12);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span[aria-hidden="true"] {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.is-menu-open .menu-toggle span[aria-hidden="true"]:nth-child(2) {
  transform: translateY(5px) rotate(45deg);
}

.is-menu-open .menu-toggle span[aria-hidden="true"]:nth-child(3) {
  opacity: 0;
}

.is-menu-open .menu-toggle span[aria-hidden="true"]:nth-child(4) {
  transform: translateY(-5px) rotate(-45deg);
}

.q-badge,
.brand-logo,
.footer-logo {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.q-badge {
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  background: linear-gradient(135deg, #ec1d25, #ff6b00);
  box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.13);
}

.brand-logo,
.footer-logo {
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 4px 10px rgba(236, 29, 37, 0.2);
}

.footer-logo {
  width: 42px;
  height: 42px;
}

.mini-cta {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 5px 0 #b90d62;
}

.hero {
  position: relative;
  min-height: min(96svh, 980px);
  padding: 94px 20px 32px;
  isolation: isolate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 90px;
  background: linear-gradient(180deg, transparent, #f5fbff 76%);
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(115deg, rgba(255, 255, 255, 0.36) 0 6px, transparent 6px 42px),
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 64px 64px, 100% 56px;
  opacity: 0.65;
}

.mountain {
  position: absolute;
  bottom: 0;
  width: 54vw;
  min-width: 380px;
  aspect-ratio: 1.9 / 1;
  background: linear-gradient(145deg, #f9fbff 0 48%, #7bd5ff 49% 100%);
  clip-path: polygon(50% 5%, 100% 100%, 0 100%);
  filter: drop-shadow(0 -8px 0 rgba(255, 47, 154, 0.2));
}

.mountain-one {
  left: -16vw;
}

.mountain-two {
  right: -22vw;
  opacity: 0.8;
  transform: scale(0.8);
}

.float-q {
  position: absolute;
  color: rgba(255, 255, 255, 0.54);
  font-family: "Outfit", sans-serif;
  font-size: clamp(7rem, 20vw, 18rem);
  font-weight: 900;
  line-height: 1;
  animation: drift 12s ease-in-out infinite;
}

.q-one {
  left: -26px;
  top: 16%;
}

.q-two {
  right: -14px;
  bottom: 12%;
  animation-delay: -5s;
}

.hero-copy,
.section,
.final-inner,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: end;
  max-width: 720px;
  margin-inline: 0;
}

.kicker,
.section-kicker {
  margin: 0 0 12px;
  color: var(--deep-blue);
  font-family: "Outfit", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  position: relative;
  z-index: 5;
  margin-bottom: 12px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.7rem, 11vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    3px 3px 0 var(--deep-blue),
    6px 6px 0 var(--pink),
    9px 9px 0 var(--yellow);
}

h1 span {
  display: block;
}

.hero-title-ja {
  width: fit-content;
  max-width: min(100%, 760px);
  margin-bottom: 10px;
  padding: 8px 14px 10px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  color: var(--white);
  font-family: "BIZ UDPGothic", system-ui, sans-serif;
  font-size: clamp(1.12rem, 3.35vw, 2.25rem);
  font-weight: 700;
  line-height: 1.16;
  text-shadow: 3px 3px 0 var(--deep-blue);
  background: var(--pink);
  box-shadow: 7px 7px 0 var(--yellow), 10px 10px 0 var(--ink);
  transform: rotate(-1deg);
}

.hero-title-en {
  position: relative;
  max-width: 8.5em;
}

.copy-line {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 7.4vw, 4.4rem);
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  margin-bottom: 8px;
  color: var(--deep-blue);
  font-size: 1rem;
}

.hero-lead {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 10px;
  padding: 8px 13px 10px;
  color: var(--white);
  font-size: clamp(1.15rem, 3.7vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
  background: var(--pink);
  transform: rotate(-1deg);
}

.hero-description {
  max-width: 560px;
  margin-bottom: 12px;
  font-size: clamp(0.95rem, 2.2vw, 1.18rem);
  font-weight: 700;
  line-height: 1.5;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-meta span {
  padding: 7px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 700;
}

.cta {
  position: relative;
  min-height: 52px;
  padding: 0 24px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 10px 0 var(--ink);
  font-size: clamp(1rem, 4vw, 1.28rem);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease;
  animation: pulse-pop 2.8s ease-in-out infinite;
}

.cta:hover,
.cta:focus-visible {
  transform: translateY(4px);
  box-shadow: 0 6px 0 var(--ink);
}

.hero-collage {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(100%, 690px);
  min-height: 560px;
  margin-inline: auto;
}

.photo {
  position: relative;
  display: block;
  margin: 0;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.photo:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 0 28px 90px rgba(10, 24, 92, 0.31);
}

.photo img {
  height: 100%;
  min-height: 132px;
  object-fit: cover;
  border-radius: 5px;
  background: linear-gradient(135deg, #7dddff, #ff2f9a);
}

.photo figcaption {
  display: none;
  position: static;
  min-height: 20px;
  padding: 0 4px 2px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-collage .photo {
  position: absolute;
  min-height: 0;
}

.hero-collage .photo img {
  min-height: 0;
}

.hero-collage .hero-featured {
  left: 0;
  top: 34px;
  z-index: 2;
  width: 55%;
  height: 72%;
}

.hero-collage .hero-small-top {
  right: 3%;
  top: 0;
  z-index: 3;
  width: 41%;
  height: 33%;
}

.hero-collage .hero-wide,
.hero-collage .hero-wide-bottom {
  aspect-ratio: 16 / 9;
}

.hero-collage .hero-wide {
  right: 0;
  top: 38%;
  z-index: 4;
  width: 43%;
}

.hero-collage .hero-wide-bottom {
  left: 18%;
  bottom: 0;
  z-index: 5;
  width: 62%;
}

.hero-collage .hero-wide img,
.hero-collage .hero-wide-bottom img {
  object-position: center center;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

.hero-collage .hero-wide-bottom img {
  min-height: 0;
}

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

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

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

.tilt-pop {
  transform: rotate(2deg);
}

.section {
  padding: 72px 20px;
}

.memory-section {
  display: grid;
  gap: 24px 42px;
}

.section-copy p,
.ideas-wrap p,
.overview-panel p,
.final-inner p {
  max-width: 42em;
  font-size: 1rem;
  line-height: 1.9;
  text-wrap: pretty;
}

.section-copy,
.ideas-wrap,
.final-inner {
  text-wrap: pretty;
}

.memory-body {
  display: grid;
  gap: 14px;
}

.memory-body p {
  margin-bottom: 0;
}

.story-grid {
  display: block;
}

.story-photo {
  transform: rotate(1.5deg);
}

.story-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
  object-fit: cover;
}

.story-photo figcaption {
  font-size: 1.12rem;
}

.ideas-section {
  position: relative;
}

.ideas-wrap {
  position: relative;
  padding: 38px 0;
}

.ideas-wrap h2 {
  max-width: none;
  font-size: clamp(2.6rem, 5.2vw, 5.4rem);
  line-height: 1.08;
}

.ideas-wrap h2 .copy-line {
  white-space: nowrap;
}

.ideas-wrap p {
  max-width: 52em;
}

.ideas-wrap::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 47, 154, 0.9), rgba(0, 168, 255, 0.9)),
    repeating-linear-gradient(135deg, transparent 0 20px, rgba(255, 255, 255, 0.24) 20px 32px);
}

.ideas-wrap h2,
.ideas-wrap p,
.ideas-wrap .section-kicker {
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.idea-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.idea-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--yellow);
  font-weight: 700;
}

.route-section {
  position: relative;
  overflow: hidden;
}

.route-section::before {
  content: "";
  position: absolute;
  inset: 26px calc(50% - 50vw) 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 25%, rgba(255, 47, 154, 0.14), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(0, 168, 255, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 227, 77, 0.08));
}

.route-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(138px, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 28px 0 12px;
  list-style: none;
}

.route-map::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 50%;
  z-index: 0;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    var(--deep-blue) 0 18px,
    transparent 18px 30px
  );
  transform: translateY(-50%);
  opacity: 0.22;
}

.route-map li {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  min-height: 142px;
  padding: 16px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--pink);
  text-align: left;
  transform: rotate(-2deg);
  overflow: hidden;
}

.route-map li:nth-child(even) {
  margin-top: 34px;
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--blue);
  transform: rotate(2deg);
}

.route-map li:nth-child(3) {
  background: #f3fbff;
  box-shadow: 6px 6px 0 var(--lime);
}

.route-map li::before,
.route-map li::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #fff7e8;
  border: 3px solid var(--ink);
}

.route-map li::before {
  width: 34px;
  height: 34px;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.route-map li::after {
  width: 22px;
  height: 22px;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.route-map span {
  color: var(--deep-blue);
  font-family: "Outfit", sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
}

.route-map strong {
  display: block;
  margin-top: 0;
  padding-right: 10px;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.45;
}

.overview-section {
  padding-top: 92px;
}

.overview-panel,
.notes-panel {
  padding: 28px;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 10px 10px 0 var(--ink);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.overview-grid section {
  padding: 18px;
  border-left: 8px solid var(--pink);
  background: #f3fbff;
}

.overview-grid section:nth-child(2n) {
  border-left-color: var(--blue);
  background: #fffbe2;
}

.overview-grid ul,
.selection-list,
.notes-panel ul {
  margin: 0;
  padding-left: 1.2em;
  line-height: 1.85;
}

.selection-list li + li {
  margin-top: 6px;
}

.final-cta {
  position: relative;
  padding: 72px 20px;
  color: var(--white);
  background:
    linear-gradient(rgba(11, 15, 45, 0.24), rgba(11, 15, 45, 0.24)),
    linear-gradient(135deg, var(--deep-blue), var(--pink) 52%, #ff7a00);
  overflow: hidden;
}

.final-cta::before {
  content: "Q Q Q Q Q";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 16px;
  color: rgba(255, 255, 255, 0.13);
  font-family: "Outfit", sans-serif;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 900;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
}

.final-inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-inner .cta {
  justify-self: center;
  margin-top: 8px;
}

.final-inner .section-kicker,
.final-inner h2,
.final-inner p {
  color: var(--white);
}

.final-inner h2 {
  max-width: 14em;
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5.4vw, 5.2rem);
  line-height: 1.08;
}

.notes-section {
  padding-bottom: 42px;
}

.notes-panel {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.76);
}

.notes-panel li {
  margin-bottom: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 26px 20px 40px;
  color: var(--deep-blue);
  text-align: center;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

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

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

@keyframes pulse-pop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  50% {
    transform: translate3d(18px, -24px, 0) rotate(7deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

@media (min-width: 920px) {
  .site-header {
    padding-inline: 28px;
  }

  .hero {
    padding: 92px 28px 32px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(450px, 1.12fr);
    align-items: center;
  }

  .hero-collage {
    right: -40px;
  }

  .hero-collage .hero-featured {
    min-height: 0;
  }

  .memory-section {
    grid-template-columns: minmax(340px, 0.72fr) minmax(560px, 1.28fr);
    align-items: start;
  }

  .memory-section .section-copy {
    display: contents;
  }

  .memory-section .section-kicker,
  #memory-title {
    grid-column: 1 / -1;
  }

  #memory-title {
    max-width: none;
    margin-bottom: 4px;
    font-size: clamp(2.4rem, 3.5vw, 3.7rem);
    line-height: 1.05;
    white-space: nowrap;
  }

  .memory-body {
    align-self: start;
    padding-top: 4px;
  }

  .story-grid {
    align-self: start;
    margin-top: -12px;
    transform: translateX(34px);
  }
}

@media (min-width: 1800px) {
  .hero {
    min-height: min(82svh, 920px);
    padding-top: 84px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.02fr);
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero-collage {
    right: 0;
    width: min(100%, 620px);
    min-height: 500px;
  }

  .float-q {
    font-size: 15rem;
  }
}

@media (max-width: 919px) {
  .hero-collage {
    min-height: 560px;
  }

  .route-map {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
    gap: 12px;
    padding-top: 14px;
  }

  .route-map::before {
    left: 50%;
    right: auto;
    top: 0;
    bottom: 0;
    width: 12px;
    height: auto;
    transform: translateX(-50%);
  }

  .route-map li,
  .route-map li:nth-child(even) {
    width: min(100%, 360px);
    min-height: 104px;
    margin: 0 auto;
    transform: rotate(-1deg);
  }

  .route-map li:nth-child(even) {
    transform: rotate(1deg);
  }
}

@media (max-width: 680px) {
  .site-header {
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 8px 10px;
  }

  .brand span:last-child {
    max-width: 46vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mini-cta {
    margin-left: auto;
    min-height: 36px;
    padding-inline: 13px;
    box-shadow: 0 4px 0 #b90d62;
  }

  .menu-toggle {
    display: grid;
    margin-left: 0;
  }

  .scroll-nav {
    position: absolute;
    left: 10px;
    right: 10px;
    top: calc(100% + 8px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    min-width: 0;
    margin-left: 0;
    padding: 12px;
    border: 1px solid rgba(7, 57, 168, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(7, 57, 168, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
    overflow: visible;
  }

  .scroll-nav a {
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(0, 168, 255, 0.08);
    font-size: 0.8rem;
    text-align: center;
  }

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

  .hero {
    min-height: auto;
    padding: 118px 16px 38px;
  }

  .hero-inner {
    gap: 20px;
  }

  h1 {
    font-size: clamp(2.45rem, 15vw, 4.7rem);
  }

  .ideas-wrap h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  .ideas-wrap h2 .copy-line {
    white-space: normal;
  }

  .hero-meta span {
    width: 100%;
  }

  .hero-collage {
    width: 100%;
    min-height: 520px;
  }

  .hero-collage .hero-featured {
    left: 0;
    top: 76px;
    width: 58%;
    height: 58%;
  }

  .hero-collage .photo {
    min-height: 0;
  }

  .hero-collage .hero-small-top {
    right: 0;
    top: 0;
    width: 54%;
    height: 31%;
  }

  .hero-collage .hero-wide {
    right: 0;
    top: 36%;
    width: 52%;
  }

  .hero-collage .hero-wide-bottom {
    left: 6%;
    bottom: 0;
    width: 88%;
  }

  .photo {
    padding: 6px;
  }

  .photo img {
    min-height: 112px;
  }

  .section {
    padding: 58px 16px;
  }

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

  .overview-panel,
  .notes-panel {
    padding: 20px;
    box-shadow: 7px 7px 0 var(--ink);
  }
}

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