:root {
  --paper: #fdf8f0;
  --paper-deep: #f8eadb;
  --surface: #fffdf8;
  --chocolate: #210902;
  --cocoa: #581703;
  --terracotta: #c75f2d;
  --terracotta-deep: #923109;
  --peach: #f9b98d;
  --peach-soft: #f6d6c2;
  --blush: #f7e3df;
  --rose: #c9786b;
  --olive: #6c5f39;
  --olive-deep: #49401f;
  --olive-soft: #e4e8d4;
  --line: rgb(88 23 3 / 0.16);
  --shadow: 0 18px 46px rgb(88 23 3 / 0.12);
  --font-display: "Italiana", Georgia, "Times New Roman", serif;
  --font-friendly: ui-rounded, "Arial Rounded MT Bold", "Trebuchet MS", "DM Sans", sans-serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-script: "Sacramento", "Segoe Script", cursive;
  --radius-control: 14px;
  --radius-card: 16px;
  --section-space: clamp(4.75rem, 9vw, 8rem);
  --shell: min(100% - 2rem, 76rem);
}

@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Italiana";
  src: url("assets/fonts/italiana-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Sacramento";
  src: url("assets/fonts/sacramento-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  --scroll-progress: 0;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--chocolate);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 8% 12%, rgb(249 185 141 / 0.18), transparent 28%);
  content: "";
  pointer-events: none;
  transform: translate3d(0, calc(var(--scroll-progress) * 10vh), 0);
  will-change: transform;
}

body::after {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  background: var(--terracotta);
  content: "";
  pointer-events: none;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  will-change: transform;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--font-friendly);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 6vw, 3.65rem);
}

h3 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

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

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-control);
  background: var(--chocolate);
  color: var(--paper);
  transform: translateY(-150%);
}

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

.script-note {
  margin-bottom: 0.55rem;
  color: var(--terracotta-deep);
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 5vw, 2.35rem);
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-control);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  background: var(--terracotta-deep);
  box-shadow: 0 12px 28px rgb(88 23 3 / 0.18);
  color: var(--surface);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--terracotta-deep);
  font-weight: 700;
}

.text-link span {
  margin-left: 0.55rem;
  transition: transform 180ms ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgb(253 248 240 / 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  gap: 0.7rem;
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  border: 2px solid var(--terracotta);
  border-radius: 50%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 0.94;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  white-space: nowrap;
}

.brand-copy span {
  justify-self: end;
  color: var(--terracotta-deep);
  font-family: var(--font-script);
  font-size: 1.45rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-height: 44px;
  border: 0;
  border-radius: var(--radius-control);
  background: var(--paper-deep);
  color: var(--chocolate);
  cursor: pointer;
}

.js .menu-toggle {
  display: grid;
  gap: 6px;
}

.menu-toggle > span[aria-hidden="true"] {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span[aria-hidden="true"]:first-of-type {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span[aria-hidden="true"]:last-of-type {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  display: grid;
  gap: 0.25rem;
  padding-block: 0.75rem 1rem;
}

.js .site-nav {
  position: absolute;
  top: calc(100% + 1px);
  left: -1rem;
  right: -1rem;
  display: none;
  padding: 0.85rem 1rem 1rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 34px rgb(88 23 3 / 0.12);
}

.js .site-nav[data-open] {
  display: grid;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a[aria-current="location"] {
  background: var(--paper-deep);
  color: var(--terracotta-deep);
}

.site-nav a[aria-current="page"] {
  color: var(--terracotta-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}

.site-nav .nav-follow {
  border: 1px solid rgb(201 120 107 / 0.35);
  background: var(--blush);
  color: var(--terracotta-deep);
}

.hero {
  position: relative;
  display: grid;
  isolation: isolate;
  gap: 2.2rem;
  padding-block: clamp(2.5rem, 7vw, 5rem) 1.5rem;
}

.hero[data-scroll-scene]::after {
  position: absolute;
  top: 8%;
  right: -8%;
  z-index: -2;
  width: min(34rem, 76vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(249 185 141 / 0.26), rgb(249 185 141 / 0.08) 48%, transparent 70%);
  content: "";
  opacity: var(--scene-opacity);
  pointer-events: none;
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(var(--scene-scale));
  will-change: transform, opacity;
}

.hero-copy {
  align-self: center;
}

.hero h1 {
  max-width: 15ch;
  margin-bottom: 1.25rem;
  font-size: clamp(2.7rem, 7vw, 4.6rem);
}

.hero-copy > p:not(.script-note) {
  max-width: 39rem;
  margin-bottom: 1.7rem;
  color: var(--cocoa);
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  top: -1.15rem;
  left: -0.9rem;
  z-index: -1;
  width: 44%;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--peach);
  content: "";
  transform: rotate(-5deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 8 / 5;
  border-radius: 46% 54% 44% 56% / 55% 44% 56% 45%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-visual figcaption {
  max-width: 22rem;
  margin: 0.8rem auto 0;
  color: var(--olive-deep);
  font-family: var(--font-script);
  font-size: 1.45rem;
  line-height: 1.2;
  text-align: center;
}

.quick-start {
  display: grid;
  padding-block: 1.5rem 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  gap: 1.25rem;
}

.quick-copy h2 {
  margin-bottom: 0.35rem;
  font-size: clamp(2rem, 7vw, 3.15rem);
}

.quick-copy p {
  margin-bottom: 0;
  color: var(--cocoa);
}

.quick-links {
  display: grid;
  gap: 0.5rem;
}

.quick-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0.65rem 0.8rem;
  border-radius: var(--radius-control);
  background: var(--surface);
  gap: 1rem;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.quick-links span {
  color: var(--olive-deep);
  font-size: 0.78rem;
  text-align: right;
}

.section-heading {
  max-width: 43rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 65ch;
  margin-bottom: 0;
  color: var(--cocoa);
}

.category-grid {
  display: grid;
  gap: 0.85rem;
}

.category-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  overflow: hidden;
  min-height: 132px;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  color: var(--surface);
  gap: 1rem;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(33 9 2 / 0.86), rgb(33 9 2 / 0.38));
  content: "";
}

.category-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.category-card > span {
  position: relative;
  z-index: 1;
}

.category-icon {
  display: grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgb(255 253 248 / 0.48);
  border-radius: 50%;
  background: rgb(255 253 248 / 0.12);
  font-size: 1.35rem;
  translate: 0 var(--scene-y-small);
  rotate: var(--scene-turn);
}

.category-card strong,
.category-card small {
  display: block;
}

.category-card strong {
  margin-bottom: 0.3rem;
  font-family: var(--font-friendly);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
}

.category-card small {
  max-width: 26ch;
  color: rgb(255 253 248 / 0.88);
  font-size: 0.88rem;
  line-height: 1.4;
}

.category-recipe {
  min-height: 168px;
}

.category-recipe::after {
  background: linear-gradient(90deg, rgb(146 49 9 / 0.9), rgb(199 95 45 / 0.5));
}

.category-home {
  min-height: 194px;
}

.category-home::after {
  background: linear-gradient(90deg, rgb(73 64 31 / 0.92), rgb(108 95 57 / 0.5));
}

.category-tips {
  min-height: 154px;
}

.category-tips::after {
  background: linear-gradient(90deg, rgb(118 60 51 / 0.9), rgb(201 120 107 / 0.52));
}

.category-everyday {
  min-height: 182px;
}

.category-everyday::after {
  background: linear-gradient(90deg, rgb(100 45 27 / 0.9), rgb(249 185 141 / 0.48));
}

.favorites {
  background: #fbefe5;
}

.latest {
  padding-top: clamp(4rem, 8vw, 6.5rem);
}

.latest-grid {
  display: grid;
  gap: 1rem;
}

.latest-card {
  min-width: 0;
}

.latest-card a {
  display: grid;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.latest-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.latest-copy {
  display: grid;
  align-content: start;
  padding: 1.15rem;
}

.latest-copy time {
  margin-bottom: 0.45rem;
  color: var(--olive-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.latest-copy strong {
  margin-bottom: 0.8rem;
  font-family: var(--font-friendly);
  font-size: clamp(1.55rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
}

.latest-copy > span {
  color: var(--terracotta-deep);
  font-weight: 700;
}

.favorites-layout {
  display: grid;
  gap: 1rem;
}

.favorites-intro {
  align-self: center;
  padding-block: 1rem 1.5rem;
}

.favorites-intro p:not(.script-note) {
  max-width: 34ch;
  color: var(--cocoa);
}

.feature-card {
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: 0 12px 34px rgb(88 23 3 / 0.09);
}

.feature-card:focus-within,
.latest-card:focus-within {
  outline: 3px solid var(--terracotta);
  outline-offset: 3px;
}

.feature-card a:focus-visible,
.latest-card a:focus-visible {
  outline: 0;
}

.feature-card a {
  display: grid;
  height: 100%;
  text-decoration: none;
}

.feature-card img {
  width: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-main img {
  aspect-ratio: 4 / 5;
}

.feature-small img {
  aspect-ratio: 16 / 9;
}

.feature-copy {
  display: grid;
  align-content: start;
  padding: 1.15rem;
}

.feature-copy small {
  margin-bottom: 0.35rem;
  color: var(--olive-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.feature-copy strong {
  margin-bottom: 0.8rem;
  font-family: var(--font-friendly);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.08;
}

.feature-copy > span {
  color: var(--terracotta-deep);
  font-weight: 700;
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.recipes-heading .script-note {
  margin-bottom: 0.25rem;
}

.recipes {
  position: relative;
  isolation: isolate;
}

.recipes > :not(.recipe-thread) {
  position: relative;
  z-index: 1;
}

.recipe-thread {
  position: absolute;
  top: 5.5rem;
  right: -0.5rem;
  z-index: 0;
  width: min(9rem, 26vw);
  height: calc(100% - 8rem);
  overflow: visible;
  opacity: var(--scene-opacity);
  pointer-events: none;
}

.recipe-thread path {
  fill: none;
  stroke: rgb(199 95 45 / 0.42);
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--scene-progress));
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.recipe-grid {
  display: grid;
  gap: 1.25rem;
}

.recipe-card {
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.recipe-image {
  overflow: hidden;
}

.recipe-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.recipe-copy {
  padding: 1.25rem;
}

.recipe-copy > p {
  margin-bottom: 0.45rem;
  color: var(--olive-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.recipe-copy h3 {
  margin-bottom: 1rem;
}

.recipe-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
  color: var(--cocoa);
  gap: 1rem;
  font-size: 0.92rem;
}

.recipe-meta span::before {
  display: inline-block;
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: var(--terracotta);
  content: "";
  vertical-align: 0.12em;
}

.recipe-details {
  border-top: 1px solid var(--line);
}

.recipe-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  color: var(--terracotta-deep);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.recipe-details summary::-webkit-details-marker {
  display: none;
}

.recipe-details summary span {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.recipe-details[open] summary span {
  transform: rotate(45deg);
}

.recipe-details > div {
  padding-block: 0.25rem;
}

.recipe-details h4 {
  margin: 1rem 0 0.35rem;
  color: var(--olive-deep);
  font-size: 0.85rem;
}

.recipe-details p {
  color: var(--cocoa);
  font-size: 0.95rem;
}

.home-tips {
  background: var(--olive-soft);
}

.home-layout {
  display: grid;
  gap: 2.5rem;
}

.home-image {
  position: relative;
}

.home-image img {
  width: 100%;
  min-height: 26rem;
  border-radius: 50% 50% 18px 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.home-stamp {
  position: absolute;
  right: -0.25rem;
  bottom: 1.25rem;
  display: grid;
  place-items: center;
  width: 6.3rem;
  height: 6.3rem;
  border: 2px solid var(--terracotta-deep);
  border-radius: 50%;
  background: var(--paper);
  color: var(--terracotta-deep);
  font-family: var(--font-script);
  font-size: 1.35rem;
  line-height: 0.95;
  text-align: center;
  transform: translate3d(0, var(--scene-y-small), 0) rotate(calc(-7deg + var(--scene-turn)));
  will-change: transform;
}

.home-content {
  align-self: center;
}

.home-content > p {
  max-width: 55ch;
  color: var(--cocoa);
}

.tip-list {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.tip-item {
  border-bottom: 1px solid var(--line);
}

.tip-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 76px;
  padding-block: 1rem;
  gap: 0.1rem 1rem;
  cursor: pointer;
  list-style: none;
}

.tip-item summary::-webkit-details-marker {
  display: none;
}

.tip-item span {
  font-family: var(--font-friendly);
  font-size: 1.35rem;
  line-height: 1.15;
}

.tip-item small {
  color: var(--olive-deep);
  font-weight: 700;
}

.tip-item b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--terracotta-deep);
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.tip-item[open] b {
  transform: rotate(45deg);
}

.tip-item > p {
  max-width: 58ch;
  padding: 0 2.5rem 1.25rem 0;
  color: var(--cocoa);
}

.community-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(1.5rem, 6vw, 4rem);
  border-radius: 26px 80px 26px 80px;
  background: var(--blush);
  gap: 1.5rem;
}

.about {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 7vw, 6rem);
}

.about-image {
  position: relative;
  width: min(82vw, 26rem);
  justify-self: center;
}

.about-image::before {
  position: absolute;
  inset: 8% -5% -5% 10%;
  z-index: -1;
  border-radius: 50%;
  background: var(--peach-soft);
  content: "";
  opacity: var(--scene-opacity);
  transform: translate3d(var(--scene-x), var(--scene-y-small), 0) scale(var(--scene-scale));
  will-change: transform, opacity;
}

.about-image img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.about-copy > p:not(.script-note) {
  max-width: 58ch;
  color: var(--cocoa);
}

.community-panel::after {
  position: absolute;
  right: -3rem;
  bottom: -5rem;
  width: 13rem;
  height: 13rem;
  border: 1px solid rgb(146 49 9 / 0.3);
  border-radius: 50%;
  content: "";
  opacity: var(--scene-opacity);
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(var(--scene-scale));
  will-change: transform, opacity;
}

.community-portrait {
  align-self: center;
  justify-self: center;
}

.community-portrait img {
  width: min(70vw, 18rem);
  aspect-ratio: 1;
  border: 6px solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.community-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.community-copy > p:not(.script-note) {
  max-width: 52ch;
  color: var(--cocoa);
  font-size: 1.05rem;
}

.social-status {
  display: grid;
  width: fit-content;
  margin-top: 1.5rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgb(88 23 3 / 0.28);
  border-radius: var(--radius-control);
  background: rgb(253 248 240 / 0.42);
  gap: 0.1rem;
}

.social-status span {
  color: var(--cocoa);
  font-size: 0.84rem;
}

.site-footer {
  padding-block: 3.5rem 1.25rem;
  background: var(--chocolate);
  color: var(--paper);
}

.legal-page {
  max-width: 52rem;
  min-height: calc(100dvh - 13rem);
}

.legal-page h1 {
  margin-bottom: 2rem;
  font-size: clamp(3.25rem, 10vw, 5.75rem);
}

.legal-page h2 {
  margin-top: 2.5rem;
  font-size: clamp(2rem, 6vw, 3rem);
}

.legal-page p {
  max-width: 70ch;
  color: var(--cocoa);
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
}

.site-footer .brand img {
  border-color: var(--peach);
}

.site-footer .brand-copy span {
  color: var(--peach);
}

.footer-brand > p {
  max-width: 34ch;
  margin-top: 1rem;
  color: rgb(253 248 240 / 0.74);
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.footer-grid > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  min-height: 38px;
  color: rgb(253 248 240 / 0.78);
  text-decoration: none;
}

.footer-pending {
  display: block;
  color: rgb(253 248 240 / 0.58);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(253 248 240 / 0.18);
  color: rgb(253 248 240 / 0.64);
  gap: 0.25rem;
  font-size: 0.88rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.js.reveal-ready [data-reveal] {
  opacity: 0;
  transition:
    opacity 700ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 800ms cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js.reveal-ready [data-reveal="lead"],
.js.reveal-ready [data-reveal="heading"] {
  transform: translate3d(0, 1.75rem, 0);
}

.js.reveal-ready [data-reveal="slide-left"] {
  transform: translate3d(-2rem, 0, 0);
}

.js.reveal-ready [data-reveal="slide-right"] {
  transform: translate3d(2rem, 0, 0);
}

.js.reveal-ready [data-reveal="recipe-lift"] {
  transform: translate3d(0, 2.5rem, 0) scale(0.975);
}

.js.reveal-ready [data-reveal="photo-wipe"] {
  transform: translate3d(0, 1.25rem, 0) scale(0.985);
}

.js.reveal-ready [data-reveal="photo-wipe"] img {
  clip-path: inset(0 0 100% 0 round var(--radius-card));
  transition:
    clip-path 900ms var(--reveal-delay, 0ms) cubic-bezier(0.23, 1, 0.32, 1),
    transform 400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js.reveal-ready [data-reveal="bloom"] {
  transform: translate3d(0, 1.5rem, 0) scale(0.96);
}

.js.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js.reveal-ready [data-reveal="photo-wipe"].is-visible img {
  clip-path: inset(0 0 0 0 round var(--radius-card));
}

.js.reveal-ready .quick-links[data-reveal] a {
  opacity: 0;
  transform: translate3d(0.75rem, 0, 0);
  transition: opacity 420ms ease-out, transform 520ms cubic-bezier(0.23, 1, 0.32, 1);
}

.js.reveal-ready .quick-links[data-reveal].is-visible a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js.reveal-ready .quick-links.is-visible a:nth-child(2) {
  transition-delay: 60ms;
}

.js.reveal-ready .quick-links.is-visible a:nth-child(3) {
  transition-delay: 120ms;
}

.js.reveal-ready .quick-links.is-visible a:nth-child(4) {
  transition-delay: 180ms;
}

.section-heading h2::after {
  display: block;
  width: min(4.5rem, 22vw);
  height: 2px;
  margin-top: 0.65rem;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 700ms 180ms cubic-bezier(0.23, 1, 0.32, 1);
}

.section-heading.is-visible h2::after {
  transform: scaleX(1);
}

[data-scroll-depth] {
  --scroll-shift: 0px;
}

[data-scroll-scene] {
  --scene-progress: 0;
  --scene-opacity: 0.35;
  --scene-scale: 0.92;
  --scene-x: 0px;
  --scene-y: 0px;
  --scene-y-small: 0px;
  --scene-turn: 0deg;
}

[data-pointer-depth] {
  --pointer-x: 0px;
  --pointer-y: 0px;
}

.hero-visual img,
.latest-card img,
.home-image > img,
.about-image > img {
  scale: 1.015;
  translate: 0 var(--scroll-shift);
  will-change: translate;
}

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

  .button-primary:hover {
    background: var(--cocoa);
    box-shadow: 0 16px 34px rgb(88 23 3 / 0.24);
  }

  .text-link:hover span {
    transform: translateX(4px);
  }

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

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

  .quick-links a:hover {
    background: var(--paper-deep);
    color: var(--terracotta-deep);
    transform: translateX(3px);
  }

  .latest-card a:hover img {
    transform: scale(1.025);
  }

  .feature-card a:hover img,
  .recipe-card:hover img {
    transform: scale(1.025);
  }

  .site-nav a:hover {
    background: var(--paper-deep);
    color: var(--terracotta-deep);
  }

}

@media (hover: hover) and (pointer: fine) {
  [data-pointer-depth] > img {
    transform: translate3d(var(--pointer-x), var(--pointer-y), 0) scale(1.035);
    transition: transform 140ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .category-card[data-pointer-depth]:hover > img {
    transform: translate3d(var(--pointer-x), var(--pointer-y), 0) scale(1.06);
  }

  [data-pointer-depth].is-pointer-active > img {
    will-change: transform;
  }
}

.button:active,
.quick-links a:active,
.feature-card a:active,
.latest-card a:active {
  transform: scale(0.98);
}

.section-action {
  margin: 1.75rem 0 0;
  text-align: center;
}

@media (min-width: 36rem) {
  :root {
    --shell: min(100% - 3rem, 76rem);
  }

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

  .latest-card-featured {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 48rem) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
    align-items: center;
    min-height: calc(100dvh - 74px);
    padding-block: 2.5rem;
  }

  .hero h1 {
    max-width: 18ch;
    font-size: clamp(3.25rem, 4.8vw, 4.4rem);
  }

  .category-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .category-everyday {
    grid-column: auto;
  }

  .favorites-layout {
    grid-template-columns: 0.78fr 1.05fr 1.05fr;
    align-items: stretch;
  }

  .feature-main img {
    height: 100%;
    min-height: 31rem;
  }

  .feature-main a {
    grid-template-rows: 1fr auto;
  }

  .feature-small a {
    grid-template-columns: minmax(0, 1fr) minmax(10rem, 0.9fr);
  }

  .feature-small img {
    height: 100%;
    aspect-ratio: auto;
  }

  .home-layout,
  .about,
  .community-panel {
    grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
  }

  .home-layout {
    gap: clamp(3rem, 7vw, 6.5rem);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 0.8fr;
  }

  .quick-start {
    grid-template-columns: minmax(13rem, 0.62fr) minmax(0, 1.38fr);
    align-items: center;
  }

  .latest-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }

  .latest-card-featured {
    grid-row: span 2;
  }

  .latest-card-featured a {
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .latest-card-featured img {
    height: 100%;
    min-height: 26rem;
  }
}

@media (min-width: 75rem) {
  .header-inner {
    min-height: 78px;
  }

  .js .menu-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 0.15rem;
  }

  .site-nav a {
    padding-inline: 0.55rem;
    font-size: 0.84rem;
  }

  .category-grid {
    grid-template-columns: 1.05fr 1.18fr 0.92fr 1.05fr;
    align-items: start;
  }

  .category-card:nth-child(even) {
    min-height: 154px;
    margin-top: 1.2rem;
  }

  .favorites-layout {
    gap: 1.25rem;
  }

  .recipes-heading {
    margin-left: 8.5%;
  }

  .recipe-grid {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: start;
  }

  .recipe-card-tall {
    margin-top: 4rem;
  }
}

@media (max-width: 47.99rem) {
  .hero {
    gap: 1.35rem;
    padding-block: 1.75rem 1rem;
  }

  .hero h1 {
    margin-bottom: 0.85rem;
    font-size: clamp(2.35rem, 9.5vw, 3rem);
    line-height: 1.06;
  }

  .hero-copy > p:not(.script-note) {
    margin-bottom: 1.15rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-visual img {
    aspect-ratio: 16 / 10;
  }

  .hero-visual figcaption {
    display: none;
  }

  .quick-start {
    margin-top: 0.75rem;
  }
}

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

  .js.reveal-ready [data-reveal] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .js.reveal-ready [data-reveal="photo-wipe"] img {
    clip-path: none;
  }

  body::after {
    display: none;
  }

  body::before,
  .hero[data-scroll-scene]::after,
  .about-image::before,
  .community-panel::after,
  .home-stamp,
  .hero-visual img,
  .latest-card img,
  .home-image > img,
  .about-image > img {
    scale: 1;
    translate: none;
    transform: none;
  }

  .recipe-thread {
    display: none;
  }

  .category-icon {
    translate: none;
    rotate: none;
  }

  [data-pointer-depth] > img {
    transform: none;
  }

  .js.reveal-ready .quick-links[data-reveal] a {
    opacity: 1;
    transform: none;
  }
}
