:root {
  --tomato: #556043;
  --tomato-dark: #3f4a32;
  --basil: #4f5d3f;
  --olive: #c47a5a;
  --cream: #faf6ee;
  --stone: #efe6d8;
  --ink: #2f3027;
  --muted: #6d6759;
  --line: #d8cab7;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(63, 74, 50, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(250, 246, 238, 0.88), rgba(250, 246, 238, 0.88)),
    url("assets/hollys-table-logo.png") center 58vh / min(78vw, 780px) auto no-repeat fixed,
    linear-gradient(90deg, rgba(85, 96, 67, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(63, 74, 50, 0.05) 1px, transparent 1px),
    var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-wrap: anywhere;
}

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

.sidebar {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(250, 246, 238, 0.24), transparent 42%),
    var(--tomato-dark);
  box-shadow: 0 18px 42px rgba(63, 74, 50, 0.22);
  color: var(--cream);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(340px, auto) minmax(0, 1fr);
  left: 0;
  min-height: 118px;
  padding: 12px 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: transform 260ms ease, box-shadow 260ms ease;
  width: 100%;
  z-index: 10;
}

body.nav-hidden:not(.mobile-nav-open) .sidebar {
  transform: translateY(-115%);
}

.brand {
  align-items: center;
  display: flex;
  gap: 16px;
  min-width: 0;
}

.brand-mark {
  align-items: center;
  background: var(--cream);
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(48, 40, 50, 0.18);
  color: var(--tomato-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 800;
  height: 56px;
  justify-content: center;
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: nowrap;
  width: 56px;
}

.brand-logo {
  background: transparent;
  border: 0;
  border-radius: 0;
  filter: drop-shadow(0 16px 24px rgba(47, 48, 39, 0.24));
  display: block;
  flex: 0 0 auto;
  height: 104px;
  object-fit: contain;
  padding: 0;
  width: 104px;
}

.landing-body .sidebar {
  grid-template-columns: minmax(450px, auto) minmax(0, 1fr);
  min-height: 158px;
  padding-block: 12px;
}

.landing-body .brand-logo {
  height: 138px;
  width: 138px;
}

.landing-body .brand strong {
  font-size: 48px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(250, 246, 238, 0.86);
  font-size: 12px;
  font-weight: 800;
  margin-top: 5px;
  text-transform: uppercase;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 0.95;
}

.sidebar nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.sidebar nav a {
  border-radius: 8px;
  color: rgba(248, 251, 255, 0.78);
  font-weight: 700;
  padding: 10px 12px;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: rgba(248, 251, 255, 0.16);
  color: var(--cream);
}

.mobile-menu-button,
.mobile-nav-backdrop {
  display: none;
}

.shell {
  margin-left: 0;
  max-width: none;
  min-height: 100vh;
  padding: 144px 30px 30px;
}

.landing-body .shell {
  padding-top: 186px;
}

.page-header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.eyebrow {
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(32px, 4vw, 56px);
  max-width: 850px;
}

.action-link {
  align-items: center;
  background: var(--basil);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  white-space: nowrap;
}

.action-link:hover {
  background: var(--tomato-dark);
}

.hero-panel {
  background: var(--white);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
  margin-bottom: 24px;
  min-height: 340px;
  overflow: hidden;
}

.landing-shell {
  display: grid;
  gap: 24px;
}

.landing-hero,
.landing-split,
.landing-feature-band,
.landing-login-strip,
.landing-final {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.landing-hero {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  min-height: 620px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 70px);
}

.landing-hero-copy h1 {
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
  max-width: 860px;
}

.landing-hero-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 660px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 18px;
}

.secondary-link {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--tomato-dark);
  display: inline-flex;
  font-weight: 900;
  min-height: 44px;
  padding: 12px 18px;
}

.landing-proof {
  font-size: 15px !important;
  font-weight: 800;
}

.landing-phone-scene {
  align-items: center;
  background:
    radial-gradient(circle at 25% 25%, rgba(85, 96, 67, 0.16), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(243, 160, 194, 0.28), transparent 34%),
    var(--stone);
  display: grid;
  min-height: 520px;
  place-items: center;
}

.landing-phone {
  background: var(--white);
  border: 10px solid var(--ink);
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(48, 40, 50, 0.22);
  display: grid;
  gap: 14px;
  max-width: 310px;
  min-height: 520px;
  padding: 20px;
  transform: rotate(2deg);
  width: 82%;
}

.phone-topline {
  background: var(--ink);
  border-radius: 999px;
  height: 5px;
  justify-self: center;
  width: 74px;
}

.landing-phone h2 {
  color: var(--tomato-dark);
  font-size: 32px;
}

.phone-recipe-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  overflow: hidden;
}

.phone-recipe-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.phone-recipe-card div,
.phone-check-row {
  padding: 0 12px 12px;
}

.phone-recipe-card strong,
.phone-recipe-card span {
  display: block;
}

.phone-recipe-card span,
.phone-check-row {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.phone-check-row {
  align-items: center;
  background: var(--stone);
  border-radius: 8px;
  display: flex;
  gap: 8px;
  min-height: 40px;
  padding: 10px 12px;
}

.phone-check-row span {
  background: var(--tomato);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

.landing-phone button {
  background: var(--tomato);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  font: inherit;
  font-weight: 900;
  min-height: 44px;
}

.landing-steps,
.landing-path-grid,
.landing-preview-grid {
  display: grid;
  gap: 16px;
}

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

.landing-preview-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

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

.landing-steps article,
.landing-path-card,
.landing-preview-grid a {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 22px;
}

.landing-path-card {
  min-height: 210px;
}

.landing-path-card.featured {
  background: var(--tomato);
  border-color: transparent;
  color: var(--white);
}

.landing-steps span {
  align-items: center;
  background: var(--tomato);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.landing-path-card span {
  color: var(--basil);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-path-card strong {
  color: var(--tomato-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.05;
}

.landing-path-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.landing-path-card.featured span,
.landing-path-card.featured strong,
.landing-path-card.featured p {
  color: var(--white);
}

.landing-steps h2,
.landing-split h2,
.landing-feature-band h2,
.landing-final h2 {
  color: var(--tomato-dark);
  font-size: clamp(30px, 4vw, 54px);
}

.landing-steps p,
.landing-split p,
.landing-feature-band p,
.landing-final p,
.landing-preview-grid span {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.landing-split,
.landing-feature-band {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  padding: clamp(24px, 4vw, 46px);
}

.landing-card-stack {
  display: grid;
  gap: 12px;
}

.landing-card-stack article {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.landing-card-stack strong,
.landing-preview-grid strong {
  color: var(--tomato-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.landing-card-stack span {
  color: var(--muted);
}

.landing-feature-band {
  grid-template-columns: minmax(0, 1fr) auto;
}

.landing-login-strip {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px;
}

.landing-login-strip h2 {
  color: var(--tomato-dark);
  font-size: clamp(28px, 3vw, 42px);
}

.landing-login-strip p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
  margin: 8px 0 0;
}

.landing-login-actions,
.landing-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.landing-preview-grid img {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  display: block;
  object-fit: cover;
  width: 100%;
}

.landing-final {
  padding: clamp(26px, 5vw, 56px);
  text-align: center;
}

.landing-final .action-link {
  margin-top: 18px;
}

.landing-final-actions .action-link {
  margin-top: 0;
}

.hero-copy {
  align-self: center;
  padding: clamp(28px, 5vw, 64px);
}

.hero-copy h2 {
  font-size: clamp(30px, 4vw, 58px);
  max-width: 760px;
}

.hero-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 680px;
}

.hero-panel img,
.recipe-card-large > img,
.dinner-row img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.metric-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.metric,
.panel,
.recipe-card-large,
.shopping-group,
.notice {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric {
  padding: 22px;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.metric strong {
  color: var(--tomato-dark);
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.metric p {
  color: var(--muted);
  line-height: 1.45;
  margin: 10px 0 0;
}

.dashboard-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.panel {
  padding: 24px;
}

.panel-heading,
.recipe-title-row {
  align-items: start;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 20px;
}

.panel-heading a {
  color: var(--basil);
  font-weight: 900;
}

.panel h2 {
  font-size: 30px;
}

.dinner-list {
  display: grid;
  gap: 12px;
}

.cooking-queue-scroll {
  max-height: 540px;
  overflow-y: auto;
  padding-right: 6px;
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 44px), transparent);
  mask-image: linear-gradient(to bottom, #000 calc(100% - 44px), transparent);
}

.cooking-queue-scroll::-webkit-scrollbar {
  width: 8px;
}

.cooking-queue-scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 999px;
}

.dinner-row {
  align-items: center;
  background: var(--stone);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  min-height: 94px;
  overflow: hidden;
  padding: 8px 14px 8px 8px;
}

.dinner-row img {
  aspect-ratio: 1;
  border-radius: 6px;
}

.dinner-row strong,
.dinner-row small {
  display: block;
}

.dinner-row small {
  color: var(--muted);
  line-height: 1.35;
  margin-top: 4px;
}

.dinner-row em,
.time-badge {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--tomato-dark);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  padding: 8px 10px;
}

.recipe-actions {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  min-width: 170px;
}

.shopping-button {
  background: var(--tomato);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 12px;
  text-align: center;
  white-space: nowrap;
}

.shopping-button:hover {
  background: var(--tomato-dark);
}

.save-recipe-button {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--tomato-dark);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
}

.save-recipe-button[data-saved="true"] {
  background: var(--olive);
  border-color: var(--olive);
}

.save-recipe-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.progress-ring {
  align-items: center;
  background:
    radial-gradient(circle at center, var(--white) 58%, transparent 59%),
    conic-gradient(var(--tomato) 0deg, var(--line) 0deg);
  border-radius: 50%;
  display: flex;
  height: 170px;
  justify-content: center;
  margin: 10px auto 24px;
  width: 170px;
}

.progress-ring span {
  color: var(--tomato-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 800;
}

.quick-list {
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.45;
  margin: 0;
  padding-left: 20px;
}

.notice {
  border-left: 6px solid var(--olive);
  color: var(--muted);
  line-height: 1.55;
  margin-top: 24px;
  padding: 18px 20px;
}

.notice strong {
  color: var(--ink);
}

.notice a {
  color: var(--tomato-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.affiliate-note {
  border-left-color: var(--tomato);
}

.site-footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
  margin-top: 28px;
  padding: 18px 0 6px;
}

.site-footer a {
  color: var(--tomato-dark);
  font-size: 13px;
  font-weight: 900;
}

.legal-bottom-tab {
  align-items: center;
  background: rgba(250, 246, 238, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px 8px 0 0;
  bottom: 0;
  box-shadow: 0 -8px 24px rgba(63, 74, 50, 0.12);
  color: var(--tomato-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 8px;
  left: 18px;
  padding: 8px 12px;
  position: fixed;
  z-index: 120;
}

.legal-bottom-tab a {
  color: inherit;
}

.legal-bottom-tab span {
  color: var(--muted);
}

.content-page {
  display: grid;
  gap: 20px;
}

.content-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 38px);
}

.content-panel h2 {
  color: var(--tomato-dark);
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 14px;
}

.content-panel p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  max-width: 880px;
}

.content-panel p + p {
  margin-top: 14px;
}

.contact-callout {
  background: var(--stone);
  border-radius: 8px;
  padding: 14px 16px;
}

.pick-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.pick-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 0;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
}

.pick-card img {
  display: block;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  width: 100%;
}

.pick-card div {
  align-content: start;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.pick-card h2 {
  color: var(--tomato-dark);
  font-size: 28px;
}

.pick-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.pick-card .shopping-button {
  justify-self: start;
}

.subscribe-banner,
.subscribe-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  margin-top: 24px;
  padding: 24px;
}

.subscribe-banner {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
}

.subscribe-banner h2,
.subscribe-copy h2 {
  color: var(--tomato-dark);
  font-size: clamp(30px, 4vw, 48px);
}

.subscribe-banner p,
.subscribe-copy p,
.subscribe-form p {
  color: var(--muted);
  line-height: 1.55;
  margin: 10px 0 0;
}

.subscribe-panel {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
}

.subscribe-copy ul {
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.45;
  margin: 18px 0 0;
  padding-left: 20px;
}

.subscribe-form {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 20px;
}

.subscribe-form h3 {
  color: var(--tomato-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.subscribe-form label {
  color: var(--ink);
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.subscribe-form input,
.subscribe-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 11px 12px;
  text-transform: none;
  width: 100%;
}

.subscribe-form textarea {
  min-height: 110px;
  resize: vertical;
}

.subscribe-form button,
.stripe-button {
  background: var(--tomato);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  text-align: center;
}

.subscribe-form button:hover,
.stripe-button:hover {
  background: var(--tomato-dark);
}

.subscribe-form a:not(.stripe-button) {
  color: var(--tomato-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subscription-manage-link {
  font-size: 13px;
  margin-top: 0;
}

.subscription-benefits,
.meal-prep-panel,
.pricing-section {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 24px;
  padding: 24px;
}

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

.pricing-card {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 22px;
}

.pricing-card.featured {
  background: var(--white);
  border-color: var(--tomato);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  color: var(--tomato-dark);
  font-size: 32px;
}

.pricing-card strong {
  color: var(--tomato-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.pricing-card p:not(.eyebrow),
.pricing-card li {
  color: var(--muted);
  line-height: 1.5;
}

.pricing-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.pricing-card .stripe-button,
.pricing-card .secondary-link {
  justify-self: start;
}

.subscription-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.subscription-tabs a {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--tomato-dark);
  font-size: 13px;
  font-weight: 900;
  min-height: 42px;
  padding: 12px 14px;
}

.subscription-tabs a.active,
.subscription-tabs a:hover {
  background: var(--tomato);
  color: var(--white);
}

.benefit-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.benefit-card {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.benefit-card span,
.meal-prep-steps span {
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.benefit-card h3 {
  color: var(--tomato-dark);
  font-size: 25px;
}

.benefit-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.meal-prep-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

.meal-prep-panel h2 {
  color: var(--tomato-dark);
  font-size: clamp(30px, 4vw, 46px);
}

.meal-prep-panel p {
  color: var(--muted);
  line-height: 1.55;
  margin: 12px 0 0;
}

.meal-prep-steps {
  display: grid;
  gap: 12px;
}

.meal-prep-steps div {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  padding: 16px;
}

.meal-prep-steps strong {
  color: var(--ink);
  line-height: 1.45;
}

.meal-prep-link {
  grid-column: 1 / -1;
  justify-self: start;
}

.test-mode-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
}

.standalone-shell {
  margin-left: 0;
  max-width: 960px;
}

.setup-message {
  margin-top: 0;
}

.access-panel {
  margin-bottom: 24px;
}

.access-box {
  align-content: start;
}

.access-steps {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.access-steps article {
  align-items: center;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
}

.access-steps span {
  align-items: center;
  background: var(--tomato);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 26px;
  justify-content: center;
  width: 26px;
}

.access-steps strong {
  color: var(--tomato-dark);
}

.access-tabs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.access-tabs button {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--tomato-dark);
  min-height: 42px;
  padding: 10px;
}

.access-tabs button.active {
  background: var(--tomato);
  color: var(--white);
}

.auth-panel {
  display: grid;
  gap: 14px;
}

.auth-panel[hidden] {
  display: none;
}

.form-message {
  min-height: 22px;
}

.recipe-archive {
  display: grid;
  gap: 24px;
}

.subscriber-recipe {
  grid-template-columns: 1fr;
}

.subscriber-recipe > img {
  aspect-ratio: 16 / 9;
  height: auto;
  max-height: 420px;
}

.subscriber-recipe .recipe-content > p {
  color: var(--muted);
  line-height: 1.55;
  margin: 12px 0 0;
}

.meal-prep-current {
  display: grid;
  gap: 24px;
}

.meal-prep-difference {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  margin-bottom: 24px;
  padding: 24px;
}

.meal-prep-difference h2 {
  color: var(--tomato-dark);
  font-size: clamp(30px, 4vw, 48px);
}

.meal-prep-difference p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
  margin: 10px 0 0;
}

.meal-prep-difference-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.meal-prep-difference-grid article {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.meal-prep-difference-grid span {
  color: var(--basil);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.meal-prep-difference-grid strong {
  color: var(--tomato-dark);
  line-height: 1.35;
}

.under-30-summary {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 24px;
}

.under-30-summary article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 18px;
}

.under-30-summary span {
  color: var(--basil);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.under-30-summary strong {
  color: var(--tomato-dark);
  line-height: 1.35;
}

.under-30-card .time-badge:first-child {
  background: var(--tomato);
  color: var(--white);
}

.current-meal-prep {
  margin-bottom: 24px;
}

.meal-prep-meta {
  justify-content: flex-start;
  margin: 18px 0;
}

.meal-prep-detail,
.meal-prep-shopping,
.subscriber-drink-mini {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.meal-prep-detail h3,
.meal-prep-shopping h3,
.subscriber-drink-mini h3 {
  color: var(--basil);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.subscriber-drink-mini {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.meal-prep-photo {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  width: 100%;
}

.subscriber-drink-mini .eyebrow {
  margin-bottom: 0;
}

.subscriber-drink-mini p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.meal-prep-detail ul {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  padding-left: 20px;
}

.meal-prep-detail li + li {
  margin-top: 8px;
}

.meal-prep-checklist {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.meal-prep-checklist label {
  align-items: center;
  background: var(--stone);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  line-height: 1.35;
  min-height: 44px;
  padding: 10px 12px;
}

.meal-prep-checklist input {
  accent-color: var(--tomato);
  flex: 0 0 auto;
}

.biweekly-shopping-list {
  margin-top: 18px;
}

.biweekly-shopping-list h2 {
  font-size: 30px;
}

.meal-prep-note-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.meal-prep-note-grid p {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
  padding: 14px;
}

.meal-prep-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  padding: 22px;
}

.meal-prep-card > .meal-prep-photo {
  max-height: 320px;
}

.meal-prep-card h3 {
  color: var(--tomato-dark);
  font-size: 30px;
}

.meal-prep-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 8px 0 0;
}

.meal-prep-archive-heading h2 {
  color: var(--tomato-dark);
  font-size: 34px;
}

.subscriber-drinks-current {
  display: grid;
  gap: 24px;
  margin-bottom: 24px;
}

.subscriber-drink-feature {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
  overflow: hidden;
}

.subscriber-drink-feature img {
  display: block;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  width: 100%;
}

.subscriber-drink-feature > div {
  align-content: start;
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 44px);
}

.subscriber-drink-feature h2 {
  color: var(--tomato-dark);
  font-size: clamp(32px, 4vw, 48px);
}

.subscriber-drink-feature p,
.subscriber-drink-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.subscriber-drink-feature strong,
.subscriber-drink-card strong {
  color: var(--ink);
}

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

.subscriber-drink-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 22px;
}

.subscriber-drink-card h3 {
  color: var(--tomato-dark);
  font-size: 30px;
}

.drink-detail-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}

.drink-detail-grid section {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.drink-detail-grid h4 {
  color: var(--basil);
  font-size: 13px;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.drink-detail-grid ul,
.drink-detail-grid ol {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  padding-left: 20px;
}

.drink-detail-grid li + li {
  margin-top: 8px;
}

.owner-access-panel {
  align-items: center;
}

.owner-dashboard-shell {
  max-width: 1120px;
}

.owner-logout {
  font-size: 14px;
}

.owner-link-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.owner-link-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  padding: 22px;
}

.owner-link-card span {
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.owner-link-card strong {
  color: var(--tomato-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.owner-subscriber-panel {
  margin-top: 24px;
}

.owner-subscriber-panel > p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.subscriber-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 18px;
  overflow: hidden;
}

.subscriber-table-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(120px, 0.8fr) minmax(190px, 1.3fr) minmax(90px, 0.5fr) minmax(120px, 0.6fr);
  min-height: 52px;
  padding: 12px 14px;
}

.subscriber-table-row:first-child {
  border-top: 0;
}

.subscriber-table-head {
  background: var(--stone);
  color: var(--tomato-dark);
  font-size: 12px;
  font-weight: 900;
  min-height: 42px;
  text-transform: uppercase;
}

.subscriber-table-row a {
  color: var(--tomato-dark);
  font-weight: 900;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.family-permissions {
  margin-top: 16px;
}

.qr-share {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) 180px;
  margin-top: 24px;
  padding: 24px;
}

.qr-share h2 {
  color: var(--tomato-dark);
  font-size: 32px;
}

.qr-share p:last-child {
  color: var(--muted);
  line-height: 1.5;
  margin: 10px 0 0;
}

.qr-share img {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: block;
  padding: 10px;
  width: 100%;
}

.recipe-page-grid {
  display: grid;
  gap: 24px;
}

.free-recipes-hub {
  align-items: end;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  margin-bottom: 24px;
  padding: 22px;
}

.free-recipes-hub h2 {
  color: var(--tomato-dark);
  font-size: 30px;
}

.free-recipes-hub p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.5;
  margin: 8px 0 0;
}

.free-recipe-tabs {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.free-recipe-tabs a {
  align-items: center;
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--tomato-dark);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 12px;
  text-align: center;
}

.free-recipe-tabs a.active,
.free-recipe-tabs a:hover {
  background: var(--tomato);
  color: var(--white);
}

.recipe-card-large {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  overflow: hidden;
}

.recipe-card-large > img {
  min-height: 440px;
}

.recipe-content {
  padding: clamp(24px, 4vw, 44px);
}

.recipe-content h2 {
  font-size: clamp(28px, 3vw, 42px);
}

.recipe-columns {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(210px, 0.75fr) minmax(0, 1.25fr);
}

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

.recipe-columns h3 {
  color: var(--basil);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.recipe-columns ul,
.recipe-columns ol {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  padding-left: 20px;
}

.recipe-columns li + li {
  margin-top: 8px;
}

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

.shopping-intro {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}

.shopping-intro p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 16px;
}

.recipe-picker-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}

.shopping-save-status {
  background: rgba(85, 96, 67, 0.1);
  border: 1px solid rgba(85, 96, 67, 0.18);
  border-radius: 8px;
  color: var(--tomato-dark) !important;
  display: inline-flex;
  font-weight: 900;
  margin-top: 14px !important;
  padding: 10px 12px;
}

.shopping-clear-link {
  color: var(--tomato-dark);
  display: inline-flex;
  font-weight: 900;
  margin-top: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shopping-clear-link[hidden] {
  display: none;
}

.account-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 18px;
}

.account-entry-grid {
  grid-template-columns: minmax(0, 520px);
}

.account-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
}

.account-panel h2 {
  font-size: 30px;
  margin-bottom: 14px;
}

.account-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.account-form {
  display: grid;
  gap: 12px;
}

.compact-form {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.account-form label {
  color: var(--tomato-dark);
  display: grid;
  font-weight: 900;
  gap: 7px;
}

.account-form input {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
}

.account-form input:focus {
  border-color: var(--tomato);
  outline: 3px solid rgba(85, 96, 67, 0.14);
}

[data-owner-panel][hidden] {
  display: none !important;
}

[data-login-panel][hidden] {
  display: none;
}

.account-login-prompt {
  margin: 16px 0 0;
}

.account-login-prompt a {
  color: var(--tomato-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

[data-signed-in-panel] {
  display: none;
}

[data-account-page][data-auth-status="signed-in"] [data-signed-out-panel] {
  display: none;
}

[data-account-page][data-auth-status="signed-in"] [data-signed-in-panel] {
  display: block;
}

.subscription-status-box {
  display: grid;
  gap: 10px;
}

.subscription-status-box strong {
  color: var(--tomato-dark);
  font-size: 19px;
}

.saved-recipes-panel {
  margin-bottom: 18px;
}

.saved-recipes-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.saved-recipe-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 5px;
  padding: 14px;
}

.saved-recipe-row:hover {
  border-color: var(--tomato);
}

.saved-recipe-row span {
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.saved-recipe-row strong {
  color: var(--tomato-dark);
}

.owner-family-panel {
  margin-bottom: 18px;
}

.account-owner-links {
  margin-top: 18px;
}

.family-access-form {
  align-items: end;
  grid-template-columns: minmax(0, 1fr) auto;
}

.family-access-note {
  margin: 14px 0 0;
}

.family-access-row {
  align-items: center;
  grid-template-columns: minmax(80px, 0.45fr) minmax(0, 1fr) auto;
}

.family-access-row:hover {
  border-color: var(--line);
}

.account-message {
  margin-bottom: 18px;
}

.recipe-list-picker {
  display: grid;
  gap: 8px;
  max-width: 480px;
}

.recipe-list-picker span {
  color: var(--tomato-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.recipe-list-picker select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--tomato-dark) 50%) calc(100% - 22px) 54% / 7px 7px no-repeat,
    linear-gradient(135deg, var(--tomato-dark) 50%, transparent 50%) calc(100% - 17px) 54% / 7px 7px no-repeat,
    var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--tomato-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  min-height: 48px;
  padding: 12px 44px 12px 14px;
  width: 100%;
}

.recipe-list-picker select:focus {
  border-color: var(--tomato);
  outline: 3px solid rgba(85, 96, 67, 0.16);
}

.recipe-list-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.recipe-list-nav a {
  background: var(--stone);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--tomato-dark);
  font-size: 13px;
  font-weight: 900;
  padding: 10px 12px;
}

.shopping-group {
  display: grid;
  gap: 12px;
  padding: 24px;
  scroll-margin-top: 24px;
}

body[data-shopping-filtered] .shopping-board {
  grid-template-columns: minmax(0, 760px);
  justify-content: start;
}

body[data-shopping-filtered] .shopping-group {
  display: none;
}

body[data-shopping-filtered] .shopping-group.is-active-shopping-list {
  display: grid;
}

.recipe-list:target {
  border-color: var(--tomato);
  box-shadow: 0 0 0 4px rgba(85, 96, 67, 0.14), var(--shadow);
}

.shopping-group.wide {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shopping-group h2 {
  color: var(--tomato-dark);
  font-size: 30px;
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.shopping-group label {
  align-items: center;
  background: var(--stone);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
}

body[data-recipe-filtered] .recipe-page-grid {
  grid-template-columns: minmax(0, 920px);
  justify-content: start;
}

body[data-recipe-filtered] .recipe-card-large {
  display: none;
}

body[data-recipe-filtered] .recipe-card-large.is-active-recipe {
  display: block;
}

.recipe-shopping-panel {
  background: rgba(85, 96, 67, 0.08);
  border: 1px solid rgba(85, 96, 67, 0.18);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
}

.recipe-shopping-panel[hidden] {
  display: none;
}

.recipe-shopping-panel h3 {
  color: var(--tomato-dark);
  font-size: 22px;
  margin: 0 0 4px;
}

.recipe-shopping-panel label {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
}

input[type="checkbox"] {
  accent-color: var(--basil);
  height: 18px;
  width: 18px;
}

@media (max-width: 940px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .sidebar {
    align-items: center;
    bottom: auto;
    box-shadow: 0 12px 30px rgba(63, 74, 50, 0.14);
    display: grid;
    gap: 12px;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    left: 0;
    min-height: 84px;
    padding: 10px 14px;
    position: sticky;
    right: 0;
    top: 0;
    transition: transform 260ms ease, box-shadow 260ms ease;
    width: 100%;
    z-index: 90;
  }

  .shell {
    padding-top: 24px;
  }

  .mobile-menu-button {
    align-items: center;
    background: var(--cream);
    border: 1px solid rgba(248, 251, 255, 0.46);
    border-radius: 8px;
    color: var(--tomato-dark);
    cursor: pointer;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 42px;
    z-index: 100;
  }

  .mobile-menu-button::before {
    content: "\2630";
    font-size: 25px;
    font-weight: 900;
    line-height: 1;
    transform: translateY(-1px);
    transition: transform 180ms ease;
  }

  body.mobile-nav-open .mobile-menu-button::before {
    content: "\00d7";
    font-size: 32px;
    transform: translateY(-2px);
  }

  .mobile-menu-button span {
    display: none;
  }

  .brand {
    max-width: 100%;
    min-width: 0;
    justify-self: center;
  }

  .brand > span {
    min-width: 0;
  }

  .brand strong {
    font-size: 28px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    height: 42px;
    width: 42px;
  }

  .brand-logo {
    height: 58px;
    padding: 2px;
    width: 58px;
  }

  .landing-body .sidebar {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    min-height: 90px;
    padding: 10px 14px;
  }

  .landing-body .brand-logo {
    height: 66px;
    width: 66px;
  }

  .landing-body .brand strong {
    font-size: 28px;
  }

  .landing-body .shell {
    padding-top: 24px;
  }

  .sidebar nav {
    align-content: start;
    background: var(--tomato-dark);
    box-shadow: 24px 0 45px rgba(48, 40, 50, 0.28);
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    left: 0;
    min-height: 100vh;
    overflow-y: auto;
    padding: 88px 18px 24px;
    position: fixed;
    top: 0;
    transform: translateX(-105%);
    transition: transform 260ms ease;
    width: 75vw;
    max-width: 340px;
    z-index: 95;
  }

  body.mobile-nav-open .sidebar nav {
    transform: translateX(0);
  }

  .sidebar nav a {
    font-size: 15px;
    min-height: 42px;
    padding: 12px 14px;
    text-align: left;
  }

  .mobile-nav-backdrop {
    background: rgba(48, 40, 50, 0.42);
    border: 0;
    bottom: 0;
    cursor: pointer;
    display: block;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 240ms ease, visibility 240ms ease;
    visibility: hidden;
    z-index: 60;
  }

  body.mobile-nav-open .mobile-nav-backdrop {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .shell {
    margin-left: 0;
    padding: 24px 18px 28px;
  }

  .hero-panel,
  .recipe-card-large,
  .dashboard-grid,
  .account-grid,
  .subscribe-banner,
  .subscribe-panel,
  .landing-hero,
  .landing-split,
  .landing-feature-band,
  .landing-login-strip,
  .landing-steps,
  .landing-path-grid,
  .landing-preview-grid,
  .pricing-grid,
  .qr-share,
  .recipe-columns,
  .appetizer-columns,
  .pick-grid,
  .pick-card,
  .shopping-board,
  .shopping-group.wide,
  .subscriber-table-row,
  .benefit-grid,
  .meal-prep-panel,
  .meal-prep-difference,
  .meal-prep-difference-grid,
  .meal-prep-checklist,
  .under-30-summary,
  .meal-prep-note-grid,
  .subscriber-drink-feature,
  .subscriber-drinks-grid,
  .drink-detail-grid,
  .free-recipes-hub,
  .family-access-form,
  .family-access-row {
    grid-template-columns: 1fr;
  }

  .hero-panel img {
    height: 320px;
  }

  .landing-hero {
    min-height: 0;
    padding: 28px 20px;
  }

  .landing-phone-scene {
    min-height: 420px;
  }

  .landing-phone {
    min-height: 430px;
  }

  .landing-feature-band {
    justify-items: start;
  }

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

  .recipe-card-large > img {
    height: 320px;
    min-height: 0;
  }

  .shopping-group {
    scroll-margin-top: 142px;
  }

  .qr-share {
    grid-template-columns: 1fr;
  }

  .qr-share img {
    max-width: 220px;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 34px;
  }

  .landing-hero-copy h1 {
    font-size: 31px;
    max-width: 12ch;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .landing-hero-copy p:not(.eyebrow) {
    font-size: 18px;
    max-width: 24ch;
  }

  .landing-actions {
    display: grid;
    width: min(100%, 300px);
  }

  .landing-actions a {
    justify-content: center;
    white-space: normal;
    width: 100%;
  }

  .landing-hero-copy,
  .landing-actions,
  .landing-phone-scene {
    max-width: 100%;
    min-width: 0;
  }

  .landing-hero-copy {
    width: min(100%, calc(100vw - 64px));
  }

  .landing-actions > * {
    max-width: 100%;
  }

  .hero-copy h2 {
    font-size: 31px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    height: 42px;
    width: 42px;
  }

  .brand-logo {
    height: 54px;
    width: 54px;
  }

  .landing-body .brand-logo {
    height: 60px;
    width: 60px;
  }

  .sidebar {
    gap: 12px;
    padding: 12px;
  }

  .shell {
    padding: 18px 12px 24px;
  }

  .page-header,
  .panel-heading,
  .recipe-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .recipe-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: stretch;
    min-width: 0;
  }

  .shopping-button {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    min-height: 44px;
  }

  .action-link {
    width: 100%;
  }

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

  .hero-panel {
    min-height: 0;
  }

  .hero-copy,
  .recipe-content,
  .recipe-picker-panel,
  .panel,
  .metric,
  .content-panel,
  .qr-share,
  .shopping-intro,
  .shopping-group,
  .notice {
    padding: 18px;
  }

  .hero-panel img,
  .recipe-card-large > img {
    height: 220px;
  }

  .metric strong {
    font-size: 36px;
  }

  .dinner-row {
    gap: 12px;
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 8px;
  }

  .dinner-row em {
    grid-column: 2;
    justify-self: start;
  }

  .recipe-list-picker {
    max-width: none;
  }

  .recipe-list-nav {
    flex-wrap: nowrap;
    margin: 0 -18px;
    overflow-x: auto;
    padding: 0 18px 4px;
    scrollbar-width: thin;
  }

  .recipe-list-nav a {
    flex: 0 0 auto;
  }

  .shopping-group h2 {
    font-size: 26px;
  }

  .shopping-group label {
    align-items: flex-start;
    line-height: 1.35;
    min-height: 48px;
  }

  .recipe-shopping-panel label {
    align-items: flex-start;
    line-height: 1.35;
  }

  .pick-card img {
    height: 220px;
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 7px;
  }

  .brand strong {
    font-size: 21px;
    line-height: 0.95;
    white-space: nowrap;
  }

  .brand-mark {
    font-size: 18px;
    height: 38px;
    width: 38px;
  }

  .brand-logo {
    height: 50px;
    width: 50px;
  }

  .landing-body .brand-logo {
    height: 54px;
    width: 54px;
  }

  .landing-body .brand strong {
    font-size: 21px;
  }

  .sidebar nav a {
    font-size: 14px;
    min-height: 40px;
    padding: 11px 12px;
  }

  h1 {
    font-size: 30px;
  }

  .hero-copy h2 {
    font-size: 28px;
  }

  .recipe-content h2 {
    font-size: 27px;
  }

  .recipe-actions {
    grid-template-columns: 1fr;
  }

  .time-badge,
  .shopping-button {
    justify-self: start;
  }

  .shopping-button {
    width: 100%;
  }

  .dinner-row {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .hero-panel img,
  .recipe-card-large > img {
    height: 190px;
  }
}

@media print {
  body {
    background: var(--white);
  }

  .sidebar,
  .action-link,
  .legal-bottom-tab {
    display: none;
  }

  .shell {
    margin: 0;
    padding: 0;
  }

  .recipe-card-large,
  .panel,
  .shopping-group,
  .metric,
  .notice {
    box-shadow: none;
    break-inside: avoid;
  }
}
