:root {
  --bg: #faf8f1;
  --surface: #ffffff;
  --surface-alt: #f2f7f0;
  --ink: #20231f;
  --muted: #697166;
  --line: #e1dfd4;
  --brand: #2f7d4c;
  --brand-dark: #215c39;
  --accent: #e4572e;
  --amber: #f1a208;
  --blue: #315c9b;
  --danger: #c5362b;
  --success: #1f8a55;
  --shadow: 0 12px 32px rgba(32, 35, 31, 0.1);
  --radius: 8px;
  --space: 16px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.store-body {
  padding-bottom: 96px;
}

.store-header,
.admin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 241, 0.94);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  font-size: 1.1rem;
}

.store-brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(18, 54, 40, 0.14);
}

.store-header-copy {
  min-width: 0;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

.store-header h1,
.admin-header h1,
.login-card h1 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.15;
}

.store-header p:last-child,
.admin-header p:last-child {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.25;
}

.admin-shortcut,
.icon-button,
.secondary-button,
.primary-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  text-decoration: none;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease;
}

.admin-shortcut,
.icon-button {
  width: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.primary-button {
  width: 100%;
  padding: 12px 16px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
}

.primary-button:hover {
  background: var(--brand-dark);
}

.secondary-button {
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
}

.icon-button:hover,
.secondary-button:hover,
.admin-shortcut:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 125, 76, 0.35);
}

.store-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.store-action-link {
  min-height: 42px;
  padding-inline: 12px;
}

.store-shell,
.admin-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 16px;
}

.hero-strip {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-strip div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.hero-strip span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-strip i {
  color: var(--brand);
}

.menu-controls,
.catalog-section {
  margin-top: 18px;
}

.section-title,
.admin-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.section-title h2,
.admin-section-title h2 {
  margin: 0;
  font-size: 1.05rem;
}

.section-title p,
.admin-section-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.control-helper {
  margin: -2px 0 10px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.section-title-spaced {
  margin-top: 18px;
}

.chip-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 10px;
  scroll-padding-inline: 2px;
  scrollbar-width: none;
}

.chip-row::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.chip.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.day-chip {
  display: inline-grid;
  min-width: 86px;
  align-content: center;
  gap: 1px;
  line-height: 1.05;
}

.day-chip small {
  color: currentColor;
  font-size: 0.62rem;
  font-weight: 800;
  opacity: 0.68;
}

.day-chip.is-today:not(.is-active) {
  border-color: rgba(47, 125, 76, 0.4);
  color: var(--brand-dark);
}

.day-chip.is-readonly:not(.is-active) {
  background: #fffdf8;
}

.product-grid {
  display: grid;
  gap: 12px;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  min-height: 146px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(32, 35, 31, 0.06);
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 125, 76, 0.26);
  box-shadow: 0 14px 34px rgba(32, 35, 31, 0.1);
}

.product-image,
.product-placeholder {
  width: 108px;
  min-height: 122px;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.product-placeholder {
  display: grid;
  align-content: center;
  place-items: center;
  gap: 9px;
  overflow: hidden;
  padding: 12px 8px;
  background: linear-gradient(135deg, #eaf3e6, #fff4dc);
  color: var(--brand);
  text-align: center;
}

.product-placeholder i {
  font-size: 1.9rem;
}

.product-placeholder span {
  max-width: 100%;
  color: rgba(18, 54, 40, 0.78);
  font-size: 0.64rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.placeholder-vegetarian,
.placeholder-salad {
  background: linear-gradient(135deg, #e3f3e5, #f5fff0);
  color: #2f7d4c;
}

.placeholder-tart,
.placeholder-empanada {
  background: linear-gradient(135deg, #fff0d7, #fffaf0);
  color: #b86f3a;
}

.placeholder-meal,
.placeholder-default {
  background: linear-gradient(135deg, #e8f1e4, #fff3df);
  color: var(--brand);
}

.placeholder-drink {
  background: linear-gradient(135deg, #efe7f4, #fffaf0);
  color: #6d4675;
}

.product-info {
  display: grid;
  align-content: start;
  min-width: 0;
}

.product-info h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.product-info p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-meta,
.order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.badge.stock-out {
  background: rgba(197, 54, 43, 0.1);
  color: var(--danger);
}

.status-badge,
.status-text {
  border: 1px solid transparent;
}

.status-text {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
}

.status-pending,
.payment-pending {
  border-color: rgba(184, 111, 58, 0.26);
  background: #fff3d8;
  color: #8a5519;
}

.status-paid,
.payment-approved {
  border-color: rgba(31, 138, 85, 0.22);
  background: rgba(31, 138, 85, 0.12);
  color: #11643c;
}

.status-preparing {
  border-color: rgba(49, 92, 155, 0.22);
  background: rgba(49, 92, 155, 0.11);
  color: #244978;
}

.status-ready {
  border-color: rgba(85, 65, 140, 0.2);
  background: rgba(85, 65, 140, 0.12);
  color: #473474;
}

.status-delivered {
  border-color: rgba(105, 113, 102, 0.2);
  background: #eef3ec;
  color: #40523f;
}

.status-cancelled,
.payment-rejected,
.payment-cancelled,
.payment-refunded {
  border-color: rgba(197, 54, 43, 0.2);
  background: rgba(197, 54, 43, 0.1);
  color: var(--danger);
}

.product-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.price {
  color: #07150f;
  font-size: 1.1rem;
  font-weight: 900;
}

.product-action {
  display: grid;
  justify-items: end;
  gap: 4px;
}

.product-action small {
  max-width: 150px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: right;
}

.add-button {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 900;
}

.add-button:disabled {
  cursor: not-allowed;
  border: 1px solid #d7d1c2;
  background: #ece7dc;
  color: #716b5e;
}

.floating-cart {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.floating-cart strong {
  display: grid;
  min-width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
}

.drawer-backdrop,
.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(32, 35, 31, 0.42);
}

.cart-drawer {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  width: min(430px, 100%);
  height: min(86vh, 720px);
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translateY(110%);
  transition: transform 0.2s ease;
}

.cart-drawer.is-open {
  transform: translateY(0);
}

.drawer-header,
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2,
.modal-header h2 {
  margin: 0;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 12px 16px;
}

.cart-empty {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--muted);
  text-align: center;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.cart-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.quantity-controls {
  display: inline-flex;
  overflow: hidden;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(32, 35, 31, 0.04);
}

.quantity-controls button {
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.quantity-controls span {
  min-width: 30px;
  text-align: center;
  font-weight: 900;
}

.remove-line {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 800;
}

.cart-summary {
  display: grid;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.cart-summary .summary-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.08rem;
}

.modal {
  display: grid;
  place-items: end center;
  padding: 16px;
}

.modal[hidden],
.drawer-backdrop[hidden] {
  display: none;
}

.modal-panel {
  width: min(560px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.checkout-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.checkout-form,
.admin-form {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.checkout-form label,
.admin-form label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(47, 125, 76, 0.12);
}

.segmented-field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.segmented-field legend {
  margin-bottom: 4px;
  font-size: 0.86rem;
  font-weight: 900;
}

.segmented-field label {
  display: block;
}

.segmented-field input {
  position: absolute;
  width: 0;
  height: 0;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.segmented-field span {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 800;
}

.segmented-field input:checked + span {
  border-color: var(--brand);
  background: rgba(47, 125, 76, 0.1);
  color: var(--brand-dark);
}

.segmented-field input:disabled + span {
  opacity: 0.55;
  cursor: not-allowed;
}

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

.field-helper {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.delivery-address-group {
  display: grid;
  gap: 8px;
}

.delivery-address-group .secondary-button {
  justify-content: center;
  width: 100%;
}

.autocomplete-wrapper {
  position: relative;
}

.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  max-height: 240px;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 4px;
}

.autocomplete-suggestion {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--ink);
  transition: background-color 0.15s ease, color 0.15s ease;
  border-bottom: 1px solid rgba(225, 223, 212, 0.5);
}

.autocomplete-suggestion:last-child {
  border-bottom: none;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.is-active {
  background-color: var(--surface-alt);
  color: var(--brand-dark);
}

.autocomplete-suggestions.is-hidden {
  display: none;
}

.delivery-result {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(47, 125, 76, 0.1);
  color: var(--brand-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.delivery-result.is-error {
  background: rgba(197, 54, 43, 0.1);
  color: var(--danger);
}

.payment-note {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(49, 92, 155, 0.1);
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.checkout-date-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -2px 0 0;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.checkout-total-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid rgba(47, 125, 76, 0.22);
  border-radius: var(--radius);
  background: rgba(47, 125, 76, 0.08);
}

.checkout-total-note span {
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-total-note strong {
  font-size: 1.06rem;
}

.checkout-breakdown {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.checkout-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

.checkout-breakdown span {
  color: var(--muted);
  font-weight: 800;
}

.checkout-breakdown strong {
  font-weight: 900;
}

.checkout-breakdown .summary-total {
  padding-top: 8px;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.checkout-panel .checkout-form {
  overflow: auto;
}

.checkout-footer {
  display: grid;
  gap: 10px;
  padding: 12px 16px 16px;
  border-top: 1px solid var(--line);
  background: #fffdf8;
  box-shadow: 0 -10px 22px rgba(32, 35, 31, 0.06);
}

.success-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--success);
  color: #fff;
}

.confirmation-panel {
  padding: 24px;
  text-align: center;
}

.confirmation-panel h2 {
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.confirmation-panel p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.45;
}

.confirmation-summary {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.confirmation-code {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.confirmation-code span,
.confirmation-lines span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.confirmation-code strong {
  color: var(--ink);
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}

.confirmation-lines {
  display: grid;
  gap: 8px;
  text-align: left;
}

.confirmation-lines div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(225, 223, 212, 0.72);
}

.is-hidden {
  display: none !important;
}

.toast {
  position: fixed;
  left: 50%;
  top: 16px;
  z-index: 100;
  max-width: min(420px, calc(100% - 32px));
  transform: translate(-50%, -120%);
  opacity: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  font-weight: 800;
  pointer-events: none;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.toast.is-error {
  background: var(--danger);
}

.admin-login-body {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 16px;
}

.login-card {
  width: min(420px, 100%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.login-card .brand-mark {
  margin-bottom: 14px;
}

.login-card .store-brand-logo {
  margin-bottom: 14px;
}

.text-link {
  display: inline-flex;
  margin: 10px 16px 0;
  color: var(--brand-dark);
  font-weight: 800;
}

.form-message {
  min-height: 22px;
  margin: 10px 16px 0;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 800;
}

.admin-body {
  padding-bottom: 32px;
}

.admin-actions,
.inline-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  scroll-padding-inline: 16px;
  scrollbar-width: thin;
}

.tab-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
}

.tab-button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.admin-tab-panel {
  display: grid;
  gap: 16px;
}

.admin-tab-panel[hidden] {
  display: none !important;
}

.metric-grid {
  display: grid;
  gap: 12px;
}

.metric-card,
.admin-item,
.report-card,
.kitchen-column {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(32, 35, 31, 0.06);
}

.metric-card {
  padding: 14px;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.5rem;
}

.admin-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(32, 35, 31, 0.06);
}

.product-admin-form,
.delivery-zone-admin-form,
.delivery-rule-admin-form {
  grid-template-columns: 1fr;
}

.wide-field {
  grid-column: 1 / -1;
}

.checkbox-row {
  display: flex !important;
  min-height: 42px;
  align-items: center;
  grid-template-columns: auto 1fr;
  flex-direction: row;
}

.checkbox-row input {
  width: 18px;
  min-height: auto;
  height: 18px;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-item {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.order-item {
  border-left: 4px solid transparent;
}

.order-item.order-pending {
  border-left-color: #d89d68;
  background: linear-gradient(90deg, rgba(216, 157, 104, 0.08), #fff 22%);
}

.order-item.order-preparing {
  border-left-color: var(--blue);
}

.order-item.order-ready,
.order-item.order-paid {
  border-left-color: var(--success);
}

.order-item.order-cancelled {
  border-left-color: var(--danger);
}

.admin-item-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.admin-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.admin-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

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

.mini-button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    background 0.16s ease;
}

.danger-button {
  border-color: rgba(197, 54, 43, 0.25);
  color: var(--danger);
}

.whatsapp-button {
  border-color: rgba(37, 211, 102, 0.28);
  background: #25d366;
  color: #0b2d1b;
}

.whatsapp-button:hover {
  background: #1ebe5d;
}

.whatsapp-button.is-current {
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.16);
}

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

.whatsapp-empty {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 10px;
  border-radius: var(--radius);
  background: rgba(197, 54, 43, 0.08);
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 800;
}

.mini-button:hover {
  transform: translateY(-1px);
  border-color: rgba(47, 125, 76, 0.28);
  background: #fffdf8;
}

.whatsapp-helper {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.order-card-grid {
  display: grid;
  gap: 10px;
}

.order-detail-panel {
  width: min(720px, 100%);
}

.detail-block {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.detail-block h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.detail-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(225, 223, 212, 0.7);
  font-size: 0.9rem;
}

.detail-line:last-child {
  border-bottom: 0;
}

.status-selects {
  display: grid;
  gap: 8px;
}

.status-selects label {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 1px solid rgba(225, 223, 212, 0.85);
  border-radius: var(--radius);
  background: #fffdf8;
}

.kitchen-board,
.report-grid {
  display: grid;
  gap: 12px;
}

.kitchen-column {
  padding: 12px;
}

.kitchen-column h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-dot.status-pending {
  background: #d89d68;
}

.status-dot.status-paid,
.status-dot.status-ready,
.status-dot.status-delivered {
  background: var(--success);
}

.status-dot.status-preparing {
  background: var(--blue);
}

.status-dot.status-cancelled {
  background: var(--danger);
}

.kitchen-order {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.kitchen-order-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kitchen-order ul {
  margin: 0;
  padding-left: 18px;
}

.report-card {
  padding: 14px;
}

.report-card h3 {
  margin: 0 0 10px;
}

.report-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.report-card-header h3 {
  margin: 0;
}

.report-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.courier-summary-stats {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.courier-summary-stats div {
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.courier-summary-stats span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.courier-summary-stats strong {
  display: block;
  margin-top: 4px;
  font-size: 1.25rem;
}

.report-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.report-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.report-card th,
.report-card td {
  padding: 8px 6px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.print-heading {
  display: none;
}

@media (max-width: 639px) {
  .store-header,
  .admin-header {
    grid-template-columns: auto 1fr;
  }

  .store-header-actions,
  .admin-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .store-action-link,
  .admin-actions .secondary-button {
    flex: 1 1 auto;
  }

  .store-header .admin-shortcut {
    flex: 0 0 42px;
  }

  .chip-row {
    margin-inline: -16px;
    padding-inline: 16px 34px;
    mask-image: linear-gradient(90deg, #000 calc(100% - 32px), transparent);
  }

  .day-chip {
    min-width: 94px;
  }

  .report-card-header,
  .courier-summary-stats {
    grid-template-columns: 1fr;
  }

  .report-card-header {
    display: grid;
  }

  .product-card {
    grid-template-columns: 104px 1fr;
    gap: 12px;
    padding: 10px;
  }

  .product-image,
  .product-placeholder {
    width: 104px;
    min-height: 118px;
  }

  .product-bottom {
    align-items: start;
    flex-direction: column;
  }

  .product-action {
    width: 100%;
    justify-items: stretch;
  }

  .product-action small {
    max-width: none;
    text-align: left;
  }

  .add-button {
    width: 100%;
  }

  .floating-cart {
    right: 14px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .cart-drawer {
    height: min(88vh, 760px);
  }

  .checkout-form {
    gap: 10px;
  }

  .checkout-form label,
  .admin-form label {
    gap: 5px;
  }

  input,
  select,
  textarea {
    min-height: 40px;
  }

  .segmented-field span {
    min-height: 44px;
  }

  .modal {
    padding: 10px;
  }

  .modal-panel {
    max-height: min(94vh, 820px);
  }

  .confirmation-panel {
    padding: 22px 18px;
  }

  .confirmation-code strong {
    font-size: 1rem;
  }

  .admin-tabs {
    position: sticky;
    top: 72px;
    z-index: 19;
    margin-inline: 0;
    padding-right: 42px;
    mask-image: linear-gradient(90deg, #000 calc(100% - 34px), transparent);
  }

  .admin-section-title {
    align-items: start;
    flex-direction: column;
  }

  .admin-section-title .inline-actions {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .admin-section-title .inline-actions input {
    min-width: 170px;
  }

  .admin-section-title .inline-actions .secondary-button {
    flex: 0 0 auto;
  }

  .admin-item-header {
    align-items: start;
  }

  .detail-line {
    align-items: start;
  }

  .detail-line strong {
    max-width: 56%;
    overflow-wrap: anywhere;
    text-align: right;
  }

  .kitchen-order {
    padding: 12px;
  }
}

@media (min-width: 640px) {
  .store-header,
  .admin-header {
    padding-inline: 24px;
  }

  .store-shell,
  .admin-shell {
    padding: 24px;
  }

  .hero-strip div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .cart-drawer {
    top: 0;
    height: 100vh;
    border-radius: var(--radius) 0 0 var(--radius);
    transform: translateX(110%);
  }

  .cart-drawer.is-open {
    transform: translateX(0);
  }

  .modal {
    place-items: center;
  }

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

  .form-grid,
  .metric-grid,
  .status-selects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-admin-form,
  .delivery-zone-admin-form,
  .delivery-rule-admin-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kitchen-board,
  .report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .store-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: start;
    gap: 24px;
  }

  .hero-strip,
  .menu-controls {
    grid-column: 1;
  }

  .catalog-section {
    grid-column: 2;
    grid-row: 1 / span 2;
    margin-top: 0;
  }

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

  .chip-row {
    flex-wrap: wrap;
    mask-image: none;
    overflow: visible;
  }

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

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

@media print {
  body {
    background: #fff;
  }

  .no-print,
  .admin-header,
  .admin-tabs,
  .toast,
  .modal {
    display: none !important;
  }

  .admin-shell {
    width: 100%;
    padding: 0;
  }

  .admin-tab-panel[hidden] {
    display: none !important;
  }

  .print-area {
    display: block !important;
  }

  .print-heading {
    display: block;
    margin-bottom: 16px;
  }

  .kitchen-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .kitchen-column,
  .kitchen-order {
    break-inside: avoid;
    box-shadow: none;
  }
}

/* Landing Bernardez */
.landing-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #f7f0df;
  color: #123628;
}

.landing-page a {
  color: inherit;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18, 54, 40, 0.12);
  background: rgba(247, 240, 223, 0.92);
  backdrop-filter: blur(14px);
}

.landing-header-cta {
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  background: #0c3b2c;
  color: #fffaf0;
  padding: 0 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18, 54, 40, 0.14);
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    box-shadow 0.16s ease;
}

.landing-page .landing-header-cta,
.landing-page .landing-header-cta:visited {
  color: #fffaf0;
}

.landing-header-cta:hover {
  transform: translateY(-1px);
  background: #123628;
  box-shadow: 0 14px 30px rgba(18, 54, 40, 0.2);
}

.landing-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  object-fit: cover;
}

.header-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px rgba(18, 54, 40, 0.12);
}

.landing-brand small,
.landing-footer small,
.landing-contact-item small {
  color: rgba(18, 54, 40, 0.66);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-menu-button {
  display: inline-grid;
  justify-self: end;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(18, 54, 40, 0.15);
  border-radius: var(--radius);
  background: #fffaf0;
  color: #123628;
}

.landing-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 16px;
  left: 16px;
  display: none;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(18, 54, 40, 0.14);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.landing-nav.is-open {
  display: grid;
}

.landing-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #123628;
  font-weight: 850;
  text-decoration: none;
}

.landing-nav a:hover {
  background: rgba(18, 54, 40, 0.08);
}

.landing-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.16s ease,
    background 0.16s ease,
    border-color 0.16s ease,
    color 0.16s ease;
}

.landing-button:hover {
  transform: translateY(-1px);
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: clamp(340px, 62vh, 560px);
  place-items: center;
  overflow: hidden;
  padding: 64px 16px;
  background: #123628;
  color: #fffaf0;
}

.landing-kicker {
  margin: 0 0 12px;
  color: #d89d68;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-button {
  padding: 0 18px;
}

.landing-page .landing-button-primary {
  background: #fffaf0;
  color: #123628;
}

.landing-page .landing-button-ghost {
  border: 1px solid rgba(255, 250, 240, 0.48);
  background: rgba(255, 250, 240, 0.04);
  color: #fffaf0;
}

.landing-page .landing-button-ghost:hover {
  border-color: rgba(255, 250, 240, 0.78);
  background: rgba(255, 250, 240, 0.1);
}

.landing-page .landing-button-secondary {
  border: 1px solid rgba(255, 250, 240, 0.5);
  background: transparent;
  color: #fffaf0;
}

.hero-logo {
  width: clamp(180px, 32vw, 340px);
  height: auto;
  margin: 0;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.landing-section {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 56px 16px;
}

.landing-section-heading {
  width: min(720px, 100%);
  margin-bottom: 24px;
}

.landing-section-heading h2,
.landing-split h2,
.landing-video-copy h2 {
  margin: 0;
  color: #123628;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 6vw, 4.4rem);
  line-height: 1;
}

.landing-section-heading p:not(.landing-kicker),
.landing-split p,
.landing-video-copy p:not(.landing-kicker) {
  margin: 14px 0 0;
  color: rgba(18, 54, 40, 0.72);
  font-size: 1rem;
  line-height: 1.55;
}

.landing-video-section {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 78% 16%, rgba(216, 157, 104, 0.18), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(255, 250, 240, 0.08), transparent 32%),
    linear-gradient(135deg, #0c281d 0%, #123628 58%, #0c2f22 100%);
  color: #fffaf0;
  overflow: hidden;
}

.landing-hero-panel {
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.landing-video-layout {
  position: relative;
  display: grid;
  min-width: 0;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 24px;
  align-items: center;
}

.landing-video-copy {
  display: grid;
  min-width: 0;
  align-content: center;
}

.landing-hero-panel .landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d9ad6f;
}

.landing-hero-panel .landing-video-copy h2,
.landing-hero-panel .landing-video-copy p:not(.landing-kicker) {
  color: #fffaf0;
}

.landing-brand-line {
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 18px;
  background: #d9ad6f;
}

.landing-video-copy p:not(.landing-kicker) {
  max-width: 560px;
}

.landing-video-copy .landing-button {
  width: max-content;
  margin-top: 22px;
}

.landing-hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 8px 0 0;
  font-weight: 800;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.landing-video-copy .landing-hero-actions .landing-button {
  margin-top: 0;
}

.landing-video-block {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 12px;
}

.landing-video-wrap {
  position: relative;
  display: flex;
  aspect-ratio: 16 / 9;
  width: 100%;
  min-height: 240px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 24%, rgba(216, 157, 104, 0.16), transparent 28%),
    linear-gradient(135deg, #123628, #0c281d);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.landing-video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.04), rgba(18, 54, 40, 0.12));
}

.landing-video {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: cover;
}

.landing-video-label {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.1);
  color: rgba(255, 250, 240, 0.88);
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.landing-card-grid,
.landing-category-grid,
.landing-contact-grid {
  display: grid;
  gap: 12px;
}

.landing-card,
.landing-contact-item {
  border: 1px solid rgba(18, 54, 40, 0.12);
  border-radius: var(--radius);
  background: #fffaf0;
  color: #123628;
  box-shadow: 0 12px 30px rgba(18, 54, 40, 0.08);
}

.landing-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 13px;
  align-content: start;
  min-height: 250px;
  padding: 20px;
  transition:
    transform 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease;
}

.landing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 54, 40, 0.22);
  box-shadow: 0 18px 42px rgba(18, 54, 40, 0.12);
}

.landing-card-featured {
  background: #123628;
  color: #fffaf0;
}

.landing-card-featured p,
.landing-card-featured a {
  color: rgba(255, 250, 240, 0.82);
}

.landing-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(216, 157, 104, 0.18);
  color: #b86f3a;
}

.landing-card-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border-radius: 999px;
  background: rgba(18, 54, 40, 0.08);
  color: rgba(18, 54, 40, 0.72);
  padding: 0 9px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-card-featured .landing-card-badge {
  background: rgba(255, 250, 240, 0.12);
  color: rgba(255, 250, 240, 0.82);
}

.landing-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.landing-card p {
  margin: 0;
  color: rgba(18, 54, 40, 0.68);
  line-height: 1.5;
}

.landing-card-button {
  display: inline-flex;
  width: max-content;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-top: 4px;
  border-radius: var(--radius);
  background: #123628;
  color: #fffaf0 !important;
  padding: 0 12px;
  font-weight: 900;
  text-decoration: none;
}

.landing-card-featured .landing-card-button {
  background: #fffaf0;
  color: #123628 !important;
}

.landing-viandas,
.landing-wine {
  width: 100%;
  max-width: none;
  padding-right: 16px;
  padding-left: 16px;
}

.landing-viandas {
  background: #fffaf0;
}

.landing-wine {
  background: #123628;
}

.landing-wine .landing-kicker,
.landing-wine h2,
.landing-wine p {
  color: #fffaf0;
}

.landing-wine p {
  opacity: 0.78;
}

.landing-split {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 22px;
  align-items: end;
}

.landing-page .landing-viandas .landing-button-primary {
  width: max-content;
  background: #123628;
  color: #fffaf0;
}

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

.landing-category-card {
  display: grid;
  gap: 8px;
  min-height: 140px;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(18, 54, 40, 0.12);
  border-radius: var(--radius);
  background: #fffaf0;
  color: #123628;
  box-shadow: 0 10px 24px rgba(18, 54, 40, 0.06);
}

.landing-category-card i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(216, 157, 104, 0.16);
  color: #b86f3a;
  font-size: 1.05rem;
}

.landing-category-card h3 {
  margin: 2px 0 0;
  font-size: 1.04rem;
}

.landing-category-card p {
  margin: 0;
  color: rgba(18, 54, 40, 0.66);
  line-height: 1.42;
}

.landing-contact-item {
  display: grid;
  gap: 6px;
  min-height: 122px;
  align-content: center;
  padding: 18px;
  text-decoration: none;
}

.landing-contact-item i {
  color: #b86f3a;
  font-size: 1.4rem;
}

.landing-contact-item span {
  font-size: 1.05rem;
  font-weight: 900;
}

.landing-footer {
  display: grid;
  gap: 18px;
  padding: 32px 16px;
  background: #0c281d;
  color: #fffaf0;
}

.landing-footer-brand > strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.footer-logo {
  width: 74px;
  height: 74px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.landing-footer p {
  margin: 6px 0 0;
  color: rgba(255, 250, 240, 0.72);
}

.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-footer a {
  color: #fffaf0;
  font-weight: 800;
  text-decoration: none;
}

.landing-footer small {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
}

.landing-footer small strong {
  color: #fffaf0;
  font-family: inherit;
  font-size: inherit;
}

@media (max-width: 759px) {
  .landing-header,
  .landing-hero-panel,
  .landing-section {
    max-width: 100vw;
  }

  .landing-brand small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .landing-section-heading h2,
  .landing-split h2,
  .landing-video-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.1rem);
  }

  .landing-video-copy p:not(.landing-kicker),
  .landing-hero-note {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .landing-hero-panel {
    padding-top: 42px;
  }

  .landing-video-layout {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .landing-video-wrap {
    min-height: 0;
    max-width: 100%;
  }

  .landing-hero-actions {
    width: 100%;
  }

  .landing-hero-actions .landing-button {
    width: 100%;
  }

  .landing-video-label {
    justify-self: start;
  }

  .landing-card {
    min-height: 220px;
  }

  .landing-category-grid {
    grid-template-columns: 1fr;
  }

  .landing-split .landing-button {
    width: 100%;
  }
}

@media (min-width: 760px) {
  .landing-header {
    grid-template-columns: auto 1fr auto;
    padding: 16px 28px;
  }

  .landing-header-cta {
    display: inline-flex;
    grid-column: 3;
    grid-row: 1;
  }

  .landing-menu-button {
    display: none;
  }

  .landing-nav {
    position: static;
    display: flex;
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .landing-nav a {
    padding: 10px 8px;
    font-size: 0.92rem;
  }

  .landing-hero {
    padding-right: 32px;
    padding-left: 32px;
  }

  .landing-section {
    padding: 76px 24px;
  }

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

  .landing-split {
    grid-template-columns: 1fr auto;
  }

  .landing-video-layout {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 34px;
  }

  .landing-video-wrap {
    min-height: 360px;
  }

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

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

  .landing-footer {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 42px 28px;
  }

  .landing-footer small {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1080px) {
  .landing-nav a {
    padding: 10px 12px;
  }

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