:root {
  color-scheme: light;
  --bg: #fff8ed;
  --card: #ffffff;
  --ink: #24120a;
  --muted: #735e53;
  --brand: #d9411e;
  --brand-dark: #8f2111;
  --gold: #f5a623;
  --green: #168447;
  --line: #efd9c3;
  --shadow: 0 24px 80px rgba(62, 24, 9, 0.15);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(245, 166, 35, 0.28), transparent 32rem),
    linear-gradient(180deg, #fff8ed 0%, #fff 42%, #fff8ed 100%);
  color: var(--ink);
}
body.cart-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 248, 237, 0.9);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  left: 0;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}
.brand { align-items: center; display: flex; gap: 0.7rem; min-width: max-content; }
.brand__icon {
  align-items: center;
  background: var(--ink);
  border-radius: 1rem;
  color: #fff;
  display: grid;
  font-size: 1.35rem;
  height: 3rem;
  place-items: center;
  width: 3rem;
}
.brand strong { display: block; font-size: 1.05rem; }
.brand small { color: var(--muted); display: block; font-size: 0.78rem; }
.nav { display: flex; gap: 1rem; justify-content: center; }
.nav a { color: var(--muted); font-weight: 700; }
.nav a:hover { color: var(--brand); }

.button, .cart-button, .icon-button {
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.button:hover, .cart-button:hover, .icon-button:hover { transform: translateY(-1px); }
.button {
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  padding: 0.85rem 1.25rem;
}
.button--primary { background: var(--brand); box-shadow: 0 12px 24px rgba(217, 65, 30, 0.26); color: #fff; }
.button--dark { background: var(--ink); color: #fff; }
.button--ghost { background: #fff4df; color: var(--brand-dark); }
.button--full { width: 100%; }
.cart-button {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  padding: 0.85rem 1.1rem;
}
.cart-button span {
  background: var(--brand);
  border-radius: 999px;
  margin-left: 0.35rem;
  padding: 0.12rem 0.45rem;
}

.hero, .section { padding: clamp(3rem, 7vw, 6.5rem) clamp(1rem, 4vw, 4rem); }
.hero {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  min-height: 72vh;
  place-items: center;
}
.eyebrow {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1, h2 { font-family: "Playfair Display", Georgia, serif; }
h1 { font-size: clamp(2.4rem, 6vw, 5.8rem); max-width: 13ch; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
p { color: var(--muted); line-height: 1.7; }
.hero__content > p:not(.eyebrow) { font-size: 1.15rem; max-width: 44rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin: 2rem 0; }
.metrics { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 36rem; }
.metrics div, .hero__panel, .notice, .loyalty-card, .feature-list article, .dashboard article, .orders-panel, .menu-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.metrics div { border-radius: 1.2rem; padding: 1rem; }
.metrics dt { color: var(--brand); font-size: 1.5rem; font-weight: 900; }
.metrics dd { color: var(--muted); margin: 0.25rem 0 0; }
.hero__panel { border-radius: 2rem; padding: 2rem; }
.hero__panel ul { display: grid; gap: 0.8rem; list-style: none; padding: 0; }
.hero__panel li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 0.5rem; }

.notice {
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  border: 0;
  border-radius: 2rem;
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 clamp(1rem, 4vw, 4rem);
  padding: 1.5rem;
}
.notice span { display: block; font-weight: 800; opacity: 0.85; }
.notice strong { font-size: clamp(1.1rem, 3vw, 1.7rem); }

.section__heading { margin: 0 auto 2rem; max-width: 46rem; text-align: center; }
.toolbar { align-items: center; display: grid; gap: 1rem; grid-template-columns: minmax(18rem, 0.8fr) 1fr; margin-bottom: 1.5rem; }
.search, .checkout label, .loyalty-card label, .menu-card label { color: var(--muted); display: grid; font-size: 0.85rem; font-weight: 800; gap: 0.4rem; }
input, select, textarea {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  width: 100%;
}
.categories { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: flex-end; }
.category-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 0.65rem 0.9rem;
}
.category-chip.active { background: var(--brand); border-color: var(--brand); color: #fff; }
.menu-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.menu-card { border-radius: 1.5rem; overflow: hidden; }
.menu-card__image {
  align-items: flex-end;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #321107, #d9411e);
  color: #fff;
  display: flex;
  font-size: 4rem;
  justify-content: flex-end;
  padding: 1rem;
}
.menu-card__body { display: grid; gap: 0.9rem; padding: 1.1rem; }
.menu-card__header { align-items: start; display: flex; gap: 1rem; justify-content: space-between; }
.menu-card__tag { color: var(--brand); font-size: 0.75rem; font-weight: 900; text-transform: uppercase; }
.menu-card__price { color: var(--green); white-space: nowrap; }
.menu-card p { margin: 0; }

.section--split { align-items: center; display: grid; gap: 2rem; grid-template-columns: 1fr 1fr; }
.loyalty-card { border-radius: 1.5rem; display: grid; gap: 0.9rem; margin-top: 1.4rem; padding: 1.2rem; }
.loyalty-card output { color: var(--muted); font-weight: 700; }
.feature-list { display: grid; gap: 1rem; }
.feature-list article { border-radius: 1.3rem; display: grid; gap: 0.35rem; padding: 1.3rem; }
.feature-list strong { font-size: 1.2rem; }
.feature-list span { color: var(--muted); }
.dashboard { display: grid; gap: 1rem; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-bottom: 1.4rem; }
.dashboard article { border-radius: 1.4rem; display: grid; gap: 0.45rem; padding: 1.35rem; }
.dashboard span { color: var(--muted); font-weight: 800; }
.dashboard strong { color: var(--brand); font-size: 2rem; }
.orders-panel { border-radius: 1.5rem; padding: 1.2rem; }
.orders-panel__header { align-items: center; display: flex; justify-content: space-between; gap: 1rem; }
.orders-list { display: grid; gap: 0.8rem; margin-top: 1rem; }
.order-row { background: #fff8ed; border-radius: 1rem; padding: 1rem; }
.order-row strong { display: block; }
.order-row span { color: var(--muted); display: block; font-size: 0.9rem; margin-top: 0.3rem; }

.cart-drawer { inset: 0; opacity: 0; pointer-events: none; position: fixed; transition: opacity 0.2s ease; z-index: 40; }
.cart-drawer.open { opacity: 1; pointer-events: auto; }
.cart-drawer__overlay { background: rgba(20, 8, 3, 0.58); inset: 0; position: absolute; }
.cart-drawer__panel {
  background: var(--bg);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  margin-left: auto;
  max-width: 33rem;
  overflow: auto;
  padding: 1.2rem;
  position: relative;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  width: min(100%, 33rem);
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__header { align-items: start; display: flex; justify-content: space-between; }
.icon-button { background: #fff; border-radius: 50%; font-size: 1.6rem; height: 2.5rem; width: 2.5rem; }
.cart-items { display: grid; gap: 0.8rem; }
.cart-item { background: #fff; border: 1px solid var(--line); border-radius: 1rem; display: grid; gap: 0.55rem; padding: 0.9rem; }
.cart-item__top, .cart-item__actions { align-items: center; display: flex; justify-content: space-between; gap: 0.8rem; }
.cart-item__actions button { background: #fff4df; border: 0; border-radius: 999px; cursor: pointer; font-weight: 900; padding: 0.4rem 0.7rem; }
.checkout { display: grid; gap: 0.85rem; }
.totals { background: #fff; border: 1px solid var(--line); border-radius: 1rem; display: grid; gap: 0.6rem; padding: 1rem; }
.totals div { display: flex; justify-content: space-between; }
.totals__grand { border-top: 1px dashed var(--line); font-size: 1.25rem; padding-top: 0.7rem; }
.checkout__hint { font-size: 0.85rem; margin: 0; text-align: center; }

@media (max-width: 920px) {
  .nav { display: none; }
  .hero, .section--split { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .toolbar { grid-template-columns: 1fr; }
  .categories { justify-content: flex-start; }
  .menu-grid, .dashboard { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .topbar { align-items: stretch; flex-wrap: wrap; }
  .cart-button { width: 100%; }
  .metrics, .menu-grid, .dashboard { grid-template-columns: 1fr; }
  .notice { align-items: stretch; flex-direction: column; }
}
.store-status {
  border: 1px solid var(--line);
  border-radius: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
}
.store-status span { color: var(--muted); font-size: 0.9rem; }
.store-status.is-open { background: rgba(22, 132, 71, 0.1); border-color: rgba(22, 132, 71, 0.25); }
.store-status.is-closed { background: rgba(217, 65, 30, 0.08); border-color: rgba(217, 65, 30, 0.25); }
.suggestions {
  display: grid;
  gap: 0.55rem;
}
.suggestions strong { font-size: 0.95rem; }
.suggestions button {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  padding: 0.65rem 0.8rem;
  text-align: left;
}
.minimum-warning {
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 800;
  margin: -0.35rem 0 0;
}
.consent {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: auto 1fr;
  padding: 0.85rem;
}
.consent input { margin-top: 0.2rem; width: auto; }
.orders-panel__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: flex-end; }
/* Visual identity upgrade: warm bar atmosphere, stronger product cards and easier mobile ordering. */
:root {
  --wood: #4d2010;
  --cream: #fff1d5;
  --ember: #ff6a2a;
}
body {
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 166, 35, 0.32), transparent 20rem),
    radial-gradient(circle at 88% 5%, rgba(217, 65, 30, 0.18), transparent 22rem),
    linear-gradient(180deg, #2a1008 0, #fff4df 31rem, #fff 54%, #fff8ed 100%);
}
.ambient {
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.45;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}
.ambient--one {
  background: rgba(245, 166, 35, 0.22);
  height: 22rem;
  left: -8rem;
  top: 9rem;
  width: 22rem;
}
.ambient--two {
  background: rgba(217, 65, 30, 0.16);
  bottom: 8rem;
  height: 18rem;
  right: -7rem;
  width: 18rem;
}
.topbar {
  background: rgba(34, 13, 6, 0.88);
  border-bottom: 1px solid rgba(255, 214, 160, 0.18);
  color: #fff;
}
.brand__icon {
  background: linear-gradient(135deg, var(--gold), var(--brand));
  box-shadow: 0 10px 24px rgba(217, 65, 30, 0.32);
}
.brand small, .nav a { color: rgba(255, 244, 223, 0.74); }
.nav a:hover { color: var(--gold); }
.cart-button { background: linear-gradient(135deg, var(--brand), var(--gold)); box-shadow: 0 12px 30px rgba(217, 65, 30, 0.3); }
.hero { color: #fff; overflow: hidden; position: relative; }
.hero::before {
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
  opacity: 0.55;
  position: absolute;
  pointer-events: none;
}
.hero__content, .hero__panel { position: relative; z-index: 1; }
.hero .eyebrow { color: #ffd08a; }
.hero__content > p:not(.eyebrow) { color: rgba(255, 248, 237, 0.84); }
.trust-strip { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: -0.6rem; }
.trust-strip span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff7e8;
  font-weight: 800;
  padding: 0.65rem 0.85rem;
}
.hero__panel--showcase {
  background: linear-gradient(160deg, rgba(255, 248, 237, 0.98), rgba(255, 231, 191, 0.92));
  color: var(--ink);
}
.dish-card {
  background: linear-gradient(180deg, #fff, #fff3df);
  border: 1px solid #ffd398;
  border-radius: 1.6rem;
  box-shadow: 0 18px 50px rgba(80, 30, 8, 0.18);
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
  padding: 1rem;
  position: relative;
}
.dish-card__badge {
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 0.45rem 0.7rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.dish-card__photo {
  align-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.28), transparent 7rem),
    linear-gradient(135deg, var(--wood), var(--brand));
  border-radius: 1.2rem;
  color: #fff;
  display: grid;
  font-size: clamp(3.8rem, 8vw, 6rem);
  min-height: 11rem;
  place-items: center;
}
.steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -2rem clamp(1rem, 4vw, 4rem) 2.5rem;
  position: relative;
  z-index: 3;
}
.steps article {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: 0 18px 50px rgba(62, 24, 9, 0.12);
  padding: 1.2rem;
}
.steps span {
  align-items: center;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  border-radius: 50%;
  color: #fff;
  display: inline-grid;
  font-weight: 900;
  height: 2.25rem;
  margin-bottom: 0.8rem;
  place-items: center;
  width: 2.25rem;
}
.steps p { margin: 0.45rem 0 0; }
.menu-section {
  background: linear-gradient(180deg, rgba(255, 248, 237, 0), rgba(255, 244, 223, 0.92));
}
.toolbar {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  box-shadow: 0 14px 40px rgba(62, 24, 9, 0.08);
  padding: 1rem;
  position: sticky;
  top: 5rem;
  z-index: 10;
}
.category-chip { align-items: center; display: inline-flex; gap: 0.35rem; }
.category-chip span { font-size: 1.05rem; }
.menu-card {
  transform: translateY(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.menu-card:hover { border-color: #ffc678; box-shadow: 0 28px 70px rgba(62, 24, 9, 0.2); transform: translateY(-4px); }
.menu-card--featured { outline: 3px solid rgba(245, 166, 35, 0.28); }
.menu-card__image {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.24), transparent 5rem),
    linear-gradient(135deg, #2f1208, #8f2111 52%, #f5a623);
  text-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}
.menu-card__price {
  background: rgba(22, 132, 71, 0.1);
  border-radius: 999px;
  padding: 0.35rem 0.55rem;
}
.menu-card .button { border-radius: 1rem; padding: 0.95rem 1rem; }
.cart-drawer__panel { background: linear-gradient(180deg, #fff8ed, #fff); }
.cart-drawer__header {
  background: linear-gradient(135deg, var(--ink), var(--brand-dark));
  border-radius: 1.2rem;
  color: #fff;
  margin: -0.2rem -0.2rem 0;
  padding: 1rem;
}
.cart-drawer__header .eyebrow { color: #ffd08a; }
.cart-drawer__header h2 { color: #fff; }
@media (max-width: 920px) {
  .steps { grid-template-columns: 1fr; margin-top: 0; }
  .toolbar { position: static; }
}
@media (max-width: 620px) {
  body { background: linear-gradient(180deg, #2a1008 0, #fff4df 24rem, #fff8ed 100%); }
  .hero { padding-top: 2.2rem; }
  .hero__actions .button { width: 100%; }
  .trust-strip span { flex: 1 1 100%; text-align: center; }
  .dish-card__photo { min-height: 8.5rem; }
  .toolbar { margin-left: -0.4rem; margin-right: -0.4rem; }
  .category-chip { flex: 1 1 calc(50% - 0.6rem); justify-content: center; }
  .menu-card__image { font-size: 4.8rem; }
}
/* Admin area: separate owner-only management screen. */
.admin-page {
  background: linear-gradient(180deg, #2a1008 0, #fff4df 18rem, #fff8ed 100%);
  min-height: 100vh;
}
.admin-shell { padding: clamp(1rem, 4vw, 3rem); }
.admin-login {
  display: grid;
  min-height: calc(100vh - 4rem);
  place-items: center;
}
.admin-login__card,
.admin-card,
.admin-metrics article {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}
.admin-login__card {
  display: grid;
  gap: 1rem;
  max-width: 28rem;
  padding: 2rem;
  width: 100%;
}
.admin-login__card h1,
.admin-header h1 { font-family: "Playfair Display", Georgia, serif; margin: 0; }
.admin-login__card form,
.admin-card form { display: grid; gap: 0.9rem; }
.admin-login__card output { color: var(--brand); font-weight: 800; }
.admin-panel { display: grid; gap: 1.2rem; }
.admin-header {
  align-items: center;
  background: linear-gradient(135deg, var(--ink), var(--brand-dark));
  border-radius: 1.8rem;
  color: #fff;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: clamp(1.2rem, 3vw, 2rem);
}
.admin-header p { color: rgba(255, 248, 237, 0.82); margin-bottom: 0; }
.admin-header .eyebrow { color: #ffd08a; }
.admin-header a { color: #ffd08a; font-weight: 900; }
.admin-metrics {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.admin-metrics article { display: grid; gap: 0.35rem; padding: 1rem; }
.admin-metrics span { color: var(--muted); font-weight: 800; }
.admin-metrics strong { color: var(--brand); font-size: 1.55rem; }
.admin-tabs {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.5rem;
}
.admin-tabs button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  padding: 0.75rem 1rem;
}
.admin-tabs button.active { background: var(--brand); color: #fff; }
.admin-tab { display: none; }
.admin-tab.active { display: block; }
.admin-grid { display: grid; gap: 1rem; grid-template-columns: minmax(19rem, 0.8fr) 1.2fr; }
.admin-card { padding: 1.2rem; }
.admin-card h2 { font-family: Inter, sans-serif; font-size: 1.25rem; margin-bottom: 1rem; }
.admin-card__header { align-items: center; display: flex; gap: 1rem; justify-content: space-between; margin-bottom: 1rem; }
.form-row { display: grid; gap: 0.8rem; grid-template-columns: 1fr 0.55fr; }
.admin-check {
  align-items: center;
  background: #fff8ed;
  border: 1px solid var(--line);
  border-radius: 1rem;
  display: flex;
  gap: 0.6rem;
  padding: 0.75rem;
}
.admin-check input { width: auto; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.admin-table { display: grid; gap: 0.75rem; }
.admin-row {
  align-items: center;
  background: #fff8ed;
  border: 1px solid var(--line);
  border-radius: 1rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.9rem;
}
.admin-row strong { display: block; }
.admin-row span { color: var(--muted); display: block; font-size: 0.9rem; margin-top: 0.25rem; }
.publish-card p { max-width: 60rem; }
[hidden] { display: none !important; }
@media (max-width: 900px) {
  .admin-header, .admin-card__header, .admin-row { align-items: stretch; flex-direction: column; }
  .admin-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .admin-metrics { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .admin-tabs { border-radius: 1.2rem; }
  .admin-tabs button { flex: 1 1 calc(50% - 0.5rem); }
}
.admin-row--inputs {
  align-items: end;
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) minmax(7rem, 0.35fr) auto;
}
.admin-row--inputs label { display: grid; gap: 0.35rem; }
.hours-editor { display: grid; gap: 0.75rem; }
.hours-editor .admin-row--inputs { grid-template-columns: minmax(7rem, 0.45fr) minmax(8rem, 0.45fr) minmax(8rem, 0.45fr) minmax(8rem, 0.45fr); }
@media (max-width: 760px) {
  .admin-row--inputs,
  .hours-editor .admin-row--inputs { grid-template-columns: 1fr; }
}
