:root {
  --ink: #14130f;
  --muted: rgba(20, 19, 15, 0.68);
  --yellow: #f3e1a2;
  --yellow-deep: #e0c878;
  --black: #0d0d0b;
  --line: rgba(20, 19, 15, 0.18);
  --orange: #bd7042;
  --shadow: 0 24px 70px rgba(34, 25, 8, 0.24);
}

* { box-sizing: border-box; }

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--ink);
  background: var(--yellow);
  font-family: "Source Sans 3", Arial, sans-serif;
  font-weight: 400;
}

button,
input {
  font: inherit;
}

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

.stock-app {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(300px, 28vw) minmax(0, 1fr);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.38), transparent 28rem),
    linear-gradient(90deg, rgba(224, 200, 120, 0.72), rgba(243, 225, 162, 0.96) 34%, #f7e9b7);
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background: rgba(20, 19, 15, 0.42);
  backdrop-filter: blur(5px);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.intro-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 1;
  transition: opacity 780ms cubic-bezier(.2,.85,.16,1);
  pointer-events: none;
}

.intro-overlay.is-ready::before {
  opacity: 0;
}

.intro-overlay.is-dismissed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-card {
  width: min(42rem, 92vw, 82svh);
  aspect-ratio: 1;
  padding: clamp(2.2rem, 4vw, 4.4rem);
  border: 1px solid rgba(20, 19, 15, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.42), transparent 13rem),
    rgba(243, 225, 162, 0.96);
  box-shadow: 0 30px 90px rgba(20, 19, 15, 0.28);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(0.72rem, 1.5vw, 1rem);
  color: var(--ink);
  text-align: center;
  opacity: 0;
  transform: translateY(2rem) scale(0.86);
  transition: opacity 700ms cubic-bezier(.22,1,.36,1), transform 700ms cubic-bezier(.22,1,.36,1);
  position: relative;
  z-index: 1;
}

.intro-overlay.is-ready .intro-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.intro-card h1 {
  margin: 0;
  max-width: 9ch;
  font: 800 clamp(3rem, 8vw, 5.8rem)/0.84 "Poppins", sans-serif;
  text-transform: uppercase;
}

.intro-card p {
  margin: 0;
  max-width: 29rem;
  color: rgba(20, 19, 15, 0.82);
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.38;
}

.intro-card button {
  justify-self: center;
  min-height: 2.65rem;
  padding: 0.72rem 1rem;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #fffaf0;
  cursor: pointer;
  font: 800 0.74rem/1 "Poppins", sans-serif;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0;
  font: 800 clamp(0.76rem, 0.9vw, 0.92rem)/1.1 "Poppins", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.stock-panel {
  min-height: 100svh;
  max-height: 100svh;
  padding: clamp(1.25rem, 2vw, 2rem);
  border-right: 1px solid rgba(20, 19, 15, 0.16);
  display: grid;
  align-content: start;
  gap: 1.15rem;
  background: rgba(246, 230, 173, 0.42);
  overflow-y: auto;
}

.search-panel,
.filter-group {
  display: grid;
  gap: 0.55rem;
}

.search-panel {
  padding-top: 0.55rem;
}

.filter-group h2,
.search-panel h2 {
  margin: 0;
  max-width: 18rem;
  font: 700 clamp(1.04rem, 1.36vw, 1.34rem)/1.05 "Cormorant Garamond", Georgia, serif;
  font-style: italic;
}

.search-panel h2 {
  max-width: 21rem;
  font-size: clamp(1.35rem, 1.85vw, 1.86rem);
  line-height: 0.98;
}

.search-wrap {
  position: relative;
}

.prep-search {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.72rem 0.92rem;
  border: 1px solid rgba(20, 19, 15, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  color: var(--ink);
  outline: none;
  font-size: 1rem;
}

.prep-search:focus {
  border-color: rgba(20, 19, 15, 0.48);
  background: rgba(255, 255, 255, 0.42);
}

.typeahead {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.35rem);
  z-index: 8;
  display: none;
  max-height: 18rem;
  overflow-y: auto;
  border: 1px solid rgba(20, 19, 15, 0.18);
  border-radius: 8px;
  background: #fff5cf;
  box-shadow: 0 18px 44px rgba(34, 25, 8, 0.18);
}

.typeahead.is-visible {
  display: block;
}

.typeahead button {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 0;
  border-bottom: 1px solid rgba(20, 19, 15, 0.1);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.typeahead button:hover,
.typeahead button:focus-visible {
  background: rgba(255, 255, 255, 0.4);
  outline: none;
}

.typeahead span {
  font: 800 0.82rem/1.05 "Poppins", sans-serif;
  text-transform: uppercase;
}

.typeahead em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.78rem;
}

.button-list,
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

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

.filter-button {
  min-height: 2.05rem;
  padding: 0.48rem 0.62rem;
  border: 1px solid rgba(20, 19, 15, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  text-align: left;
  font: 800 0.66rem/1.05 "Poppins", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button-list .filter-button {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
}

.filter-button::before {
  content: "";
  flex: 0 0 auto;
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--filter-color, var(--orange));
}

.pill-list .filter-button::before {
  display: none;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: rgba(20, 19, 15, 0.42);
  background: var(--ink);
  color: var(--yellow);
}

.button-list .filter-button:hover,
.button-list .filter-button.is-active {
  background: transparent;
  color: var(--filter-color, var(--orange));
}

.usage-control {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
}

.usage-control input {
  width: 100%;
  accent-color: var(--ink);
}

.usage-control span {
  font: 800 0.68rem/1 "Poppins", sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.prep-stage {
  min-width: 0;
  min-height: 100svh;
  padding: clamp(0.85rem, 1.25vw, 1.35rem) clamp(1.2rem, 2vw, 2.1rem) clamp(0.95rem, 1.35vw, 1.35rem);
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr);
  gap: 0.55rem;
}

.stage-head {
  min-height: 2.35rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.stage-head h1 {
  margin: 0.24rem 0 0;
  font: 800 clamp(2.6rem, 6vw, 5.8rem)/0.84 "Poppins", sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.stage-head .eyebrow {
  color: rgba(20, 19, 15, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.stage-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.clear-filter {
  min-height: 2.3rem;
  padding: 0.45rem 0.76rem;
  border: 1px solid rgba(20, 19, 15, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: var(--ink);
  cursor: pointer;
  font: 800 0.68rem/1 "Poppins", sans-serif;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.clear-filter.ghost {
  background: transparent;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.filter-chips button,
.filter-empty {
  min-height: 2rem;
  padding: 0.48rem 0.66rem;
  border: 1px solid rgba(20, 19, 15, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: var(--ink);
  cursor: pointer;
  font: 800 0.66rem/1 "Poppins", sans-serif;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.filter-chips span {
  margin-left: 0.38rem;
  color: rgba(20, 19, 15, 0.58);
}

.filter-chips .chip-clear {
  background: transparent;
}

.result-summary {
  min-height: 1.1rem;
  color: var(--muted);
  font: 800 0.66rem/1 "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prep-grid {
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14.5rem, 1fr));
  grid-auto-rows: minmax(10.5rem, auto);
  gap: clamp(0.55rem, 0.9vw, 0.9rem);
  align-content: start;
}

.prep-tile {
  min-width: 0;
  min-height: 10.5rem;
  padding: 0.9rem;
  border: 1px solid rgba(20, 19, 15, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  align-content: start;
  gap: 0.48rem;
  text-align: left;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.prep-tile:hover,
.prep-tile:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 14px 28px rgba(45, 31, 5, 0.13);
  outline: none;
}

.prep-family,
.prep-subtitle,
.prep-notes,
.used-preview {
  color: rgba(20, 19, 15, 0.66);
  font-size: 0.76rem;
  line-height: 1.18;
}

.prep-family {
  font: 800 0.62rem/1.1 "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prep-name {
  min-width: 0;
  font: 800 clamp(1.15rem, 1.8vw, 1.82rem)/0.92 "Poppins", sans-serif;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.prep-subtitle {
  font-style: italic;
}

.used-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.used-preview span {
  display: inline-flex;
  padding: 0.18rem 0.38rem;
  border: 1px solid rgba(20, 19, 15, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.filter-sheet-close,
.mobile-filter-trigger,
.filter-sheet-scrim {
  display: none;
}

.drawer-scrim {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 4, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 9;
}

.prep-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(38rem, 94vw);
  padding: clamp(0.9rem, 1.5vw, 1.25rem);
  background: rgba(13, 13, 11, 0.72);
  backdrop-filter: blur(8px);
  color: #fffaf0;
  box-shadow: -20px 0 70px rgba(0, 0, 0, 0.32);
  transform: translateX(104%);
  transition: transform 260ms ease;
  z-index: 10;
  overflow-y: auto;
}

.stock-app.drawer-open .drawer-scrim {
  opacity: 1;
  pointer-events: auto;
}

.stock-app.drawer-open .prep-drawer {
  transform: translateX(0);
}

.drawer-close {
  position: sticky;
  top: 0;
  margin-left: auto;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(244, 230, 196, 0.18);
  border-radius: 999px;
  background: rgba(244, 230, 196, 0.08);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
}

.drawer-close::before,
.drawer-close::after {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 2px;
  background: #fffaf0;
}

.drawer-close::before { transform: rotate(45deg); }
.drawer-close::after { transform: rotate(-45deg); }

.prep-card {
  margin-top: 0.7rem;
  display: grid;
  gap: 1.1rem;
  padding: clamp(1rem, 2vw, 1.45rem);
  border: 1px solid rgba(244, 230, 196, 0.16);
  border-radius: 6px;
  background: rgba(10, 12, 16, 0.82);
  box-shadow: var(--shadow);
  overflow-wrap: break-word;
}

.prep-card .print-brand {
  display: none;
}

.prep-card header {
  display: grid;
  gap: 0.55rem;
}

.prep-card h2 {
  margin: 0;
  font: 800 clamp(2rem, 4vw, 3.4rem)/0.9 "Poppins", sans-serif;
  text-transform: uppercase;
}

.prep-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  line-height: 1.58;
}

.card-label,
.section-label {
  color: rgba(244, 230, 196, 0.76);
  font: 700 0.72rem/1 "Poppins", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prep-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(244, 230, 196, 0.12);
  border-bottom: 1px solid rgba(244, 230, 196, 0.12);
}

.prep-meta div {
  display: grid;
  gap: 0.25rem;
}

.prep-meta dt {
  color: rgba(244, 230, 196, 0.76);
  font: 700 0.7rem/1 "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prep-meta dd {
  margin: 0;
  color: #fffaf0;
  line-height: 1.35;
}

.ingredients,
.method,
.tools,
.used-in {
  display: grid;
  gap: 0.55rem;
}

.ingredients ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 250, 240, 0.88);
  line-height: 1.55;
}

.method p,
.tools p {
  color: rgba(255, 250, 240, 0.86);
}

.used-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}

.used-chip-list a,
.used-chip-list span {
  display: inline-flex;
  min-height: 1.82rem;
  align-items: center;
  padding: 0.36rem 0.55rem;
  border: 1px solid rgba(244, 230, 196, 0.18);
  border-radius: 999px;
  background: rgba(244, 230, 196, 0.08);
  color: #fffaf0;
  font: 800 0.62rem/1 "Poppins", sans-serif;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.used-chip-list span {
  opacity: 0.62;
}

.print-button {
  justify-self: start;
  min-height: 2.5rem;
  padding: 0.66rem 0.9rem;
  border: 1px solid rgba(244, 230, 196, 0.18);
  border-radius: 999px;
  background: rgba(244, 230, 196, 0.08);
  color: #fffaf0;
  cursor: pointer;
  font: 800 0.68rem/1 "Poppins", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.print-button:hover {
  background: rgba(244, 230, 196, 0.16);
}

@media (max-width: 1080px) {
  .stock-app {
    grid-template-columns: minmax(270px, 34vw) minmax(0, 1fr);
  }

  .button-list {
    grid-template-columns: 1fr;
  }

  .prep-grid {
    grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    min-height: 100svh;
  }

  .stock-app {
    min-height: 100svh;
    padding-bottom: 5.4rem;
    display: block;
    overflow: visible;
  }

  .stock-panel {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 22;
    width: 100%;
    max-height: min(82svh, 44rem);
    min-height: 0;
    padding: 1.15rem 1.1rem 1.35rem;
    border: 1px solid rgba(20, 19, 15, 0.18);
    border-bottom: 0;
    border-radius: 18px 18px 0 0;
    background:
      radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.36), transparent 12rem),
      rgba(243, 225, 162, 0.98);
    box-shadow: 0 -18px 52px rgba(20, 19, 15, 0.24);
    display: grid;
    gap: 0.9rem;
    overflow-y: auto;
    transform: translateY(calc(100% + 1rem));
    transition: transform 260ms cubic-bezier(.22,1,.36,1);
  }

  .stock-app.filter-sheet-open .stock-panel {
    transform: translateY(0);
  }

  .filter-sheet-close {
    display: grid;
    place-items: center;
    position: sticky;
    top: 0;
    justify-self: end;
    z-index: 1;
    width: 2.2rem;
    height: 2.2rem;
    margin-bottom: -0.5rem;
    border: 1px solid rgba(20, 19, 15, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
  }

  .filter-sheet-close::before,
  .filter-sheet-close::after {
    content: "";
    position: absolute;
    width: 0.88rem;
    height: 2px;
    background: var(--ink);
  }

  .filter-sheet-close::before { transform: rotate(45deg); }
  .filter-sheet-close::after { transform: rotate(-45deg); }

  .filter-sheet-scrim {
    position: fixed;
    inset: 0;
    z-index: 21;
    background: rgba(5, 5, 4, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .stock-app.filter-sheet-open .filter-sheet-scrim {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

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

  .filter-button {
    min-height: 2.4rem;
  }

  .prep-stage {
    width: 100vw;
    max-width: 100vw;
    min-height: 100svh;
    padding: 1rem 0.86rem 0;
    display: grid;
    grid-template-rows: auto auto auto 1fr;
    gap: 0.72rem;
    overflow-x: hidden;
  }

  .stage-head {
    display: grid;
    align-items: start;
    gap: 0.75rem;
    min-width: 0;
  }

  .stage-actions {
    justify-content: flex-start;
  }

  .stage-head h1 {
    max-width: 9.8ch;
    font-size: clamp(3rem, 17vw, 5.4rem);
  }

  .stage-head .eyebrow {
    font-size: 0.64rem;
  }

  .clear-filter {
    min-height: 2.15rem;
    padding: 0.45rem 0.62rem;
    font-size: 0.62rem;
  }

  .active-filter-bar {
    min-height: 2rem;
  }

  .filter-empty {
    width: 100%;
    min-height: 2.85rem;
    display: grid;
    place-items: center;
    border-color: rgba(20, 19, 15, 0.28);
    background: rgba(255, 255, 255, 0.32);
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .prep-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(8rem, auto);
    gap: 0.7rem;
    overflow: visible;
    align-content: start;
  }

  .prep-tile {
    min-height: 8rem;
    padding: 0.82rem;
    background: rgba(255, 255, 255, 0.13);
  }

  .mobile-filter-trigger {
    position: fixed;
    left: 50%;
    bottom: max(0.9rem, env(safe-area-inset-bottom));
    z-index: 20;
    display: block;
    min-height: 3rem;
    width: min(18rem, calc(100vw - 2rem));
    padding: 0.82rem 1rem;
    border: 1px solid rgba(20, 19, 15, 0.22);
    border-radius: 999px;
    background: var(--ink);
    color: var(--yellow);
    box-shadow: 0 14px 36px rgba(20, 19, 15, 0.28);
    cursor: pointer;
    transform: translateX(-50%);
    font: 800 0.76rem/1 "Poppins", sans-serif;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .prep-drawer {
    top: auto;
    left: 0;
    width: 100%;
    height: min(88svh, 48rem);
    padding: 0.9rem 0.8rem max(1rem, env(safe-area-inset-bottom));
    border-radius: 18px 18px 0 0;
    transform: translateY(104%);
    box-shadow: 0 -18px 52px rgba(0, 0, 0, 0.34);
  }

  .stock-app.drawer-open .prep-drawer {
    transform: translateY(0);
  }

  .prep-card {
    margin-top: 0.5rem;
    padding: 1.05rem 1.05rem 4.75rem;
  }

  .prep-card h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .prep-meta {
    grid-template-columns: 1fr;
  }

  .print-button {
    position: sticky;
    bottom: max(0.25rem, env(safe-area-inset-bottom));
    z-index: 3;
    justify-self: stretch;
    width: 100%;
    min-height: 3rem;
    background: #fffaf0;
    color: var(--ink);
    box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.24);
  }

  .stock-app.drawer-open .mobile-filter-trigger {
    display: none;
  }
}

@media print {
  @page {
    margin: 0.5in;
  }

  html,
  body {
    width: 100%;
    margin: 0;
    background: #fff;
  }

  body * {
    visibility: hidden !important;
  }

  .stock-app,
  .prep-drawer {
    display: block !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    background: #fff !important;
    box-shadow: none !important;
    color: #111 !important;
    overflow: visible !important;
  }

  .intro-overlay,
  .stock-panel,
  .prep-stage,
  .drawer-scrim,
  .drawer-close,
  .mobile-filter-trigger,
  .filter-sheet-scrim,
  .print-button {
    display: none !important;
  }

  .prep-card,
  .prep-card * {
    visibility: visible !important;
  }

  .prep-card {
    position: fixed !important;
    top: 0 !important;
    left: 50% !important;
    width: min(6.25in, calc(100vw - 1in)) !important;
    max-width: 6.25in !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #111 !important;
    transform: translateX(-50%) !important;
  }

  .print-brand {
    display: grid !important;
    justify-items: center;
    gap: 0.08rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
    text-align: center;
  }

  .print-brand strong {
    color: #111 !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.85rem;
    font-style: italic;
    line-height: 1;
  }

  .print-brand span {
    color: #111 !important;
    font: 800 0.62rem/1 "Poppins", sans-serif;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .prep-card h2,
  .prep-card p,
  .prep-meta dd,
  .ingredients ul,
  .method p,
  .tools p,
  .used-chip-list a,
  .used-chip-list span {
    color: #111 !important;
  }

  .card-label,
  .section-label,
  .prep-meta dt {
    color: rgba(17, 17, 17, 0.68) !important;
  }

  .prep-meta {
    border-color: rgba(17, 17, 17, 0.18) !important;
  }

  .used-chip-list a,
  .used-chip-list span {
    border-color: rgba(17, 17, 17, 0.18) !important;
    background: #fff !important;
  }
}
