:root {
  /* Appetite orange (CTAs) + deeper orange for body links (WCAG) */
  --zk-orange: #e5541f;
  --zk-orange-deep: #c44514;
  --zk-orange-soft: #fff0e8;
  --zk-orange-text: #b53c11;
  /* Fresh kitchen green */
  --zk-green: #1f7a45;
  --zk-green-deep: #166536;
  --zk-green-soft: #e7f3eb;
  /* Readable ink on warm stone */
  --zk-ink: #151a16;
  --zk-muted: #46514a;
  --zk-surface: #f4f2ed;
  --zk-cream: #faf8f4;
  --zk-band: #ebe8e1;
  --zk-band-sage: #e5efe8;
  --zk-card: #ffffff;
  --zk-border: rgba(21, 26, 22, 0.08);
  --zk-border-strong: rgba(21, 26, 22, 0.14);
  --zk-shadow: 0 8px 28px rgba(21, 26, 22, 0.06);
  --zk-shadow-hover: 0 16px 40px rgba(21, 26, 22, 0.1);
  --zk-radius: 1.1rem;
  --zk-radius-lg: 1.5rem;
  --zk-space-section: clamp(2.25rem, 4.5vw, 3.5rem);
  --zk-focus: 0 0 0 3px rgba(229, 84, 31, 0.28);
  /* Culinary typography: soft serif for food names/headlines, warm sans for UI */
  --zk-font-display: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --zk-font-body: "DM Sans", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--zk-font-body);
  color: var(--zk-ink);
  background: var(--zk-surface);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.font-display {
  font-family: var(--zk-font-display);
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
  font-weight: 650;
}

.bg-brand-atmosphere {
  background:
    radial-gradient(ellipse 80% 55% at 8% 0%, rgba(229, 84, 31, 0.09), transparent 58%),
    radial-gradient(ellipse 70% 50% at 92% 18%, rgba(31, 122, 69, 0.08), transparent 52%),
    linear-gradient(180deg, #f7f5f0 0%, var(--zk-surface) 42%, #eef2ef 100%);
}

.text-zk-orange { color: var(--zk-orange-text); }
.text-zk-green { color: var(--zk-green-deep); }
.bg-zk-orange { background-color: var(--zk-orange); }
.bg-zk-green { background-color: var(--zk-green); }
.hover\:bg-zk-orange-deep:hover { background-color: var(--zk-orange-deep); }
.border-zk-orange { border-color: var(--zk-orange); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  background: var(--zk-orange);
  color: #fff;
  font-family: var(--zk-font-body);
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 26px rgba(196, 69, 20, 0.26);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--zk-orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(196, 69, 20, 0.32);
}
.btn-primary:focus-visible {
  outline: none;
  box-shadow: var(--zk-focus), 0 10px 26px rgba(196, 69, 20, 0.26);
}

.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: var(--zk-orange);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}
.add-to-cart-btn:hover { background: var(--zk-orange-deep); transform: translateY(-1px); }
.add-to-cart-btn:disabled,
.add-to-cart-btn.is-loading { opacity: 0.7; cursor: wait; transform: none; }
.add-to-cart-btn__icon { width: 1.15rem; height: 1.15rem; display: block; }
.add-to-cart-btn--labeled {
  width: auto;
  height: auto;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--zk-font-body);
  font-weight: 700;
}
.add-to-cart-btn--labeled .add-to-cart-btn__icon { width: 1.05rem; height: 1.05rem; }

.header-account {
  align-items: center;
  gap: 0.4rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 0.35rem 0.65rem 0.35rem 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--zk-ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.header-account:hover {
  border-color: rgba(229, 84, 31, 0.4);
  color: var(--zk-orange-text);
}
.header-account__initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(241, 90, 36, 0.16), rgba(47, 138, 78, 0.14));
  font-family: var(--zk-font-body);
  font-size: 0.68rem;
  font-weight: 800;
}
.header-account__label { line-height: 1; }

.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--zk-ink);
  transition: border-color 0.15s ease, transform 0.2s ease;
}
.header-cart:hover { border-color: rgba(229, 84, 31, 0.4); color: var(--zk-orange-text); }
.header-cart__icon { width: 1.15rem; height: 1.15rem; }
.header-cart__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  border-radius: 999px;
  background: var(--zk-orange);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}
.header-cart__badge.is-empty,
.header-cart__badge[hidden] { display: none; }
.header-cart.is-pulse { animation: header-cart-pulse 0.45s ease; }
@keyframes header-cart-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.cart-toast {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 60;
  transform: translateX(-50%) translateY(120%);
  max-width: min(92vw, 26rem);
  padding: 0.85rem 1.1rem;
  border-radius: 0.9rem;
  background: var(--zk-ink);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(20, 24, 20, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.cart-toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cart-toast--error { background: #b42318; }
body.has-sticky-cart .cart-toast { bottom: 5.25rem; }
body.has-sticky-cart.has-wa-fab .cart-toast { bottom: 6.5rem; }
body:has(.account-shell) .sticky-cart-bar { display: none !important; }
body:has(.account-shell).has-sticky-cart main { padding-bottom: 0; }
body:has(.account-shell).has-sticky-cart.has-wa-fab main { padding-bottom: 5rem; }
body:has(.account-shell).has-sticky-cart .wa-fab { bottom: 1.25rem; }
body:has(.account-shell).has-sticky-cart .cart-toast { bottom: 1.25rem; }
@media (max-width: 640px) {
  .header-cart__label { display: none; }
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  background: transparent;
  color: var(--zk-ink);
  border: 1.5px solid rgba(21, 26, 22, 0.16);
  font-family: var(--zk-font-body);
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-secondary:hover {
  background: rgba(21, 26, 22, 0.04);
  border-color: rgba(21, 26, 22, 0.28);
  color: var(--zk-ink);
}
.btn-secondary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(21, 26, 22, 0.12);
}
.btn-secondary--on-dark {
  background: rgba(255, 255, 255, 0.96);
  color: var(--zk-ink);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}
.btn-secondary--on-dark:hover {
  background: #fff;
  border-color: transparent;
  color: var(--zk-ink);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
}
.btn-secondary--on-dark:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4), 0 8px 22px rgba(0, 0, 0, 0.2);
}

.card-soft {
  background: var(--zk-card);
  border: 1px solid var(--zk-border);
  border-radius: var(--zk-radius-lg);
  box-shadow: var(--zk-shadow);
}

.page-section {
  padding-block: var(--zk-space-section);
}
.page-section--band {
  background: var(--zk-band);
  border-block: 1px solid rgba(21, 26, 22, 0.03);
}
.page-section--sage {
  background: var(--zk-band-sage);
  border-block: 1px solid rgba(22, 101, 54, 0.05);
}
.page-section__inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.page-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.page-section__title {
  font-family: var(--zk-font-display);
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--zk-ink);
}
.page-section__sub {
  margin-top: 0.55rem;
  color: var(--zk-muted);
  font-size: 1.05rem;
  max-width: 38rem;
  line-height: 1.6;
}
.page-section__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--zk-orange-text);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}
.page-section__link::after {
  content: "→";
  font-weight: 500;
}
.page-section__link:hover {
  color: var(--zk-orange-deep);
  gap: 0.5rem;
}

.page-intro {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}
.page-intro__title {
  font-family: var(--zk-font-display);
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--zk-ink);
  margin: 0 0 0.75rem;
}
.page-intro__sub {
  color: var(--zk-muted);
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0;
}

.input-field {
  width: 100%;
  border: 1px solid rgba(21, 26, 22, 0.12);
  border-radius: 0.9rem;
  padding: 0.95rem 1.1rem;
  background: #faf8f4;
  outline: none;
  font-family: var(--zk-font-body);
  font-size: 1rem;
  line-height: 1.45;
  color: var(--zk-ink);
  box-shadow: inset 0 1px 2px rgba(21, 26, 22, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.input-field::placeholder { color: #8a948d; }
.input-field:hover { border-color: rgba(21, 26, 22, 0.22); background: #fff; }
.input-field:focus {
  border-color: var(--zk-orange);
  background: #fff;
  box-shadow: var(--zk-focus);
}
.input-field:disabled,
.input-field[readonly] {
  background: #f6f4f1;
  color: var(--zk-muted);
  cursor: not-allowed;
}
.input-field.is-invalid,
.form-field.is-invalid .input-field {
  border-color: #c2410c;
  background: #fff8f5;
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.12);
}
.input-field.is-invalid:focus {
  border-color: #c2410c;
  box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.18);
}
textarea.input-field { min-height: 6.5rem; resize: vertical; }
select.input-field {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%215a655d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
input[type="file"].input-field {
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
}

.upload-dropzone {
  position: relative;
  border: 1.5px dashed rgba(20, 24, 20, 0.18);
  border-radius: 0.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 248, 0.95));
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  overflow: hidden;
}
.upload-dropzone:hover,
.upload-dropzone:focus-within {
  border-color: rgba(241, 90, 36, 0.45);
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.1);
}
.upload-dropzone.is-dragover {
  border-color: var(--zk-orange);
  background: rgba(241, 90, 36, 0.06);
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.16);
}
.upload-dropzone.is-invalid,
.form-field.is-invalid .upload-dropzone {
  border-color: #c2410c;
  background: #fff8f5;
}
.upload-dropzone__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}
.upload-dropzone.has-file .upload-dropzone__input {
  inset: auto;
  width: 0.1px;
  height: 0.1px;
  overflow: hidden;
}
.upload-dropzone__surface {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  padding: 1.35rem 1rem;
  text-align: center;
  cursor: pointer;
}
.upload-dropzone.has-file .upload-dropzone__surface { display: none; }
.upload-dropzone__icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: rgba(241, 90, 36, 0.1);
  color: var(--zk-orange);
  margin-bottom: 0.25rem;
}
.upload-dropzone__icon svg { width: 1.3rem; height: 1.3rem; }
.upload-dropzone__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--zk-ink);
}
.upload-dropzone__meta {
  margin: 0;
  font-size: 0.82rem;
  color: var(--zk-muted);
}
.upload-dropzone__browse {
  color: var(--zk-orange);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font: inherit;
}
.upload-dropzone__preview {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
}
.upload-dropzone__thumb {
  width: 4.25rem;
  height: 4.25rem;
  object-fit: cover;
  border-radius: 0.7rem;
  border: 1px solid rgba(20, 24, 20, 0.08);
  background: #fff;
  flex-shrink: 0;
}
.upload-dropzone__filemeta { min-width: 0; flex: 1; }
.upload-dropzone__filename {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zk-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-dropzone__filesize {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: var(--zk-muted);
}
.upload-dropzone__clear {
  border: 1px solid rgba(180, 35, 24, 0.25);
  background: #fff;
  color: #b42318;
  border-radius: 0.55rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
}
.upload-dropzone__clear:hover {
  background: rgba(180, 35, 24, 0.06);
}
html.admin-app[data-theme="dark"] .upload-dropzone {
  background: var(--admin-input-bg);
  border-color: var(--admin-border-strong);
}
html.admin-app[data-theme="dark"] .upload-dropzone.is-dragover {
  background: rgba(241, 90, 36, 0.12);
}
html.admin-app[data-theme="dark"] .upload-dropzone__title,
html.admin-app[data-theme="dark"] .upload-dropzone__filename {
  color: var(--admin-text);
}
html.admin-app[data-theme="dark"] .upload-dropzone__meta,
html.admin-app[data-theme="dark"] .upload-dropzone__filesize {
  color: var(--admin-muted);
}
html.admin-app[data-theme="dark"] .upload-dropzone__clear {
  background: var(--admin-surface);
  border-color: rgba(248, 113, 113, 0.35);
  color: #fca5a5;
}
html.admin-app[data-theme="dark"] .upload-dropzone__thumb {
  border-color: var(--admin-border);
  background: var(--admin-surface-2);
}

.form-shell {
  --form-shell-pad: clamp(1.35rem, 3.2vw, 2.15rem);
  position: relative;
  background: var(--zk-card);
  border: 1px solid var(--zk-border);
  border-radius: var(--zk-radius-lg);
  padding: var(--form-shell-pad);
  box-shadow: var(--zk-shadow);
}
.form-shell::before {
  content: "";
  position: absolute;
  left: var(--form-shell-pad);
  right: var(--form-shell-pad);
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--zk-orange), #f0a07a 55%, var(--zk-green));
}
.form-shell--admin {
  background: #fff;
  border-radius: 1rem;
  box-shadow: none;
}
.form-shell--admin::before { display: none; }
.form-grid {
  display: grid;
  gap: 1.15rem 1.25rem;
}
@media (min-width: 768px) {
  .form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .form-grid--2,
  .form-grid--3 { grid-template-columns: 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
fieldset.form-field {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}
.form-field--full { grid-column: 1 / -1; }
.form-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3d4640;
  line-height: 1.3;
}
.form-label-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.form-label-action {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--zk-orange-text);
  white-space: nowrap;
}
.form-label-action:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-required { color: var(--zk-orange); font-weight: 700; text-transform: none; letter-spacing: 0; }
.form-hint {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--zk-muted);
}
.form-error {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #c2410c;
  line-height: 1.35;
}
.form-section {
  grid-column: 1 / -1;
  padding-top: 1.15rem;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(20, 24, 20, 0.08);
}
.form-section:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.form-section__title {
  font-family: var(--zk-font-display);
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  margin: 0;
}
.form-section__title::after {
  content: "";
  display: block;
  width: 2.1rem;
  height: 2px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--zk-orange);
}
.form-section__subtitle {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--zk-muted);
  line-height: 1.5;
}
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(20, 24, 20, 0.08);
}
.form-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-weight: 550;
  color: var(--zk-ink);
  cursor: pointer;
}
.form-check__input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  accent-color: var(--zk-orange);
  flex-shrink: 0;
}
.form-choice-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 640px) {
  .form-choice-row { grid-template-columns: 1fr 1fr; }
}
.form-choice {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(21, 26, 22, 0.12);
  background: #faf8f4;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.form-choice:hover { border-color: rgba(229, 84, 31, 0.4); background: #fff; }
.form-choice:has(input:checked) {
  border-color: var(--zk-orange);
  background: rgba(229, 84, 31, 0.06);
  box-shadow: 0 0 0 3px rgba(229, 84, 31, 0.12);
}
.form-choice input { accent-color: var(--zk-orange); margin-top: 0.15rem; }
.form-field legend.form-label {
  float: none;
  width: auto;
  padding: 0;
}
.form-choice .form-hint {
  margin-top: 0.15rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.form-alert {
  grid-column: 1 / -1;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
}
.form-alert--info {
  background: #fff7ed;
  color: #9a3412;
  border: 1px solid rgba(241, 90, 36, 0.18);
}
.form-alert--soft {
  background: rgba(47, 138, 78, 0.08);
  color: var(--zk-green-deep);
  border: 1px solid rgba(47, 138, 78, 0.15);
}
.preorder-banner {
  margin: 0;
  padding: 0.85rem 1.05rem;
  border-radius: 0.95rem;
  background: var(--zk-orange-soft);
  color: var(--zk-orange-text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  border: 1px solid rgba(229, 84, 31, 0.14);
}
.hours-block { display: grid; gap: 0.85rem; }
.hours-block__notice {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 600;
}
.hours-block__grid {
  display: grid;
  gap: 0.9rem;
  margin: 0;
}
@media (min-width: 520px) {
  .hours-block--card .hours-block__grid,
  .hours-block--full .hours-block__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.hours-block dt {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hours-block dd {
  margin: 0;
  display: grid;
  gap: 0.15rem;
  font-size: 0.92rem;
  line-height: 1.45;
}
.hours-block--card .hours-block__notice { color: var(--zk-ink); }
.hours-block--card dt { color: var(--zk-muted); }
.hours-block--card dd { color: var(--zk-muted); }
.hours-block--footer {
  max-width: none;
}
.hours-block--footer .hours-block__grid {
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
.hours-block--footer dt { color: rgba(246, 248, 246, 0.48); }
.hours-block--footer dd { color: rgba(246, 248, 246, 0.78); }
.form-footnote {
  margin: 0;
  font-size: 0.8rem;
  color: var(--zk-muted);
  line-height: 1.45;
}
html.admin-app .form-grid { gap: 1rem; }
html.admin-app .form-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--zk-ink);
}
html.admin-app .input-field {
  background: #fff;
  padding: 0.8rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  box-shadow: none;
}
html.admin-app .form-section {
  padding-top: 0.35rem;
  margin-top: 0.35rem;
}
html.admin-app .form-section__title { font-size: 1.05rem; }
html.admin-app .form-section__title::after { display: none; }
html.admin-app .form-actions {
  border-top: 0;
  padding-top: 0.35rem;
  margin-top: 0;
}
.btn-primary:disabled,
.btn-primary.is-loading {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}
.flash-banner {
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  line-height: 1.45;
  border: 1px solid transparent;
}
.flash-banner--success {
  background: #ecfdf3;
  color: #166534;
  border-color: rgba(22, 101, 52, 0.12);
}
.flash-banner--error {
  background: #fff7ed;
  color: #9a3412;
  border-color: rgba(194, 65, 12, 0.16);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--zk-green-deep);
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 240px;
  background: rgba(20, 24, 20, 0.04);
  overflow: hidden;
}
.map-embed--admin {
  border-radius: 0.85rem;
  border: 1px solid rgba(20, 24, 20, 0.08);
  max-width: 40rem;
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
html.admin-app[data-theme="dark"] .map-embed {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--admin-border);
}

/* Admin theme tokens (light default) */
html.admin-app {
  --admin-bg: #f4f6f4;
  --admin-surface: #ffffff;
  --admin-surface-2: #eef2ef;
  --admin-border: rgba(20, 24, 20, 0.08);
  --admin-border-strong: rgba(20, 24, 20, 0.12);
  --admin-text: #141814;
  --admin-muted: #5a655d;
  --admin-nav-bg: #132016;
  --admin-nav-text: rgba(255, 255, 255, 0.78);
  --admin-shadow: 0 10px 28px rgba(20, 24, 20, 0.05);
  --admin-input-bg: #ffffff;
  --admin-thead: rgba(244, 246, 244, 0.7);
  color-scheme: light;
}
html.admin-app[data-theme="dark"] {
  --admin-bg: #0f1411;
  --admin-surface: #1a211c;
  --admin-surface-2: #222b25;
  --admin-border: rgba(232, 238, 233, 0.1);
  --admin-border-strong: rgba(232, 238, 233, 0.16);
  --admin-text: #e8eee9;
  --admin-muted: #9aa89e;
  --admin-nav-bg: #0b100d;
  --admin-nav-text: rgba(232, 238, 233, 0.78);
  --admin-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  --admin-input-bg: #141b16;
  --admin-thead: rgba(255, 255, 255, 0.04);
  --zk-ink: #e8eee9;
  --zk-muted: #9aa89e;
  --zk-surface: #0f1411;
  --zk-green-deep: #6ee7a0;
  color-scheme: dark;
}

.admin-body {
  background: var(--admin-bg);
  color: var(--admin-text);
  min-height: 100vh;
}
.admin-auth-body {
  background:
    radial-gradient(ellipse 70% 50% at 10% 10%, rgba(241, 90, 36, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(47, 138, 78, 0.14), transparent 50%),
    var(--admin-bg);
  color: var(--admin-text);
}
html.admin-app[data-theme="dark"] .admin-auth-body {
  background:
    radial-gradient(ellipse 70% 50% at 10% 10%, rgba(241, 90, 36, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 80%, rgba(47, 138, 78, 0.1), transparent 50%),
    var(--admin-bg);
}
.admin-theme-fab {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 40;
}
.admin-theme-icon { width: 1.15rem; height: 1.15rem; }
html.admin-app[data-theme="light"] .admin-theme-icon--sun,
html.admin-app:not([data-theme]) .admin-theme-icon--sun { display: none; }
html.admin-app[data-theme="dark"] .admin-theme-icon--moon { display: none; }
html.admin-app[data-theme="light"] .admin-theme-icon--moon,
html.admin-app:not([data-theme]) .admin-theme-icon--moon { display: block; }
html.admin-app[data-theme="dark"] .admin-theme-icon--sun { display: block; }

.admin-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 270px 1fr;
  background: var(--admin-bg);
  color: var(--admin-text);
}
.admin-nav {
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow: hidden; /* scroll only inside .admin-nav-list */
  background: var(--admin-nav-bg);
  color: #fff;
}
.admin-nav-list {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.28) transparent;
}
.admin-nav-list::-webkit-scrollbar {
  width: 6px;
}
.admin-nav-list::-webkit-scrollbar-track {
  background: transparent;
}
.admin-nav-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}
.admin-nav-list::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-radius: 0.65rem;
  padding: 0.55rem 0.75rem;
  color: var(--admin-nav-text);
  transition: background 0.15s ease, color 0.15s ease;
}
.admin-nav-link:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.admin-nav-link.is-active {
  background: rgba(241, 90, 36, 0.22);
  color: #fff;
  font-weight: 600;
}
.admin-nav-link.is-active .admin-nav-icon { color: #ffb089; }
.admin-nav-link--sub {
  padding-left: 0.85rem;
  font-size: 0.92em;
  gap: 0.55rem;
}
.admin-nav-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  opacity: 0.92;
}
.admin-nav-icon {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
.admin-nav-link--sub .admin-nav-icon {
  width: 1.05rem;
  height: 1.05rem;
  opacity: 0.9;
}
.admin-nav-link__label { min-width: 0; line-height: 1.25; }
.admin-nav-group__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  border-radius: 0.65rem;
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-align: left;
}
.admin-nav-group__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.admin-nav-group__toggle:hover { background: rgba(255, 255, 255, 0.08); }
.admin-nav-group__chevron {
  width: 1rem;
  height: 1rem;
  opacity: 0.7;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.admin-nav-group.is-open .admin-nav-group__chevron { transform: rotate(180deg); }
.admin-nav-group__menu {
  display: none;
  padding: 0.15rem 0 0.35rem;
}
.admin-nav-group.is-open .admin-nav-group__menu { display: grid; gap: 0.15rem; }

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: color-mix(in srgb, var(--admin-surface) 92%, transparent);
  border-bottom: 1px solid var(--admin-border);
  backdrop-filter: blur(10px);
  color: var(--admin-text);
}
@media (min-width: 768px) {
  .admin-topbar { padding: 0.95rem 2rem; }
}
.admin-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.admin-icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 0.75rem;
  border: 1px solid var(--admin-border-strong);
  background: var(--admin-surface);
  padding: 0.45rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--admin-text);
}
.admin-icon-btn svg { width: 1.15rem; height: 1.15rem; }
.admin-icon-btn--icon {
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  justify-content: center;
}
.admin-icon-btn:hover { border-color: rgba(241, 90, 36, 0.4); color: var(--zk-orange); }

.admin-profile { position: relative; }
.admin-profile__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--admin-border-strong);
  background: var(--admin-surface);
  padding: 0.25rem 0.55rem 0.25rem 0.25rem;
  color: var(--admin-text);
}
.admin-profile__trigger:hover { border-color: rgba(47, 138, 78, 0.35); }
.admin-profile__avatar {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.admin-profile__avatar--initial {
  background: #132016;
  color: #fff;
  font-family: var(--zk-font-display);
  font-weight: 700;
  font-size: 0.95rem;
}
.admin-profile__meta {
  text-align: left;
  line-height: 1.15;
  max-width: 10rem;
}
.admin-profile__name {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-profile__email {
  display: block;
  font-size: 0.7rem;
  color: var(--zk-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.admin-profile__caret { width: 1rem; height: 1rem; opacity: 0.55; }
.admin-profile__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.45rem);
  width: 14.5rem;
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 0.9rem;
  box-shadow: var(--admin-shadow);
  padding: 0.4rem;
  z-index: 40;
}
.admin-profile__menu-head {
  padding: 0.65rem 0.75rem 0.55rem;
  border-bottom: 1px solid var(--admin-border);
  margin-bottom: 0.25rem;
}
.admin-profile__menu a,
.admin-profile__menu button {
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 0.55rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--admin-text);
}
.admin-profile__menu a:hover,
.admin-profile__menu button:hover { background: rgba(241, 90, 36, 0.08); color: var(--zk-orange); }
.admin-profile__menu form { margin: 0; }

.settings-shell {
  max-width: none;
  width: 100%;
}
.settings-tabs {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.2rem;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid var(--admin-border);
  background: var(--admin-surface-2);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.settings-tab {
  flex: 0 0 auto;
  white-space: nowrap;
  border-radius: 0.65rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--admin-muted);
  transition: background 0.15s ease, color 0.15s ease;
}
.settings-tab:hover { color: var(--admin-text); background: color-mix(in srgb, var(--admin-surface) 80%, transparent); }
.settings-tab.is-active {
  background: var(--admin-surface);
  color: var(--zk-orange);
  box-shadow: 0 1px 2px rgba(20, 24, 20, 0.06);
}
.settings-panel[hidden] { display: none !important; }

.admin-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}
.admin-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 0.6rem;
  border: 1px solid var(--admin-border-strong);
  background: var(--admin-surface);
  color: var(--admin-text);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.admin-action__icon { width: 1.05rem; height: 1.05rem; }
.admin-action--edit { color: var(--zk-orange); }
.admin-action--edit:hover { background: rgba(241, 90, 36, 0.1); border-color: rgba(241, 90, 36, 0.35); }
.admin-action--delete { color: #b42318; }
.admin-action--delete:hover { background: rgba(180, 35, 24, 0.08); border-color: rgba(180, 35, 24, 0.3); }
.admin-action--view { color: var(--zk-green-deep); }
.admin-action--view:hover { background: rgba(47, 138, 78, 0.1); border-color: rgba(47, 138, 78, 0.35); }
.admin-action--activate { color: var(--zk-green-deep); }
.admin-action--activate:hover { background: rgba(47, 138, 78, 0.1); border-color: rgba(47, 138, 78, 0.35); }
.admin-action--deactivate { color: #9a6700; }
.admin-action--deactivate:hover { background: rgba(154, 103, 0, 0.1); border-color: rgba(154, 103, 0, 0.35); }
.admin-action-form { display: inline; margin: 0; }

.admin-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}
.admin-breadcrumbs__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 0.65rem;
  border: 1px solid var(--admin-border-strong);
  background: var(--admin-surface);
  color: var(--admin-text);
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.admin-breadcrumbs__back:hover {
  color: var(--zk-orange);
  border-color: rgba(241, 90, 36, 0.35);
  background: rgba(241, 90, 36, 0.08);
}
.admin-breadcrumbs__back-icon { width: 1.1rem; height: 1.1rem; }
.admin-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--admin-muted);
}
.admin-breadcrumbs__item { display: inline-flex; align-items: center; gap: 0.45rem; }
.admin-breadcrumbs__item + .admin-breadcrumbs__item::before {
  content: "/";
  color: color-mix(in srgb, var(--admin-muted) 70%, transparent);
}
.admin-breadcrumbs__item a {
  color: var(--admin-muted);
  font-weight: 600;
}
.admin-breadcrumbs__item a:hover { color: var(--zk-orange); }
.admin-breadcrumbs__item [aria-current="page"] {
  color: var(--admin-text);
  font-weight: 700;
}

.admin-id {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--admin-muted, var(--zk-muted));
  white-space: nowrap;
}
.admin-id__hash {
  opacity: 0.55;
  font-weight: 500;
  margin-right: 0.1rem;
}

.report-hub__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 900px) {
  .report-hub__grid { grid-template-columns: 1fr; }
}
.admin-filters {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface);
  box-shadow: var(--admin-shadow);
  align-items: end;
}
.admin-filters--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-filters--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-filters--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.admin-filters--cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.admin-filters--cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
@media (max-width: 1100px) {
  .admin-filters--cols-5,
  .admin-filters--cols-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .admin-filters,
  .admin-filters--cols-2,
  .admin-filters--cols-3,
  .admin-filters--cols-4,
  .admin-filters--cols-5,
  .admin-filters--cols-6 { grid-template-columns: 1fr; }
}
.admin-filters__label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--admin-muted);
}
.admin-filters__field--span-2 { grid-column: span 2; }
@media (max-width: 720px) {
  .admin-filters__field--span-2 { grid-column: span 1; }
}
.admin-filters__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.section-order {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.section-order__btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.45rem;
  border: 1px solid var(--admin-border-strong);
  background: var(--admin-surface);
  color: var(--admin-text);
  font-size: 0.8rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.section-order__btn:hover {
  border-color: rgba(241, 90, 36, 0.4);
  color: #f15a24;
  background: rgba(241, 90, 36, 0.06);
}

.report-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
}
.report-export {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.report-export__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 0.65rem;
  border: 1px solid var(--admin-border-strong);
  background: var(--admin-surface);
  color: var(--admin-text);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.report-export__btn .admin-action__icon {
  width: 0.95rem;
  height: 0.95rem;
}
.report-export__btn:hover {
  transform: translateY(-1px);
}
.report-export__btn--csv:hover {
  border-color: rgba(47, 138, 78, 0.4);
  color: #1f6b3a;
  background: rgba(47, 138, 78, 0.08);
}
.report-export__btn--pdf:hover {
  border-color: rgba(241, 90, 36, 0.4);
  color: #b04312;
  background: rgba(241, 90, 36, 0.08);
}
.report-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  border-radius: 1.15rem;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface);
  box-shadow: var(--admin-shadow);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.report-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--report-tone, #2f8a4e);
}
.report-card:hover {
  border-color: color-mix(in srgb, var(--report-tone, #f15a24) 45%, transparent);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(20, 24, 20, 0.08);
}
.report-card--green { --report-tone: #2f8a4e; }
.report-card--orange { --report-tone: #f15a24; }
.report-card--teal { --report-tone: #2a8a84; }
.report-card--amber { --report-tone: #d4891a; }
.report-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--report-tone, #2f8a4e) 14%, transparent);
  color: var(--report-tone, var(--zk-green-deep));
}
.report-card__icon .admin-nav-icon { width: 1.15rem; height: 1.15rem; }
.report-card__title {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.report-card__desc {
  display: block;
  font-size: 0.875rem;
  color: var(--admin-muted);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}
.report-card__stat {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.report-card__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--admin-muted);
}
.report-card__arrow {
  color: var(--admin-muted);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  transition: transform 0.2s ease, color 0.2s ease;
}
.report-card:hover .report-card__arrow {
  color: #f15a24;
  transform: translateX(3px);
}
.report-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: var(--admin-surface-2);
  color: var(--admin-muted);
  white-space: nowrap;
}
.report-pill--registered,
.report-pill--success { background: rgba(47, 138, 78, 0.12); color: #1f6b3a; }
.report-pill--guest,
.report-pill--neutral { background: rgba(20, 24, 20, 0.06); color: #5a655d; }
.report-pill--warn { background: rgba(241, 90, 36, 0.12); color: #b04312; }
.report-pill--danger { background: rgba(180, 35, 24, 0.1); color: #b42318; }
.report-pill--catering { background: rgba(241, 90, 36, 0.12); color: #b04312; }
.report-pill--custom { background: rgba(47, 138, 78, 0.12); color: #1f6b3a; }
.report-pill--contact { background: rgba(59, 130, 246, 0.12); color: #1d4ed8; }
html.admin-app[data-theme="dark"] .report-pill--registered,
html.admin-app[data-theme="dark"] .report-pill--success { background: rgba(110, 231, 160, 0.14); color: #86efac; }
html.admin-app[data-theme="dark"] .report-pill--guest,
html.admin-app[data-theme="dark"] .report-pill--neutral { background: rgba(255, 255, 255, 0.08); color: #c5cec7; }
html.admin-app[data-theme="dark"] .report-pill--warn,
html.admin-app[data-theme="dark"] .report-pill--catering { background: rgba(241, 90, 36, 0.18); color: #fdba74; }
html.admin-app[data-theme="dark"] .report-pill--danger { background: rgba(248, 113, 113, 0.14); color: #fca5a5; }
html.admin-app[data-theme="dark"] .report-pill--custom { background: rgba(110, 231, 160, 0.14); color: #86efac; }
html.admin-app[data-theme="dark"] .report-pill--contact { background: rgba(96, 165, 250, 0.16); color: #93c5fd; }

.access-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.access-code {
  font-size: 0.78rem;
  padding: 0.15rem 0.4rem;
  border-radius: 0.4rem;
  background: var(--admin-surface-2);
  color: var(--admin-muted);
}
.access-checkgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}
@media (max-width: 720px) {
  .access-checkgrid { grid-template-columns: 1fr; }
}
.access-check {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.75rem 0.85rem;
  border-radius: 0.85rem;
  border: 1px solid var(--admin-border);
  background: var(--admin-surface);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.access-check:hover { border-color: rgba(241, 90, 36, 0.35); }
.access-check.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.access-check input {
  margin-top: 0.2rem;
  accent-color: #f15a24;
}
.access-check strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
}
.access-check small {
  display: block;
  margin-top: 0.15rem;
  color: var(--admin-muted);
  font-size: 0.75rem;
}

.admin-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
  margin-top: 1rem;
  padding: 0.85rem 0.15rem 0.15rem;
}
.admin-pagination__meta {
  margin: 0;
  font-size: 0.875rem;
  color: var(--zk-muted);
}
.admin-pagination__meta strong { color: var(--zk-ink); font-weight: 600; }
.admin-pagination__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}
.admin-pagination__pages {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.admin-pagination__btn,
.admin-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.7rem;
  border-radius: 0.55rem;
  border: 1px solid var(--admin-border-strong);
  background: var(--admin-surface);
  color: var(--admin-text);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.admin-pagination__page { min-width: 2rem; padding: 0 0.35rem; }
.admin-pagination__btn:hover,
.admin-pagination__page:hover {
  border-color: rgba(241, 90, 36, 0.35);
  color: var(--zk-orange);
  background: rgba(241, 90, 36, 0.06);
}
.admin-pagination__page.is-current {
  background: var(--admin-text);
  border-color: var(--admin-text);
  color: var(--admin-bg);
  pointer-events: none;
}
.admin-pagination__btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.admin-pagination__ellipsis {
  width: 1.5rem;
  text-align: center;
  color: var(--zk-muted);
  font-size: 0.9rem;
}

.btn-primary .admin-action__icon,
.btn-primary svg.w-4,
.btn-secondary svg.w-4 {
  width: 1rem;
  height: 1rem;
}

.admin-chart-wrap {
  position: relative;
  height: 240px;
  width: 100%;
}
.admin-chart-wrap--lg { height: 300px; }
.admin-chart-wrap--doughnut { height: 220px; }

/* Premium dashboard (Stripe / Notion / Airbnb inspired) */
.dash { display: grid; gap: 1.25rem; }
.dash-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.15rem 0 0.35rem;
}
.dash-kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--zk-muted);
  margin-bottom: 0.35rem;
}
.dash-title {
  font-family: var(--zk-font-display);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
}
.dash-subtitle {
  margin: 0.4rem 0 0;
  color: var(--zk-muted);
  font-size: 0.95rem;
}
.dash-hero__actions { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.dash-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.7rem;
  padding: 0.55rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.dash-btn--primary {
  background: var(--admin-text);
  color: var(--admin-bg);
}
.dash-btn--primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.dash-btn--ghost {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border-strong);
  color: var(--admin-text);
}
.dash-btn--ghost:hover { border-color: color-mix(in srgb, var(--admin-text) 28%, transparent); }

.dash-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
@media (max-width: 1100px) {
  .dash-kpi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .dash-kpi-grid { grid-template-columns: 1fr; }
}
.dash-kpi {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 1rem;
  padding: 1.15rem 1.2rem 1.05rem;
  box-shadow: 0 1px 0 rgba(20, 24, 20, 0.02);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  color: var(--admin-text);
}
.dash-kpi:hover {
  border-color: var(--admin-border-strong);
  box-shadow: var(--admin-shadow);
}
.dash-kpi--accent {
  background: linear-gradient(160deg, #1a241c 0%, #132016 55%, #241810 100%);
  color: #fff;
  border-color: transparent;
}
.dash-kpi--accent .dash-kpi__label,
.dash-kpi--accent .dash-kpi__meta { color: rgba(255, 255, 255, 0.68); }
.dash-kpi--green,
.dash-kpi--orange,
.dash-kpi--amber,
.dash-kpi--teal {
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(20, 24, 20, 0.12);
}
.dash-kpi--green {
  background: linear-gradient(155deg, #3fa866 0%, #2f8a4e 48%, #1f6b3a 100%);
}
.dash-kpi--orange {
  background: linear-gradient(155deg, #f57a45 0%, #f15a24 48%, #c94612 100%);
}
.dash-kpi--amber {
  background: linear-gradient(155deg, #e8a23a 0%, #d4891a 48%, #a86a10 100%);
}
.dash-kpi--teal {
  background: linear-gradient(155deg, #3aa8a0 0%, #2a8a84 48%, #1d6b66 100%);
}
.dash-kpi--green .dash-kpi__label,
.dash-kpi--green .dash-kpi__meta,
.dash-kpi--orange .dash-kpi__label,
.dash-kpi--orange .dash-kpi__meta,
.dash-kpi--amber .dash-kpi__label,
.dash-kpi--amber .dash-kpi__meta,
.dash-kpi--teal .dash-kpi__label,
.dash-kpi--teal .dash-kpi__meta {
  color: rgba(255, 255, 255, 0.78);
}
.dash-dot--light { background: rgba(255, 255, 255, 0.85); }
.dash-kpi__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--zk-muted);
  margin: 0 0 0.55rem;
}
.dash-kpi__value {
  font-family: var(--zk-font-display);
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0;
}
.dash-kpi__meta {
  margin: 0.7rem 0 0;
  font-size: 0.8rem;
  color: var(--zk-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.dash-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  display: inline-block;
}
.dash-dot--green { background: #4ade80; }
.dash-dot--orange { background: #fb923c; }
.dash-kpi--accent .dash-dot--green { background: #86efac; }
.dash-kpi--accent .dash-dot--orange { background: #fdba74; }

.dash-secondary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.dash-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 999px;
  padding: 0.45rem 0.85rem 0.45rem 0.9rem;
  font-size: 0.82rem;
}
.dash-chip span { color: var(--admin-muted); font-weight: 500; }
.dash-chip strong { font-weight: 700; color: var(--admin-text); }

.dash-charts {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.85rem;
}
.dash-panel--wide { grid-column: 1 / -1; }
@media (max-width: 1100px) {
  .dash-charts { grid-template-columns: 1fr; }
  .dash-panel--wide { grid-column: auto; }
}
.dash-panel {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: 1.05rem;
  padding: 1.15rem 1.2rem 1.1rem;
  box-shadow: 0 1px 0 rgba(20, 24, 20, 0.02);
  color: var(--admin-text);
}
.dash-panel--table { padding: 0; overflow: hidden; }
.dash-panel--table .dash-panel__head {
  padding: 1.15rem 1.25rem 0.95rem;
}
.dash-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.dash-panel__title {
  font-family: var(--zk-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.dash-panel__desc {
  margin: 0.2rem 0 0;
  font-size: 0.8rem;
  color: var(--zk-muted);
}
.dash-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zk-orange);
  white-space: nowrap;
}
.dash-link:hover { color: var(--zk-orange-deep); }

.dash-table-wrap { overflow-x: auto; }
.dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.dash-table thead th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--admin-muted);
  padding: 0.65rem 1.25rem;
  border-top: 1px solid var(--admin-border);
  border-bottom: 1px solid var(--admin-border);
  background: var(--admin-thead);
}
.dash-table tbody td {
  padding: 0.95rem 1.25rem;
  border-bottom: 1px solid var(--admin-border);
  vertical-align: middle;
}
.dash-table tbody tr:last-child td { border-bottom: 0; }
.dash-table tbody tr:hover { background: rgba(241, 90, 36, 0.06); }
.dash-order-id {
  font-weight: 700;
  color: var(--admin-text);
}
.dash-order-id:hover { color: var(--zk-orange); }
.dash-customer { display: block; font-weight: 600; }
.dash-muted {
  display: block;
  font-size: 0.78rem;
  color: var(--zk-muted);
  margin-top: 0.15rem;
}
.dash-money { font-weight: 700; font-variant-numeric: tabular-nums; }
.dash-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.dash-badge--success { background: rgba(47, 138, 78, 0.12); color: #166534; }
.dash-badge--warn { background: rgba(241, 90, 36, 0.12); color: #c2410c; }
.dash-badge--danger { background: rgba(180, 35, 24, 0.1); color: #991b1b; }
.dash-badge--neutral { background: rgba(20, 24, 20, 0.06); color: #3f463f; }
html.admin-app[data-theme="dark"] .dash-badge--success { background: rgba(110, 231, 160, 0.14); color: #86efac; }
html.admin-app[data-theme="dark"] .dash-badge--warn { background: rgba(241, 90, 36, 0.18); color: #fdba74; }
html.admin-app[data-theme="dark"] .dash-badge--danger { background: rgba(248, 113, 113, 0.14); color: #fca5a5; }
html.admin-app[data-theme="dark"] .dash-badge--neutral { background: rgba(255, 255, 255, 0.08); color: #c5cec7; }
.dash-empty {
  text-align: center;
  color: var(--zk-muted);
  padding: 2.5rem 1rem !important;
}

@media (max-width: 900px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-nav {
    position: sticky;
    top: 0;
    z-index: 25;
    max-height: none;
  }
}

/* Admin dark mode: forms, cards, and common Tailwind utilities in views */
html.admin-app .form-shell--admin,
html.admin-app .admin-main .form-shell {
  background: var(--admin-surface);
  border-color: var(--admin-border);
  color: var(--admin-text);
  box-shadow: none;
}
html.admin-app .admin-main .input-field,
html.admin-app .admin-auth-body .input-field,
html.admin-app .form-shell--admin .input-field {
  background: var(--admin-input-bg);
  border-color: var(--admin-border-strong);
  color: var(--admin-text);
}
html.admin-app .admin-main .input-field::placeholder {
  color: color-mix(in srgb, var(--admin-muted) 85%, transparent);
}
html.admin-app .admin-main .input-field:disabled,
html.admin-app .admin-main .input-field[readonly] {
  background: var(--admin-surface-2);
  color: var(--admin-muted);
}
html.admin-app[data-theme="dark"] .admin-main select.input-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%239aa89e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
}
html.admin-app .admin-main .form-label,
html.admin-app .admin-main .form-section__title,
html.admin-app .admin-main .form-check {
  color: var(--admin-text);
}
html.admin-app .admin-main .form-hint,
html.admin-app .admin-main .form-section__subtitle,
html.admin-app .admin-main .form-footnote {
  color: var(--admin-muted);
}
html.admin-app .admin-main .form-choice {
  background: var(--admin-input-bg);
  border-color: var(--admin-border-strong);
  color: var(--admin-text);
}
html.admin-app .btn-secondary {
  color: var(--zk-green-deep);
  border-color: color-mix(in srgb, var(--zk-green) 45%, transparent);
}
html.admin-app[data-theme="dark"] .flash-banner--success {
  background: rgba(110, 231, 160, 0.12);
  color: #bbf7d0;
  border-color: rgba(110, 231, 160, 0.2);
}
html.admin-app[data-theme="dark"] .flash-banner--error {
  background: rgba(251, 146, 60, 0.12);
  color: #fdba74;
  border-color: rgba(251, 146, 60, 0.22);
}
html.admin-app[data-theme="dark"] .admin-main .bg-white,
html.admin-app[data-theme="dark"] .admin-main .bg-white\/70 {
  background-color: var(--admin-surface) !important;
}
html.admin-app[data-theme="dark"] .admin-main table {
  color: var(--admin-text);
}
html.admin-app[data-theme="dark"] .admin-main thead,
html.admin-app[data-theme="dark"] .admin-main [class*="bg-black"] {
  background-color: var(--admin-thead) !important;
}
html.admin-app[data-theme="dark"] .admin-main tbody tr,
html.admin-app[data-theme="dark"] .admin-main .border-black\/5,
html.admin-app[data-theme="dark"] .admin-main .border-black\/10,
html.admin-app[data-theme="dark"] .admin-main [class*="border-black"] {
  border-color: var(--admin-border) !important;
}
html.admin-app[data-theme="dark"] .admin-main .text-zk-muted,
html.admin-app[data-theme="dark"] .admin-main .text-zk-ink {
  color: var(--admin-muted);
}
html.admin-app[data-theme="dark"] .admin-main h1,
html.admin-app[data-theme="dark"] .admin-main h2,
html.admin-app[data-theme="dark"] .admin-main .font-semibold,
html.admin-app[data-theme="dark"] .admin-main .font-bold,
html.admin-app[data-theme="dark"] .admin-main .font-extrabold {
  color: var(--admin-text);
}
html.admin-app[data-theme="dark"] .admin-main .bg-orange-50\/40,
html.admin-app[data-theme="dark"] .admin-main .bg-orange-50 {
  background-color: rgba(241, 90, 36, 0.12) !important;
}
html.admin-app[data-theme="dark"] .admin-main .tiptap-shell {
  background: var(--admin-input-bg);
  border-color: var(--admin-border-strong);
  color: var(--admin-text);
}
html.admin-app[data-theme="dark"] .admin-main .tiptap-toolbar {
  background: var(--admin-surface-2);
  border-color: var(--admin-border);
}
html.admin-app[data-theme="dark"] .admin-main .tiptap-toolbar button,
html.admin-app[data-theme="dark"] .admin-main .tiptap-btn {
  color: var(--admin-text);
  background: var(--admin-input-bg);
  border-color: var(--admin-border);
}
html.admin-app[data-theme="dark"] .admin-main .tiptap-toolbar button.is-active,
html.admin-app[data-theme="dark"] .admin-main .tiptap-btn.is-active {
  background: rgba(241, 90, 36, 0.18);
  border-color: #f15a24;
  color: #ffb089;
}
html.admin-app[data-theme="dark"] .admin-main .tiptap-content {
  color: var(--admin-text);
}
html.admin-app[data-theme="dark"] .admin-main .tiptap-toolbar__group {
  border-color: var(--admin-border);
}

.wa-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(18, 140, 126, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-fab-in 0.45s ease both;
}
.wa-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 32px rgba(18, 140, 126, 0.42);
}
@keyframes wa-fab-in {
  from { opacity: 0; transform: translateY(12px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

body.has-wa-fab:not(.has-sticky-cart) main { padding-bottom: 5rem; }
body.has-sticky-cart main { padding-bottom: 5.5rem; }
body.has-sticky-cart.has-wa-fab main { padding-bottom: 6.75rem; }
body.has-sticky-cart .wa-fab { bottom: 5.25rem; }

.site-header {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(250, 248, 244, 0.86);
  border-bottom: 1px solid rgba(21, 26, 22, 0.06);
}
.site-header__inner {
  gap: 1rem;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.site-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  gap: 0.1rem;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  font-family: var(--zk-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.015em;
  line-height: 1.2;
  color: #2d352f;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav a:hover {
  color: var(--zk-orange-text);
  background: rgba(229, 84, 31, 0.07);
}
.site-nav a.is-active {
  font-weight: 600;
  color: var(--zk-orange-text);
}
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.18rem;
  height: 1.5px;
  border-radius: 999px;
  background: var(--zk-orange);
}
.header-signin {
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: #2d352f;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
}
.header-signin:hover {
  color: var(--zk-orange-text);
  background: rgba(229, 84, 31, 0.07);
}
@media (min-width: 640px) {
  .header-signin { display: inline-flex; }
}
@media (min-width: 1180px) {
  .site-nav { display: flex; }
  .site-nav a {
    padding: 0.42rem 0.62rem;
    font-size: 0.9rem;
  }
}
@media (min-width: 1320px) {
  .site-nav { gap: 0.2rem; }
  .site-nav a {
    padding: 0.48rem 0.85rem;
    font-size: 0.98rem;
  }
}
@media (max-width: 1319px) {
  .header-cart__label { display: none; }
}

.site-footer {
  margin-top: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 0%, rgba(229, 84, 31, 0.16), transparent 55%),
    linear-gradient(165deg, #18211b 0%, #121814 100%);
  color: rgba(246, 248, 246, 0.82);
}
.site-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.4rem;
  display: grid;
  gap: 2.4rem 2rem;
  align-items: start;
}
.site-footer__brand { max-width: 20rem; }
.site-footer__logo {
  display: block;
  height: clamp(4.5rem, 8vw, 5.75rem);
  width: auto;
  max-width: 16rem;
  margin-bottom: 1.1rem;
  object-fit: contain;
  filter: brightness(1.05);
}
.site-footer__copy {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(246, 248, 246, 0.72);
}
.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.15rem;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(246, 248, 246, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-footer__social a:hover {
  border-color: rgba(255, 176, 138, 0.55);
  color: #ffb08a;
}
.site-footer__heading {
  font-family: var(--zk-font-display);
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 0.95rem;
}
.site-footer__links {
  display: grid;
  gap: 0.7rem;
}
.site-footer__links a {
  color: rgba(246, 248, 246, 0.72);
  font-size: 0.92rem;
  font-weight: 500;
}
.site-footer__links a:hover,
.site-footer__contact a:hover {
  color: #ffb08a;
}
.site-footer__hours-note {
  margin: -0.45rem 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffb08a;
}
.site-footer__kicker {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 248, 246, 0.48);
}
.site-footer__contact {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__contact-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.site-footer__contact-item {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(246, 248, 246, 0.78);
}
.site-footer__contact-item a { color: inherit; }
.site-footer__wa {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(134, 239, 172, 0.12);
  color: #86efac;
  font-size: 0.85rem;
  font-weight: 700;
}
.site-footer__wa:hover {
  background: rgba(134, 239, 172, 0.2);
  color: #bbf7d0;
}
.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__legal-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.78rem;
  color: rgba(246, 248, 246, 0.55);
}
.site-footer__legal-inner > :first-child { justify-self: start; }
.site-footer__credit {
  margin: 0;
  justify-self: center;
  text-align: center;
  color: rgba(246, 248, 246, 0.62);
}
.site-footer__credit a {
  font-weight: 600;
  color: rgba(246, 248, 246, 0.82);
}
.site-footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  gap: 0.85rem 1.15rem;
}
.site-footer__legal a {
  color: rgba(246, 248, 246, 0.7);
}
.site-footer__legal a:hover { color: #ffb08a; }
@media (max-width: 720px) {
  .site-footer__legal-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .site-footer__legal-inner > :first-child,
  .site-footer__credit,
  .site-footer__legal-links {
    justify-self: center;
  }
}
@media (min-width: 960px) {
  .site-footer__inner {
    grid-template-columns: 1.35fr 0.85fr 0.85fr 1.45fr;
  }
}
@media (min-width: 640px) and (max-width: 959px) {
  .site-footer__inner {
    grid-template-columns: 1.1fr 0.8fr 0.8fr;
  }
  .site-footer__hours { grid-column: 1 / -1; }
  .hours-block--footer .hours-block__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 28rem;
  }
}
@media (max-width: 639px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    padding-top: 2.5rem;
  }
  .site-footer__brand,
  .site-footer__hours { grid-column: 1 / -1; max-width: none; }
  .site-footer__wa { margin-left: 0; }
}
@media (max-width: 519px) {
  .hours-block--footer .hours-block__grid { grid-template-columns: 1fr; }
}

/* Homepage hero slider — premium food commerce */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: min(68vh, 640px);
  overflow: hidden;
  background: #1c1410;
  color: #fff;
}
.hero-slider__track {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.85s ease, visibility 0.85s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  transform: scale(1.03);
  transition: transform 7s ease;
}
.hero-slide__image--dish {
  object-position: 72% center;
  filter: saturate(1.05) contrast(1.04);
}
.hero-slide.is-active .hero-slide__image {
  transform: scale(1);
}
.hero-slide__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      100deg,
      rgba(10, 8, 6, 0.94) 0%,
      rgba(10, 8, 6, 0.86) 22%,
      rgba(10, 8, 6, 0.62) 42%,
      rgba(10, 8, 6, 0.28) 62%,
      rgba(10, 8, 6, 0.35) 100%
    ),
    linear-gradient(180deg, rgba(10, 8, 6, 0.25) 0%, rgba(10, 8, 6, 0.55) 100%);
}
.hero-slide--align-right .hero-slide__shade {
  background:
    linear-gradient(
      260deg,
      rgba(10, 8, 6, 0.94) 0%,
      rgba(10, 8, 6, 0.86) 22%,
      rgba(10, 8, 6, 0.62) 42%,
      rgba(10, 8, 6, 0.28) 62%,
      rgba(10, 8, 6, 0.35) 100%
    ),
    linear-gradient(180deg, rgba(10, 8, 6, 0.25) 0%, rgba(10, 8, 6, 0.55) 100%);
}
.hero-slide--align-right .hero-slide__content {
  align-items: flex-end;
}
.hero-slide--align-right .hero-slide__copy {
  text-align: right;
}
.hero-slide--align-right .hero-slide__cta-block {
  justify-content: flex-end;
}
.hero-slide--align-right .hero-slide__title,
.hero-slide--align-right .hero-slide__text,
.hero-slide--align-right .hero-slide__trustline {
  margin-left: auto;
}
.hero-slide--fallback {
  background:
    radial-gradient(ellipse 55% 60% at 85% 40%, rgba(229, 84, 31, 0.28), transparent 58%),
    radial-gradient(ellipse 45% 50% at 70% 75%, rgba(31, 122, 69, 0.22), transparent 55%),
    linear-gradient(145deg, #2a1810 0%, #1a2218 48%, #24160f 100%);
}
.hero-slide--fallback .hero-slide__shade {
  background:
    linear-gradient(100deg, rgba(20, 14, 10, 0.55) 0%, rgba(20, 14, 10, 0.2) 55%, transparent 100%);
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  min-height: min(68vh, 640px);
  padding: 2.75rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.hero-slide__content--split {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-slide__content--split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}
.hero-slide__copy {
  max-width: 34rem;
  padding: 0;
  background: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-slide.is-active .hero-slide__title,
.hero-slide.is-active .hero-slide__text,
.hero-slide.is-active .hero-slide__cta-block,
.hero-slide.is-active .hero-slide__trustline {
  animation: hero-rise 0.75s ease both;
}
.hero-slide.is-active .hero-slide__text { animation-delay: 0.08s; }
.hero-slide.is-active .hero-slide__cta-block { animation-delay: 0.14s; }
.hero-slide.is-active .hero-slide__trustline { animation-delay: 0.22s; }
.hero-slide__title {
  font-family: var(--zk-font-display);
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  max-width: 13ch;
  margin: 0 0 1rem;
  color: var(--hero-text, #fff);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}
.hero-slide__text {
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  line-height: 1.55;
  max-width: 28rem;
  color: var(--hero-text, rgba(255, 255, 255, 0.9));
  margin: 0 0 1.65rem;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}
.hero-slide__cta-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
}
.hero-slide__cta-block .btn-primary,
.hero-slide__cta-block .btn-secondary {
  text-shadow: none;
}
.hero-slide__trustline {
  margin: 1.35rem 0 0;
  padding: 0;
  width: auto;
  max-width: 34rem;
  border-radius: 0;
  background: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--hero-text, rgba(255, 255, 255, 0.72));
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-slide__visual {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 18rem;
}
@media (min-width: 900px) {
  .hero-slide__visual { display: flex; }
}
.hero-platter {
  position: relative;
  width: min(100%, 26rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 236, 214, 0.95), rgba(245, 196, 146, 0.55) 42%, rgba(180, 84, 40, 0.35) 70%, rgba(40, 24, 16, 0.5) 100%);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.08),
    0 0 0 28px rgba(229, 84, 31, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2.5rem;
}
.hero-platter__ring,
.hero-platter__ring--inner {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  pointer-events: none;
}
.hero-platter__ring--inner {
  inset: 24%;
  border-color: rgba(255, 255, 255, 0.16);
}
.hero-platter__steam {
  position: absolute;
  top: 18%;
  left: 50%;
  width: 4rem;
  height: 3rem;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 30% 80%, rgba(255, 255, 255, 0.35), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(255, 255, 255, 0.25), transparent 55%);
  filter: blur(2px);
  opacity: 0.7;
  animation: hero-steam 3.5s ease-in-out infinite;
}
@keyframes hero-steam {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50% { transform: translateX(-50%) translateY(-8px); opacity: 0.8; }
}
.hero-platter__label {
  position: relative;
  z-index: 1;
  font-family: var(--zk-font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  color: #2a1810;
  max-width: 12ch;
}
.hero-platter__hint {
  position: relative;
  z-index: 1;
  margin-top: 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(42, 24, 16, 0.7);
  max-width: 16rem;
}
.hero-slider__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease;
}
.hero-slider__nav:hover { background: rgba(0, 0, 0, 0.45); }
.hero-slider__nav--prev { left: 0.85rem; }
.hero-slider__nav--next { right: 0.85rem; }
.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}
.hero-slider__dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.25s ease, background 0.25s ease;
}
.hero-slider__dot.is-active {
  width: 1.5rem;
  background: #f15a24;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  .hero-slider__nav { display: none; }
  .hero-slider,
  .hero-slide__content { min-height: min(58vh, 520px); }
  .hero-slide__content { padding: 2rem 1.15rem 2.25rem; }
  .hero-slide__cta-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .hero-slide__image,
  .hero-slide__image--dish { object-position: 68% center; }
}

/* —— Public storefront UX —— */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.55rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}
@media (min-width: 1180px) {
  .nav-toggle { display: none; }
}
.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 999px;
  background: var(--zk-ink);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
}
.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 20, 0.45);
  border: 0;
  cursor: pointer;
}
.mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(20rem, 88vw);
  background: #fff;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 8px 0 30px rgba(20, 24, 20, 0.18);
  transform: translateX(-104%);
  transition: transform 0.28s ease;
}
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.mobile-nav__close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.5rem;
  line-height: 1;
  background: #fff;
}
.mobile-nav__links {
  display: grid;
  gap: 0.15rem;
  flex: 1;
  overflow-y: auto;
}
.mobile-nav__links a {
  display: block;
  padding: 0.85rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--zk-ink);
}
.mobile-nav__links a:hover,
.mobile-nav__links a.is-active { background: rgba(241, 90, 36, 0.08); color: var(--zk-orange); }
.mobile-nav__logout { margin: 0; }
.mobile-nav__logout button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.85rem 0.75rem;
  border-radius: 0.75rem;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 700;
  color: #9a3412;
  cursor: pointer;
}
.mobile-nav__logout button:hover { background: rgba(180, 35, 24, 0.08); }
.mobile-nav__cta { width: 100%; }
body.nav-open { overflow: hidden; }

.sticky-cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 24px rgba(20, 24, 20, 0.08);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}
.sticky-cart-bar.is-visible { transform: translateY(0); }
.sticky-cart-bar[hidden] { display: none !important; }
body:has([data-cart-page]) .sticky-cart-bar,
body:has([data-checkout]) .sticky-cart-bar { display: none !important; }
body:has([data-cart-page]),
body:has([data-checkout]) { --sticky-cart-offset: 0px; }
body:has([data-cart-page]).has-sticky-cart main,
body:has([data-checkout]).has-sticky-cart main { padding-bottom: 0; }
body:has([data-cart-page]).has-sticky-cart.has-wa-fab main,
body:has([data-checkout]).has-sticky-cart.has-wa-fab main { padding-bottom: 5rem; }
body:has([data-cart-page]).has-sticky-cart .wa-fab,
body:has([data-checkout]).has-sticky-cart .wa-fab { bottom: 1.25rem; }
body:has([data-cart-page]).has-sticky-cart .cart-toast,
body:has([data-checkout]).has-sticky-cart .cart-toast { bottom: 1.25rem; }
.sticky-cart-bar__inner {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.sticky-cart-bar__meta { display: grid; gap: 0.1rem; min-width: 0; }
.sticky-cart-bar__count { font-size: 0.8rem; color: var(--zk-muted); font-weight: 600; }
.sticky-cart-bar__total { font-family: var(--zk-font-body); font-size: 1.05rem; font-weight: 800; }
.sticky-cart-bar__actions { display: flex; gap: 0.45rem; flex-shrink: 0; }

.menu-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .menu-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .menu-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.menu-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--zk-radius-lg);
  border: 1px solid transparent;
  background: var(--zk-card);
  box-shadow: var(--zk-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--zk-shadow-hover);
}
.menu-card__media {
  display: block;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, var(--zk-orange-soft), var(--zk-green-soft));
}
.menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card__media img { transform: scale(1.05); }
.menu-card__fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  font-family: var(--zk-font-display);
  font-weight: 700;
  color: var(--zk-orange-text);
}
.menu-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem 1.05rem 1.1rem;
  flex: 1;
}
.menu-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.menu-card__title {
  font-family: var(--zk-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--zk-ink);
  text-decoration: none;
}
.menu-card__title:hover { color: var(--zk-orange-text); }
.menu-card__category {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: var(--zk-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.menu-card__price {
  font-weight: 800;
  font-family: var(--zk-font-body);
  font-size: 1.02rem;
  color: var(--zk-ink);
  white-space: nowrap;
}
.menu-card__desc {
  font-size: 0.9rem;
  color: var(--zk-muted);
  line-height: 1.5;
  flex: 1;
}
.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.35rem;
}
.menu-card__chip {
  font-size: 0.72rem;
  font-weight: 800;
}
.menu-card__chip--ok { color: var(--zk-green-deep); }
.menu-card__chip--off { color: #9a3412; }

.category-tile {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--zk-radius-lg);
  background: var(--zk-card);
  box-shadow: var(--zk-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--zk-shadow-hover);
}
.category-tile__media {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: linear-gradient(145deg, var(--zk-orange-soft), var(--zk-green-soft));
}
.category-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile:hover .category-tile__media img { transform: scale(1.05); }
.category-tile__body {
  padding: 0.95rem 1.05rem 1.1rem;
}
.category-tile__title {
  font-family: var(--zk-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.25;
  color: var(--zk-ink);
}
.category-tile__desc {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--zk-muted);
  line-height: 1.45;
}

.menu-chips {
  position: sticky;
  top: 5.5rem;
  z-index: 20;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.65rem 0;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, rgba(244, 242, 237, 0.97), rgba(244, 242, 237, 0.9));
  scrollbar-width: none;
}
.menu-chips::-webkit-scrollbar { display: none; }
.menu-chip {
  flex: 0 0 auto;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zk-ink);
  white-space: nowrap;
}
.catering-cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--zk-radius-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(229, 84, 31, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(31, 122, 69, 0.18), transparent 50%),
    linear-gradient(145deg, #1a221c 0%, #121814 100%);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 48px rgba(18, 24, 20, 0.22);
}
.catering-cta-panel .section-label { color: #86efac; }
.catering-cta-panel .page-section__title { color: #fff; }
.catering-cta-panel .page-section__sub { color: rgba(255, 255, 255, 0.78); }
.catering-cta-panel .btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.catering-cta-panel .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.catering-cta-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.catering-cta-panel__list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.catering-cta-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--zk-orange);
}
.menu-chip.is-active,
.menu-chip:hover {
  background: var(--zk-orange);
  border-color: var(--zk-orange);
  color: #fff;
}

.pdp {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1.15rem 3rem;
}
@media (min-width: 768px) {
  .pdp { padding: 2rem 1.5rem 4rem; }
}
.pdp-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.45rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--zk-muted);
}
.pdp-crumbs a { color: var(--zk-muted); }
.pdp-crumbs a:hover { color: var(--zk-orange-text); }
.pdp-crumbs span:last-child { color: var(--zk-ink); }
.pdp-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .pdp-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2.25rem;
  }
}
.pdp-gallery { min-width: 0; }
.pdp-gallery:focus-visible {
  outline: none;
}
.pdp-gallery:focus-visible .pdp-gallery__stage {
  box-shadow: var(--zk-focus), var(--zk-shadow-hover);
}
.pdp-gallery__stage {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 36rem);
  border-radius: var(--zk-radius-lg);
  overflow: hidden;
  background: linear-gradient(145deg, var(--zk-orange-soft), var(--zk-green-soft));
  box-shadow: var(--zk-shadow-hover);
}
@media (min-width: 900px) {
  .pdp-gallery__stage { aspect-ratio: 1 / 1; max-height: none; }
}
.pdp-gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.pdp-gallery__fallback {
  min-height: 16rem;
}
.pdp-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--zk-ink);
  font-size: 1.35rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(21, 26, 22, 0.16);
  cursor: pointer;
}
.pdp-gallery__nav:hover { background: #fff; color: var(--zk-orange-text); }
.pdp-gallery__nav--prev { left: 0.7rem; }
.pdp-gallery__nav--next { right: 0.7rem; }
.pdp-gallery__count {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  margin: 0;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(21, 26, 22, 0.62);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pdp-gallery__zoom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 2.35rem;
  height: 2.35rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--zk-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(21, 26, 22, 0.14);
  cursor: pointer;
}
.pdp-gallery__zoom svg { width: 1.1rem; height: 1.1rem; }
.pdp-gallery__zoom:hover { color: var(--zk-orange-text); }
.pdp-gallery__thumbs {
  display: flex;
  gap: 0.55rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scrollbar-width: thin;
}
.pdp-gallery__thumb {
  flex: 0 0 4.4rem;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 0.85rem;
  overflow: hidden;
  background: var(--zk-band);
  cursor: pointer;
}
.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-gallery__thumb.is-active,
.pdp-gallery__thumb:hover {
  border-color: var(--zk-orange);
}
.pdp-body {
  min-width: 0;
  padding-top: 0.15rem;
}
.pdp-title {
  font-family: var(--zk-font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.75rem;
}
.pdp-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 1rem;
}
.pdp-price {
  font-family: var(--zk-font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--zk-orange-text);
  margin: 0;
}
.pdp-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.pdp-badge--ok {
  background: var(--zk-green-soft);
  color: var(--zk-green-deep);
}
.pdp-badge--off {
  background: #fff0e8;
  color: #9a3412;
}
.pdp-badge--featured {
  background: var(--zk-orange-soft);
  color: var(--zk-orange-text);
}
.pdp-lead {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--zk-muted);
  margin: 0 0 1.1rem;
}
.pdp-perks {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.pdp-perks li {
  position: relative;
  padding-left: 1.45rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--zk-ink);
}
.pdp-perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--zk-green);
  box-shadow: inset 0 0 0 3px var(--zk-green-soft);
}
.pdp-story {
  margin-bottom: 1.35rem;
}
.pdp-story__title {
  font-family: var(--zk-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
}
.pdp-story p {
  margin: 0;
  color: var(--zk-muted);
  line-height: 1.7;
}
.pdp-order {
  background: #fff;
  border: 1px solid var(--zk-border);
  border-radius: var(--zk-radius-lg);
  box-shadow: var(--zk-shadow);
  padding: 1.15rem 1.15rem 1.2rem;
}
.pdp-order__title {
  font-family: var(--zk-font-display);
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
}
.pdp-order-form {
  display: grid;
  gap: 0.85rem;
}
.pdp-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.pdp-qty__label {
  font-size: 0.88rem;
  font-weight: 700;
}
.qty-stepper--pdp {
  padding: 0.15rem;
}
.qty-stepper__input {
  width: 2.4rem;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--zk-ink);
  -moz-appearance: textfield;
}
.qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.pdp-add-btn {
  width: 100%;
  justify-content: center;
  padding: 0.95rem 1.35rem;
}
.pdp-sticky-cta {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .pdp-sticky-cta {
    display: flex;
    align-items: center;
    gap: 0.9rem;
  }
  .pdp-add-btn {
    width: auto;
    flex: 1;
  }
}
@media (max-width: 767px) {
  .pdp-sticky-cta {
    position: sticky;
    bottom: 0;
    z-index: 20;
    margin: 0.35rem -1.15rem -1.2rem;
    padding: 0.8rem 1.15rem calc(0.8rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
  }
  body.has-sticky-cart .pdp-sticky-cta {
    bottom: 4.6rem;
  }
}
.pdp-related {
  margin-top: 3rem;
}
.pdp-related__title {
  font-family: var(--zk-font-display);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  font-weight: 700;
  margin: 0.2rem 0 1.15rem;
}
.pdp-related__grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .pdp-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .pdp-related__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.pdp-lightbox {
  position: relative;
  width: min(92vw, 56rem);
  max-height: 90vh;
  padding: 0;
  border: 0;
  border-radius: 1.15rem;
  background: #111;
  overflow: hidden;
}
.pdp-lightbox::backdrop {
  background: rgba(18, 22, 20, 0.72);
}
.pdp-lightbox img {
  display: block;
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  background: #111;
}
.pdp-lightbox__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  border: 0;
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
}
.menu-gallery-admin {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.menu-gallery-admin__item {
  margin: 0;
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid var(--admin-border, rgba(20, 24, 20, 0.08));
  background: var(--admin-surface-2, #f6f4f1);
}
.menu-gallery-admin__item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.menu-gallery-admin__remove {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9a3412;
}
.menu-gallery-admin__pending {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(20, 24, 20, 0.08);
}
.menu-gallery-admin__pending-thumb {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: cover;
  border-radius: 0.6rem;
}
html.admin-app[data-theme="dark"] .menu-gallery-admin__item {
  background: var(--admin-surface-2);
  border-color: var(--admin-border);
}
html.admin-app[data-theme="dark"] .menu-gallery-admin__remove {
  color: #fdba74;
}

.cart-line {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 0.85rem;
  align-items: center;
}
.cart-line__thumb {
  width: 4rem;
  height: 4rem;
  border-radius: 0.9rem;
  overflow: hidden;
  background: linear-gradient(135deg, #ffe8d8, #e8f5ec);
}
.cart-line__thumb img { width: 100%; height: 100%; object-fit: cover; }
.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  background: #fff;
  padding: 0.2rem;
}
.qty-stepper__btn {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  font-weight: 700;
  color: var(--zk-ink);
}
.qty-stepper__btn:hover { background: rgba(241, 90, 36, 0.1); color: var(--zk-orange); }
.qty-stepper__value {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.checkout-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zk-muted);
}
.checkout-steps span.is-current { color: var(--zk-orange); }
.checkout-steps span.is-done { color: var(--zk-green); }
.checkout-method {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 640px) {
  .checkout-method { grid-template-columns: 1fr 1fr; }
}
.checkout-method__option {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.95rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(21, 26, 22, 0.12);
  background: #faf8f4;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.checkout-method__option:hover {
  border-color: rgba(229, 84, 31, 0.4);
  background: #fff;
}
.checkout-method__option:has(input:checked) {
  border-color: var(--zk-orange);
  background: rgba(229, 84, 31, 0.06);
  box-shadow: 0 0 0 3px rgba(229, 84, 31, 0.12);
}
.checkout-summary {
  position: static;
}
@media (min-width: 1024px) {
  .checkout-summary {
    position: sticky;
    top: 7rem;
  }
}
.checkout-mobile-bar {
  display: none;
}
@media (max-width: 1023px) {
  .checkout-mobile-bar {
    display: flex;
    position: sticky;
    bottom: 0;
    z-index: 10;
    margin: 1.25rem calc(-1 * var(--form-shell-pad)) calc(-1 * var(--form-shell-pad));
    padding: 0.85rem var(--form-shell-pad) calc(0.85rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .checkout-form .form-actions { display: none; }
  body.has-sticky-cart:not(:has([data-checkout])) .checkout-mobile-bar { bottom: 4.75rem; }
  body:has([data-checkout]) .checkout-mobile-bar { bottom: 0; }
}

.how-steps {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .how-steps { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.how-step {
  position: relative;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.how-step__n {
  font-family: var(--zk-font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--zk-orange);
  margin-bottom: 0.65rem;
  opacity: 0.9;
}
.how-step__label {
  font-family: var(--zk-font-display);
  font-weight: 650;
  font-size: 1.08rem;
  line-height: 1.35;
  color: var(--zk-ink);
  letter-spacing: -0.015em;
}
.testimonial-card {
  border-radius: var(--zk-radius-lg);
  border: 0;
  background: var(--zk-card);
  padding: 1.25rem 1.2rem;
  box-shadow: var(--zk-shadow);
}
.testimonial-card__stars {
  color: var(--zk-orange);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}
.testimonial-card__quote {
  font-family: var(--zk-font-display);
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--zk-ink);
  margin-bottom: 1.15rem;
}
.testimonial-card__author {
  font-weight: 700;
  font-size: 0.92rem;
}
.testimonial-card__meta {
  font-size: 0.78rem;
  color: var(--zk-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.visit-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .visit-grid { grid-template-columns: 0.95fr 1.05fr; align-items: stretch; }
}
.visit-map {
  min-height: 16rem;
  border-radius: var(--zk-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zk-border);
  background: var(--zk-band);
}
.visit-map .map-embed,
.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  border: 0;
}

.visit-grid--single {
  grid-template-columns: 1fr;
  max-width: 36rem;
}

/* Premium contact page */
.contact-page {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.75rem 1.15rem 2.75rem;
}
.contact-page__intro {
  max-width: 38rem;
  margin-bottom: 1.35rem;
}
.contact-page__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  padding: 0.95rem 1rem;
  border-radius: var(--zk-radius-lg);
  background:
    radial-gradient(ellipse 60% 80% at 0% 0%, rgba(229, 84, 31, 0.22), transparent 55%),
    linear-gradient(145deg, #1a221c 0%, #121814 100%);
}
.contact-page__quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.contact-page__quick-btn svg {
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
}
.contact-page__quick-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.contact-page__quick-btn--primary {
  background: var(--zk-orange);
  border-color: var(--zk-orange);
  color: #fff;
}
.contact-page__quick-btn--primary:hover {
  background: var(--zk-orange-deep);
  border-color: var(--zk-orange-deep);
  color: #fff;
}
.contact-page__cards {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .contact-page__cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
  .contact-page__cards { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.contact-card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: var(--zk-radius-lg);
  background: var(--zk-card);
  border: 1px solid var(--zk-border);
  box-shadow: var(--zk-shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
a.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--zk-shadow-hover);
  border-color: rgba(229, 84, 31, 0.28);
}
.contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.75rem;
  background: var(--zk-orange-soft);
  color: var(--zk-orange-text);
}
.contact-card__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}
.contact-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zk-orange-text);
}
.contact-card__value {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--zk-ink);
  word-break: break-word;
}
.contact-card__value small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--zk-muted);
}
.contact-page__body {
  display: grid;
  gap: 1.15rem;
  align-items: start;
}
@media (min-width: 960px) {
  .contact-page__body {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 1.35rem;
  }
}
.contact-page__form {
  margin: 0;
  padding: clamp(1.35rem, 3vw, 1.85rem);
}
.contact-page__form-head {
  margin-bottom: 0.15rem;
}
.contact-page__form-title {
  margin: 0;
  font-family: var(--zk-font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zk-ink);
}
.contact-page__form-sub {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: var(--zk-muted);
}
.contact-page__form .form-grid {
  gap: 0.9rem 1rem;
}
.contact-page__side {
  border-radius: var(--zk-radius-lg);
  padding: 1.35rem 1.25rem;
  background: var(--zk-band);
  border: 1px solid rgba(21, 26, 22, 0.06);
}
.contact-page__side-label {
  margin: 0.85rem 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zk-green-deep);
}
.contact-page__side-label:first-child { margin-top: 0; }
.contact-page__side-value {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--zk-ink);
}
.contact-page__side-note {
  margin: 1rem 0 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--zk-muted);
}
.contact-page__side-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}
.contact-page__map {
  margin-top: 1.75rem;
}
.contact-page__map-head {
  margin-bottom: 0.85rem;
}
.contact-page__map-title {
  margin: 0;
  font-family: var(--zk-font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zk-ink);
}
.contact-page__map-frame {
  border-radius: var(--zk-radius-lg);
  overflow: hidden;
  border: 1px solid var(--zk-border);
  box-shadow: var(--zk-shadow);
  background: var(--zk-band);
}
.contact-page__map-frame .map-embed {
  aspect-ratio: 21 / 9;
  min-height: 16rem;
}

.mobile-nav__section {
  margin: 0.85rem 0.75rem 0.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zk-muted);
}
.mobile-nav__link--secondary {
  font-weight: 500 !important;
  color: var(--zk-muted) !important;
}
.mobile-nav__link--secondary.is-active {
  font-weight: 600 !important;
  color: var(--zk-orange-text) !important;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* —— Customer account portal —— */
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  white-space: nowrap;
}
.status-badge--success { background: rgba(47, 138, 78, 0.12); color: #166534; }
.status-badge--warn { background: rgba(241, 90, 36, 0.12); color: #c2410c; }
.status-badge--danger { background: rgba(180, 35, 24, 0.1); color: #991b1b; }
.status-badge--info { background: rgba(37, 99, 235, 0.1); color: #1d4ed8; }
.status-badge--neutral { background: rgba(20, 24, 20, 0.06); color: #3f463f; }

.account-shell {
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}
@media (min-width: 768px) {
  .account-shell { padding: 2.25rem 1rem 4rem; }
}
.account-shell__inner {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .account-shell__inner {
    grid-template-columns: 15.5rem minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }
}

.account-sidebar {
  display: none;
  padding: 1.15rem;
  position: sticky;
  top: 5.5rem;
}
@media (min-width: 1024px) {
  .account-sidebar { display: block; }
}
.account-sidebar__profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(20, 24, 20, 0.08);
}
.account-sidebar__name {
  font-family: var(--zk-font-display);
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-sidebar__email {
  font-size: 0.75rem;
  color: var(--zk-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-sidebar__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zk-muted);
  margin-bottom: 0.45rem;
}
.account-sidebar__logout { margin-top: 0.75rem; width: 100%; }

.account-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(20, 24, 20, 0.08);
}
.account-avatar--lg { width: 4.5rem; height: 4.5rem; }
.account-avatar--initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(241, 90, 36, 0.16), rgba(47, 138, 78, 0.14));
  color: var(--zk-ink);
  font-family: var(--zk-font-display);
  font-weight: 800;
  font-size: 0.85rem;
}
.account-avatar--lg.account-avatar--initial { font-size: 1.25rem; }

.account-nav { display: grid; gap: 0.2rem; }
.account-nav__link {
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 0.7rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--zk-ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.account-nav__link:hover { background: rgba(241, 90, 36, 0.08); color: var(--zk-orange-deep); }
.account-nav__link.is-active {
  background: rgba(241, 90, 36, 0.12);
  color: var(--zk-orange-deep);
}
.account-nav__link--danger {
  color: #9a3412;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.account-nav__link--danger:hover { background: rgba(180, 35, 24, 0.08); color: #991b1b; }

.account-tabs {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.15rem 0 0.35rem;
  margin: 0 -0.15rem 0.75rem;
}
.account-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 1024px) {
  .account-tabs { display: none; }
}
.account-tabs__link {
  flex: 0 0 auto;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 24, 20, 0.1);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--zk-ink);
  white-space: nowrap;
}
.account-tabs__link.is-active {
  background: var(--zk-orange);
  border-color: var(--zk-orange);
  color: #fff;
}
.account-tabs__logout { display: contents; }
.account-tabs__link--danger {
  border-color: rgba(180, 35, 24, 0.2);
  color: #9a3412;
  background: #fff;
  cursor: pointer;
  font: inherit;
}
.account-tabs__link--danger:hover {
  border-color: rgba(180, 35, 24, 0.35);
  background: rgba(180, 35, 24, 0.06);
}

.account-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.account-header__title {
  font-family: var(--zk-font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.15;
}
.account-header__sub {
  margin-top: 0.3rem;
  color: var(--zk-muted);
  font-size: 0.95rem;
}
.account-header__cta { flex-shrink: 0; }
@media (max-width: 480px) {
  .account-header__cta { display: none; }
}

.account-welcome {
  display: grid;
  gap: 1rem;
  padding: 1.35rem 1.25rem;
  margin-bottom: 1.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 0% 0%, rgba(241, 90, 36, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.82);
}
@media (min-width: 768px) {
  .account-welcome {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.5rem 1.5rem;
  }
}
.account-welcome__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zk-muted);
}
.account-welcome__title {
  font-family: var(--zk-font-display);
  font-size: 1.65rem;
  font-weight: 800;
  margin-top: 0.15rem;
}
.account-welcome__text {
  margin-top: 0.35rem;
  color: var(--zk-muted);
  font-size: 0.95rem;
  max-width: 32rem;
}
.account-welcome__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 900px) {
  .account-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.account-stat {
  display: grid;
  gap: 0.15rem;
  padding: 1rem 1.05rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.account-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 90, 36, 0.28);
}
.account-stat__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--zk-muted);
}
.account-stat__value {
  font-family: var(--zk-font-display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
}
.account-stat__hint {
  font-size: 0.8rem;
  color: var(--zk-muted);
}

.account-panels {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .account-panels { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
}
.account-panels__stack { display: grid; gap: 1rem; }
.account-panel { padding: 1.15rem 1.2rem; }
.account-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.account-panel__title {
  font-family: var(--zk-font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.account-panel__link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zk-orange);
  white-space: nowrap;
}

.account-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; }
.account-list__row,
.account-list__static {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.75rem 0.15rem;
  border-bottom: 1px solid rgba(20, 24, 20, 0.06);
}
.account-list li:last-child .account-list__row,
.account-list li:last-child.account-list__static { border-bottom: 0; }
.account-list__row {
  border-radius: 0.65rem;
  padding-left: 0.45rem;
  padding-right: 0.45rem;
  transition: background 0.15s ease;
}
.account-list__row:hover { background: rgba(241, 90, 36, 0.05); }
.account-list__title { font-weight: 700; font-size: 0.92rem; }
.account-list__meta {
  font-size: 0.8rem;
  color: var(--zk-muted);
  margin-top: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-list__aside {
  display: grid;
  justify-items: end;
  gap: 0.3rem;
  flex-shrink: 0;
}
.account-list__amount { font-size: 0.92rem; }

.account-empty {
  text-align: center;
  padding: 2rem 1.25rem;
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}
.account-empty--compact {
  text-align: left;
  padding: 0.35rem 0 0.15rem;
  justify-items: start;
}
.account-empty__title {
  font-family: var(--zk-font-display);
  font-weight: 800;
  font-size: 1.15rem;
}
.account-empty__text {
  color: var(--zk-muted);
  font-size: 0.92rem;
  max-width: 26rem;
}

.account-order-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.account-order-card,
.account-request-card {
  display: block;
  padding: 1.1rem 1.15rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
a.account-order-card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 90, 36, 0.28);
}
.account-order-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
}
.account-order-card__number {
  font-family: var(--zk-font-display);
  font-weight: 800;
  font-size: 1.05rem;
}
.account-order-card__meta {
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: var(--zk-muted);
}
.account-order-card__total {
  font-family: var(--zk-font-display);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.account-order-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}
.account-order-card__cta {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--zk-orange);
}

.account-back {
  display: inline-flex;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--zk-muted);
}
.account-back:hover { color: var(--zk-orange); }

.account-order-detail__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.3rem;
  margin-bottom: 1rem;
}
.account-order-detail__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--zk-muted);
}
.account-order-detail__number {
  font-family: var(--zk-font-display);
  font-size: 1.55rem;
  font-weight: 800;
  margin-top: 0.15rem;
}
.account-order-detail__meta {
  margin-top: 0.25rem;
  color: var(--zk-muted);
  font-size: 0.9rem;
}
.account-order-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.account-order-detail__grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 900px) {
  .account-order-detail__grid { grid-template-columns: 0.9fr 1.1fr; }
}
.account-order-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.account-dl { display: grid; gap: 0.65rem; }
.account-dl > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}
.account-dl dt { color: var(--zk-muted); }
.account-dl dd { font-weight: 700; text-align: right; }
.account-dl__total {
  padding-top: 0.65rem;
  border-top: 1px solid rgba(20, 24, 20, 0.08);
  font-size: 1rem;
}
.account-address-note {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(20, 24, 20, 0.06);
}

.account-items { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; }
.account-items__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(20, 24, 20, 0.06);
  font-size: 0.92rem;
}
.account-items li:last-child .account-items__row { border-bottom: 0; }
.account-items__name { font-weight: 700; }
.account-items__qty { color: var(--zk-muted); font-size: 0.8rem; margin-top: 0.15rem; }
.account-items__notes { color: var(--zk-muted); font-size: 0.8rem; margin-top: 0.2rem; }

.account-address-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 1024px) {
  .account-address-layout { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
}
.account-address-list { display: grid; gap: 0.85rem; }
.account-address-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.account-address-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.account-profile-layout {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 900px) {
  .account-profile-layout { grid-template-columns: 14rem minmax(0, 1fr); align-items: start; }
}
.account-profile-card {
  padding: 1.35rem 1.15rem;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}
.account-profile-card__name {
  font-family: var(--zk-font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-top: 0.35rem;
}
.account-profile-card__email,
.account-profile-card__phone {
  font-size: 0.85rem;
  color: var(--zk-muted);
  word-break: break-word;
}

.account-auth {
  max-width: 34rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 3.5rem;
}
.account-auth__card { padding: 1.9rem 1.5rem; }
@media (min-width: 480px) {
  .account-auth__card { padding: 2.25rem 2rem; }
}
.account-auth__brand {
  text-align: center;
  margin-bottom: 1.35rem;
}
.account-auth__logo {
  height: clamp(7rem, 18vw, 8rem);
  width: auto;
  max-width: 14rem;
  object-fit: contain;
  margin: 0 auto 0.4rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 1rem;
}
.account-auth__title {
  font-family: var(--zk-font-display);
  font-size: 1.85rem;
  font-weight: 800;
}
.account-auth__sub {
  margin-top: 0.35rem;
  color: var(--zk-muted);
  font-size: 0.92rem;
}
.account-auth__links {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  display: grid;
  gap: 0.45rem;
}

/* Compact sign-in / forgot password: fit above the fold */
body.account-auth-page .account-auth-page__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.account-auth-page .account-auth {
  width: 100%;
  padding: 1rem 1rem 1.25rem;
}
body.account-auth-page .account-auth__card {
  padding: 1.15rem 1.2rem 1.25rem;
}
@media (min-width: 480px) {
  body.account-auth-page .account-auth__card {
    padding: 1.35rem 1.5rem 1.45rem;
  }
}
body.account-auth-page .account-auth__brand {
  margin-bottom: 0.85rem;
}
body.account-auth-page .account-auth__logo {
  height: clamp(4.75rem, 12vw, 5.5rem);
  max-width: 11rem;
  padding: 0.45rem;
  margin-bottom: 0.25rem;
}
body.account-auth-page .account-auth__title {
  font-size: 1.45rem;
  line-height: 1.15;
}
body.account-auth-page .account-auth__sub {
  margin-top: 0.2rem;
  font-size: 0.86rem;
  line-height: 1.4;
}
body.account-auth-page .account-auth .form-grid {
  gap: 0.75rem;
}
body.account-auth-page .account-auth .form-field {
  gap: 0.3rem;
}
body.account-auth-page .account-auth .input-field {
  padding: 0.65rem 0.85rem;
}
body.account-auth-page .account-auth .form-actions {
  margin-top: 0.15rem;
}
body.account-auth-page .account-auth .form-hint {
  font-size: 0.78rem;
  margin-top: 0.15rem;
}
body.account-auth-page .account-auth__links {
  margin-top: 0.75rem;
  gap: 0.25rem;
}
body.account-auth-page .wa-fab,
body.account-auth-page .sticky-cart-bar {
  display: none !important;
}

/* Premium create-account layout */
.account-register {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
}
.account-register__shell {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: var(--zk-radius-lg);
  box-shadow: var(--zk-shadow-hover);
  background: var(--zk-card);
  border: 1px solid var(--zk-border);
}
@media (min-width: 900px) {
  .account-register__shell {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    min-height: min(36rem, calc(100vh - 7.5rem));
  }
}
.account-register__aside {
  display: none;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(ellipse 70% 60% at 12% 18%, rgba(229, 84, 31, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 50% at 88% 88%, rgba(31, 122, 69, 0.22), transparent 55%),
    linear-gradient(165deg, #1a221c 0%, #121814 100%);
}
@media (min-width: 900px) {
  .account-register__aside { display: flex; }
}
.account-register__aside-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  padding: clamp(2rem, 4vw, 3rem);
  max-width: 26rem;
}
.account-register__mark {
  height: clamp(5.5rem, 10vw, 7rem);
  width: auto;
  max-width: 16rem;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 0.15rem;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 1rem;
}
.account-register__eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #86efac;
}
.account-register__headline {
  margin: 0;
  font-family: var(--zk-font-display);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
}
.account-register__lede {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}
.account-register__perks {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.account-register__perks li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}
.account-register__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--zk-orange);
}
.account-register__panel {
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  background: var(--zk-card);
}
.account-register__panel-head {
  margin-bottom: 1.25rem;
}
.account-register__panel-logo {
  display: none;
  height: clamp(4.5rem, 14vw, 5.5rem);
  width: auto;
  max-width: 13rem;
  object-fit: contain;
  margin: 0 auto 0.65rem;
  padding: 0.45rem 0.55rem;
  background: #fff;
  border-radius: 0.85rem;
  border: 1px solid var(--zk-border);
}
.account-register__panel-title {
  margin: 0;
  font-family: var(--zk-font-display);
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zk-ink);
}
.account-register__panel-sub {
  margin: 0.4rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--zk-muted);
}
.account-register__section {
  margin: 0.35rem 0 0;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--zk-green-deep);
}
.account-register__section:first-of-type {
  margin-top: 0;
}
.account-register__form {
  gap: 0.9rem 1rem;
}
.account-register__form .form-actions {
  margin-top: 0.35rem;
}
.account-register__foot {
  margin: 1.15rem 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--zk-muted);
}
body.account-register-page .wa-fab,
body.account-register-page .sticky-cart-bar {
  display: none !important;
}
@media (max-width: 899px) {
  .account-register {
    padding: 1.15rem 1rem 1.75rem;
  }
  .account-register__panel-head {
    text-align: center;
  }
  .account-register__panel-logo {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-slide__image,
  .hero-slide__title,
  .hero-slide__text,
  .hero-slide__cta-block,
  .hero-slide__trustline,
  .hero-platter__steam,
  .menu-card,
  .menu-card__media img,
  .sticky-cart-bar,
  .mobile-nav__panel,
  .reveal,
  .wa-fab,
  .header-cart,
  .account-stat,
  .account-order-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  .reveal { opacity: 1; }
}

/* Premium about page */
.about-page {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 1.75rem 1.15rem 3rem;
}
.about-page__hero {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  margin-bottom: 1.75rem;
  padding: clamp(1.5rem, 3.5vw, 2.35rem);
  border-radius: var(--zk-radius-lg);
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, rgba(229, 84, 31, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(31, 122, 69, 0.12), transparent 50%),
    linear-gradient(145deg, #1a221c 0%, #121814 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media (min-width: 900px) {
  .about-page__hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.65fr);
    gap: 1.75rem;
  }
}
.about-page__hero .section-label {
  color: rgba(255, 200, 160, 0.95);
}
.about-page__brand {
  margin: 0;
  font-family: var(--zk-font-display);
  font-size: clamp(2.35rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #fff;
  animation: about-rise 0.7s ease both;
}
.about-page__lede {
  margin: 0.85rem 0 0;
  max-width: 34rem;
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  animation: about-rise 0.7s ease 0.08s both;
}
.about-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
  animation: about-rise 0.7s ease 0.16s both;
}
.about-page__hero-actions .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
.about-page__hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}
.about-page__hero-panel {
  position: relative;
  display: none;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 11rem;
  padding: 1.25rem;
  border-radius: calc(var(--zk-radius-lg) - 0.35rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
@media (min-width: 900px) {
  .about-page__hero-panel { display: flex; }
}
.about-page__hero-panel--image {
  display: block;
  padding: 0;
  min-height: 14rem;
  border: 0;
  background: #0d120f;
}
@media (max-width: 899px) {
  .about-page__hero-panel--image {
    display: block;
    min-height: 12rem;
    order: -1;
  }
  .about-page__hero--photo {
    display: flex;
    flex-direction: column;
  }
}
.about-page__hero-img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
  object-position: center;
}
.about-page__hero-glow {
  position: absolute;
  inset: auto -20% -30% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 84, 31, 0.45), transparent 68%);
  animation: about-pulse 5s ease-in-out infinite;
}
.about-page__hero-mark {
  position: relative;
  margin: 0;
  font-family: var(--zk-font-display);
  font-size: clamp(4.5rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.12);
}
.about-page__hero-place {
  position: absolute;
  left: 1.25rem;
  bottom: 1.15rem;
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.about-page__story {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 960px) {
  .about-page__story {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
    gap: 1.5rem;
  }
}
.about-page__story-main {
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: var(--zk-radius-lg);
  background: var(--zk-card);
  border: 1px solid var(--zk-border);
  box-shadow: var(--zk-shadow);
  animation: about-rise 0.65s ease 0.12s both;
}
.about-page__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zk-orange-text);
}
.about-page__story-title {
  margin: 0 0 1rem;
  font-family: var(--zk-font-display);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zk-ink);
}
.about-page__prose {
  color: var(--zk-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}
.about-page__prose p { margin: 0 0 1rem; }
.about-page__prose p:last-child { margin-bottom: 0; }
.about-page__prose.prose-blog {
  background: transparent;
  padding: 0;
  box-shadow: none;
  border: 0;
}
.about-page__aside {
  padding: 1.35rem 1.25rem;
  border-radius: var(--zk-radius-lg);
  background: var(--zk-band);
  border: 1px solid rgba(21, 26, 22, 0.06);
  animation: about-rise 0.65s ease 0.2s both;
}
.about-page__aside-label {
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--zk-green-deep);
}
.about-page__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}
.about-page__pillars li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}
.about-page__pillar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.7rem;
  background: #fff;
  color: var(--zk-orange-text);
  border: 1px solid var(--zk-border);
}
.about-page__pillar-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}
.about-page__pillars strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--zk-ink);
}
.about-page__pillars small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--zk-muted);
}
.about-page__hours {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(21, 26, 22, 0.08);
}
.about-page__hours-line {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.45rem 0 0;
  font-size: 0.88rem;
  color: var(--zk-muted);
}
.about-page__hours-line:first-of-type { margin-top: 0.15rem; }
.about-page__hours-line strong {
  color: var(--zk-ink);
  font-weight: 700;
  text-align: right;
}
.about-page__aside-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
@keyframes about-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes about-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 1; }
}
