@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&family=Fraunces:opsz,wght@9..144,600&display=swap");

:root {
  --paper: #f4f0e7;
  --paper-light: #fffaf0;
  --ink: #10264a;
  --orange: #f05a36;
  --yellow: #e9b84b;
  --line: rgb(16 38 74 / 24%);
  --shadow: 4px 9px 0 rgb(16 38 74 / 14%);
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Fraunces", Georgia, serif;
  --mono: "DM Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgb(255 255 255 / 55%), transparent 27rem),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

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

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--paper-light);
  background: var(--ink);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5.5rem;
  padding: 1rem clamp(1.25rem, 4vw, 4.5rem);
}

.wordmark,
.footer-mark {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.09em;
  text-decoration: none;
}

.wordmark span,
.footer-mark span {
  color: var(--orange);
}

.hero h1 span {
  color: var(--ink);
}

.site-nav {
  display: none;
  position: absolute;
  top: 5rem;
  right: 1rem;
  left: 1rem;
  padding: 1.5rem;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.site-nav[data-open="true"] {
  display: grid;
  gap: 1rem;
}

.site-nav a {
  font-size: 1.05rem;
  font-weight: 700;
}

.nav-cta {
  padding-top: 0.9rem;
  color: var(--orange);
  border-top: 1px solid var(--line);
}

.menu-toggle {
  display: grid;
  width: 4rem;
  padding: 0.7rem;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
  font: 500 0.7rem var(--mono);
  text-transform: uppercase;
}

.menu-toggle i {
  display: block;
  height: 1px;
  margin-top: 0.3rem;
  background: currentColor;
}

main {
  display: block;
}

section,
.detail-page,
.simple-page {
  width: min(100% - 2.5rem, 90rem);
  margin-inline: auto;
}

.eyebrow,
.index-label {
  margin: 0 0 0.8rem;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 0.98;
}

.hero {
  position: relative;
  padding-top: 1rem;
  padding-bottom: 5rem;
}

.hero > .eyebrow {
  margin-left: 0.3rem;
}

.hero h1 {
  margin: 0;
  color: var(--orange);
  font-size: clamp(6.4rem, 32vw, 17rem);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.11em;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  margin-top: 3rem;
}

.hero-copy h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 9vw, 4.5rem);
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 36rem;
  font-size: 1.05rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-block;
  padding: 0.85rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  color: var(--paper-light);
  border: 2px solid var(--ink);
  background: var(--ink);
}

.button.primary:hover {
  color: var(--ink);
  background: var(--yellow);
}

.button.sketch {
  border: 2px solid var(--ink);
  border-radius: 48% 52% 45% 55% / 58% 48% 52% 42%;
}

.button.sketch:hover {
  color: var(--paper-light);
  background: var(--orange);
}

.hero-collage {
  display: grid;
  width: min(100%, 32rem);
  height: auto;
  margin: 4rem auto 0;
}

.hero-collage a {
  position: relative;
  display: block;
  width: min(88%, 28rem);
  padding: 0.5rem 0.5rem 1.6rem;
  background: var(--paper-light);
  box-shadow: 1px 7px 20px rgb(16 38 74 / 22%);
}

.hero-collage a::after {
  position: absolute;
  right: 0.7rem;
  bottom: 0.3rem;
  content: "gryzo / 2026";
  font: 0.5rem var(--mono);
}

.collage-a {
  justify-self: start;
  transform: rotate(-2deg);
}

.collage-b {
  z-index: 1;
  justify-self: end;
  margin-top: -2rem;
  transform: rotate(2deg);
}

.collage-note,
.scribble,
.hand-note {
  z-index: 3;
  color: var(--ink);
  font: 500 0.8rem/1.4 var(--mono);
  transform: rotate(-5deg);
}

.collage-note {
  justify-self: end;
  margin: 0 0 1rem;
  text-align: right;
}

.scribble {
  justify-self: end;
  margin: 0.75rem 1rem 0 0;
  font-family: var(--serif);
  font-size: 1.1rem;
  text-decoration: underline wavy var(--orange);
}

.hand-note {
  position: absolute;
}

.paper-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.paper-photo.is-placeholder {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.band {
  width: 100%;
  padding: 5rem max(1.25rem, calc((100vw - 90rem) / 2));
  background: var(--paper-light);
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading h2,
.manifest h2,
.formats h2,
.about-teaser h2,
.archive-hero h1,
.detail-page h1,
.simple-page h1 {
  font-size: clamp(2.8rem, 8vw, 6.8rem);
  letter-spacing: -0.06em;
}

.section-heading em {
  font-family: var(--serif);
  font-weight: 600;
}

.story-card {
  display: grid;
  align-items: end;
  gap: 1.5rem;
}

.story-image {
  position: relative;
  display: block;
  padding: 0.7rem 0.7rem 2.2rem;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.story-image > span {
  position: absolute;
  right: 0.8rem;
  bottom: 0.6rem;
  font: 0.6rem var(--mono);
  text-transform: uppercase;
}

.card-copy h3,
.recipe-card h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.75rem, 4vw, 3.2rem);
  letter-spacing: -0.045em;
}

.card-copy h3 a,
.recipe-card h3 a {
  text-decoration: none;
}

.text-link {
  font-weight: 700;
}

.manifest {
  position: relative;
  padding-block: 8rem;
}

.manifest h2 {
  max-width: 14ch;
}

.manifest > p:last-of-type {
  max-width: 34rem;
  margin-left: auto;
  font-size: 1.2rem;
}

.manifest-stamp {
  display: grid;
  position: absolute;
  right: 0;
  bottom: 2rem;
  place-items: center;
  width: 7rem;
  height: 7rem;
  color: var(--paper-light);
  border-radius: 50%;
  background: var(--orange);
  font: 500 0.75rem/1.15 var(--mono);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
}

.formats {
  padding-block: 6rem;
}

.story-grid,
.recipe-grid,
.archive-grid {
  display: grid;
  gap: 3rem;
}

.story-grid .story-card:nth-child(even) .story-image,
.archive-grid .story-card:nth-child(even) .story-image {
  transform: rotate(1.5deg);
}

.recipe-card .paper-photo {
  margin-bottom: 1.3rem;
  border: 1px solid var(--ink);
  box-shadow: var(--shadow);
}

.recipe-card:nth-child(even) .paper-photo {
  transform: rotate(1deg);
}

.formats {
  display: grid;
  gap: 3rem;
}

.formats > div > p:last-child {
  max-width: 35rem;
}

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

.formats li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--ink);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
}

.formats li span {
  padding-top: 0.35rem;
  color: var(--orange);
  font: 0.65rem var(--mono);
}

.newsletter {
  display: grid;
  gap: 2.5rem;
  color: var(--paper-light);
  border-block: 2px solid var(--ink);
  background: var(--ink);
}

.newsletter h2 {
  max-width: 12ch;
  margin-bottom: 1.4rem;
  color: var(--yellow);
  font-size: clamp(2.7rem, 8vw, 6.5rem);
  letter-spacing: -0.06em;
}

.newsletter-copy > p:last-child {
  max-width: 35rem;
  font-size: 1.05rem;
}

.newsletter-form {
  align-self: end;
  max-width: 44rem;
  padding: 1.2rem;
  color: var(--ink);
  background: var(--paper-light);
  box-shadow: 6px 9px 0 var(--orange);
  transform: rotate(0.5deg);
}

.newsletter-fields {
  display: grid;
  gap: 0.75rem;
}

.newsletter-form .formkit-input {
  width: 100%;
  min-height: 3.5rem;
  padding: 0.85rem 1rem;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 0;
  background: #fff;
  font: 500 1rem var(--sans);
}

.newsletter-form .formkit-input::placeholder {
  color: rgb(16 38 74 / 62%);
}

.newsletter-submit {
  min-height: 3.5rem;
  padding: 0.85rem 1.25rem;
  color: var(--paper-light);
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--orange);
  font: 700 0.82rem var(--sans);
  cursor: pointer;
}

.newsletter-submit:hover,
.newsletter-submit:focus-visible {
  color: var(--ink);
  background: var(--yellow);
}

.newsletter-note {
  margin: 0.7rem 0 0;
  font-size: 0.72rem;
}

.formkit-alert {
  margin: 0 0 0.8rem;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.formkit-alert:empty {
  display: none;
}

.formkit-alert-success {
  padding: 0.8rem;
  color: var(--ink);
  background: var(--yellow);
}

.formkit-alert-error:not(:empty) {
  padding: 0.8rem;
  color: var(--paper-light);
  background: var(--orange);
}

.formkit-powered-by-convertkit-container {
  margin-top: 0.65rem;
}

.formkit-powered-by-convertkit {
  font: 500 0.62rem var(--mono);
}

.about-teaser {
  display: grid;
  position: relative;
  align-items: center;
  gap: 3rem;
}

.about-teaser > div:nth-child(2) {
  max-width: 42rem;
}

.portrait-photo {
  width: min(100%, 25rem);
  margin: 0;
  aspect-ratio: 4 / 5;
  padding: 0.65rem 0.65rem 2rem;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.portrait-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.portrait-photo figcaption {
  margin: 0.55rem 0 -1.3rem;
  font: 0.62rem var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hand-note {
  right: 5%;
  bottom: 3rem;
  font-family: var(--serif);
  font-size: 1rem;
}

.site-footer {
  display: grid;
  gap: 1rem;
  padding: 4rem max(1.25rem, calc((100vw - 90rem) / 2)) 2rem;
  color: var(--paper-light);
  background: var(--ink);
}

.footer-mark {
  margin-bottom: 0;
  font-size: clamp(4rem, 16vw, 10rem);
}

.site-footer > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.site-footer small {
  margin-top: 2rem;
  font-family: var(--mono);
}

.footer-link {
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  z-index: 90;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  display: grid;
  gap: 1.5rem;
  max-height: calc(100vh - 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: auto;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 5px 9px 0 rgb(16 38 74 / 18%);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-copy h2,
.cookie-dialog h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
}

.cookie-copy > p:not(.eyebrow) {
  max-width: 62rem;
  margin-bottom: 0.7rem;
}

.cookie-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.82rem;
}

.cookie-actions {
  display: grid;
  align-content: center;
  gap: 0.65rem;
}

.cookie-actions .button,
.cookie-dialog-actions .button {
  color: var(--ink);
  border: 1px solid var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.cookie-actions .cookie-accept {
  color: var(--paper-light);
  background: var(--orange);
}

.cookie-dialog {
  width: min(calc(100% - 2rem), 42rem);
  max-height: calc(100vh - 2rem);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  overflow: auto;
  color: var(--ink);
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 7px 12px 0 rgb(16 38 74 / 20%);
}

.cookie-dialog::backdrop {
  background: rgb(16 38 74 / 56%);
  backdrop-filter: blur(2px);
}

.cookie-dialog-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-dialog-close {
  padding: 0;
  color: var(--ink);
  border: 0;
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.cookie-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.cookie-choice strong,
.cookie-choice small {
  display: block;
}

.cookie-choice small {
  margin-top: 0.2rem;
}

.cookie-choice input {
  width: 1.35rem;
  height: 1.35rem;
  accent-color: var(--orange);
}

.cookie-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.archive-hero {
  width: min(100% - 2.5rem, 90rem);
  margin: 5rem auto 6rem;
}

.archive-hero h1 {
  max-width: 15ch;
}

.archive-hero > p:last-child {
  max-width: 36rem;
  font-size: 1.2rem;
}

.archive-grid {
  width: min(100% - 2.5rem, 90rem);
  margin: 0 auto 8rem;
}

.detail-page {
  padding-block: 4rem 8rem;
}

.detail-page > header {
  max-width: 70rem;
  margin-bottom: 3rem;
}

.detail-page h1 {
  max-width: 15ch;
}

.dek {
  max-width: 48rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.detail-page > figure {
  width: min(100%, 70rem);
  margin: 0 auto 4rem;
  padding: 0.8rem 0.8rem 2.3rem;
  background: var(--paper-light);
  box-shadow: var(--shadow);
  transform: rotate(-0.5deg);
}

figcaption {
  margin-top: 0.6rem;
  font: 0.6rem var(--mono);
}

.detail-copy,
.recipe-intro {
  max-width: 44rem;
  margin: 0 auto 5rem;
  font-size: 1.1rem;
}

.pending-note {
  display: inline-block;
  padding: 0.7rem;
  border: 1px dashed var(--ink);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.story-detail aside {
  padding-top: 4rem;
  border-top: 1px solid var(--ink);
}

.story-detail aside h2,
.recipe-body h2 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
}

.recipe-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 40rem;
  border: 1px solid var(--ink);
  background: var(--ink);
}

.recipe-meta span {
  padding: 0.9rem;
  background: var(--paper-light);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.recipe-meta b {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--orange);
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list span {
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font: 0.65rem var(--mono);
}

.recipe-body {
  display: grid;
  gap: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--ink);
}

.ingredients ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ingredients li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.method ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--ink);
}

.method li span {
  color: var(--orange);
  font: 500 0.8rem var(--mono);
}

.simple-page {
  min-height: 65vh;
  padding-block: 5rem 8rem;
}

.simple-page h1 {
  max-width: 14ch;
}

.simple-copy {
  max-width: 48rem;
  margin-top: 3rem;
  margin-left: auto;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

.about-page-layout {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.simple-copy:has(.about-page-layout) {
  max-width: none;
  margin-left: 0;
}

.about-page-copy {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

.contact-intro {
  max-width: 42rem;
}

.contact-options {
  display: grid;
  gap: 1rem;
  margin-top: 4rem;
}

.contact-options article {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--ink);
  background: var(--paper-light);
}

.contact-options article:nth-child(2) {
  background: var(--yellow);
  transform: rotate(0.6deg);
}

.contact-options h2 {
  overflow-wrap: anywhere;
  font-size: clamp(1.6rem, 5vw, 3.6rem);
  letter-spacing: -0.04em;
}

.contact-options h2 a {
  text-decoration-thickness: 0.06em;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (min-width: 48rem) {
  .site-nav {
    display: flex;
    position: static;
    align-items: center;
    gap: clamp(1.2rem, 3vw, 3rem);
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    font-size: 0.88rem;
  }

  .nav-cta {
    padding: 0.6rem 0.9rem;
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 48% 52% 45% 55% / 58% 48% 52% 42%;
  }

  .menu-toggle {
    display: none;
  }

  .story-card {
    grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  }

  .story-grid .story-card {
    display: block;
  }

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

  .story-grid .story-card:first-child {
    margin-top: 6rem;
  }

  .story-grid .card-copy {
    padding-top: 1.6rem;
  }

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

  .split {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
  }

  .formats {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8rem;
  }

  .about-teaser {
    grid-template-columns: 0.7fr 1.3fr;
    padding-block: 7rem;
  }

  .newsletter {
    grid-template-columns: minmax(0, 0.9fr) minmax(24rem, 1.1fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
  }

  .newsletter-fields {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .stories-archive .story-card {
    display: block;
  }

  .stories-archive .card-copy {
    padding-top: 1.5rem;
  }

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

  .recipe-body {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    gap: 8rem;
  }

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

  .about-page-layout {
    grid-template-columns: minmax(16rem, 0.8fr) minmax(30rem, 1.2fr);
    gap: clamp(3rem, 7vw, 7rem);
  }

  .about-page-layout .portrait-photo {
    justify-self: start;
    width: min(100%, 24rem);
  }

  .about-page-copy {
    max-width: 46rem;
  }

  .cookie-banner {
    grid-template-columns: minmax(0, 1fr) 11rem;
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }
}

@media (min-width: 80rem) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    column-gap: clamp(2rem, 5vw, 6rem);
    min-height: 56rem;
  }

  .hero > .eyebrow,
  .hero > h1 {
    grid-column: 1 / -1;
  }

  .hero-copy {
    grid-column: 1;
    width: auto;
    margin-top: 5rem;
    margin-left: 2%;
  }

  .hero-collage {
    display: block;
    position: relative;
    grid-column: 2;
    width: 100%;
    max-width: 44rem;
    height: 32rem;
    margin: 5rem 0 0;
  }

  .hero-collage a {
    position: absolute;
    width: 64%;
  }

  .collage-a {
    top: 0;
    left: 3%;
    transform: rotate(-6deg);
  }

  .collage-b {
    right: 1%;
    bottom: 0;
    margin-top: 0;
    transform: rotate(5deg);
  }

  .collage-note,
  .scribble {
    position: absolute;
  }

  .collage-note {
    top: 4rem;
    right: 4.5rem;
    margin: 0;
  }

  .scribble {
    right: 1rem;
    bottom: -2.5rem;
    margin: 0;
  }
}

@media (min-width: 72rem) {
  .hero h1 {
    font-size: min(23vw, 20rem);
  }

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

  .story-grid .story-card:nth-child(3) {
    margin-top: 10rem;
  }

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

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

@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;
  }
}
