:root {
  --ink: #082620;
  --muted: #53645f;
  --line: #dfe8e2;
  --paper: #fbfdfb;
  --surface: #ffffff;
  --green: #168446;
  --green-dark: #052b24;
  --mint: #e9f6ec;
  --coral: #e76f51;
  --blue: #3a6ea5;
  --danger: #b63d32;
  --warning: #8a5a00;
  --warning-bg: #fff7df;
  --warning-border: #f1d282;
  --shadow: 0 18px 48px rgba(8, 38, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  align-items: center;
  background: #fff;
  border-bottom: 1px solid rgba(223, 232, 226, 0.8);
  display: grid;
  gap: 24px;
  grid-template-columns: auto minmax(0, 1fr);
  left: 0;
  padding: 18px clamp(18px, 5vw, 64px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand,
.site-nav {
  align-items: center;
  display: flex;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background: var(--mint);
  border: 1px solid #b7dfbf;
  border-radius: 999px;
  color: var(--green);
  display: inline-flex;
  font-size: 0.72rem;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.site-nav {
  gap: 22px;
  font-size: 0.95rem;
  justify-content: flex-end;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a,
.link-button {
  background: none;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: none;
}

.site-nav form {
  margin: 0;
}

.nav-cta {
  background: var(--green) !important;
  border-radius: 8px;
  color: #fff !important;
  padding: 10px 16px !important;
}

.nav-short {
  display: none;
}

.flash-wrap {
  animation: flash-dismiss 10s ease forwards;
  left: 50%;
  max-width: 760px;
  padding: 12px 18px 0;
  position: fixed;
  top: 72px;
  transform: translateX(-50%);
  width: 100%;
  z-index: 25;
}

@keyframes flash-dismiss {
  0%, 88% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.flash {
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 0 8px;
  padding: 12px 14px;
}

.flash.notice {
  background: #e9f6ec;
  border: 1px solid #b7dfbf;
}

.flash.alert {
  background: #fff1ec;
  border: 1px solid #f0b8a8;
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(32px, 5vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  min-height: calc(88vh - 70px);
  overflow: hidden;
  padding: clamp(42px, 7vw, 92px) clamp(18px, 6vw, 80px) clamp(32px, 5vw, 56px);
}

.hero h1,
.page-heading h1,
.lunch-detail h1,
.confirm-panel h1 {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 1.06;
  margin: 0;
}

.hero-lede,
.page-heading p,
.problem-band > p,
.bottom-cta p {
  color: var(--muted);
  font-size: 1.17rem;
  max-width: 620px;
}

.eyebrow {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-actions.tight {
  margin-top: 18px;
}

.button,
.small-button,
input[type="submit"] {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  text-decoration: none;
}

.button.primary,
.small-button.primary,
input[type="submit"].primary {
  background: var(--green-dark);
  color: #fff;
}

.button.secondary,
.small-button.ghost {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.button.danger {
  background: #fff1ec;
  border-color: #f0b8a8;
  color: var(--danger);
}

.button.full,
input.full {
  width: 100%;
}

.trust-row {
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 30px;
}

.trust-row span::before {
  color: var(--green);
  content: "✓";
  font-weight: 900;
  margin-right: 8px;
}

.hero-visual {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(160px, 0.62fr);
  min-height: 520px;
  position: relative;
}

.phone-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  max-width: 390px;
  padding: 28px 22px;
  position: relative;
  z-index: 2;
}

.phone-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.phone-top strong {
  display: block;
  font-size: 1.6rem;
}

.phone-top span,
.lunch-card p {
  color: var(--muted);
  margin: 0;
}

.mini-icon {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.lunch-card {
  align-items: center;
  background: var(--surface);
  border: 1px solid #edf2ee;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 70px 1fr;
  margin-bottom: 14px;
  padding: 14px;
}

.lunch-card .small-button {
  grid-column: 2;
  min-height: 38px;
  padding: 8px 12px;
}

.lunch-card h3,
.step-card h3,
.feature-grid h3,
.person-row h3 {
  margin: 0;
}

.lunch-card .time {
  color: var(--green);
  font-weight: 900;
}

.lunch-card.compact {
  grid-template-columns: 58px 1fr;
}

.dish-thumb {
  aspect-ratio: 1;
  border-radius: 8px;
}

.dish-green {
  background:
    radial-gradient(circle at 35% 35%, #e9f6ec 0 16%, transparent 17%),
    radial-gradient(circle at 60% 58%, #e76f51 0 11%, transparent 12%),
    radial-gradient(circle at 65% 25%, #fff 0 12%, transparent 13%),
    #79b586;
}

.dish-red {
  background:
    radial-gradient(circle at 50% 50%, #f6c177 0 12%, transparent 13%),
    radial-gradient(circle at 28% 34%, #fff 0 10%, transparent 11%),
    radial-gradient(circle at 72% 34%, #fff 0 10%, transparent 11%),
    #d85b42;
}

.confirmed-strip {
  background: #eef7f1;
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 0.88rem;
  padding: 12px;
  text-align: center;
}

.food-photo,
.bottom-photo {
  background: url("/assets/lunch-table-9361cb84.png") center / cover no-repeat;
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(8, 38, 32, 0.16);
}

.food-photo {
  aspect-ratio: 3 / 4;
  margin-left: -52px;
  min-height: 420px;
}

.problem-band,
.steps-band,
.bottom-cta,
.page-shell {
  padding: clamp(42px, 7vw, 78px) clamp(18px, 6vw, 80px);
}

.problem-band,
.steps-band {
  text-align: center;
}

.problem-band h2,
.steps-band h2,
.bottom-cta h2,
.form-section h2,
.two-column h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.12;
  margin: 0 0 12px;
}

.problem-band > p {
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
}

.feature-grid article {
  background: var(--paper);
  border-left: 1px solid var(--line);
  padding: 16px 24px;
}

.feature-grid article:first-child {
  border-left: 0;
}

.feature-icon,
.step-card span {
  align-items: center;
  background: var(--mint);
  border-radius: 50%;
  color: var(--green);
  display: inline-flex;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  margin-bottom: 14px;
  width: 42px;
}

.feature-grid p,
.step-card p,
.person-row p,
.message-row p {
  color: var(--muted);
  margin: 6px 0 0;
}

.step-flow {
  align-items: stretch;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px auto 0;
  max-width: 960px;
}

.step-card,
.form-section,
.confirm-panel,
.status-panel,
.page-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 38, 32, 0.06);
}

.step-card {
  padding: 24px;
  text-align: left;
}

.bottom-cta {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
}

.bottom-photo {
  aspect-ratio: 16 / 9;
}

.page-shell {
  margin: 0 auto;
  max-width: 1120px;
}

.page-shell.narrow {
  max-width: 760px;
}

.page-heading {
  margin-bottom: 28px;
}

.page-heading h1,
.lunch-detail h1,
.confirm-panel h1 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

.stacked-form {
  display: grid;
  gap: 18px;
}

.form-section {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.form-section.flat {
  border: 0;
  box-shadow: none;
  padding: 0;
}

.manual-place-fields {
  display: grid;
  gap: 10px;
}

.manual-place-fields[hidden] {
  display: none;
}

.form-hint {
  color: var(--muted);
  margin: 0;
}

.field-group {
  border: 0;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.field-group legend {
  font-weight: 800;
  padding: 0;
}

.checkbox-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.check-option {
  align-items: center;
  background: #f6faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
}

.check-option.full {
  align-items: flex-start;
}

.check-option input {
  inline-size: 18px;
  min-inline-size: 18px;
}

.check-option span {
  font-weight: 700;
}

.check-option small {
  color: var(--muted);
  display: block;
  font-weight: 400;
  margin-top: 4px;
}

.lunch-facts {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.lunch-facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.lunch-facts span,
.lunch-facts small {
  color: var(--muted);
  display: block;
}

.lunch-facts small {
  margin-top: 2px;
  overflow-wrap: anywhere;
}

input[readonly],
textarea[readonly] {
  background: #f6faf7;
  color: var(--muted);
}

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

.address-grid > div {
  min-width: 0;
}

.address-grid .span-2 {
  grid-column: span 2;
}

.address-grid .span-3 {
  grid-column: span 3;
}

.place-summary {
  align-items: center;
  background: var(--mint);
  border: 1px solid #b7dfbf;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 14px;
}

.place-summary.place-summary-warning {
  background: var(--warning-bg);
  border-color: var(--warning-border);
}

.place-summary.place-summary-warning span {
  color: var(--warning);
}

.place-summary[hidden] {
  display: none;
}

.place-summary strong,
.place-summary span {
  display: block;
}

.place-summary span {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 2px;
  overflow-wrap: anywhere;
}

label {
  font-weight: 800;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid #cfdcd4;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

.form-errors {
  background: #fff1ec;
  border: 1px solid #f0b8a8;
  border-radius: 8px;
  color: var(--danger);
  margin-bottom: 18px;
  padding: 14px 18px;
}

.form-errors p,
.form-errors ul {
  margin: 0;
}

.form-errors ul {
  padding-left: 18px;
}

.lunch-detail {
  display: block;
  margin: 0 auto;
  max-width: 1120px;
}

.detail-line {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 8px 0;
}

.lunch-note {
  background: #eef7f1;
  border: 1px solid #cfe6d5;
  border-radius: 8px;
  color: var(--green-dark);
  margin: 18px 0;
  padding: 14px 16px;
}

.lunch-note.compact {
  margin: 16px 0 4px;
}

.lunch-note p {
  margin: 0;
}

.lunch-summary-row {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 220px;
  margin-top: 20px;
}

.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 38, 32, 0.06);
  display: grid;
  gap: 8px;
  margin-top: 0;
  max-width: none;
  padding: 18px;
}

.detail-card span,
.copy-field label {
  color: var(--muted);
  font-weight: 700;
}

.detail-card strong {
  font-size: 1.2rem;
}

.copy-field {
  display: grid;
  gap: 6px;
  margin-top: 6px;
}

.copy-field.compact {
  margin-top: 10px;
}

.copy-field input {
  font-size: 0.95rem;
}

.copy-control {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.copy-control input {
  min-width: 0;
}

.copy-status {
  color: var(--green);
  font-weight: 800;
  grid-column: 1 / -1;
  min-height: 1.5em;
}

.map-link {
  color: var(--green);
  font-weight: 800;
  margin-top: 6px;
  text-decoration: none;
  width: fit-content;
}

.status-panel {
  align-content: center;
  display: grid;
  gap: 4px;
  padding: 22px;
  text-align: center;
}

.status-panel strong {
  color: var(--green);
  font-size: 2.4rem;
}

.two-column {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  margin: 40px auto 0;
  max-width: 1120px;
}

.page-panel {
  margin-top: 34px;
  padding: 22px;
}

.page-panel h2 {
  margin: 0 0 8px;
}

.page-panel p {
  color: var(--muted);
  margin: 0 0 14px;
}

.plain-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.plain-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 2px;
  padding: 12px;
}

.plain-list span {
  color: var(--muted);
}

.people-list,
.message-list {
  display: grid;
  gap: 12px;
}

.person-row {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 54px 1fr auto;
  padding: 14px;
}

.person-row.expanded {
  align-items: start;
}

.person-row.expanded .participant-actions {
  grid-column: 2 / 4;
}

.person-row.compact {
  grid-template-columns: 46px 1fr;
}

.person-row.inactive {
  background: #fbfdfb;
}

.person-row.compact.inactive {
  align-items: start;
  grid-template-columns: 46px minmax(0, 1fr) auto;
}

.person-stack {
  min-width: 0;
}

.person-meta,
.person-bio {
  color: var(--muted);
}

.person-bio {
  border-top: 1px solid #edf2ee;
  margin-top: 10px !important;
  padding-top: 10px;
}

.participant-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.participant-actions.compact-actions {
  margin-top: 10px;
}

.participant-actions form {
  margin: 0;
}

.danger-text {
  color: var(--danger) !important;
}

.avatar {
  align-items: center;
  background: var(--mint);
  border-radius: 50%;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  overflow: hidden;
  width: 54px;
}

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

.avatar span {
  color: var(--green);
  font-weight: 900;
}

.pill {
  background: #eef7f1;
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 10px;
}

.pill.muted {
  color: var(--muted);
}

.inactive-people {
  margin-top: 24px;
}

.inactive-people summary {
  align-items: center;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  font-weight: 800;
  gap: 10px;
  list-style: none;
  margin-bottom: 10px;
}

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

.inactive-people summary::after {
  content: "Show";
  color: var(--green);
  font-size: 0.9rem;
}

.inactive-people[open] summary::after {
  content: "Hide";
}

.inactive-people summary strong {
  align-items: center;
  background: #eef7f1;
  border-radius: 999px;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 0.82rem;
  justify-content: center;
  min-width: 28px;
  padding: 4px 8px;
}

.message-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.message-form {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.confirm-panel {
  padding: clamp(22px, 5vw, 42px);
}

.public-people {
  margin: 24px 0;
}

.public-people h2 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 12px;
}

.brand-logo {
  display: block;
  height: 28px;
  max-width: 190px;
  object-fit: contain;
  width: auto;
}

@media (max-width: 920px) {
  .site-header {
    align-items: center;
    gap: 16px;
    position: static;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a,
  .site-nav .link-button {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 40px;
    text-align: center;
  }

  .site-nav form {
    display: contents;
  }

  .hero,
  .hero-visual,
  .bottom-cta,
  .lunch-summary-row,
  .two-column {
    grid-template-columns: 1fr;
  }

  .status-panel {
    text-align: left;
  }

  .hero {
    min-height: auto;
  }

  .food-photo {
    margin-left: 0;
    min-height: 260px;
  }

  .feature-grid,
  .step-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
    padding: 12px 16px;
  }

  .site-nav {
    font-size: 0.9rem;
    gap: 12px;
  }

  .site-nav a,
  .site-nav .link-button {
    min-height: 40px;
  }

  .nav-full {
    display: none;
  }

  .nav-short {
    display: inline;
  }

  .brand-logo {
    height: 22px;
    max-width: 150px;
  }

  .flash-wrap {
    padding: 10px 16px 0;
    top: 8px;
  }

  .hero,
  .problem-band,
  .steps-band,
  .bottom-cta,
  .page-shell {
    padding-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1,
  .page-heading h1,
  .lunch-detail h1,
  .confirm-panel h1 {
    font-size: clamp(2rem, 15vw, 3.2rem);
    overflow-wrap: anywhere;
  }

  .hero-lede,
  .page-heading p,
  .problem-band > p,
  .bottom-cta p,
  .detail-line,
  .confirm-panel > p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .button,
  .trust-row {
    width: 100%;
  }

  .hero-actions .button {
    justify-content: center;
  }

  .phone-shell {
    border-radius: 18px;
    padding: 18px 14px;
  }

  .feature-grid,
  .step-flow {
    grid-template-columns: 1fr;
  }

  .feature-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .feature-grid article:first-child {
    border-top: 0;
  }

  .person-row {
    grid-template-columns: 46px 1fr;
  }

  .person-row.compact.inactive {
    grid-template-columns: 46px 1fr;
  }

  .person-row .pill,
  .person-row.compact.inactive .pill {
    grid-column: 2;
    justify-self: start;
  }

  .person-row.expanded .participant-actions {
    grid-column: 1 / -1;
  }

  .participant-actions,
  .participant-actions form,
  .participant-actions .small-button {
    width: 100%;
  }

  .lunch-summary-row {
    gap: 14px;
  }

  .status-panel strong {
    font-size: 2rem;
  }

  .copy-control {
    grid-template-columns: 1fr;
  }

  .place-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .place-summary .small-button {
    width: 100%;
  }

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

  .address-grid .span-2,
  .address-grid .span-3 {
    grid-column: span 2;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-nav {
    font-size: 0.84rem;
    gap: 10px;
  }

  .nav-cta {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .brand-logo {
    height: 20px;
    max-width: 138px;
  }

  .confirm-panel,
  .form-section,
  .page-panel,
  .detail-card {
    padding: 16px;
  }

  .hero,
  .problem-band,
  .steps-band,
  .bottom-cta,
  .page-shell {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.closed-strip {
  background: #f6faf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
  padding: 12px;
  text-align: center;
}

.button[disabled],
button[disabled],
input[type="submit"][disabled] {
  cursor: not-allowed;
  opacity: 0.52;
}

.split-heading {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.lunch-list-section {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.section-heading h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.12;
  margin: 0;
}

.section-heading p {
  color: var(--muted);
  margin: 4px 0 0;
}

.section-heading.compact {
  max-width: 680px;
}

.lunch-list {
  display: grid;
  gap: 14px;
}

.lunch-list-card {
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(8, 38, 32, 0.06);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 20px;
}

.lunch-list-card h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  margin: 0 0 8px;
}

.list-meta {
  color: var(--muted);
  margin: 12px 0 0;
}

.list-actions {
  align-items: stretch;
  display: flex;
  gap: 10px;
}

.list-actions form {
  margin: 0;
}

.empty-state {
  display: grid;
  gap: 10px;
  justify-items: start;
  padding: 24px;
}

@media (max-width: 920px) {
  .split-heading {
    align-items: start;
    flex-direction: column;
  }

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

  .list-actions {
    flex-wrap: wrap;
  }
}
