:root {
  --brick: #8C291C;
  --charcoal: #1B1716;
  --amber: #DB8036;
  --cream: #F7F1E6;
  --cream-2: #FCF8F1;
  --green: #1E7A46;
  --flag: #F7E2C4;
  --font: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream-2);
  color: var(--charcoal);
}

header {
  background: var(--charcoal);
  color: var(--cream);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

header img {
  height: 56px;
  width: auto;
  background: var(--cream);
  border-radius: 6px;
  padding: 4px;
}

header .brand-text h1 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
}

header .brand-text p {
  margin: 0.15rem 0 0;
  font-size: 0.9rem;
  color: var(--amber);
}

.hero {
  background: linear-gradient(135deg, var(--brick) 0%, #6f2015 100%);
  color: var(--cream);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.hero-eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: bold;
  color: var(--amber);
}

.hero h2 {
  margin: 0 0 0.75rem;
  font-size: 1.7rem;
  line-height: 1.25;
}

.hero-sub {
  margin: 0;
  font-size: 1rem;
  color: var(--flag);
  line-height: 1.5;
}

main {
  max-width: 780px;
  margin: 0 auto;
  padding: 1.5rem;
}

.pickup-info {
  background: var(--cream);
  border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: 4px;
}

.pickup-info h2 {
  margin: 0 0 1rem;
  color: var(--brick);
  font-size: 1.15rem;
}

.pickup-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.pickup-label {
  display: block;
  font-weight: bold;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brick);
  margin-bottom: 0.25rem;
}

.pickup-info-grid p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.pickup-info-grid a {
  color: var(--brick);
  font-weight: bold;
  text-decoration: none;
}

.pickup-info-grid a:hover {
  text-decoration: underline;
}

.pickup-note {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #6b625d;
  border-top: 1px solid #e6ddc9;
  padding-top: 0.6rem;
}

.custom-runs {
  background: #fff;
  border: 1px dashed var(--amber);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.custom-runs h3 {
  margin: 0 0 0.4rem;
  color: var(--brick);
  font-size: 1rem;
}

.custom-runs p {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: #4a4340;
}

.custom-runs-link {
  color: var(--brick);
  font-weight: bold;
  text-decoration: none;
  font-size: 0.9rem;
}

.custom-runs-link:hover {
  text-decoration: underline;
}

.category-heading {
  color: var(--brick);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 0.25rem;
  margin-top: 2rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e6ddc9;
  border-radius: 8px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 1px 3px rgba(27, 23, 22, 0.06);
  transition: box-shadow 0.15s ease;
}

.menu-item:hover {
  box-shadow: 0 3px 10px rgba(27, 23, 22, 0.1);
}

.menu-item.unavailable {
  opacity: 0.55;
}

.item-photo {
  flex: 0 0 84px;
  width: 84px;
  height: 84px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid #e6ddc9;
}

.item-photo.no-photo {
  display: none;
}

.item-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-item-body {
  display: flex;
  gap: 0.9rem;
  flex: 1;
  min-width: 0;
}

.menu-item-info h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.menu-item-info p {
  margin: 0;
  font-size: 0.88rem;
  color: #4a4340;
}

.menu-item-price {
  font-weight: bold;
  color: var(--brick);
  white-space: nowrap;
}

.menu-item-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  min-width: 110px;
}

.qty-input {
  width: 70px;
  padding: 0.35rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font);
  text-align: center;
}

.sold-out-tag {
  background: var(--flag);
  color: var(--brick);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}

form#order-form {
  background: #fff;
  border: 1px solid #e6ddc9;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 2px 8px rgba(27, 23, 22, 0.06);
}

form#order-form h2 {
  color: var(--brick);
  margin-top: 0;
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.55rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.field textarea {
  min-height: 70px;
  resize: vertical;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

.order-summary {
  background: var(--cream);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.order-summary .total {
  font-weight: bold;
  color: var(--brick);
  font-size: 1.05rem;
}

button.submit-btn {
  background: var(--brick);
  color: var(--cream);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

button.submit-btn:hover {
  background: #6f2015;
}

button.submit-btn:active {
  transform: translateY(1px);
}

button.submit-btn:disabled {
  background: #b9a99f;
  cursor: not-allowed;
}

#form-status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  display: none;
}

#form-status.success {
  display: block;
  background: #e4f3ea;
  color: var(--green);
  border: 1px solid var(--green);
}

#form-status.error {
  display: block;
  background: var(--flag);
  color: var(--brick);
  border: 1px solid var(--brick);
}

footer {
  text-align: center;
  padding: 1.5rem;
  color: #6b625d;
  font-size: 0.8rem;
}

@media (max-width: 620px) {
  .hero {
    padding: 2rem 1.25rem;
  }

  .hero h2 {
    font-size: 1.35rem;
  }

  .pickup-info-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .menu-item {
    flex-wrap: wrap;
  }

  .menu-item-body {
    flex: 1 1 100%;
  }

  .item-photo {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }

  .menu-item-controls {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    margin-top: 0.5rem;
  }

  header {
    padding: 1rem;
  }

  header .brand-text h1 {
    font-size: 1.2rem;
  }

  main {
    padding: 1rem;
  }
}
