/* Life by Anne Rose — shared styles */

:root {
  /* Brand palette: sunny yellow + warm cream */
  --accent: #ffd95a;
  --accent-dark: #f0c53d;
  --accent-soft: #fdf2d0;
  --cream: #fffbf0;
  --white: #ffffff;
  --text: #2c2c2c;
  --text-muted: #6b6b6b;
  --border: #ebe4d6;
  /* Aliases used by existing selectors */
  --blush: var(--accent);
  --blush-dark: var(--accent-dark);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-display-bold: "Fraunces", Georgia, serif;
  --font-script: "Caveat", "Segoe Script", cursive;
  --font-ui: "Montserrat", system-ui, sans-serif;
  --header-height: 5.5rem;
  --announce-height: 2.5rem;
  --max-width: 1512px;
  --page-gutter: clamp(1rem, 3vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* clip (not hidden): hides x-overflow without creating a scrollport that
     breaks position:sticky sidebars on long post pages */
  overflow-x: clip !important;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-ui);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip !important;
  max-width: 100%;
  width: 100%;
  position: relative;
  overscroll-behavior-x: none;
}

main:not(.post-page),
.site-footer,
.hero,
.categories,
.recipe-collection,
.about-band,
.faq,
.contact-hero,
.contact-reach,
.disclaimer-page,
.about-page,
.error-page,
.recipe-card {
  /* Do not set overflow-x on .post-page — it forces overflow-y:auto and breaks
     position:sticky on .post-sidebar__sticky (sidebar scrolls away on long posts). */
  overflow-x: hidden !important;
  max-width: 100%;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--blush);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--blush-dark);
}

.btn-outline {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--text);
}

.btn-outline:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

/* ——— Placeholders ——— */

.img-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background:
    repeating-linear-gradient(
      -45deg,
      #fff6d9,
      #fff6d9 10px,
      #f7e8b8 10px,
      #f7e8b8 20px
    );
  border: 3px dashed #2c2c2c;
  color: var(--text-muted);
}

.img-placeholder__label {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.img-placeholder__label svg {
  width: 28px;
  height: 28px;
  opacity: 0.7;
}

.img-placeholder--tile {
  height: 100%;
  min-height: 100%;
}

.img-placeholder--circle {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent-soft);
  border-color: var(--accent-dark);
}

.img-placeholder--circle .img-placeholder__label {
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  padding: 0.35rem;
}

/* ——— Site header ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background: var(--white);
  transition: top 0.28s ease;
}

.site-header.is-hidden {
  top: -12rem;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-header {
    transition: none;
  }
}

.announce-bar {
  position: relative;
  z-index: 101;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: var(--announce-height);
  margin: 0;
  padding: 0.45rem max(var(--page-gutter), calc((100% - min(100%, var(--max-width))) / 2));
  background: var(--blush);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announce-bar__text {
  grid-column: 2;
  text-align: center;
  white-space: nowrap;
}

.announce-bar__text a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: opacity 0.2s ease;
}

.announce-bar__text a:hover,
.announce-bar__text a:focus-visible {
  opacity: 0.75;
}

.announce-bar__social {
  grid-column: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.85rem;
}

.announce-bar__social a {
  display: flex;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.announce-bar__social a:hover {
  opacity: 1;
}

.announce-bar__social svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.main-nav {
  position: relative;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.1rem max(var(--page-gutter), calc((100% - min(100%, var(--max-width))) / 2));
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.main-nav__left,
.main-nav__right {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.main-nav__left {
  justify-content: flex-start;
}

.main-nav__right {
  justify-content: flex-end;
}

.main-nav__link {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.main-nav__link:hover {
  color: var(--blush-dark);
}

.main-nav__search {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.main-nav__search:hover {
  opacity: 1;
}

.main-nav__search svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
}

/* "Surprise me" dice — jumps to a random recipe */
.main-nav__dice {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-left: 0.1rem;
  border-radius: 50%;
  color: var(--text);
  background: var(--accent-soft);
  transition: background 0.2s ease, transform 0.35s ease;
}

.main-nav__dice:hover,
.main-nav__dice:focus-visible {
  background: var(--accent);
  transform: rotate(-18deg);
}

.main-nav__dice img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.main-nav__dice.is-rolling {
  transform: rotate(360deg) scale(0.9);
}

@media (prefers-reduced-motion: reduce) {
  .main-nav__dice,
  .main-nav__dice:hover,
  .main-nav__dice:focus-visible,
  .main-nav__dice.is-rolling {
    transform: none;
    transition: background 0.2s ease;
  }
}

body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open .main-nav__search {
  visibility: hidden;
  pointer-events: none;
}

/* Eight links plus search and dice crowd the logo on narrow desktops */
@media (min-width: 961px) and (max-width: 1200px) {
  .main-nav {
    gap: 0.6rem;
  }

  .main-nav__left,
  .main-nav__right {
    gap: 0.65rem;
  }

  .main-nav__link {
    font-size: 0.63rem;
    letter-spacing: 0.08em;
  }

  .main-nav__dice {
    width: 26px;
    height: 26px;
    margin-left: 0;
  }

  .main-nav__dice img {
    width: 16px;
    height: 16px;
  }
}

/* Last stretch before the hamburger takes over at 960px */
@media (min-width: 961px) and (max-width: 1040px) {
  .main-nav {
    gap: 0.4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .main-nav__left,
  .main-nav__right {
    gap: 0.5rem;
  }

  .main-nav__link {
    font-size: 0.58rem;
    letter-spacing: 0.06em;
  }
}

.main-nav__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav__logo-img {
  display: block;
  width: auto;
  height: 56px;
  max-width: min(240px, 42vw);
  object-fit: contain;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2rem;
  height: 2rem;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

@media (max-width: 960px) {
  .mobile-nav.is-open {
    display: block;
    position: fixed;
    z-index: 200;
    inset: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--cream);
  }

  .mobile-nav__panel {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 0.35rem var(--page-gutter) 2rem;
  }

  .mobile-nav__close {
    display: none;
  }

  .mobile-nav__list {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav__link {
    display: grid;
    grid-template-columns: 1.75rem minmax(0, 1fr) 1rem;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 0.15rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }

  .mobile-nav__link[aria-current="page"] .mobile-nav__label {
    font-weight: 700;
  }

  .mobile-nav__icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    justify-self: center;
  }

  .mobile-nav__icon--stroke {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-nav__chevron {
    width: 16px;
    height: 16px;
    justify-self: end;
    fill: none;
    stroke: var(--text-muted);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-nav__surprise {
    position: relative;
    display: grid;
    grid-template-columns: 1.75rem minmax(0, 1fr) 1rem;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.35rem;
    padding: 1rem 1.1rem;
    border: 2px solid var(--accent);
    border-radius: 0.7rem;
    background: var(--accent-soft);
    color: var(--text);
  }

  .mobile-nav__surprise-copy {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
  }

  .mobile-nav__surprise-sub {
    font-family: var(--font-script);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--text-muted);
    line-height: 1.2;
  }

  .mobile-nav__surprise-sparkle {
    position: absolute;
    width: 22px;
    height: 22px;
    object-fit: contain;
    pointer-events: none;
  }

  .mobile-nav__surprise-sparkle--left {
    top: -0.7rem;
    left: 1.1rem;
  }

  .mobile-nav__surprise-sparkle--right {
    top: -0.55rem;
    right: 1.4rem;
  }

  .mobile-nav__social,
  .mobile-nav__aside {
    display: none;
  }
}

/* Phone: sit under the sticky header, leave a blurred peek of the page at the bottom */
@media (max-width: 640px) {
  .mobile-nav.is-open {
    z-index: 99;
    top: var(--nav-offset, calc(var(--announce-height) + var(--header-height)));
    overflow: hidden;
    background: rgba(44, 44, 44, 0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .mobile-nav__panel {
    min-height: 0;
    max-height: calc(100% - 5.25rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--cream);
    border-bottom-left-radius: 1.35rem;
    border-bottom-right-radius: 1.35rem;
    box-shadow: 0 16px 36px rgba(44, 44, 44, 0.12);
    padding-bottom: 1.25rem;
  }
}

/* Tablet: centered two-column modal */
@media (min-width: 641px) and (max-width: 960px) {
  body.is-nav-open .nav-toggle {
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-nav.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(44, 44, 44, 0.28);
  }

  .mobile-nav__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-rows: auto 1fr;
    column-gap: 1.75rem;
    row-gap: 1.25rem;
    width: min(860px, 100%);
    min-height: 0;
    max-height: calc(100vh - 3rem);
    overflow: auto;
    padding: 2rem 2rem 1.6rem;
    border-radius: 1.25rem;
    background: var(--cream);
    box-shadow: 0 18px 50px rgba(44, 44, 44, 0.18);
  }

  .mobile-nav__close {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--text);
  }

  .mobile-nav__close span {
    position: absolute;
    width: 14px;
    height: 1.5px;
    background: var(--text);
  }

  .mobile-nav__close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-nav__close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-nav__list {
    grid-column: 1;
    grid-row: 1;
  }

  .mobile-nav__link {
    padding: 0.72rem 0.1rem;
  }

  .mobile-nav__surprise {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
  }

  .mobile-nav__social {
    display: flex;
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    gap: 0.7rem;
    padding-top: 0.25rem;
  }

  .mobile-nav__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    border: 1.5px solid var(--text);
    color: var(--text);
    background: var(--white);
  }

  .mobile-nav__social svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
  }

  .mobile-nav__aside {
    display: flex;
    grid-column: 2;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.5rem 0.25rem 0.25rem;
  }

  .mobile-nav__quote {
    font-family: var(--font-script);
    font-size: clamp(1.45rem, 2.4vw, 1.85rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text);
    max-width: 16ch;
  }

  .mobile-nav__doodle {
    position: relative;
    width: 7.5rem;
    height: 7.5rem;
    margin: 1rem 0 1.15rem;
  }

  .mobile-nav__doodle-pot {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .mobile-nav__doodle-heart {
    position: absolute;
    right: 0.15rem;
    bottom: 1.1rem;
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
  }

  .mobile-nav__welcome {
    width: 100%;
    padding: 1.1rem 1.15rem 1.2rem;
    border-radius: 0.7rem;
    background: var(--accent-soft);
  }

  .mobile-nav__welcome-title {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.45rem;
  }

  .mobile-nav__welcome-text {
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
  }

  .mobile-nav__welcome-btn {
    display: inline-flex;
    background: var(--accent);
    border: 2px solid var(--accent);
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.7rem 1.15rem;
    border-radius: 0.4rem;
  }

  .mobile-nav__welcome-btn:hover,
  .mobile-nav__welcome-btn:focus-visible {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
  }
}

/* ——— Site search overlay ——— */

body.is-search-open {
  overflow: hidden;
}

.site-search {
  position: fixed;
  inset: 0;
  top: var(--nav-offset, calc(var(--announce-height) + var(--header-height)));
  z-index: 180;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  pointer-events: none;
}

.site-search.is-open {
  visibility: visible;
  pointer-events: auto;
}

.site-search__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.22);
}

.site-search__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  background: var(--white);
  transform: translateY(100%);
  transition: transform 0.38s ease;
  overflow: hidden;
}

.site-search.is-open .site-search__panel {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .site-search__panel {
    transition: none;
  }
}

.site-search__form {
  position: relative;
  flex: none;
  padding: 1.15rem var(--page-gutter) 0.65rem;
  max-width: var(--max-width);
  width: 100%;
  margin-inline: auto;
}

.site-search__input {
  width: 100%;
  height: 3rem;
  padding: 0 3.1rem 0 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--text);
}

.site-search__input::placeholder {
  color: var(--text-muted);
}

.site-search__input:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.site-search__submit {
  position: absolute;
  top: 1.15rem;
  right: var(--page-gutter);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.site-search__submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
}

.site-search__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0 2.5rem;
}

.site-search__section {
  max-width: var(--max-width);
  margin: 1.15rem auto 0;
  padding-inline: var(--page-gutter);
}

.site-search__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.site-search__heading {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.site-search__heading span {
  font-weight: 600;
}

.site-search__all {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
}

.site-search__all:hover,
.site-search__all:focus-visible {
  color: var(--text);
  border-color: var(--text);
}

.site-search__row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.site-search__row::-webkit-scrollbar {
  height: 6px;
}

.site-search__row::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 999px;
}

.site-search__card {
  flex: 0 0 10.5rem;
  scroll-snap-align: start;
  min-width: 0;
  color: var(--text);
}

.site-search__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.55rem;
  overflow: hidden;
  background: var(--accent-soft);
  margin-bottom: 0.55rem;
}

.site-search__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-search__card-title {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
}

.site-search__more {
  flex: none;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-top: -1.6rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
  scroll-snap-align: start;
}

.site-search__empty {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-inline: var(--page-gutter);
  color: var(--text-muted);
}

@media (min-width: 961px) {
  .site-search__card {
    flex-basis: 12.5rem;
  }

  .site-search__heading {
    font-size: 0.95rem;
  }
}

/* ——— Hero (Latest Recipes grid) ——— */

.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 1.75rem 0 2.5rem;
  background: var(--white);
  overflow-x: hidden;
}

.hero__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 570px;
  align-items: stretch;
  gap: 0.9rem;
  margin-bottom: 1.25rem;
}

.hero__badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0.55rem 0.9rem;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow: 0 2px 0 rgba(44, 44, 44, 0.06);
}

.hero__badge img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.hero__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.9rem;
  height: 100%;
  min-height: 0;
}

.recipe-tile {
  position: relative;
  display: block;
  overflow: visible;
  height: 100%;
  min-height: 0;
  color: inherit;
  background: transparent;
}

.recipe-tile--featured {
  height: 570px;
  min-height: 570px;
}

.recipe-tile__frame {
  position: absolute;
  inset: 0;
  z-index: 0;
  box-sizing: border-box;
  border: 3px dashed #2c2c2c;
  border-radius: 1.15rem;
  background: var(--white);
  overflow: hidden;
}

.recipe-tile__frame > img {
  position: absolute;
  inset: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  object-fit: cover;
  border-radius: calc(1.15rem - 3px);
}

.recipe-tile .img-placeholder--tile {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  width: auto;
  height: auto;
  min-height: 0;
  max-height: none;
  border: none;
  border-radius: calc(1.15rem - 3px);
  overflow: hidden;
  background:
    repeating-linear-gradient(
      -45deg,
      #fff6d9,
      #fff6d9 10px,
      #f7e8b8 10px,
      #f7e8b8 20px
    );
}

.recipe-tile__doodle {
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.recipe-tile__doodle--a {
  top: 18%;
  left: 10%;
  width: 26px;
  transform: rotate(-12deg);
}

.recipe-tile__doodle--b {
  top: 28%;
  left: 22%;
  width: 22px;
  transform: rotate(10deg);
}

.recipe-tile__doodle--c {
  top: 14%;
  right: 12%;
  width: 24px;
  transform: rotate(8deg);
}

.recipe-tile--featured .recipe-tile__doodle--a {
  top: 16%;
  left: 12%;
  width: 34px;
}

.recipe-tile--featured .recipe-tile__doodle--b {
  top: 24%;
  left: 22%;
  width: 28px;
}

.recipe-tile--featured .recipe-tile__doodle--c {
  top: 18%;
  right: 18%;
  width: 30px;
}

.recipe-tile__meta {
  position: absolute;
  left: 1.1rem;
  right: auto;
  bottom: 1.1rem;
  z-index: 3;
  max-width: min(22rem, calc(100% - 2.2rem));
  padding: 0.95rem 1.05rem;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.08);
}

.recipe-tile__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}

.recipe-tile__title {
  display: block;
  font-family: var(--font-ui);
  font-size: clamp(0.8rem, 1.3vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--text);
}

.recipe-tile--featured .recipe-tile__title {
  font-size: clamp(1.05rem, 1.9vw, 1.45rem);
}

.recipe-tile__title-icon {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  object-fit: contain;
}

.recipe-tile--featured .recipe-tile__title-icon {
  width: 22px;
  height: 22px;
}

.recipe-tile__underline-icon {
  display: block;
  width: min(100%, 9.5rem);
  height: auto;
  margin-top: 0.35rem;
  margin-bottom: 0.35rem;
  object-fit: contain;
  object-position: left center;
}

.recipe-tile--featured .recipe-tile__underline-icon {
  width: min(100%, 14rem);
}

.recipe-tile__sub {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.recipe-tile__more-row {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.recipe-tile__more {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.85rem;
  background: var(--accent);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.recipe-tile__more-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.hero__cta-row {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero__cta {
  display: inline-flex;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 999px;
  color: var(--text);
}

.hero__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
}

.hero__cta-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ——— Categories ——— */

.categories {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 0;
  text-align: center;
  background: var(--cream);
  overflow-x: hidden;
}

.categories__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 var(--page-gutter) clamp(2rem, 4vw, 2.75rem);
}

.categories__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.categories__ornament {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.categories__ornament-heart {
  width: 64px;
  height: auto;
  object-fit: contain;
}

.categories__title {
  margin-bottom: 0.85rem;
  font-family: var(--font-display-bold);
  font-size: clamp(2.35rem, 4.2vw, 3.35rem);
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.categories__title-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 0.4rem;
}

.categories__title-underline {
  position: absolute;
  left: 50%;
  bottom: -0.15rem;
  width: 110%;
  max-width: 11rem;
  height: auto;
  transform: translateX(-50%);
  object-fit: contain;
  pointer-events: none;
}

.categories__sub {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.categories__sub-heart {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.category-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  width: 100%;
  margin: 0 0 2.5rem;
}

.category-card {
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  max-width: 11.5rem;
}

.category-card__circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 10.75rem);
  aspect-ratio: 1;
  border: 3px dashed #2c2c2c;
  border-radius: 50%;
  background: var(--white);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.category-card__icon {
  width: 58%;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.category-card:hover .category-card__circle,
.category-card:focus-visible .category-card__circle {
  transform: scale(1.07);
  border-color: var(--accent-dark);
  background: var(--accent-soft);
}

.category-card:hover .category-card__icon,
.category-card:focus-visible .category-card__icon {
  transform: scale(1.1) rotate(-5deg);
  animation: category-icon-wiggle 0.55s ease;
}

.category-card:hover .category-card__label,
.category-card:focus-visible .category-card__label {
  background: var(--accent);
  transform: translateY(-3px);
}

.category-card:hover .category-card__sparkle--tl,
.category-card:focus-visible .category-card__sparkle--tl {
  transform: scale(1.2);
}

.category-card:hover .category-card__sparkle--b,
.category-card:focus-visible .category-card__sparkle--b {
  transform: rotate(-25deg) scale(1.2);
}

@keyframes category-icon-wiggle {
  0% {
    transform: scale(1) rotate(0deg);
  }
  35% {
    transform: scale(1.12) rotate(-8deg);
  }
  65% {
    transform: scale(1.1) rotate(3deg);
  }
  100% {
    transform: scale(1.1) rotate(-5deg);
  }
}

.category-card__sparkle {
  position: absolute;
  width: 22px;
  height: 22px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.category-card__sparkle--tl {
  top: -0.35rem;
  left: -0.55rem;
  width: 34px;
  height: 34px;
}

.category-card__sparkle--tr {
  top: -0.15rem;
  right: -0.4rem;
}

.category-card__sparkle--l {
  left: -0.65rem;
  top: 48%;
  transform: translateY(-50%);
}

.category-card__sparkle--r {
  right: -0.65rem;
  top: 48%;
  transform: translateY(-50%);
}

.category-card__sparkle--br {
  right: -0.3rem;
  bottom: 0.35rem;
}

.category-card__sparkle--b {
  left: auto;
  right: -0.35rem;
  bottom: -0.2rem;
  width: 34px;
  height: 34px;
  transform: rotate(-25deg);
}

.category-card__label {
  display: inline-block;
  min-width: 100%;
  padding: 0.55rem 0.7rem;
  background: var(--accent-soft);
  border-radius: 0.2rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
  transition: background-color 0.25s ease, transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@media (prefers-reduced-motion: reduce) {
  .category-card__circle,
  .category-card__icon,
  .category-card__label,
  .category-card__sparkle {
    transition: none;
  }

  .category-card:hover .category-card__circle,
  .category-card:focus-visible .category-card__circle,
  .category-card:hover .category-card__icon,
  .category-card:focus-visible .category-card__icon,
  .category-card:hover .category-card__label,
  .category-card:focus-visible .category-card__label,
  .category-card:hover .category-card__sparkle--tl,
  .category-card:focus-visible .category-card__sparkle--tl,
  .category-card:hover .category-card__sparkle--b,
  .category-card:focus-visible .category-card__sparkle--b {
    transform: none;
    animation: none;
  }

  .category-card:hover .category-card__circle,
  .category-card:focus-visible .category-card__circle {
    background: var(--accent-soft);
    border-color: var(--accent-dark);
  }

  .category-card:hover .category-card__label,
  .category-card:focus-visible .category-card__label {
    background: var(--accent);
  }
}

.categories__cta-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.categories__cta {
  min-width: 13.5rem;
  padding: 0.9rem 1.6rem;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.categories__cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
  transform: none;
  box-shadow: none;
}

.categories__cta-sparkle {
  position: absolute;
  top: -1.65rem;
  right: -2.1rem;
  width: 34px;
  height: 34px;
  object-fit: contain;
  pointer-events: none;
}

/* ——— Recipe collection grid ——— */

.recipe-collection {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3.5rem, 6vw, 5rem);
  background: var(--white);
}

.recipe-collection__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.recipe-collection__intro {
  margin-bottom: 2rem;
}

.recipe-collection__title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.recipe-collection__sparkle {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.recipe-collection__title {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text);
}

.recipe-collection__rule-wrap {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 0.55rem;
  min-width: 2.5rem;
}

.recipe-collection__rule-heart {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.recipe-collection__rule {
  flex: 1 1 auto;
  height: 2px;
  min-width: 2rem;
  background: var(--accent);
}

.recipe-collection__sub {
  margin: 0.65rem 0 0 2.3rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

.recipe-collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem 1.5rem;
  margin-bottom: 2rem;
}

.recipe-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 3px dashed #2c2c2c;
  border-radius: 1.15rem;
  padding: 3px;
  color: inherit;
  box-shadow: 0 0 0 transparent;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.25s ease;
}

.recipe-card__media {
  display: flex;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: none;
  border-radius: calc(1.15rem - 6px) calc(1.15rem - 6px) 0 0;
  border-bottom: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1);
  transform-origin: center;
  background: var(--cream);
}

.recipe-card__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.img-placeholder--striped {
  background:
    repeating-linear-gradient(
      -45deg,
      var(--white),
      var(--white) 12px,
      var(--accent-soft) 12px,
      var(--accent-soft) 24px
    );
}

.recipe-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 1rem 1rem 1.15rem;
  background: var(--white);
  border-radius: 0 0 calc(1.15rem - 6px) calc(1.15rem - 6px);
}

.recipe-card__title {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
  color: var(--text);
}

.recipe-card__divider {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  color: var(--accent);
}

.recipe-card__wave {
  width: 72px;
  height: 12px;
  flex: 0 0 auto;
}

.recipe-card__heart {
  width: 16px;
  height: 16px;
  object-fit: contain;
  transform: rotate(12deg);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.recipe-card__meta {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.recipe-card:hover,
.recipe-card:focus-visible {
  transform: translateY(-6px);
  border-color: #2c2c2c;
  box-shadow: 0 10px 24px rgba(44, 44, 44, 0.1);
}

.recipe-card:hover .recipe-card__media,
.recipe-card:focus-visible .recipe-card__media {
  transform: scale(1.04);
}

.recipe-card:hover .recipe-card__heart,
.recipe-card:focus-visible .recipe-card__heart {
  transform: rotate(12deg) scale(1.25);
}

.recipe-collection__cta-row {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.recipe-collection__cta {
  min-width: 0;
  padding: 0.9rem 1.5rem;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.recipe-collection__cta:hover,
.recipe-collection__cta:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text);
  transform: none;
  box-shadow: none;
}

.recipe-collection__cta-sparkle {
  position: absolute;
  top: 50%;
  right: -2.1rem;
  width: 30px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
  transform: translateY(-50%);
}

@media (prefers-reduced-motion: reduce) {
  .recipe-card,
  .recipe-card__media,
  .recipe-card__heart {
    transition: none;
  }

  .recipe-card:hover,
  .recipe-card:focus-visible {
    transform: none;
    border-color: #2c2c2c;
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.08);
  }

  .recipe-card:hover .recipe-card__media,
  .recipe-card:focus-visible .recipe-card__media {
    transform: none;
  }

  .recipe-card:hover .recipe-card__heart,
  .recipe-card:focus-visible .recipe-card__heart {
    transform: rotate(12deg);
  }
}

/* ——— About / Meet Anne ——— */

.about-band {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
  background: var(--cream);
}

.about-band__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.about-band__about {
  padding-top: 0.35rem;
}

.about-band__title-block {
  position: relative;
  display: inline-block;
  margin-bottom: 1.35rem;
  padding-top: 1.1rem;
  padding-right: 1.5rem;
}

.about-band__title {
  margin: 0;
  font-family: var(--font-display-bold);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.15;
  color: var(--text);
}

.about-band__title-accent {
  position: relative;
  display: inline-block;
}

.about-band__title-underline {
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 10px;
  object-fit: fill;
  pointer-events: none;
}

.about-band__doodle {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.about-band__doodle--about-heart {
  top: 0;
  left: 0.15rem;
  width: 22px;
  height: 22px;
}

.about-band__doodle--about-sparkle {
  top: 0.1rem;
  right: 0;
  width: 26px;
  height: 26px;
}

.about-band__text {
  margin-bottom: 1rem;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.about-band__cta-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 1rem;
}

.about-band__cta {
  min-width: 0;
  padding: 0.9rem 1.6rem;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.about-band__cta:hover,
.about-band__cta:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text);
  transform: none;
  box-shadow: none;
}

.about-band__cta-sparkle {
  position: absolute;
  top: -0.85rem;
  right: -1.85rem;
  width: 30px;
  height: 30px;
  object-fit: contain;
  pointer-events: none;
}

.about-band__meet-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.about-band__title--meet {
  text-align: center;
}

.about-band__doodle--meet-sparkle {
  position: static;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.about-band__doodle--meet-heart {
  position: static;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.about-band__card {
  padding: clamp(1.35rem, 2.5vw, 1.85rem);
  background: var(--accent-soft);
  border: 3px dashed #2c2c2c;
  border-radius: 1.25rem;
}

.about-band__card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.1rem, 2.5vw, 1.75rem);
  align-items: start;
  margin-bottom: 1.5rem;
}

.about-band__photo-wrap {
  position: relative;
  flex: 0 0 auto;
  width: clamp(8.5rem, 16vw, 11rem);
}

.about-band__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  object-position: center top;
  background: var(--white);
  border: 3px dashed #2c2c2c;
  border-radius: 50%;
}

.about-band__doodle--photo-sparkle {
  top: -0.35rem;
  left: -0.45rem;
  width: 28px;
  height: 28px;
}

.about-band__doodle--photo-heart {
  right: -0.2rem;
  bottom: 0.15rem;
  width: 22px;
  height: 22px;
  transform: rotate(12deg);
}

.about-band__profile-copy {
  min-width: 0;
  padding-top: 0.35rem;
}

.about-band__name {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--text);
}

.about-band__role {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.2rem 0 0;
  font-family: var(--font-script);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent-dark);
}

.about-band__role-heart {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.about-band__role-underline {
  display: block;
  width: 8.5rem;
  height: 2px;
  margin: 0.15rem 0 0.85rem;
  background: var(--accent);
  border-radius: 999px;
}

.about-band__note {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text);
}

.about-band__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(240, 197, 61, 0.45);
}

.about-band__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.65rem;
  text-align: center;
}

.about-band__feature + .about-band__feature {
  border-left: 1px solid rgba(240, 197, 61, 0.45);
}

.about-band__feature img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.about-band__feature span {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

/* ——— FAQ ——— */

.faq {
  width: 100%;
  background: var(--white);
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
}

.faq__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 var(--page-gutter);
}

.faq__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.faq__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.faq__ornament-heart {
  width: 64px;
  height: auto;
  object-fit: contain;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.faq__subtitle {
  max-width: 36rem;
  margin-inline: auto;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: start;
}

.faq__item {
  background: var(--accent-soft);
  border: 3px dashed #2c2c2c;
  border-radius: 1.15rem;
  padding: 3px;
  overflow: hidden;
  height: auto;
  align-self: start;
  transition: background-color 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.faq__item:hover {
  background: #fce9b8;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 44, 44, 0.06);
}

.faq__summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  border-radius: calc(1.15rem - 6px);
  background: var(--accent-soft);
}

.faq__item:hover .faq__summary {
  background: #fce9b8;
}

.faq__item[open] .faq__summary {
  border-radius: calc(1.15rem - 6px) calc(1.15rem - 6px) 0 0;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 auto;
}

.faq__question {
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.faq__toggle-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__toggle-img {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 1.25rem 1.1rem 4.5rem;
  background: var(--accent-soft);
  border-radius: 0 0 calc(1.15rem - 6px) calc(1.15rem - 6px);
}

.faq__item:hover .faq__answer {
  background: #fce9b8;
}

.faq__answer p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.faq__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.25rem;
}

.faq__divider-img {
  display: block;
  width: min(22rem, 70vw);
  height: auto;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .faq__item,
  .faq__toggle-img {
    transition: none;
  }

  .faq__item:hover {
    transform: none;
  }

  .faq__item[open] .faq__toggle-img {
    transform: none;
  }
}

/* ——— Footer ——— */

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

.site-footer {
  width: 100%;
  margin-top: 0;
  padding: clamp(2.75rem, 5vw, 4rem) 0 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
}

.site-footer__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0 var(--page-gutter);
}

.site-footer__brand {
  max-width: 28rem;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__logo-img {
  display: block;
  width: auto;
  height: 64px;
  max-width: min(260px, 70vw);
  object-fit: contain;
}

.site-footer__tagline {
  margin-top: 0.85rem;
  margin-bottom: 1.1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.site-footer__social a {
  display: flex;
  color: var(--accent-dark);
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__social a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.site-footer__social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--accent-soft);
}

.site-footer__col-title {
  position: relative;
  margin-bottom: 1.1rem;
  padding-top: 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.site-footer__col-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2.25rem;
  height: 3px;
  background: var(--accent);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
}

.site-footer__links li {
  border-bottom: 1px solid var(--accent-soft);
}

.site-footer__links a {
  display: block;
  padding: 0.7rem 0;
  font-size: 0.9rem;
  color: var(--text);
  transition: color 0.2s ease;
}

.site-footer__links a:hover {
  color: var(--accent-dark);
}

.site-footer__newsletter-text {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.site-footer__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.site-footer__input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--accent);
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__input::placeholder {
  color: var(--text-muted);
}

.site-footer__input:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(255, 217, 90, 0.35);
}

.site-footer__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 0 1.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.site-footer__legal-copy p + p {
  margin-top: 0.4rem;
}

.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.site-footer__legal-links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.site-footer__legal-links a:hover,
.site-footer__top:hover {
  color: var(--text);
}

.site-footer__top {
  flex: 0 0 auto;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.kit-form-status {
  margin: 0.65rem 0 0;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-muted);
}

.kit-form-status--success {
  margin: 0;
  padding: 0.85rem 0;
  color: var(--text);
}

.kit-form-status--success span {
  color: var(--accent-dark);
}

.kit-form-status--error {
  color: var(--text);
  font-weight: 600;
  border-left: 3px solid var(--accent);
  padding-left: 0.65rem;
}

/* ——— Contact ——— */

.contact-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
  background: var(--white);
}

.contact-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.contact-hero__copy {
  position: relative;
  min-width: 0;
  padding-top: 0.25rem;
}

.contact-hero__title-block {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-top: 2.1rem;
  padding-left: 0.15rem;
  padding-right: 1.25rem;
}

.contact-hero__doodle {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.contact-hero__doodle--heart {
  top: -0.35rem;
  left: -0.15rem;
  width: 58px;
  height: 58px;
  transform: rotate(-14deg);
}

.contact-hero__title {
  margin: 0;
  font-family: var(--font-display-bold);
  font-size: clamp(2.35rem, 4.5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.contact-hero__title-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 0.85rem;
  padding-right: 1.5rem;
}

.contact-hero__title-underline {
  position: absolute;
  left: 0.65rem;
  bottom: -0.55rem;
  width: 145%;
  height: auto;
  max-height: 2.35rem;
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
}

.contact-hero__text {
  margin: 0 0 1rem;
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.contact-hero__heart-end {
  width: 44px;
  height: 44px;
  margin-top: 0.45rem;
  object-fit: contain;
}

.contact-form-card {
  position: relative;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  background: var(--accent-soft);
  border: 3px dashed #2c2c2c;
  border-radius: 1.15rem;
}

.contact-form-card__header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 1.35rem;
  padding-top: 0.65rem;
  padding-left: 2.1rem;
}

.contact-form-card__sparkle {
  position: absolute;
  top: -0.15rem;
  left: -10px;
  width: 44px;
  height: 44px;
  object-fit: contain;
  pointer-events: none;
}

.contact-form-card__title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text);
}

.contact-form-card__sub {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-form__field {
  min-width: 0;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #9a9a9a;
}

.contact-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%232C2C2C' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form__select:has(option[value=""]:checked) {
  color: #9a9a9a;
}

.contact-form__select option {
  color: var(--text);
}

.contact-form__textarea {
  min-height: 8.5rem;
  resize: vertical;
  line-height: 1.55;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px rgba(255, 217, 90, 0.35);
}

.contact-form__actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.35rem;
  padding-right: 2.25rem;
}

.contact-form__submit {
  min-width: 0;
  padding: 0.95rem 1.7rem;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.contact-form__submit-sparkle {
  position: absolute;
  top: -0.85rem;
  right: -0.85rem;
  width: 44px;
  height: 44px;
  object-fit: contain;
  pointer-events: none;
}

.contact-reach {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.75rem);
  background: #fcf6ed;
}

.contact-reach__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.contact-reach__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.55rem;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
}

.contact-reach__sparkle {
  width: 44px;
  height: 44px;
  margin-top: -0.85rem;
  object-fit: contain;
}

.contact-reach__heart {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.contact-reach__title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.contact-reach__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: start;
}

.contact-reach__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.5rem clamp(1rem, 2.5vw, 2rem);
  text-align: center;
}

.contact-reach__item + .contact-reach__item {
  border-left: 3px dashed #2c2c2c;
}

.contact-reach__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  margin-bottom: 0.35rem;
  color: var(--accent-dark);
  background: #feedc7;
  border-radius: 50%;
}

.contact-reach__icon svg {
  width: 44px;
  height: 44px;
}

.contact-reach__icon--img img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.contact-reach__label {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
}

.contact-reach__link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  word-break: break-word;
}

.contact-reach__link:hover,
.contact-reach__link:focus-visible {
  color: var(--text-muted);
}

.contact-reach__meta {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.contact-reach__blurb {
  margin: 0.15rem 0 0;
  max-width: 18rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.contact-reach__blurb a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-reach__blurb a:hover {
  color: var(--text-muted);
}

/* ——— Disclaimer ——— */

.disclaimer-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 4.75rem);
  background: var(--white);
}

.disclaimer-page__inner {
  width: 100%;
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.disclaimer-page__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  text-align: center;
}

.disclaimer-page__ornament {
  width: 88px;
  height: 88px;
  margin-bottom: 0.35rem;
  object-fit: contain;
  transform: rotate(-12deg);
}

.disclaimer-page__title {
  margin: 0 0 1rem;
  font-family: var(--font-display-bold);
  font-size: clamp(2.35rem, 4.5vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.disclaimer-page__title-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
  padding-right: 1.35rem;
  overflow: visible;
}

.disclaimer-page__title-underline {
  position: absolute;
  left: auto;
  right: -0.55rem;
  bottom: -0.35rem;
  width: 105%;
  height: auto;
  max-height: 2.1rem;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
}

.disclaimer-page__lead {
  margin: 0;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.disclaimer-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.disclaimer-item {
  background: #fcf6ed;
  border: 2px solid var(--accent);
  border-radius: 1rem;
  overflow: hidden;
}

.disclaimer-item__summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.15rem;
  cursor: pointer;
  list-style: none;
}

.disclaimer-item__summary::-webkit-details-marker {
  display: none;
}

.disclaimer-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  color: #e8b820;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  box-sizing: border-box;
}

.disclaimer-item__icon svg {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  overflow: visible;
}

.disclaimer-item__icon--img img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.disclaimer-item__title {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--text);
}

.disclaimer-item__toggle {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

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

.disclaimer-item__body {
  padding: 0 1.15rem 1.2rem 5rem;
}

.disclaimer-item__body p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.disclaimer-item__body p:last-child {
  margin-bottom: 0;
}

.disclaimer-item__list {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
  list-style: disc;
}

.disclaimer-item__list li {
  margin-bottom: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.disclaimer-item__list li:last-child {
  margin-bottom: 0;
}

.disclaimer-item__body a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.disclaimer-item__body a:hover {
  color: var(--text-muted);
}

.disclaimer-cta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 2rem);
  background: var(--white);
  border: 3px dashed #2c2c2c;
  border-radius: 1.15rem;
}

.disclaimer-cta__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.disclaimer-cta__mail {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.disclaimer-cta__copy {
  min-width: 0;
}

.disclaimer-cta__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.disclaimer-cta__text {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.disclaimer-cta__btn {
  display: inline-flex;
  padding: 0.9rem 1.6rem;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.disclaimer-cta__btn:hover,
.disclaimer-cta__btn:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text);
}

/* ——— About page ——— */

.about-page {
  width: 100%;
  background: var(--cream);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.about-photo-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 16rem;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 1rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-photo-placeholder--logo {
  aspect-ratio: 1 / 1;
  min-height: 0;
  background: var(--cream);
  border-radius: 1.25rem;
}

.about-photo-placeholder--logo .about-photo {
  object-fit: cover;
  border-radius: 1.25rem;
}

.about-hero {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: var(--cream);
}

.about-hero__copy {
  position: relative;
  min-width: 0;
}

.about-hero__title-block {
  position: relative;
  display: inline-block;
  margin-bottom: 1.35rem;
  padding-top: 1.75rem;
  padding-right: 1.5rem;
}

.about-hero__doodle {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.about-hero__doodle--heart {
  top: -0.15rem;
  left: -0.35rem;
  width: 42px;
  height: 42px;
  transform: rotate(-12deg);
}

.about-hero__doodle--sparkle {
  top: 0.35rem;
  right: -0.25rem;
  width: 28px;
  height: 28px;
}

.about-hero__title {
  margin: 0;
  font-family: var(--font-display-bold);
  font-size: clamp(2.2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.about-hero__title-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.about-hero__title-underline {
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: auto;
  max-height: 1.75rem;
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
}

.about-hero__text {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.about-hero__cta-row {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.about-hero__cta {
  min-width: 0;
  padding: 0.9rem 1.6rem;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.about-hero__cta:hover,
.about-hero__cta:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text);
}

.about-hero__cta-sparkle {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.about-hero__cta-sparkle--left {
  width: 26px;
  height: 26px;
}

.about-favorites {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(2.5rem, 5vw, 3.75rem);
  overflow: hidden;
}

.about-favorites__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.about-favorites__sparkle {
  position: absolute;
  top: 0.25rem;
  right: var(--page-gutter);
  width: 32px;
  height: 32px;
  object-fit: contain;
  pointer-events: none;
  z-index: 1;
}

.about-favorites__bg-heart {
  position: absolute;
  right: clamp(1rem, 4vw, 3rem);
  bottom: 0.5rem;
  width: clamp(7rem, 14vw, 11rem);
  height: auto;
  opacity: 0.18;
  object-fit: contain;
  pointer-events: none;
  z-index: 0;
}

.about-favorites__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.about-favorites__title-block {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  padding-top: 0.85rem;
  padding-right: 1.75rem;
}

.about-favorites__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.about-favorites__title-script {
  font-family: var(--font-script);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.about-favorites__title-main {
  position: relative;
  display: inline-block;
  padding-bottom: 0.7rem;
  font-family: var(--font-display-bold);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

.about-favorites__title-underline {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: auto;
  max-height: 1.6rem;
  object-fit: contain;
  object-position: left center;
  pointer-events: none;
}

.about-favorites__title-heart {
  position: absolute;
  width: 34px;
  height: 34px;
  object-fit: contain;
  pointer-events: none;
}

.about-favorites__title-heart--left {
  top: -0.1rem;
  left: -0.55rem;
  transform: rotate(-12deg);
}

.about-favorites__title-heart--right {
  top: 2.6rem;
  right: -0.15rem;
  width: 30px;
  height: 30px;
  transform: rotate(10deg);
}

.about-favorites__polaroid {
  position: relative;
  width: min(100%, 22rem);
  margin: 0 auto 1.5rem;
  padding: 0.85rem 0.85rem 1.75rem;
  background: var(--white);
  border-radius: 0.85rem;
  box-shadow: 0 10px 28px rgba(44, 44, 44, 0.08);
  transform: rotate(-2deg);
}

.about-favorites__tape {
  position: absolute;
  top: -0.55rem;
  left: 50%;
  z-index: 2;
  width: 4.5rem;
  height: 1.35rem;
  background: rgba(255, 217, 90, 0.78);
  border-radius: 0.15rem;
  transform: translateX(-50%) rotate(-1deg);
  box-shadow: 0 1px 2px rgba(44, 44, 44, 0.08);
}

.about-favorites__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0.55rem;
}

.about-favorites__polaroid-heart {
  position: absolute;
  left: -0.35rem;
  bottom: 0.35rem;
  width: 38px;
  height: 38px;
  object-fit: contain;
  transform: rotate(-8deg);
  pointer-events: none;
}

.about-favorites__list-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent-dark);
  text-align: center;
}

.about-favorites__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-favorites__chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  min-width: 4.5rem;
  padding: 0.35rem 0.65rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.about-favorites__chip + .about-favorites__chip {
  border-left: 1px solid var(--border);
}

.about-favorites__chip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.about-favorites__chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--accent-dark);
}

.about-favorites__chip-icon svg {
  width: 24px;
  height: 24px;
}

.about-favorites__qa {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

.about-favorites__item {
  background: #faf1d8;
  border: 1px solid #f0e2b0;
  border-radius: 0.95rem;
  overflow: hidden;
}

.about-favorites__summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.75rem 0.9rem;
  padding: 1rem 1.15rem 0.35rem;
  cursor: pointer;
  list-style: none;
}

.about-favorites__summary::-webkit-details-marker {
  display: none;
}

.about-favorites__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--accent);
  font-family: var(--font-display-bold);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.about-favorites__content {
  min-width: 0;
  padding-top: 0.2rem;
}

.about-favorites__question {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.about-favorites__chevron {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.65rem;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.about-favorites__item[open] .about-favorites__chevron {
  transform: rotate(45deg);
  margin-top: 0.65rem;
}

.about-favorites__answer {
  padding: 0.15rem 2.6rem 1.05rem 4rem;
}

.about-favorites__answer p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text);
}

.about-story {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0 clamp(2.5rem, 5vw, 3.75rem);
}

.about-story__copy {
  min-width: 0;
}

/* ——— Blog post page (template + published posts) ——— */

.post-page {
  width: 100%;
  background: var(--white);
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.post-page__layout {
  display: grid;
  /* At full size: 800px article + 40px gap + 400px sidebar (1200 content + gap) */
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  column-gap: 40px;
  row-gap: 2.5rem;
  align-items: start;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* Pin the only two layout children so nested list items can never land in the sidebar column */
.post-page__layout > .post {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
}

.post-page__layout > .post-sidebar {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  /* Stretch with the article so the dashed left border runs full height */
  align-self: stretch;
  height: 100%;
}

.post {
  min-width: 0;
}

.post__header {
  margin-bottom: 1.5rem;
}

.post__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.post__breadcrumb a:hover,
.post__breadcrumb a:focus-visible {
  color: var(--text);
}

.post__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display-bold);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.post__dek {
  margin: 0 0 1rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.post__overview {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
  max-width: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.post__overview strong {
  font-weight: 700;
}

.post__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.15rem;
}

.post__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

.post__stars {
  color: var(--accent-dark);
  letter-spacing: 0.05em;
}

.post__rating-count {
  font-weight: 500;
  color: var(--text-muted);
}

.post__jump {
  padding: 0.75rem 1.2rem;
  background: var(--accent);
  border: 3px dashed #2c2c2c;
  border-radius: 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: background-color 0.2s ease;
}

.post__jump:hover,
.post__jump:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

.post__meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.15rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.post__author {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 600;
  color: var(--text);
}

.post__author-photo {
  width: 2.25rem;
  height: 2.25rem;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  font-size: 0;
}

.post__body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

.post__body p {
  margin: 0 0 1.15rem;
}

.post__lead {
  font-size: 1.05rem;
  line-height: 1.7;
}

.post__body h2 {
  margin: 2rem 0 0.85rem;
  font-family: var(--font-display-bold);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--text);
}

.post__hero {
  display: block;
  width: 100%;
  max-width: min(100%, 32rem);
  margin: 0.5rem auto 1.35rem;
  padding: 0;
  overflow: hidden;
  border-radius: 0.65rem;
  background: var(--cream);
  line-height: 0;
}

.post__hero img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 961px) {
  .post__hero {
    max-width: min(100%, 30rem);
  }
}

.post .faq {
  padding: 2.25rem 0 0.75rem;
  background: transparent;
}

.post .faq__inner {
  max-width: none;
  margin: 0;
  padding: 0;
}

.post__figure {
  display: block;
  width: 100%;
  max-width: min(100%, 28rem);
  margin: 1.75rem auto;
  padding: 0;
  overflow: hidden;
  border-radius: 0.65rem;
  background: var(--cream);
  line-height: 0;
}

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

.post__figure-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
  width: 100%;
  max-width: 100%;
}

.post__figure-row .post__figure {
  margin: 0;
  max-width: none;
  width: 100%;
}

@media (min-width: 700px) {
  .post__figure-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
    align-items: start;
  }
}

@media (min-width: 961px) {
  .post__figure {
    max-width: min(100%, 26rem);
  }

  .post__figure-row .post__figure {
    max-width: none;
  }
}

.post__pin {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.25rem;
  background: #2c2c2c;
  border-radius: 0.75rem;
}

.post__pin-link {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
  text-align: center;
}

.post__pin-logo {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  fill: #e60023;
}

.post__pin-text {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.post__pin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  background: #e60023;
  border: 2px solid #e60023;
  border-radius: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.post__pin-link:hover .post__pin-btn,
.post__pin-link:focus-visible .post__pin-btn {
  background: #c4001a;
  border-color: #c4001a;
  color: var(--white);
}

.post__affiliate-note {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.post__tested-note {
  margin: -0.85rem 0 1.75rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.55;
  color: var(--text);
}

.post__tested-note a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.post__tested-note a:hover,
.post__tested-note a:focus-visible {
  color: var(--text-muted);
}

.post__related {
  margin: 0 0 1.75rem;
  overflow: hidden;
  border-radius: 0.85rem;
  border: 3px dashed #2c2c2c;
  background: var(--white);
}

.post__related-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  border: none;
  text-decoration: none;
  overflow: hidden;
  background: var(--cream);
}

.post__related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post__related-media-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.post__related-body {
  padding: 1.25rem 1.35rem 1.4rem;
  background: var(--accent-soft);
  text-align: center;
}

.post__related-title {
  margin: 0 0 0.75rem !important;
  font-family: var(--font-ui) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1.35 !important;
  color: var(--text) !important;
}

.post__related-title a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.post__related-title a:hover,
.post__related-title a:focus-visible {
  color: var(--text-muted);
}

.post__related-quote {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
}

.post__related-name {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.post__summary {
  margin: 0 0 1.5rem;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.post__summary-title {
  margin: 0 0 0.65rem !important;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem) !important;
}

.post__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.post__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.post__stat-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  margin-bottom: 0.2rem;
}

.post__stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.post__stat-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
}

.post__share {
  margin: 0 0 1.75rem;
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  text-align: center;
}

.post__share-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
}

.post__share-script {
  font-family: var(--font-script);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-dark);
}

.post__share-sparkle,
.post__share-heart {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.post__share-heart--inline {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-left: 0.2rem;
  vertical-align: -0.2rem;
}

.post__share-title {
  margin: 0 0 0.75rem !important;
  font-family: var(--font-display-bold) !important;
  font-size: clamp(1.55rem, 3vw, 2rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
}

.post__share-text {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.post__share-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem 1.5rem;
  list-style: none;
  margin: 1.25rem 0 1.15rem;
  padding: 0;
}

.post__share-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.post__share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #2c2c2c;
  transition: background-color 0.2s ease;
}

.post__share-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: var(--text);
}

.post__share-link:hover .post__share-icon,
.post__share-link:focus-visible .post__share-icon {
  background: var(--accent-dark);
}

.post__share-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.post__share-thanks {
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent-dark);
}

/* ——— Kitchen tools (affiliate) ——— */

.kitchen-tools {
  margin: 0 0 2.5rem;
  padding: 1.5rem 1.25rem 1.35rem;
  border: 3px dashed #2c2c2c;
  border-radius: 0.65rem;
  background: var(--white);
}

.kitchen-tools__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.75rem;
  text-align: left;
}

.kitchen-tools__header-heart {
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  transform: rotate(-8deg);
}

.kitchen-tools__title {
  margin: 0;
  font-family: var(--font-display-bold);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.kitchen-tools__title-mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.kitchen-tools__title-mark::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: 0.08em;
  height: 0.28em;
  background: var(--accent);
  border-radius: 0.1em;
  z-index: -1;
  transform: rotate(-1.2deg);
}

.kitchen-tools__intro {
  margin: 0 0 1.5rem;
  max-width: 38rem;
  text-align: left;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
}

.kitchen-tools__intro strong {
  font-weight: 700;
}

.kitchen-tools__grid {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.kitchen-tools__grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 40rem;
  margin-inline: auto;
}

.kitchen-tools__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  padding: 1rem 0.95rem 1.05rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}

.kitchen-tools__badge {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 1;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.kitchen-tools__badge--need {
  background: var(--accent);
  color: var(--text);
}

.kitchen-tools__badge--recommended {
  background: #dcefdc;
  color: #2f6b3a;
}

.kitchen-tools__badge--optional {
  background: #fde8d4;
  color: #9a5518;
}

.kitchen-tools__media {
  aspect-ratio: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #faf7f2;
  border: 1px solid var(--border);
}

.kitchen-tools__media-label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.kitchen-tools__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kitchen-tools__card-title {
  margin: 0.15rem 0 0;
  font-family: var(--font-display-bold);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

.kitchen-tools__card-text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.kitchen-tools__btn {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid #2c2c2c;
  border-radius: 0.4rem;
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.kitchen-tools__btn:hover,
.kitchen-tools__btn:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

.kitchen-tools__affiliate {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.15rem;
  background: var(--cream);
  border: 2px dashed var(--accent);
  border-radius: 0.65rem;
}

.kitchen-tools__affiliate-heart {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  object-fit: contain;
}

.kitchen-tools__affiliate p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text);
}

.kitchen-tools__affiliate-brand {
  padding: 0.05em 0.2em;
  background: var(--accent);
  border-radius: 0.15em;
  font-weight: 700;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (max-width: 960px) {
  .kitchen-tools__grid,
  .kitchen-tools__grid--three,
  .kitchen-tools__grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 560px) {
  .kitchen-tools__grid,
  .kitchen-tools__grid--three,
  .kitchen-tools__grid--two {
    grid-template-columns: 1fr;
  }
}

.post__jump-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin: 0 0 1.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.post__jump-nav-label {
  font-weight: 700;
  color: var(--text);
}

.post__jump-nav a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.post__jump-nav a:hover,
.post__jump-nav a:focus-visible {
  color: var(--text);
}

/* ——— Dynamic recipe card (blog) — scoped to avoid homepage .recipe-card clash ——— */

.recipe-card[data-recipe-root] {
  margin: 0 0 2rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  /* Reset homepage collection-card chrome */
  display: block;
  overflow: visible;
  box-shadow: none;
  transform: none;
}

.recipe-card[data-recipe-root][hidden] {
  display: none !important;
}

.recipe-card[data-recipe-root]:hover,
.recipe-card[data-recipe-root]:focus-visible {
  transform: none;
  box-shadow: none;
}

.recipe-card__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  margin-bottom: 1.35rem;
}

.recipe-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--accent);
  border-radius: 999px;
  font-family: var(--font-script);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.recipe-card__tag img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.recipe-card[data-recipe-root] .recipe-card__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display-bold);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: none;
  line-height: 1.15;
  color: var(--text);
}

.recipe-card__cost-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.recipe-card__cost-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.recipe-card__description {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}

.recipe-card__photos-note {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.recipe-card__photos-note img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.recipe-card__author {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.recipe-card__author-photo {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
}

.recipe-card__author-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.recipe-card__author-name {
  font-family: var(--font-script);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.recipe-card__header-media {
  position: relative;
  min-width: 0;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  overflow: hidden;
  background: var(--accent-soft);
}

.recipe-card__image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0.85rem;
}

.recipe-card__image[hidden] {
  display: none !important;
}

.recipe-card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
  background: var(--accent-soft);
}

.recipe-card__image-placeholder[hidden] {
  display: none !important;
}

.recipe-card__stats {
  display: grid;
  grid-template-columns: minmax(10rem, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.15rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.recipe-card__servings,
.recipe-card__time {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.recipe-card__stat-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 0.15rem;
}

.recipe-card__stat-copy {
  min-width: 0;
}

.recipe-card__stat-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.recipe-card__stat-value {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.recipe-card__servings-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.recipe-card__servings-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  background: var(--cream);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
}

.recipe-card__servings-btn:hover,
.recipe-card__servings-btn:focus-visible {
  background: var(--accent-soft);
}

.recipe-card__servings-input {
  width: 3.25rem;
  height: 2rem;
  padding: 0 0.35rem;
  border: 1px solid var(--border);
  border-radius: 0.35rem;
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.recipe-card__servings-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
}

.recipe-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.recipe-card__btn {
  width: 100%;
  padding: 0.95rem 1.25rem;
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.recipe-card__btn--primary {
  background: var(--accent);
  border: 2px solid #2c2c2c;
  color: var(--text);
}

.recipe-card__btn--primary:hover,
.recipe-card__btn--primary:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

.recipe-card__btn--outline {
  background: var(--white);
  border: 2px solid #2c2c2c;
  color: var(--text);
}

.recipe-card__btn--outline:hover,
.recipe-card__btn--outline:focus-visible {
  background: var(--cream);
  color: var(--text);
}

.recipe-card__share-status {
  grid-column: 1 / -1;
  margin: 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

body.recipe-print-modal-open {
  overflow: hidden;
}

.recipe-print-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.recipe-print-modal[hidden] {
  display: none;
}

.recipe-print-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.45);
}

.recipe-print-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--cream);
  border: 2px solid #2c2c2c;
  border-radius: 0.65rem;
  box-shadow: 0 12px 40px rgba(44, 44, 44, 0.18);
}

.recipe-print-modal__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.recipe-print-modal__close:hover,
.recipe-print-modal__close:focus-visible {
  color: var(--text-muted);
}

.recipe-print-modal__title {
  margin: 0 0 0.5rem;
  padding-right: 1.5rem;
  font-family: var(--font-display-bold);
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.recipe-print-modal__text {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.recipe-print-modal__form {
  display: grid;
  gap: 0.65rem;
}

.recipe-print-modal__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.45rem;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.recipe-print-modal__input:focus {
  outline: none;
  border-color: var(--accent-dark);
}

.recipe-print-modal__input[aria-invalid="true"] {
  border-color: #b85c5c;
}

.recipe-print-modal__error {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #b85c5c;
}

.recipe-print-modal__opt-in {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.15rem 0 0.1rem;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-muted);
  cursor: pointer;
}

.recipe-print-modal__opt-in input {
  margin-top: 0.15rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: var(--accent-dark);
  cursor: pointer;
}

.recipe-print-modal__submit {
  width: 100%;
}

@media (max-width: 480px) {
  .recipe-print-modal {
    padding: 0.85rem;
    align-items: flex-end;
  }

  .recipe-print-modal__panel {
    width: 100%;
    padding: 1.5rem 1.15rem 1.25rem;
    border-radius: 0.75rem 0.75rem 0.45rem 0.45rem;
  }
}

/* ——— Favorite hearts + sign-in ——— */

body.favorites-signin-open {
  overflow: hidden;
}

.recipe-card-wrap {
  position: relative;
  min-width: 0;
}

.recipe-card-wrap .recipe-card {
  height: 100%;
}

.collection-card__media-wrap {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.collection-card--archive .collection-card__media-wrap,
.collection-card--mini .collection-card__media-wrap {
  flex: 0 0 auto;
}

.recipe-related__grid > li {
  position: relative;
}

.favorite-heart {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  line-height: 0;
  cursor: pointer;
  overflow: visible;
}

.favorite-heart::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #2c2c2c;
  box-shadow: 0 2px 8px rgba(44, 44, 44, 0.12);
  transition:
    transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1),
    opacity 0.28s ease;
}

.favorite-heart:hover,
.favorite-heart:focus-visible {
  outline: none;
}

.favorite-heart:hover:not(.is-favorited)::before,
.favorite-heart:focus-visible:not(.is-favorited)::before {
  transform: scale(1.08);
}

.favorite-heart.is-favorited::before {
  transform: scale(0.35);
  opacity: 0;
}

.favorite-heart:disabled {
  opacity: 0.7;
  cursor: wait;
}

.favorite-heart__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.05rem;
  height: 1.05rem;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    opacity 0.22s ease,
    transform 0.38s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.favorite-heart__icon--on {
  width: 2.35rem;
  height: 2.35rem;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
}

.favorite-heart.is-favorited .favorite-heart__icon--off {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.55);
}

.favorite-heart.is-favorited .favorite-heart__icon--on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .favorite-heart::before,
  .favorite-heart__icon {
    transition: opacity 0.15s ease;
  }

  .favorite-heart.is-favorited::before {
    transform: none;
  }

  .favorite-heart__icon--on,
  .favorite-heart.is-favorited .favorite-heart__icon--off,
  .favorite-heart.is-favorited .favorite-heart__icon--on {
    transform: translate(-50%, -50%);
  }
}

.post__title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.post__title-row .post__title {
  flex: 1 1 auto;
  min-width: 0;
}

.favorite-heart--page {
  position: relative;
  top: 0.2rem;
  right: auto;
  flex: 0 0 auto;
}

.favorite-heart-error {
  position: absolute;
  top: 2.55rem;
  right: 0.5rem;
  z-index: 4;
  margin: 0;
  max-width: 14rem;
  padding: 0.35rem 0.5rem;
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
}

.favorites-signin {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.favorites-signin[hidden] {
  display: none;
}

.favorites-signin__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.45);
}

.favorites-signin__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--cream);
  border: 2px solid #2c2c2c;
  border-radius: 0.65rem;
  box-shadow: 0 12px 40px rgba(44, 44, 44, 0.18);
}

.favorites-signin__close {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.favorites-signin__close:hover,
.favorites-signin__close:focus-visible {
  color: var(--text-muted);
}

.favorites-signin__title {
  margin: 0 0 0.5rem;
  padding-right: 1.5rem;
  font-family: var(--font-display-bold);
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.favorites-signin__text {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.favorites-signin__form {
  display: grid;
  gap: 0.65rem;
}

.favorites-signin__input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.45rem;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.favorites-signin__input:focus {
  outline: none;
  border-color: var(--accent-dark);
}

.favorites-signin__input[aria-invalid="true"] {
  border-color: #b85c5c;
}

.favorites-signin__error {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 0.65rem;
}

.favorites-signin__submit {
  width: 100%;
}

.favorites-page {
  padding: clamp(2rem, 5vw, 3.5rem) var(--page-gutter) 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.favorites-page__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.favorites-page__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display-bold);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.favorites-page__lede {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
}

.favorites-fab {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.1rem, env(safe-area-inset-bottom, 0px));
  z-index: 150;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0;
  border: 2px solid #2c2c2c;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  line-height: 0;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(44, 44, 44, 0.18);
  transform: translate3d(0, calc(100% + 2rem), 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.favorites-fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  animation: favorites-fab-arrive 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.favorites-fab__icon {
  display: block;
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
}

.favorites-fab:hover,
.favorites-fab:focus-visible {
  background: var(--accent-dark);
  outline: none;
}

@keyframes favorites-fab-arrive {
  0% {
    transform: translate3d(0, calc(100% + 2rem), 0) rotate(0deg);
    opacity: 0;
  }
  58% {
    transform: translate3d(0, -5px, 0) rotate(0deg);
    opacity: 1;
  }
  68% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }
  78% {
    transform: translate3d(2px, 0, 0) rotate(7deg);
  }
  88% {
    transform: translate3d(-1px, 0, 0) rotate(-4deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .favorites-fab.is-visible {
    transform: none;
    animation: none;
    transition: opacity 0.2s ease;
  }
}

@media (max-width: 640px) {
  .favorites-fab {
    top: calc(
      var(--nav-offset, calc(var(--announce-height) + var(--header-height))) +
        0.45rem
    );
    right: max(0.7rem, env(safe-area-inset-right, 0px));
    bottom: auto;
    transform: translate3d(calc(100% + 2rem), 0, 0);
    transition: top 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
  }

  .favorites-fab.is-visible {
    transform: none;
    animation: favorites-fab-arrive-mobile 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  body:has(.site-header.is-hidden) .favorites-fab {
    top: max(0.5rem, env(safe-area-inset-top, 0px));
  }

  body.is-nav-open .favorites-fab,
  body.is-search-open .favorites-fab {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes favorites-fab-arrive-mobile {
  0% {
    transform: translate3d(calc(100% + 1.5rem), 0, 0);
    opacity: 0;
  }
  100% {
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 640px) and (prefers-reduced-motion: reduce) {
  .favorites-fab.is-visible {
    animation: none;
  }
}

.favorites-page__signout {
  flex: 0 0 auto;
}

.favorites-page__note {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

@media (max-width: 480px) {
  .favorites-signin {
    padding: 0.85rem;
    align-items: flex-end;
  }

  .favorites-signin__panel {
    width: 100%;
    padding: 1.5rem 1.15rem 1.25rem;
    border-radius: 0.75rem 0.75rem 0.45rem 0.45rem;
  }
}

.recipe-card[data-recipe-root] .recipe-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(14rem, 0.75fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  position: static;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.recipe-card__section-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.recipe-card__section-title img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.recipe-card__group-title {
  margin: 1.15rem 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border-bottom: 2px dashed var(--accent);
  padding-bottom: 0.25rem;
}

.recipe-card__ingredients {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
}

.recipe-card__ingredient {
  margin: 0 0 0.45rem;
}

.recipe-card__ingredient-label {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
}

.recipe-card__checkbox {
  margin-top: 0.25rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--accent-dark);
  flex-shrink: 0;
}

.recipe-card__ingredient-text {
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
}

.recipe-card__qty {
  font-weight: 700;
}

.recipe-card__ing-cost {
  color: var(--text-muted);
  font-size: 0.88em;
}

.recipe-card__ing-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--accent-dark);
  text-underline-offset: 0.15em;
}

.recipe-card__ing-link:hover,
.recipe-card__ing-link:focus-visible {
  color: var(--text);
  text-decoration-color: var(--text);
}

.recipe-card__ingredient.is-checked .recipe-card__ingredient-text {
  text-decoration: line-through;
  color: var(--text-muted);
}

.recipe-card__ingredient.is-checked .recipe-card__ing-link {
  color: var(--text-muted);
  text-decoration-color: var(--text-muted);
}

.recipe-card__steps {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.recipe-card__steps li {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.recipe-card__aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.recipe-card__aside-card {
  padding: 1rem 1.05rem;
  background: var(--accent-soft);
  border-radius: 0.85rem;
}

.recipe-card__aside-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.45rem;
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.recipe-card__aside-title img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.recipe-card__aside-text {
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.recipe-card__mini-share {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.65rem 0.35rem;
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  overflow: visible;
}

.recipe-card__mini-share li {
  flex: 1 1 auto;
  min-width: 3.75rem;
}

.recipe-card__mini-share button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem;
  width: 100%;
  min-height: 4.25rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text);
}

.recipe-card__mini-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #2c2c2c;
  line-height: 1;
}

.recipe-card__mini-share-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: var(--text);
}

.recipe-card__mini-share button span:last-child {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 1.2;
}

.recipe-card__mini-share button:hover .recipe-card__mini-share-icon,
.recipe-card__mini-share button:focus-visible .recipe-card__mini-share-icon {
  background: var(--accent-dark);
}

/* ——— Recipe instructions (below card) ——— */

.recipe-instructions {
  margin: 0 0 2.5rem;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.15rem, 3vw, 1.75rem);
  background: var(--cream);
  border-radius: 1rem;
}

.recipe-instructions[hidden] {
  display: none !important;
}

.recipe-instructions__header {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.recipe-instructions__title {
  margin: 0;
  font-family: var(--font-display-bold);
  font-size: clamp(1.85rem, 3.5vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
}

.recipe-instructions__title-icon {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  transform: translateY(-0.1rem) rotate(-6deg);
}

.recipe-instructions__groups {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
}

.recipe-instructions__group-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.7rem 1rem;
  background: var(--accent-soft);
  border-radius: 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.recipe-instructions__group-icon {
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  object-fit: contain;
}

.recipe-instructions__steps {
  list-style: none;
  margin: 0;
  padding: 0 0 0 0.35rem;
}

.recipe-instructions__step {
  position: relative;
  display: grid;
  grid-template-columns: 1.75rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 1.15rem;
}

.recipe-instructions__step:last-child {
  padding-bottom: 0;
}

.recipe-instructions__step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 1.75rem;
  left: 0.82rem;
  bottom: 0.1rem;
  width: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.recipe-instructions__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.recipe-instructions__body {
  min-width: 0;
}

.recipe-instructions__text {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

.recipe-instructions__photo {
  display: block;
  width: 100%;
  max-width: 22rem;
  margin: 0.75rem 0 0;
  padding: 0;
  overflow: hidden;
  border-radius: 0.65rem;
  background: var(--white);
  line-height: 0;
}

.recipe-instructions__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.recipe-instructions__cost {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: min(100%, 26rem);
  margin: 1.75rem 0 0;
  padding: 0.95rem 1.1rem;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
  border-radius: 0.65rem;
  color: var(--text);
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.recipe-instructions__cost:hover,
.recipe-instructions__cost:focus-visible {
  background: #fce9b8;
  transform: translateY(-2px);
}

.recipe-instructions__cost-icon {
  width: 1.85rem;
  height: 1.85rem;
  flex-shrink: 0;
  object-fit: contain;
}

.recipe-instructions__cost-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
  flex: 1;
}

.recipe-instructions__cost-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.recipe-instructions__cost-link {
  font-size: 0.88rem;
  line-height: 1.35;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  color: var(--text);
}

.recipe-instructions__cost-chevron {
  flex-shrink: 0;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
  color: var(--accent-dark);
}

.recipe-instructions__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem 0.85rem;
  margin-top: 1.75rem;
  padding: 0.85rem 1.15rem;
  background: var(--accent-soft);
  border-radius: 0.65rem;
}

.recipe-instructions__footer-heart {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.recipe-instructions__footer-script {
  margin: 0;
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-dark);
}

.recipe-instructions__footer-tagline {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 640px) {
  .recipe-instructions__cost {
    width: 100%;
    margin-left: 0;
  }

  .recipe-instructions__footer {
    flex-direction: column;
    text-align: center;
    gap: 0.35rem;
  }

  .recipe-instructions__footer-tagline {
    order: 3;
  }
}

/* ——— Recipe notes ——— */

.recipe-notes {
  margin: 0 0 2.5rem;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.15rem, 3vw, 1.65rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.recipe-notes[hidden] {
  display: none !important;
}

.recipe-notes__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.recipe-notes__heading {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.recipe-notes__heart {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
  transform: rotate(-8deg);
}

.recipe-notes__title {
  margin: 0;
  font-family: var(--font-display-bold);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text);
}

.recipe-notes__title::after {
  content: "";
  display: block;
  width: 3.25rem;
  height: 4px;
  margin-top: 0.35rem;
  background: var(--accent);
  border-radius: 999px;
}

.recipe-notes__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0.15rem 0.25rem 0 0;
  color: var(--accent-dark);
}

.recipe-notes__aside-script {
  font-family: var(--font-script);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-dark);
  text-align: center;
  white-space: nowrap;
}

.recipe-notes__aside-arrow {
  display: block;
  width: 2.75rem;
  height: 1.5rem;
  margin: 0.15rem auto 0;
  transform: rotate(-8deg);
}

.recipe-notes__list {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.recipe-notes__item {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding: 1.15rem 0;
  border-top: 1px solid var(--border);
}

.recipe-notes__item:last-child {
  padding-bottom: 0.25rem;
}

.recipe-notes__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--accent-soft);
}

.recipe-notes__icon {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
}

.recipe-notes__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.45rem;
  align-items: start;
}

.recipe-notes__stars {
  margin-top: 0.15rem;
  font-family: var(--font-script);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--accent-dark);
}

.recipe-notes__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

.recipe-notes__text strong {
  font-weight: 700;
}

.recipe-notes__text a {
  font-weight: 700;
  color: var(--text);
  background: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  padding: 0.05em 0.2em;
  border-radius: 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.recipe-notes__text a:hover,
.recipe-notes__text a:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

@media (max-width: 640px) {
  .recipe-notes__header {
    flex-wrap: wrap;
  }

  .recipe-notes__aside {
    margin-left: auto;
  }

  .recipe-notes__item {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 0.7rem;
  }

  .recipe-notes__icon-wrap {
    width: 2.75rem;
    height: 2.75rem;
  }

  .recipe-notes__icon {
    width: 1.45rem;
    height: 1.45rem;
  }
}

/* ——— Email this recipe banner ——— */

.recipe-email {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) auto minmax(0, 1fr);
  gap: 1.25rem 1.5rem;
  align-items: center;
  margin: 0 0 2.5rem;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 1.85rem);
  overflow: hidden;
  background: var(--cream);
  border: 2px solid var(--accent);
  border-radius: 1.15rem;
  color: var(--text);
}

.recipe-email__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
}

.recipe-email__deco-whisk {
  position: absolute;
  top: 0.65rem;
  right: 1.25rem;
  width: 3.25rem;
  height: 3.25rem;
  object-fit: contain;
  transform: rotate(18deg);
}

.recipe-email__deco-heart {
  position: absolute;
  right: 4.5rem;
  top: 2.75rem;
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
  transform: rotate(-12deg);
}

.recipe-email__copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-width: 0;
}

.recipe-email__mail {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 0.15rem;
}

.recipe-email__copy-text {
  min-width: 0;
}

.recipe-email__title {
  margin: 0 0 0.45rem;
  line-height: 1.05;
}

.recipe-email__title-serif {
  display: block;
  font-family: var(--font-display-bold);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.recipe-email__title-script {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-script);
  font-size: clamp(2rem, 3.6vw, 2.55rem);
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1;
}

.recipe-email__title-heart {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  transform: translateY(0.1rem) rotate(8deg);
}

.recipe-email__text {
  margin: 0;
  max-width: 26rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text);
}

.recipe-email__text strong {
  font-weight: 700;
}

.recipe-email__divider {
  position: relative;
  z-index: 1;
  width: 2px;
  align-self: stretch;
  min-height: 5rem;
  background: var(--accent);
  border-radius: 999px;
}

.recipe-email__form {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.recipe-email__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: stretch;
}

.recipe-email__input-wrap {
  position: relative;
  flex: 1 1 12rem;
  min-width: 0;
  align-self: center;
}

.recipe-email__input-icon {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  width: 1.2rem;
  height: 1.2rem;
  object-fit: contain;
  transform: translateY(-50%);
  opacity: 0.55;
  pointer-events: none;
}

.recipe-email__input {
  width: 100%;
  height: 3rem;
  min-height: 3rem;
  padding: 0.75rem 1rem 0.75rem 2.65rem;
  border: 1.5px solid var(--border);
  border-radius: 0.45rem;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.recipe-email__input:focus {
  outline: none;
  border-color: var(--accent-dark);
}

.recipe-email__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex: 0 0 auto;
  min-height: 3rem;
  padding: 0.75rem 1.35rem;
  border: 2px solid #2c2c2c;
  border-radius: 0.45rem;
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.recipe-email__submit:hover,
.recipe-email__submit:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

.recipe-email__plane {
  width: 1.15rem;
  height: 1.15rem;
}

.recipe-email__note {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.65rem 0 0;
  font-family: var(--font-script);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-muted);
}

.recipe-email__note img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

@media (max-width: 900px) {
  .recipe-email {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    align-items: stretch;
  }

  .recipe-email__divider {
    width: 100%;
    height: 2px;
    min-height: 0;
  }

  .recipe-email__fields {
    flex-direction: column;
    align-items: stretch;
  }

  .recipe-email__input-wrap {
    flex: 0 0 auto;
    width: 100%;
    align-self: stretch;
  }

  .recipe-email__submit {
    width: 100%;
    flex: 0 0 auto;
  }
}

/* ——— Nutrition information ——— */

.recipe-nutrition {
  position: relative;
  margin: 0 0 2.5rem;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.15rem, 3vw, 1.75rem);
  overflow: hidden;
  background: var(--cream);
  border: 2px solid var(--accent);
  border-radius: 1.15rem;
}

.recipe-nutrition[hidden] {
  display: none !important;
}

.recipe-nutrition__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  text-align: center;
}

.recipe-nutrition__heart {
  object-fit: contain;
  flex-shrink: 0;
}

.recipe-nutrition__heart--lg {
  width: 1.85rem;
  height: 1.85rem;
  transform: rotate(-8deg);
}

.recipe-nutrition__heart--sm {
  width: 1.2rem;
  height: 1.2rem;
  transform: rotate(10deg);
}

.recipe-nutrition__title {
  margin: 0;
  font-family: var(--font-display-bold);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.recipe-nutrition__title::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0.4rem auto 0;
  background: var(--accent);
  border-radius: 999px;
}

.recipe-nutrition__summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin: 0 0 1.15rem;
  padding: 0.85rem 0;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  font-size: 0.95rem;
  color: var(--text);
}

.recipe-nutrition__summary-item {
  margin: 0;
}

.recipe-nutrition__summary-rule {
  display: inline-block;
  width: 1px;
  height: 1rem;
  background: var(--border);
}

.recipe-nutrition__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.recipe-nutrition__item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem;
  background: var(--accent-soft);
  border-radius: 0.75rem;
}

.recipe-nutrition__batch {
  grid-column: 1 / -1;
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.recipe-nutrition__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 217, 90, 0.45);
}

.recipe-nutrition__icon {
  width: 1.45rem;
  height: 1.45rem;
  object-fit: contain;
}

.recipe-nutrition__item-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.recipe-nutrition__item-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.recipe-nutrition__item-value {
  font-size: 0.88rem;
  color: var(--text);
}

.recipe-nutrition__footer {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.65rem;
  align-items: start;
  padding-top: 1rem;
  border-top: 1px dashed var(--border);
}

.recipe-nutrition__info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  border: 1.5px solid var(--accent-dark);
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent-dark);
}

.recipe-nutrition__disclaimer {
  margin: 0;
  padding-right: 2rem;
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-muted);
}

.recipe-nutrition__deco {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  opacity: 0.22;
  pointer-events: none;
}

@media (max-width: 800px) {
  .recipe-nutrition__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .recipe-nutrition__grid {
    grid-template-columns: 1fr;
  }

  .recipe-nutrition__summary-rule {
    display: none;
  }

  .recipe-nutrition__summary {
    flex-direction: column;
    gap: 0.35rem;
  }
}

/* ——— Serving / storing cards + highlight links ——— */

.post-highlight-link {
  font-weight: 700;
  color: var(--text);
  background: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  padding: 0.05em 0.2em;
  border-radius: 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.post-highlight-link:hover,
.post-highlight-link:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

.post-highlight {
  font-weight: 700;
  color: var(--text);
  background: var(--accent);
  padding: 0.05em 0.2em;
  border-radius: 0.15em;
}

.recipe-info-card {
  margin: 0 0 1.5rem;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.15rem, 3vw, 1.75rem);
  background: var(--cream);
  border: 2px solid var(--accent);
  border-radius: 1.15rem;
}

.recipe-info-card__header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
}

.recipe-info-card__header-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  flex-shrink: 0;
}

.recipe-info-card__lead-icon {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
}

.recipe-info-card__heart {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  object-fit: contain;
  transform: rotate(8deg);
}

.recipe-info-card__title {
  margin: 0;
  font-family: var(--font-display-bold);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.recipe-info-card__title::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 4px;
  margin-top: 0.4rem;
  background: var(--accent);
  border-radius: 999px;
}

.recipe-info-card__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(7.5rem, 0.42fr);
  gap: clamp(1rem, 3vw, 1.75rem);
  align-items: center;
}

.recipe-info-card__body:not(:has(.recipe-info-card__art)) {
  grid-template-columns: 1fr;
}

.recipe-info-card__copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.recipe-info-card__rule {
  border: none;
  border-top: 2px dashed var(--accent);
  margin: 1.15rem 0;
}

.recipe-info-card__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
}

.recipe-info-card__art-img {
  width: min(100%, 11rem);
  height: auto;
  object-fit: contain;
}

.recipe-info-card__art-heart {
  position: absolute;
  top: 0.35rem;
  right: 0.5rem;
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
  transform: rotate(12deg);
}

@media (max-width: 720px) {
  .recipe-info-card__body {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .recipe-info-card__art {
    order: -1;
    width: 100%;
    min-height: 0;
    margin: 0;
    justify-content: center;
  }

  .recipe-info-card__art-img {
    width: min(100%, 9.5rem);
    max-width: 9.5rem;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    background: transparent;
  }

  .recipe-info-card__art-heart {
    top: 0.65rem;
    right: 0.75rem;
  }
}

/* ——— Substitution tips (recipe template) ——— */

.recipe-subs {
  position: relative;
  margin: 0 0 2.5rem;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.15rem, 3vw, 1.75rem) 2.5rem;
  overflow: hidden;
  background: var(--cream);
  border: 2px solid var(--accent);
  border-radius: 1.15rem;
}

.recipe-subs__header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  text-align: center;
}

.recipe-subs__heart {
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 0.35rem;
  transform: rotate(-8deg);
}

.recipe-subs__heart--sm {
  width: 50px;
  height: 50px;
  margin-top: 0.15rem;
  transform: rotate(10deg);
}

.recipe-subs__title {
  margin: 0;
  max-width: 22rem;
  font-family: var(--font-display-bold);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.recipe-subs__title-line {
  display: block;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  padding-bottom: 0.35rem;
}

.recipe-subs__title-line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 999px;
}

.recipe-subs__title-rest {
  display: block;
  margin-top: 0.15rem;
}

.post__body .recipe-subs__intro {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
  text-align: center;
}

.recipe-subs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.recipe-subs__item {
  display: grid;
  grid-template-columns: 1.75rem 4.5rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

.recipe-subs__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
}

.recipe-subs__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
}

.recipe-subs__icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.recipe-subs__copy {
  min-width: 0;
}

.recipe-subs__copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text);
}

.recipe-subs__copy strong {
  font-weight: 700;
}

.recipe-subs__sparkles {
  position: absolute;
  right: 1rem;
  bottom: 0.65rem;
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  pointer-events: none;
}

.recipe-subs__sparkles img {
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
  opacity: 0.9;
}

.recipe-subs__sparkles img:nth-child(1) {
  width: 0.85rem;
  height: 0.85rem;
  transform: translateY(-0.35rem);
}

.recipe-subs__sparkles img:nth-child(2) {
  width: 1.35rem;
  height: 1.35rem;
}

.recipe-subs__sparkles img:nth-child(3) {
  width: 0.7rem;
  height: 0.7rem;
  transform: translateY(0.15rem);
}

@media (max-width: 640px) {
  .recipe-subs__header {
    flex-wrap: wrap;
  }

  .recipe-subs__item {
    grid-template-columns: 1.75rem minmax(0, 1fr);
    grid-template-areas:
      "num icon"
      "copy copy";
    gap: 0.65rem 0.75rem;
  }

  .recipe-subs__num {
    grid-area: num;
    align-self: center;
  }

  .recipe-subs__icon-wrap {
    grid-area: icon;
    justify-self: start;
  }

  .recipe-subs__copy {
    grid-area: copy;
  }
}

/* ——— Related recipes (end of recipe post) ——— */

.recipe-related {
  position: relative;
  margin: 0 0 2.5rem;
  padding: 1.5rem 1.25rem 1.5rem;
  background: var(--white);
  border: 3px dashed #2c2c2c;
  border-radius: 0.65rem;
  overflow: visible;
}

.recipe-related__intro {
  margin-bottom: 1.35rem;
}

.recipe-related__title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.recipe-related__banner {
  margin: 0;
  display: inline-block;
  padding: 0.5rem 0.9rem;
  background: var(--accent);
  border: 2px solid #2c2c2c;
  border-radius: 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.2;
}

.recipe-related__heart {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  transform: rotate(8deg);
}

.recipe-related__sub {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text);
}

.recipe-related__sub::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 3px;
  margin-top: 0.45rem;
  background: var(--accent);
  border-radius: 999px;
}

.recipe-related__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.recipe-related__grid > li {
  display: flex;
  min-width: 0;
  height: 100%;
}

.recipe-related__card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  height: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.recipe-related__card:hover .recipe-related__card-title,
.recipe-related__card:focus-visible .recipe-related__card-title {
  color: var(--accent-dark);
}

.recipe-related__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid var(--accent);
  border-radius: 0.65rem;
  background: var(--cream);
}

.recipe-related__media > img:not(.recipe-related__card-heart) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.recipe-related__media-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.recipe-related__card-heart {
  position: absolute;
  right: 0.45rem;
  bottom: 0.45rem;
  z-index: 1;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  transform: rotate(10deg);
}

.recipe-related__card-title {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--text);
}

.recipe-related__card-rule {
  display: block;
  width: 2.25rem;
  height: 3px;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 999px;
}

.recipe-related__card-cost {
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
}

@media (max-width: 960px) {
  .recipe-related {
    overflow: visible;
  }

  .recipe-related__grid {
    display: flex;
    align-items: stretch;
    grid-template-columns: none;
    gap: 0.85rem;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.1rem;
    -webkit-overflow-scrolling: touch;
    padding: 0.15rem 0.15rem 0.65rem;
    margin: 0 -0.15rem;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
  }

  .recipe-related__grid::-webkit-scrollbar {
    height: 5px;
  }

  .recipe-related__grid::-webkit-scrollbar-track {
    background: transparent;
  }

  .recipe-related__grid::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 999px;
  }

  .recipe-related__grid > li {
    flex: 0 0 min(68%, 15.5rem);
    min-width: 0;
    height: auto;
    scroll-snap-align: start;
  }
}

/* ——— Post newsletter CTA ——— */

.post-newsletter {
  margin: 0 0 2.5rem;
  padding: 1.65rem 1.5rem 1.5rem;
  background: var(--cream);
  border: 2px solid var(--accent);
  border-radius: 0.35rem;
}

.post-newsletter__heading {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.55rem;
}

.post-newsletter__title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--text);
}

.post-newsletter__mark {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.post-newsletter__mark::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.08em;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--accent);
  border-radius: 0.1em;
  z-index: -1;
  transform: rotate(-1.5deg);
}

.post-newsletter__ornament {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.post-newsletter__heart {
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  transform: rotate(8deg);
}

.post-newsletter__text {
  margin: 0 0 1.15rem;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.post-newsletter__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr) auto;
  gap: 0.75rem;
  align-items: stretch;
}

.post-newsletter__field {
  position: relative;
  min-width: 0;
}

.post-newsletter__input {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.75rem 2.6rem 0.75rem 0.95rem;
  border: 1.5px solid #2c2c2c;
  border-radius: 0.2rem;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.post-newsletter__input::placeholder {
  color: #9a9a9a;
}

.post-newsletter__input:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 2px rgba(255, 217, 90, 0.35);
}

.post-newsletter__field-icon {
  position: absolute;
  top: 50%;
  right: 0.85rem;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--text);
  opacity: 0.7;
  transform: translateY(-50%);
  pointer-events: none;
}

.post-newsletter__submit {
  min-height: 3.1rem;
  padding: 0.75rem 1.35rem;
  border: 1.5px solid #2c2c2c;
  border-radius: 0.2rem;
  background: var(--accent);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
}

.post-newsletter__submit:hover,
.post-newsletter__submit:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

@media (max-width: 820px) {
  .post-newsletter__form {
    grid-template-columns: 1fr 1fr;
  }

  .post-newsletter__submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .post-newsletter {
    padding: 1.35rem 1.1rem 1.25rem;
  }

  .post-newsletter__form {
    grid-template-columns: 1fr;
  }

  .post-newsletter__submit {
    grid-column: auto;
  }
}

/* ——— List template (roundups) ——— */

.list-post__toc {
  margin: 0 0 2rem;
  padding: 1.15rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

.list-post__toc-title {
  margin: 0 0 0.75rem !important;
  font-family: var(--font-ui) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
}

.list-post__toc-list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.list-post__toc-list a {
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.list-post__toc-list a:hover,
.list-post__toc-list a:focus-visible {
  color: var(--accent-dark);
}

.list-post__pullquote {
  margin: 1.25rem 0;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 0.75rem 0.75rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
}

.list-post__stats {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

.list-post__stats--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.list-post__time-math {
  margin: 1.25rem 0 1.75rem;
}

.list-post__time-math-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.list-post__time-math .list-post__stats {
  margin: 0;
}

.list-post__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
}

.list-post__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--cream);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.list-post__chip:hover,
.list-post__chip:focus-visible {
  background: var(--accent-soft);
  border-color: var(--accent-dark);
  color: var(--text);
}

.list-post__group {
  margin: 0.5rem 0 1.25rem;
  padding-top: 0.5rem;
}

.list-post__group .list-post__section-title {
  margin-bottom: 0.55rem !important;
}

.list-post__group p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.list-post__stats li {
  margin: 0;
  padding: 0.35rem 0.25rem;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.list-post__stats strong {
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.list-post__formula {
  margin: 0.85rem 0 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.list-post__formula--bullets {
  list-style: disc;
}

.list-post__section-media {
  margin: 1rem 0 1.25rem;
  overflow: hidden;
  border-radius: 0.75rem;
}

.list-post__section-media img {
  width: 100%;
  height: auto;
  display: block;
}

.list-post__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem 1rem;
  align-items: center;
  margin: 1.25rem 0 1.5rem;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

.list-post__compare-col {
  text-align: center;
}

.list-post__compare-col--win {
  background: var(--white);
  border: 1px solid var(--accent);
  border-radius: 0.75rem;
  padding: 0.65rem 0.5rem;
}

.list-post__compare-label {
  margin: 0 0 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.list-post__compare-value {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--text);
}

.list-post__compare-note {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.list-post__compare-vs {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.list-post__subsection-title {
  margin: 1.5rem 0 0.65rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

@media (max-width: 640px) {
  .list-post__compare {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .list-post__compare-vs {
    text-align: center;
  }
}

.list-post__shelf {
  margin: 0 0 2.5rem;
}

.list-post__table-wrap {
  margin: 0.85rem 0 0;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background: var(--white);
}

.list-post__table {
  width: 100%;
  min-width: 28rem;
  border-collapse: collapse;
  font-size: 0.95rem;
  line-height: 1.45;
}

.list-post__table th,
.list-post__table td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.list-post__table th {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--cream);
}

.list-post__table tr:last-child td {
  border-bottom: none;
}

.list-post__table td:first-child {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .list-post__stats--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .list-post__stats,
  .list-post__stats--four {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .list-post__stats li {
    text-align: left;
    padding: 0.45rem 0.35rem;
    border-bottom: 1px solid var(--border);
  }

  .list-post__stats li:last-child {
    border-bottom: none;
  }

  .list-post__stats strong {
    display: inline;
    margin-right: 0.35rem;
  }
}

.list-post__section-title {
  margin: 0 0 0.85rem !important;
  font-family: var(--font-display-bold) !important;
  font-size: clamp(1.45rem, 3vw, 1.85rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  color: var(--text) !important;
  text-transform: none !important;
}

.list-post__grocery {
  margin: 0 0 2.5rem;
}

.list-post__grocery-media {
  margin: 1rem 0 1.15rem;
  overflow: hidden;
  border-radius: 0.75rem;
}

.list-post__grocery-media img {
  width: 100%;
  height: auto;
  display: block;
}

.list-post__grocery-list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.25rem;
  font-size: 0.98rem;
  line-height: 1.5;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

.list-post__grocery-list li {
  margin: 0;
  min-width: 0;
}

.list-post__check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  color: var(--text);
}

.list-post__checkbox {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: var(--accent-dark);
  cursor: pointer;
}

.list-post__check span {
  min-width: 0;
}

.list-post__checkbox:checked + span {
  text-decoration: line-through;
  color: var(--text-muted);
}

.list-post__note {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.list-post__item-tag {
  margin: 0 0 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.list-post__item-tag--survived {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #dcefdc;
  color: #2f6b3a;
}

.list-post__item-tag--flopped {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #fde8d4;
  color: #9a5518;
}

.list-post__item-tag--maybe {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a5c12;
}

.list-post__chip--worth {
  background: #dcefdc;
  border-color: #b7d8b9;
  color: #2f6b3a;
}

.list-post__chip--maybe {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: #7a5c12;
}

.list-post__chip--skip {
  background: #fde8d4;
  border-color: #f0c9a0;
  color: #9a5518;
}

/* Budget tier tags (chicken crockpot recipes) — brand yellow/cream system */
.list-post__chip--budget {
  background: var(--accent);
  border-color: var(--accent-dark);
  color: #6b4a00;
}

.list-post__chip--sweet {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: #7a5c12;
}

.list-post__chip--premium {
  background: var(--white);
  border-color: var(--accent-dark);
  color: #2c2c2c;
}

.list-post__item-tag--budget {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  color: #6b4a00;
}

.list-post__item-tag--sweet {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a5c12;
}

.list-post__item-tag--premium {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--accent-dark);
  color: #2c2c2c;
}

/* Weekday + flavor tags (ground beef meal prep) */
.list-post__item-tag--day {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a5c12;
}

.list-post__chip--flavor {
  background: var(--cream);
  border-color: var(--border);
  color: var(--text);
}

.list-post__chip--flavor:hover,
.list-post__chip--flavor:focus-visible {
  background: var(--accent-soft);
  border-color: var(--accent-dark);
}

/* Energy tiers (meal prep ideas for the week) — brand yellow/cream */
.list-post__chip--zero {
  background: var(--white);
  border-color: var(--border);
  color: var(--text-muted);
}

.list-post__chip--low {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: #7a5c12;
}

.list-post__chip--some {
  background: var(--accent);
  border-color: var(--accent-dark);
  color: #6b4a00;
}

.list-post__chip--zero:hover,
.list-post__chip--zero:focus-visible,
.list-post__chip--low:hover,
.list-post__chip--low:focus-visible,
.list-post__chip--some:hover,
.list-post__chip--some:focus-visible {
  border-color: var(--accent-dark);
  color: var(--text);
}

.list-post__item-tag--zero {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.list-post__item-tag--low {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a5c12;
}

.list-post__item-tag--some {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  color: #6b4a00;
}

.list-post__item-tag--myth {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a5c12;
}

.list-post__item-tag--breakfast {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #7a5c12;
}

.list-post__item-tag--lunch {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--cream);
  color: #6b4a00;
  border: 1px solid var(--border);
}

.list-post__item-tag--dinner {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--accent);
  color: #6b4a00;
}

.list-post__grocery-group {
  margin: 1.35rem 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

/* Pinterest vs reality photo pair */
.list-post__photo-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}

.list-post__photo-compare-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--cream);
}

.list-post__photo-compare-card--win {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.list-post__photo-compare-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.list-post__photo-compare-caption {
  margin: 0;
  padding: 0.55rem 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--text);
  background: var(--white);
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .list-post__photo-compare {
    grid-template-columns: 1fr;
  }
}

.post__hero--inline {
  margin: 1rem auto 1.25rem;
}

.list-post__group-lead {
  margin: 0 0 1.5rem;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.list-post__diary {
  margin: 0 0 2.5rem;
}

.list-post__week {
  margin: 0 0 1.15rem;
  padding: 1rem 1.1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 0.85rem;
}

.list-post__week-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
}

.list-post__week p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

.list-post__pullquote-cite {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.list-post__credit {
  margin-top: 0.35rem !important;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.list-post__credit a {
  font-weight: 600;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.list-post__credit a:hover,
.list-post__credit a:focus-visible {
  color: var(--accent-dark);
}

@media (max-width: 640px) {
  .list-post__grocery-list {
    grid-template-columns: 1fr;
  }
}

.list-post__items {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  margin: 0 0 2.5rem;
}

.list-post__series {
  margin: 0 0 0.85rem;
}

.list-post__series-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.55rem;
  flex-wrap: nowrap;
}

.list-post__series-title {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.15rem, 2.6vw, 1.75rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  white-space: normal;
  color: var(--text);
}

.list-post__series-heart {
  width: clamp(1.85rem, 3.2vw, 2.4rem);
  height: clamp(1.85rem, 3.2vw, 2.4rem);
  flex-shrink: 0;
  margin-top: 0.05rem;
  object-fit: contain;
}

@media (max-width: 640px) {
  .list-post__series-title {
    font-size: clamp(1.1rem, 5vw, 1.4rem);
  }

  .list-post__series-heart {
    display: none;
  }
}

.list-post__series-rule {
  display: block;
  width: min(100%, 34rem);
  height: 1.35rem;
  margin: 0.35rem 0 0;
  object-fit: fill;
}

.list-post__item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.list-post__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.list-post__item-title {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 1.1rem !important;
  padding-bottom: 0.4rem;
  border-bottom: 3px solid var(--text);
  font-family: var(--font-ui) !important;
  font-size: clamp(1.2rem, 2.6vw, 1.55rem) !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  line-height: 1.35 !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
  text-wrap: balance;
}

.list-post__item-title a {
  color: inherit;
  text-decoration: none;
}

.list-post__item-title a:hover,
.list-post__item-title a:focus-visible {
  color: var(--accent-dark);
}

.list-post__item-num {
  display: inline;
  margin-right: 0.35em;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: var(--accent-dark);
}

.list-post__item-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 1.15rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: none;
  border-radius: 0.35rem;
  text-decoration: none;
  color: inherit;
  background: var(--cream);
}

div.list-post__item-media {
  cursor: default;
}

.list-post__item-media > img:not(.list-post__item-caption-sparkle) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.list-post__item-media .img-placeholder__label {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.list-post__item-caption {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(92%, 36rem);
  max-width: calc(100% - 2rem);
  padding: 1.05rem 1.5rem;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid rgba(44, 44, 44, 0.08);
  box-shadow: 0 8px 22px rgba(44, 44, 44, 0.1);
}

.list-post__item-caption-sparkle {
  position: absolute;
  top: -0.85rem;
  left: -0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.list-post__item-caption-text {
  font-family: var(--font-ui);
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  color: var(--text);
}

.list-post__item-lead {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text);
}

.list-post__item-stats {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin: 0 0 0.65rem;
}

.list-post__item-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
}

.list-post__item-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.18rem;
}

.list-post__item-stars span {
  width: 1.05rem;
  height: 1.05rem;
  background: var(--accent);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.list-post__item-votes {
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.list-post__item-cost {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.list-post__item-cta {
  margin: 0 0 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--border);
}

.list-post__item-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.85rem;
  border: none;
  border-radius: 0.7rem;
  background: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  box-shadow: none;
}

.list-post__item-btn span {
  font-size: 1.15em;
  line-height: 1;
  transform: translateY(-0.02em);
}

.list-post__item-btn:hover,
.list-post__item-btn:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

.list-post__item-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.list-post__item-body p {
  margin: 0 0 0.85rem;
}

.list-post__item-body p:last-child {
  margin-bottom: 0;
}

.list-post__item-name {
  font-weight: 700;
  color: var(--text);
  background: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  padding: 0.05em 0.2em;
  border-radius: 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.list-post__item-name:hover,
.list-post__item-name:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

@media (max-width: 640px) {
  .list-post__item-media {
    aspect-ratio: 3 / 4;
  }

  .list-post__item-media > img:not(.list-post__item-caption-sparkle) {
    object-position: center 35%;
  }

  .list-post__item-caption {
    bottom: 0.65rem;
    width: calc(100% - 1.75rem);
    max-width: none;
    padding: 0.55rem 0.75rem;
  }

  .list-post__item-caption-text {
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    line-height: 1.2;
  }

  .list-post__item-caption-sparkle {
    width: 1.65rem;
    height: 1.65rem;
    top: -0.55rem;
    left: -0.4rem;
  }

  .list-post__item-btn {
    width: 100%;
  }
}

.post-author {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.35rem, 3vw, 2.25rem);
  align-items: start;
  margin: 0 0 2.5rem;
  padding: 0.25rem 0 0.5rem;
}

.post-author__media {
  position: relative;
  width: 7.25rem;
  height: 7.25rem;
  flex-shrink: 0;
}

.post-author__heart {
  position: absolute;
  top: -0.45rem;
  left: -0.3rem;
  z-index: 1;
  width: 1.85rem;
  height: 1.85rem;
  object-fit: contain;
  pointer-events: none;
}

.post-author__photo {
  display: block;
  width: 7.25rem !important;
  height: 7.25rem !important;
  max-width: none;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50% !important;
  background: var(--cream);
}

.post-author__copy {
  min-width: 0;
  padding-top: 0.15rem;
}

.post-author__name {
  margin: 0 !important;
  font-family: var(--font-display-bold) !important;
  font-size: clamp(1.85rem, 3.6vw, 2.55rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  color: var(--text) !important;
}

.post-author__rule {
  display: block;
  width: min(100%, 14rem);
  height: 0.85rem;
  margin: 0.35rem 0 1.1rem;
  object-fit: fill;
}

.post-author__bio {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
}

.post-author__bio p {
  margin: 0;
}

.post-author__bio strong {
  font-weight: 700;
}

.post-author__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.15rem;
  padding: 0.9rem 1.65rem;
  border: none;
  border-radius: 0.65rem;
  background: var(--accent);
  font-family: var(--font-ui);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
}

.post-author__btn span {
  font-size: 1.15em;
  line-height: 1;
}

.post-author__btn:hover,
.post-author__btn:focus-visible {
  background: var(--accent-dark);
  color: var(--text);
}

@media (max-width: 700px) {
  .post-author {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.25rem;
    text-align: center;
  }

  .post-author__media,
  .post-author__photo {
    width: 6.5rem !important;
    height: 6.5rem !important;
  }

  .post-author__copy {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .post-author__name {
    text-align: center !important;
  }

  .post-author__rule {
    margin-left: auto;
    margin-right: auto;
  }

  .post-author__bio {
    width: 100%;
    text-align: left;
  }

  .post-author__btn {
    width: 100%;
  }
}

.post__tip {
  margin: 0 0 1.75rem;
  padding: 1.15rem 1.25rem;
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0.75rem;
}

.post__tip-title {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.5rem !important;
  font-family: var(--font-script) !important;
  font-size: 1.55rem !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  color: var(--accent-dark) !important;
}

.post__tip-title img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.post__tip p {
  margin: 0;
}

/* Global post sidebar */

.post-sidebar {
  min-width: 0;
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-left: 1.25rem;
  border-left: 3px dashed #2c2c2c;
}

.post-sidebar__sticky {
  position: static;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.post-sidebar__card {
  padding: 1.25rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

.post-sidebar__about {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--accent-soft);
  border-color: transparent;
}

.post-sidebar__avatar {
  width: 7.5rem;
  height: 7.5rem;
  min-height: 0;
  margin-bottom: 0.85rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--white);
  object-fit: cover;
  font-size: 0;
}

.post-sidebar__about-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}

.post-sidebar__about-script {
  display: block;
  margin-top: 0.15rem;
  font-family: var(--font-script);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent-dark);
}

.post-sidebar__about-text {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
}

.post-sidebar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.post-sidebar__btn:hover,
.post-sidebar__btn:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text);
}

.post-sidebar__btn--full {
  width: 100%;
}

.post-sidebar__btn--outline {
  width: 100%;
  margin-top: 0.35rem;
  background: var(--white);
  border-color: var(--text);
}

.post-sidebar__btn--outline:hover,
.post-sidebar__btn--outline:focus-visible {
  background: var(--cream);
  border-color: var(--text);
  color: var(--text);
}

.post-sidebar__newsletter {
  background: #2c2c2c;
  border-color: #2c2c2c;
  color: var(--white);
}

.post-sidebar__newsletter-title {
  margin: 0 0 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.post-sidebar__newsletter-script {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-script);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
}

.post-sidebar__newsletter-text {
  margin: 0 0 0.95rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
}

.post-sidebar__form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.post-sidebar__input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: none;
  border-radius: 0.4rem;
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--text);
}

.post-sidebar__input::placeholder {
  color: var(--text-muted);
}

.post-sidebar__input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.post-sidebar__list-title {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.95rem;
  font-family: var(--font-display-bold);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.post-sidebar__list-title img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.post-sidebar__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.post-sidebar__list li + li {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.post-sidebar__item {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
}

.post-sidebar__item:hover .post-sidebar__item-title,
.post-sidebar__item:focus-visible .post-sidebar__item-title {
  color: var(--text-muted);
}

.post-sidebar__thumb {
  width: 4.25rem;
  height: 4.25rem;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 0.45rem;
  font-size: 0;
}

/* Real thumbnails replace the placeholder span once the list is hydrated */
img.post-sidebar__thumb {
  object-fit: cover;
  background: var(--accent-soft);
}

.post-sidebar__item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

.post-sidebar__promo {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: center;
  background: var(--accent-soft);
  border-color: transparent;
}

.post-sidebar__promo-media {
  width: 5rem;
  height: 5rem;
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 0.55rem;
  font-size: 0;
}

.post-sidebar__promo-copy p {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.post-sidebar__promo-title {
  margin: 0 0 0.25rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.post-sidebar__promo .post-sidebar__btn {
  padding: 0.6rem 0.85rem;
  font-size: 0.62rem;
}

.about-story__title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  font-family: var(--font-display-bold);
  font-size: clamp(1.55rem, 2.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.about-story__rule {
  display: block;
  width: 2.75rem;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.about-story__text {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.about-values {
  padding: 0 0 clamp(2.5rem, 5vw, 3.75rem);
}

.about-values__inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1rem, 2.5vw, 1.5rem);
  background: var(--accent-soft);
  border-radius: 1.15rem;
}

.about-values__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.55rem;
  padding: 0.75rem 1rem;
}

.about-values__item + .about-values__item {
  border-left: 1px solid var(--border);
}

.about-values__icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.about-values__label {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.about-values__text {
  margin: 0;
  max-width: 14rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.about-test {
  padding: 0 0 clamp(2.5rem, 5vw, 3.75rem);
}

.about-test__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.about-test__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display-bold);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
}

.about-test__text {
  margin: 0 0 1rem;
  max-width: 34rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text);
}

.about-test__heart {
  width: 40px;
  height: 40px;
  margin-top: 0.5rem;
  align-self: flex-end;
  object-fit: contain;
}

.about-newsletter {
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
}

.about-newsletter__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: center;
  width: calc(100% - (var(--page-gutter) * 2));
  max-width: var(--max-width);
  margin-inline: auto;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 2rem);
  background: var(--accent-soft);
  border: 3px dashed #2c2c2c;
  border-radius: 1.15rem;
}

.about-newsletter__media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-newsletter__mail {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.about-newsletter__copy {
  min-width: 0;
}

.about-newsletter__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.about-newsletter__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.about-newsletter__form {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
  min-width: min(100%, 22rem);
}

.about-newsletter__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.45rem;
  background: var(--white);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--text);
}

.about-newsletter__input::placeholder {
  color: var(--text-muted);
}

.about-newsletter__input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.about-newsletter__submit {
  flex: 0 0 auto;
  padding: 0.9rem 1.35rem;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.about-newsletter__submit:hover,
.about-newsletter__submit:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text);
}

@media (prefers-reduced-motion: reduce) {
  .disclaimer-item__toggle {
    transition: none;
  }

  .disclaimer-item[open] .disclaimer-item__toggle {
    transform: none;
  }
}

/* ——— Responsive ——— */

@media (max-width: 960px) {
  .recipe-collection__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .disclaimer-cta {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .disclaimer-cta__copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .disclaimer-item__body {
    padding-left: 1.15rem;
  }

  .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .contact-form__actions {
    padding-right: 1.5rem;
  }

  .contact-reach__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-reach__item {
    padding: 1.35rem 0.5rem;
  }

  .contact-reach__item + .contact-reach__item {
    border-left: none;
    border-top: 3px dashed #2c2c2c;
  }

  .about-band__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-band {
    overflow-x: hidden;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-page__layout {
    grid-template-columns: 1fr;
  }

  /* Release the desktop column/row pins, or the sidebar keeps forcing an
     implicit second column here and squeezes the article to zero width */
  .post-page__layout > .post,
  .post-page__layout > .post-sidebar {
    grid-column: 1;
    grid-row: auto;
  }

  .post-page__layout > .post-sidebar {
    height: auto;
  }

  .post-sidebar {
    padding-left: 0;
    padding-top: 1.5rem;
    border-left: none;
    border-top: 3px dashed #2c2c2c;
  }

  .post-sidebar__sticky {
    position: static;
  }

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

  .recipe-card[data-recipe-root] .recipe-card__header {
    grid-template-columns: 1fr;
  }

  .recipe-card[data-recipe-root] .recipe-card__stats {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 1.15rem 1rem;
  }

  .recipe-card[data-recipe-root] .recipe-card__body {
    grid-template-columns: 1fr;
  }

  .recipe-card[data-recipe-root] .recipe-card__actions {
    grid-template-columns: 1fr;
  }

  .about-favorites__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .about-favorites__sparkle {
    top: 0;
  }

  .about-favorites__polaroid {
    transform: rotate(-1deg);
  }

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

  .about-values__item:nth-child(2n + 1) {
    border-left: none;
  }

  .about-values__item:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .about-newsletter__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-newsletter__form {
    width: 100%;
    max-width: 28rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-newsletter__input {
    min-width: 12rem;
  }

  .about-test__heart {
    margin-left: 0;
  }

  .about-band__card-top {
    grid-template-columns: auto 1fr;
  }

  .about-band__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem 0;
  }

  .about-band__feature {
    padding: 0.35rem 0.75rem;
  }

  .about-band__feature:nth-child(2n + 1) {
    border-left: none;
  }

  .about-band__feature:nth-child(n + 3) {
    border-top: 1px solid rgba(240, 197, 61, 0.45);
    padding-top: 1rem;
  }

  .about-band__title-block {
    max-width: 100%;
    padding-right: 1.5rem;
  }

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

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

  .faq__divider-img {
    width: min(18rem, 85%);
    max-width: 100%;
  }

  .main-nav__left .main-nav__link,
  .main-nav__right {
    display: none;
  }

  .main-nav {
    grid-template-columns: auto 1fr auto;
  }

  .main-nav__left {
    order: 1;
  }

  .main-nav__logo {
    order: 2;
    justify-self: center;
  }

  .nav-toggle {
    display: flex;
    order: 3;
    justify-self: end;
  }

  .main-nav__search {
    margin-right: 0;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .recipe-tile--featured {
    height: auto;
    min-height: 380px;
  }

  .hero__side {
    height: auto;
  }

  .hero__side .recipe-tile {
    height: auto;
    min-height: 260px;
  }

  .category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem 0.75rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .category-card {
    flex: 0 0 calc((100% - 1.5rem) / 3);
    width: auto;
    max-width: none;
    min-width: 0;
  }

  .announce-bar__text {
    white-space: normal;
  }

  .recipe-collection__title-row {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .recipe-collection__grid,
  .about-band__features,
  .faq__grid {
    width: 100%;
    max-width: 100%;
  }

  .site-footer,
  .site-footer__inner {
    overflow-x: hidden !important;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .recipe-tile--featured {
    min-height: 26.5rem;
  }

  .recipe-tile--featured .recipe-tile__frame > img {
    object-position: center 28%;
  }

  .recipe-tile--featured .recipe-tile__meta {
    max-width: calc(100% - 1.6rem);
    padding: 0.7rem 0.8rem 0.75rem;
  }

  .recipe-tile--featured .recipe-tile__title {
    font-size: 0.95rem;
  }

  .recipe-tile--featured .recipe-tile__more-row {
    margin-top: 0.45rem;
  }

  .hero__side .recipe-tile {
    min-height: 18rem;
  }

  .hero__side .recipe-tile__frame > img {
    object-position: center 30%;
  }

  .hero__side .recipe-tile__meta {
    max-width: calc(100% - 1.6rem);
    padding: 0.65rem 0.75rem 0.7rem;
  }

  .hero__side .recipe-tile__more-row {
    margin-top: 0.4rem;
  }

  .recipe-tile__underline-icon {
    display: none;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-values__item + .about-values__item {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .about-values__item:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .about-newsletter__form {
    flex-direction: column;
  }

  .about-newsletter__submit {
    width: 100%;
  }

  .about-photo-placeholder {
    min-height: 12rem;
  }

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

  .post-sidebar__promo {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-favorites__chips {
    gap: 0.35rem 0;
  }

  .about-favorites__chip {
    min-width: 4rem;
    padding-inline: 0.45rem;
    font-size: 0.68rem;
  }

  .about-favorites__answer {
    padding-left: 1.1rem;
  }

  .about-favorites__question {
    font-size: 0.98rem;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__actions {
    max-width: 100%;
  }

  .disclaimer-item__summary {
    gap: 0.65rem;
    padding: 0.85rem 0.95rem;
  }

  .disclaimer-item__title {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .announce-bar {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    text-align: center;
  }

  .announce-bar__text {
    grid-column: 1;
    white-space: normal;
    font-size: 0.6rem;
  }

  .announce-bar__social {
    grid-column: 1;
    justify-content: center;
  }

  .main-nav {
    padding: 0.9rem 1rem;
  }

  .main-nav__logo-img {
    height: 44px;
  }

  .category-card {
    flex: 0 0 calc((100% - 0.75rem) / 2);
  }

  .category-card__circle {
    width: min(100%, 9.5rem);
    margin-inline: auto;
  }

  .recipe-collection__title-row {
    flex-wrap: wrap;
  }

  .recipe-collection__sub {
    margin-left: 0;
  }

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

  .recipe-card[data-recipe-root] .recipe-card__stats {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 1.1rem 0.85rem;
  }

  .recipe-card[data-recipe-root] .recipe-card__servings {
    grid-column: 1 / -1;
  }

  .recipe-card[data-recipe-root] .recipe-card__stat-icon {
    width: 1.75rem;
    height: 1.75rem;
  }

  .recipe-card[data-recipe-root] .recipe-card__servings-btn,
  .recipe-card[data-recipe-root] .recipe-card__servings-input {
    width: 2.15rem;
    height: 1.85rem;
  }

  .recipe-card[data-recipe-root] .recipe-card__servings-input {
    width: 2.75rem;
  }

  .recipe-card__body {
    padding: 0.75rem 0.7rem 0.9rem;
    gap: 0.35rem;
  }

  .recipe-card__divider {
    display: none;
  }

  .recipe-card__title {
    font-size: 0.72rem;
  }

  .recipe-card__meta {
    font-size: 0.72rem;
  }

  .about-band__card-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .about-band__profile-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-band__role-underline {
    margin-inline: auto;
  }

  .about-band__title-block {
    display: block;
    text-align: center;
    padding-right: 0;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    max-width: none;
    text-align: center;
  }

  .site-footer__social {
    justify-content: center;
  }

  .site-footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq__item {
    border-radius: 1.25rem;
  }

  .faq__answer {
    padding-left: 1.15rem;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .category-card__circle {
    width: min(100%, 9rem);
    margin-inline: auto;
  }
}

/* ——— Collection template page ——— */

.collection-page {
  background: var(--white);
  color: var(--text);
}

.collection-page__inner {
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
  padding: 2.75rem 0 4rem;
}

.collection-page__hero {
  width: 100%;
  margin: 0;
  padding: 2.5rem 0;
  border-radius: 0;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 12% 20%, rgba(255, 217, 90, 0.35) 0 1.5px, transparent 2px),
    radial-gradient(circle at 78% 30%, rgba(240, 197, 61, 0.28) 0 1.5px, transparent 2px),
    radial-gradient(circle at 30% 75%, rgba(255, 217, 90, 0.3) 0 1.5px, transparent 2px),
    radial-gradient(circle at 88% 80%, rgba(240, 197, 61, 0.22) 0 1.5px, transparent 2px),
    linear-gradient(135deg, var(--cream) 0%, var(--accent-soft) 100%);
  background-size: 48px 48px, 56px 56px, 40px 40px, 52px 52px, 100% 100%;
}

.collection-page__hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.collection-page__breadcrumb {
  margin: 0 0 0.85rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.collection-page__breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.collection-page__breadcrumb a:hover,
.collection-page__breadcrumb a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

.collection-page__title {
  margin: 0 0 1rem;
  font-family: Anton, Montserrat, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.collection-page__title-accent {
  display: block;
  width: 4.5rem;
  height: 0.35rem;
  margin: 0.65rem 0 0;
  border-radius: 999px;
  background: var(--accent);
}

.collection-page__intro {
  display: grid;
  gap: 0.85rem;
  max-width: 36rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text);
}

.collection-page__intro p {
  margin: 0;
}

.collection-page__hero-media {
  position: relative;
  aspect-ratio: 1;
  width: min(100%, 28rem);
  max-width: 28rem;
  margin-inline: auto 0;
  justify-self: end;
}

.collection-page__hero-media .img-placeholder {
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(44, 44, 44, 0.08);
}

.collection-page__hero-media .img-placeholder__label {
  font-size: 0.82rem;
  gap: 0.55rem;
}

.collection-page__hero-media .img-placeholder__label svg {
  width: 36px;
  height: 36px;
}

.collection-page__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 14px 36px rgba(44, 44, 44, 0.08);
}

.collection-page__hero-media .collection-sparkle {
  position: absolute;
  top: -1.1rem;
  right: -1rem;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  pointer-events: none;
  filter: drop-shadow(0 2px 6px rgba(240, 197, 61, 0.35));
}

.collection-page__section {
  margin-bottom: 3rem;
}


.collection-page__section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
  font-family: Anton, Montserrat, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.collection-page__rule {
  flex: 1 1 auto;
  height: 0.28rem;
  min-width: 2rem;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
}

/* Reuse homepage .category-grid / .category-card; center the strip here */
.collection-page__category-grid {
  justify-content: center;
  margin-bottom: 0;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.collection-page__category-grid .category-card {
  flex: 0 1 10.5rem;
}

/* Active tag = the current ?tag= filter; clicking it again clears the filter */
.collection-page__category-grid .category-card.is-active .category-card__circle {
  border-color: var(--accent-dark);
  background: var(--accent-soft);
}

.collection-page__category-grid .category-card.is-active .category-card__label {
  background: var(--accent);
}

/* Popular: featured left + 2×2 right, matched heights, no internal stretch gaps */
.collection-popular {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  min-height: 36rem;
}

.collection-popular__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  min-height: 0;
  height: 100%;
}

/* Small collections: 1–2 secondary cards stack instead of leaving a blank cell */
.collection-popular__grid--narrow {
  grid-template-columns: minmax(0, 1fr);
}

.collection-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.collection-archive {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.35rem;
}

.collection-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  border: 3px dashed #2c2c2c;
  border-radius: 0.75rem;
  background: var(--white);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.collection-popular .collection-card,
.collection-popular .collection-card--featured {
  height: 100%;
}

.collection-card__media-link {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  color: inherit;
  text-decoration: none;
}

.collection-card__media {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-height: 8.5rem;
  overflow: hidden;
  background: #f3eee6;
}

.collection-card--featured .collection-card__media {
  min-height: 18rem;
}

.collection-card__media--mini {
  aspect-ratio: 1;
  height: auto;
  min-height: 0;
}

.collection-card__media--archive {
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  flex: 0 0 auto;
}

.collection-card__media .img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: #f3eee6;
  transition: transform 0.35s ease;
}

.collection-card__img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.collection-card:hover .collection-card__img,
.collection-card:focus-within .collection-card__img {
  transform: scale(1.04);
}

.collection-card__media .collection-sparkle {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  right: auto;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  pointer-events: none;
}

.collection-card__body {
  display: grid;
  gap: 0.4rem;
  flex: 0 0 auto;
  padding: 0.9rem 1rem 1rem;
  background: var(--white);
}

.collection-card--featured .collection-card__body {
  padding: 1rem 1.15rem 1.15rem;
}

.collection-card__title {
  margin: 0;
  font-family: Anton, Montserrat, sans-serif;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.collection-card--featured .collection-card__title {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.collection-card--mini .collection-card__title {
  font-family: Montserrat, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.35;
}

.collection-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.collection-card__rating {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  font-family: Montserrat, sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.collection-card__stars {
  color: #f0c53d;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  line-height: 1;
}

.collection-card__price {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.collection-card__price-sep {
  opacity: 0.55;
}

.collection-card__meta {
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.collection-card__price-unit {
  font-weight: 500;
}

.collection-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
  padding: 0.8rem 1rem;
  width: 100%;
  border-radius: 0.3rem;
  background: var(--accent);
  color: var(--text);
  font-family: Montserrat, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.collection-card__cta:hover,
.collection-card__cta:focus-visible {
  background: var(--accent-dark);
}

.collection-card__cta:active {
  transform: scale(0.98);
}

.collection-card:hover,
.collection-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(44, 44, 44, 0.08);
}

.collection-card:hover .collection-card__media .img-placeholder,
.collection-card:focus-within .collection-card__media .img-placeholder {
  transform: scale(1.03);
}

.collection-card:hover .collection-card__title a,
.collection-card:focus-within .collection-card__title a {
  color: var(--accent-dark);
}

/* Mini row cards stay lighter (no framed panel) */
.collection-card--mini {
  border: 0;
  background: transparent;
  border-radius: 0;
  height: auto;
}

.collection-card--mini .collection-card__media-link {
  flex: 0 0 auto;
}

.collection-card--mini .collection-card__media {
  border-radius: 0.5rem;
  overflow: hidden;
  background: transparent;
}

.collection-card--mini .collection-card__media .img-placeholder {
  border: 3px dashed #2c2c2c;
  border-radius: 0.5rem;
  background:
    repeating-linear-gradient(
      -45deg,
      #fff6d9,
      #fff6d9 10px,
      #f7e8b8 10px,
      #f7e8b8 20px
    );
}

.collection-card--mini .collection-card__body {
  padding: 0.75rem 0 0;
  background: transparent;
}

.collection-card--mini:hover,
.collection-card--mini:focus-within {
  box-shadow: none;
}

/* Newest archive cards: image + title + price + description */
.collection-card--archive {
  border: 0;
  background: transparent;
  border-radius: 0;
  height: auto;
  gap: 0.85rem;
  overflow: visible;
}

.collection-card--archive .collection-card__media-link {
  flex: 0 0 auto;
}

.collection-card--archive .collection-card__media {
  border-radius: 0.35rem;
  overflow: hidden;
  background: transparent;
}

.collection-card--archive .collection-card__media .img-placeholder {
  border: 3px dashed #2c2c2c;
  border-radius: 0.35rem;
  background:
    repeating-linear-gradient(
      -45deg,
      #fff6d9,
      #fff6d9 10px,
      #f7e8b8 10px,
      #f7e8b8 20px
    );
}

.collection-card--archive .collection-card__body {
  display: grid;
  gap: 0.45rem;
  padding: 0;
  background: transparent;
}

.collection-card--archive .collection-card__title {
  font-family: Anton, Montserrat, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
}

.collection-card--archive .collection-card__price {
  font-size: 0.8rem;
  font-weight: 500;
}

.collection-card__excerpt {
  margin: 0.15rem 0 0;
  font-family: Montserrat, sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
}

.collection-card--archive:hover,
.collection-card--archive:focus-within {
  box-shadow: none;
}

/* Progressive enhancement: hide only when JS enables motion */
.js-collection-motion .collection-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(14px);
}

.js-collection-motion .collection-reveal {
  transition: opacity 0.35s ease-out, transform 0.35s ease-out;
}

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

.collection-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  font-family: Montserrat, sans-serif;
}

.collection-pagination__item {
  margin: 0;
}

.collection-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.65rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  cursor: default;
}

a.collection-pagination__btn {
  cursor: pointer;
  border-color: var(--border);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

a.collection-pagination__btn:hover,
a.collection-pagination__btn:focus-visible {
  background: var(--accent-soft);
  border-color: var(--accent-dark);
}

.collection-pagination__btn[aria-current="page"] {
  background: var(--accent);
  border-color: var(--accent-dark);
}

.collection-pagination__btn--next {
  gap: 0.35rem;
  margin-left: 0.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.collection-pagination__ellipsis {
  min-width: 1.5rem;
  text-align: center;
  color: var(--text-muted);
}

/* Tablet: keep hero side-by-side (stacked layout looked disconnected) */
@media (max-width: 1100px) and (min-width: 641px) {
  .collection-page__hero {
    padding: 2rem 0;
  }

  .collection-page__hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    align-items: center;
    width: min(100% - 2rem, 1200px);
  }

  .collection-page__title {
    font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  }

  .collection-page__intro {
    max-width: none;
    font-size: 0.92rem;
  }

  .collection-page__hero-media {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto 0;
    justify-self: end;
  }

  .collection-page__hero-media .collection-sparkle {
    width: 3.25rem;
    height: 3.25rem;
    top: -0.9rem;
    right: -0.75rem;
  }
}

@media (max-width: 960px) {
  .collection-popular {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .collection-popular__grid {
    grid-template-rows: auto auto;
    height: auto;
  }

  .collection-popular .collection-card,
  .collection-popular .collection-card--featured {
    height: auto;
  }

  .collection-popular .collection-card__media-link {
    flex: 0 0 auto;
  }

  .collection-popular .collection-card__media,
  .collection-popular .collection-card--featured .collection-card__media {
    flex: 0 0 auto;
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

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

@media (max-width: 640px) {
  .collection-page__inner {
    width: min(100% - 1.5rem, 1200px);
    padding-top: 2rem;
  }

  .collection-page__hero {
    padding: 1.75rem 0;
  }

  .collection-page__hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: min(100% - 1.5rem, 1200px);
  }

  .collection-page__intro {
    max-width: none;
  }

  .collection-page__hero-media {
    width: min(100%, 18.5rem);
    max-width: 18.5rem;
    margin-inline: auto;
    justify-self: center;
  }

  .collection-page__hero-media .collection-sparkle {
    width: 3rem;
    height: 3rem;
    top: -0.8rem;
    right: -0.65rem;
  }

  .collection-popular__grid {
    grid-template-columns: 1fr;
  }

  .collection-row,
  .collection-archive {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-collection-motion .collection-reveal,
  .js-collection-motion .collection-reveal:not(.is-visible),
  .collection-card,
  .collection-card__media .img-placeholder,
  .collection-card__title a,
  .collection-card__cta {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .collection-card:hover,
  .collection-card:focus-within,
  .collection-card__cta:hover,
  .collection-card__cta:focus-visible,
  .collection-card__cta:active,
  .collection-card:hover .collection-card__media .img-placeholder,
  .collection-card:focus-within .collection-card__media .img-placeholder {
    transform: none;
  }
}

/* ——— 404 page ——— */

.error-page main {
  background: var(--cream);
}

.error-page__hero {
  padding: clamp(3rem, 7vw, 5.5rem) var(--page-gutter) clamp(2.25rem, 5vw, 3.25rem);
  text-align: center;
}

.error-page__inner {
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
}

.error-page__code {
  margin: 0 0 0.65rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.error-page__title-block {
  position: relative;
  display: inline-block;
  margin-bottom: 1.1rem;
  padding: 1.6rem 1.85rem 0;
}

.error-page__doodle {
  position: absolute;
  object-fit: contain;
  pointer-events: none;
}

.error-page__doodle--heart {
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  transform: rotate(-12deg);
}

.error-page__doodle--sparkle {
  top: 0.45rem;
  right: 0.1rem;
  width: 28px;
  height: 28px;
}

.error-page__title {
  margin: 0;
  font-family: var(--font-display-bold);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.error-page__copy {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.error-page__actions .btn {
  text-decoration: none;
  cursor: pointer;
}

.error-page__dice {
  width: 16px;
  height: 16px;
}

.error-page__more {
  padding: 0 var(--page-gutter) clamp(3.5rem, 7vw, 5.5rem);
}

.error-page__more-inner {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
}

.error-page__more-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.error-page__more-title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.error-page__more-all {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.2rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
}

.error-page__more-all:hover,
.error-page__more-all:focus-visible {
  color: var(--text);
  border-color: var(--text);
}

.error-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.35rem;
}

@media (max-width: 960px) {
  .error-page__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .error-page__title-block {
    padding-inline: 1.25rem;
  }

  .error-page__grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }

  .error-page__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error-page__actions .btn {
    width: 100%;
  }
}

/* Preview: force dashed borders black + thicker */
.img-placeholder,
.img-placeholder--circle,
.recipe-tile__frame,
.recipe-card,
.faq__item,
.category-card__circle,
.category-card:hover .category-card__circle,
.category-card:focus-visible .category-card__circle,
.about-band__card,
.about-band__photo {
  border-color: #2c2c2c !important;
  border-width: 3px !important;
}


