:root {
  --cream: #fffdf5;
  --ink: #000000;
  --red: #ff7a8a;
  --yellow: #ffe16a;
  --violet: #cdbbff;
  --mint: #9ff3d0;
  --white: #ffffff;
  --shadow-sm: 4px 4px 0 0 var(--ink);
  --shadow-md: 8px 8px 0 0 var(--ink);
  --shadow-lg: 12px 12px 0 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(#000 1.2px, transparent 1.2px) 0 0 / 28px 28px,
    linear-gradient(to right, rgba(0, 0, 0, 0.08) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08) 1px, transparent 1px) 0 0 / 56px 56px,
    var(--cream);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--ink);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  border: 4px solid var(--ink);
  background: var(--yellow);
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  font-weight: 900;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 4px solid var(--ink);
  background: var(--cream);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 4px solid var(--ink);
  background: var(--red);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--yellow);
  line-height: 1;
}

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

.nav-link,
.menu-button {
  border: 3px solid transparent;
  background: transparent;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 120ms linear, box-shadow 120ms linear, background 120ms linear, border-color 120ms linear;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"] {
  border-color: var(--ink);
  background: var(--yellow);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.menu-button {
  display: none;
  width: 52px;
  height: 52px;
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.menu-button:active,
.btn:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 24px;
  height: 4px;
  background: var(--ink);
  content: "";
}

.menu-lines {
  position: relative;
  margin: 0 auto;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
}

.menu-lines::before {
  top: -8px;
}

.menu-lines::after {
  top: 8px;
}

.container {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--ink);
  padding: 56px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.hero-grid > *,
.article-box > *,
.article-body > *,
.section-head > * {
  min-width: 0;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  border: 4px solid var(--ink);
  background: var(--yellow);
  padding: 8px 12px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 860px;
  margin: 24px 0 24px;
  font-size: clamp(56px, 11vw, 132px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  width: fit-content;
  max-width: 100%;
  border: 5px solid var(--ink);
  background: var(--white);
  padding: 6px 12px 10px;
  box-shadow: var(--shadow-md);
}

.hero-title .solid {
  background: var(--red);
  transform: rotate(-2deg);
}

.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  background: var(--violet);
  transform: rotate(1deg);
}

.lede {
  max-width: 680px;
  margin: 0 0 28px;
  border-left: 8px solid var(--ink);
  background: var(--white);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  font-size: clamp(18px, 2.3vw, 26px);
  overflow-wrap: anywhere;
}

.soft-note {
  max-width: 650px;
  margin: -8px 0 28px;
  border: 4px solid var(--ink);
  background: var(--mint);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  font-size: clamp(17px, 2vw, 22px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 4px solid var(--ink);
  background: var(--white);
  padding: 14px 18px;
  box-shadow: 6px 6px 0 0 var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 120ms linear, box-shadow 120ms linear, background 120ms linear;
}

.btn:hover,
.btn:focus-visible {
  background: var(--yellow);
  outline: none;
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--ink);
}

.btn-primary {
  background: var(--red);
}

.btn-secondary {
  background: var(--yellow);
}

.phone-stack {
  position: relative;
  min-height: 640px;
}

.memory-stack {
  position: relative;
  min-height: 670px;
}

.photo-card {
  position: absolute;
  overflow: hidden;
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.photo-card:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 16px 16px 0 0 var(--ink);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card.portrait {
  width: min(310px, 72vw);
  height: 560px;
}

.photo-card.landscape {
  width: min(420px, 82vw);
  height: 260px;
}

.photo-card.main {
  right: 0;
  top: 84px;
  z-index: 3;
  transform: rotate(2deg);
}

.photo-card.middle {
  left: 42px;
  bottom: 10px;
  z-index: 2;
  transform: rotate(-4deg);
}

.photo-card.back {
  left: 0;
  top: 12px;
  z-index: 1;
  transform: rotate(-2deg);
}

.phone-card {
  position: absolute;
  overflow: hidden;
  width: min(340px, 82vw);
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.phone-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 16px 16px 0 0 var(--ink);
}

.phone-card img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center top;
}

.phone-card.main {
  right: 0;
  top: 16px;
  transform: rotate(2deg);
}

.phone-card.back {
  left: 0;
  top: 82px;
  transform: rotate(-4deg);
  background: var(--violet);
}

.floating-sticker {
  position: absolute;
  z-index: 2;
  border: 4px solid var(--ink);
  background: var(--yellow);
  padding: 12px 16px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sticker-one {
  right: 24px;
  top: 0;
  transform: rotate(-8deg);
}

.sticker-two {
  left: 8px;
  bottom: 32px;
  background: var(--red);
  transform: rotate(5deg);
}

.starburst {
  position: absolute;
  right: 44%;
  bottom: 110px;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 5px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: var(--shadow-md);
  font-size: 38px;
  animation: spin-slow 10s linear infinite;
}

.marquee {
  overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee span {
  padding: 14px 22px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.section {
  padding: 70px 0;
}

.section-yellow {
  border-top: 8px solid var(--ink);
  border-bottom: 8px solid var(--ink);
  background:
    radial-gradient(circle, #000 2px, transparent 2.5px) 0 0 / 34px 34px,
    var(--yellow);
}

.section-violet {
  border-top: 8px solid var(--ink);
  border-bottom: 8px solid var(--ink);
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.16) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16) 1px, transparent 1px) 0 0 / 36px 36px,
    var(--violet);
}

.section-black {
  background: var(--ink);
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-title .mark {
  display: inline-block;
  border: 4px solid var(--ink);
  background: var(--red);
  padding: 4px 10px 8px;
  box-shadow: var(--shadow-sm);
  transform: rotate(-1deg);
}

.section-black .section-title .mark,
.section-black .badge {
  border-color: var(--white);
  box-shadow: 6px 6px 0 0 var(--white);
}

.grid {
  display: grid;
  gap: 24px;
}

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

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

.card {
  position: relative;
  border: 4px solid var(--ink);
  background: var(--white);
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card.red {
  background: var(--red);
}

.card.yellow {
  background: var(--yellow);
}

.card.violet {
  background: var(--violet);
}

.card h3 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.card p {
  margin: 0;
  font-size: 18px;
}

.mini-label {
  display: inline-block;
  margin-bottom: 16px;
  border: 3px solid var(--ink);
  background: var(--white);
  padding: 6px 10px;
  box-shadow: var(--shadow-sm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.gallery a,
.gallery figure {
  display: block;
  margin: 0;
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.gallery a:nth-child(odd),
.gallery figure:nth-child(odd) {
  transform: rotate(-2deg);
}

.gallery a:nth-child(even),
.gallery figure:nth-child(even) {
  transform: rotate(2deg);
}

.gallery a:hover,
.gallery a:focus-visible,
.gallery figure:hover {
  outline: none;
  transform: translateY(-8px) rotate(0deg);
  box-shadow: var(--shadow-lg);
}

.gallery img {
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  object-position: center top;
}

.scene-grid {
  display: grid;
  gap: 32px;
}

.scene-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(320px, 1.12fr);
  gap: 24px;
  align-items: stretch;
  border: 5px solid var(--ink);
  background: var(--white);
  padding: clamp(18px, 3vw, 30px);
  box-shadow: var(--shadow-lg);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.scene-card:hover {
  transform: translateY(-6px);
  box-shadow: 16px 16px 0 0 var(--ink);
}

.scene-card.red {
  background: var(--red);
}

.scene-card.yellow {
  background: var(--yellow);
}

.scene-card.violet {
  background: var(--violet);
}

.scene-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.scene-text h3 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.scene-text p {
  margin: 0;
  border: 4px solid var(--ink);
  background: var(--white);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  font-size: clamp(17px, 2vw, 22px);
}

.scene-photos {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.scene-photos img {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.scene-photos.three {
  grid-template-columns: 0.82fr 1fr;
  grid-template-rows: 220px 220px;
}

.scene-photos.three img:first-child {
  grid-row: span 2;
}

.scene-photos.single {
  min-height: 500px;
}

.scene-photos.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 440px;
}

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

.quote-grid blockquote {
  margin: 0;
  border: 5px solid var(--ink);
  background: var(--white);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow-md);
  font-size: clamp(24px, 3.6vw, 42px);
  font-weight: 900;
  line-height: 1.08;
}

.quote-grid blockquote:nth-child(2n) {
  background: var(--violet);
  transform: rotate(1deg);
}

.quote-grid blockquote:nth-child(2n + 1) {
  transform: rotate(-1deg);
}

.memory-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 20px;
}

.memory-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.memory-gallery figure:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: var(--shadow-lg);
}

.memory-gallery figure:nth-child(odd) {
  transform: rotate(-1deg);
}

.memory-gallery figure:nth-child(even) {
  transform: rotate(1deg);
}

.memory-gallery .wide {
  grid-column: span 2;
}

.memory-gallery .tall {
  grid-row: span 2;
}

.memory-gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.memory-gallery .tall img {
  height: 660px;
}

.memory-gallery figcaption {
  border-top: 4px solid var(--ink);
  background: var(--yellow);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.caption {
  border-top: 4px solid var(--ink);
  padding: 10px 12px;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-hero {
  padding: 54px 0;
}

.article-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.article-cover {
  overflow: hidden;
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}

.article-cover img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.article-panel {
  border: 5px solid var(--ink);
  background: var(--yellow);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow-lg);
}

.article-panel h1 {
  margin: 18px 0;
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
}

.article-panel .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: 28px;
  align-items: start;
}

.prose {
  border: 5px solid var(--ink);
  background: var(--white);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}

.prose h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.prose p {
  margin: 0 0 20px;
  font-size: clamp(18px, 2vw, 22px);
}

.quote-box {
  margin: 28px 0;
  border: 4px solid var(--ink);
  background: var(--red);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.side-stack {
  display: grid;
  gap: 22px;
}

.stat-card {
  border: 4px solid var(--ink);
  background: var(--violet);
  padding: 22px;
  box-shadow: var(--shadow-md);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 44px;
  font-weight: 900;
  line-height: 0.9;
}

.stat-card span {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-strip {
  border: 5px solid var(--ink);
  background: var(--red);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.contact-strip h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-strip p {
  max-width: 740px;
  margin: 0 0 22px;
  font-size: 20px;
}

.site-footer {
  border-top: 8px solid var(--ink);
  background: var(--yellow);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 920px) {
  .menu-button {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 30;
    display: inline-grid !important;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 4px solid var(--ink);
    background: var(--cream);
    padding: 12px;
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-link {
    border: 4px solid var(--ink);
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }

  .hero-grid,
  .article-box,
  .article-body,
  .scene-card {
    grid-template-columns: 1fr;
  }

  .phone-stack {
    min-height: 560px;
  }

  .memory-stack {
    min-height: 720px;
  }

  .photo-card.back {
    left: 0;
    top: 0;
  }

  .photo-card.main {
    right: 0;
    top: 150px;
  }

  .photo-card.middle {
    left: 18px;
    bottom: 0;
  }

  .phone-card img {
    height: 500px;
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .scene-photos.three,
  .scene-photos.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    min-height: 0;
  }

  .scene-photos.three img:first-child {
    grid-row: span 2;
  }

  .scene-photos.three img,
  .scene-photos.four img {
    height: 280px;
  }

  .scene-photos.single {
    min-height: 0;
  }

  .scene-photos.single img {
    height: 520px;
  }

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

  .memory-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .memory-gallery .wide,
  .memory-gallery .tall {
    grid-column: auto;
    grid-row: auto;
  }

  .memory-gallery img,
  .memory-gallery .tall img {
    height: 360px;
  }

  .section-head,
  .footer-inner {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 34px;
  }

  .hero-title {
    font-size: clamp(48px, 15vw, 58px);
  }

  .button-row,
  .btn {
    width: 100%;
  }

  .phone-stack {
    min-height: 570px;
    margin-top: 14px;
  }

  .memory-stack {
    min-height: 650px;
    margin-top: 18px;
  }

  .photo-card.portrait {
    width: min(245px, 70vw);
    height: 420px;
  }

  .photo-card.landscape {
    width: min(310px, 84vw);
    height: 190px;
  }

  .photo-card.main {
    right: 8px;
    top: 148px;
  }

  .photo-card.middle {
    left: 8px;
    bottom: 0;
  }

  .photo-card.back {
    left: 12px;
    top: 0;
  }

  .phone-card {
    width: min(270px, 74vw);
  }

  .phone-card img {
    height: 430px;
  }

  .phone-card.main {
    right: 22px;
    top: 32px;
    transform: rotate(1deg);
  }

  .phone-card.back {
    left: 22px;
    top: 98px;
    transform: rotate(-3deg);
  }

  .sticker-one {
    right: 28px;
    top: 8px;
  }

  .sticker-two,
  .starburst {
    display: none;
  }

  .gallery {
    gap: 14px;
  }

  .scene-card {
    padding: 16px;
  }

  .scene-photos.three,
  .scene-photos.four,
  .memory-gallery {
    grid-template-columns: 1fr;
  }

  .scene-photos.three img,
  .scene-photos.four img,
  .scene-photos.single img,
  .memory-gallery img,
  .memory-gallery .tall img {
    height: auto;
    max-height: none;
    aspect-ratio: auto;
  }

  .scene-photos img,
  .memory-gallery img {
    object-fit: contain;
    background: var(--cream);
  }

  .article-cover img {
    min-height: 460px;
  }

  .article-cover {
    transform: rotate(0deg);
  }
}

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