:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffdf7;
  color: #1f2937;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background: radial-gradient(circle at top left, rgba(255, 214, 165, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255, 149, 128, 0.18), transparent 30%);
}

.page-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 24px;
}

.hero {
  background: #fff9ef;
  border: 1px solid #f4e6d8;
  border-radius: 28px;
  padding: 40px 32px;
  margin-bottom: 24px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: #d97706;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.03;
}

.hero-copy {
  margin: 18px 0 0;
  color: #475569;
  max-width: 58ch;
}

.content-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-bottom: 24px;
}

.card {
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #f4e4d6;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.menu-card h2,
.info-card h2,
.order-section h2 {
  margin-top: 0;
}

.menu-item,
.summary-panel > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid #f3e6d5;
}

.menu-item:last-child,
.summary-panel > div:last-child {
  border-bottom: none;
}

.menu-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.menu-item p {
  margin: 0;
  color: #475569;
}

.order-section {
  margin-bottom: 40px;
}

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

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

label {
  font-weight: 600;
}

input,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #d6d6d6;
  font-size: 1rem;
  background: #ffffff;
  color: #0f172a;
}

input:focus,
select:focus {
  outline: none;
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.summary-panel {
  border: 1px solid #f4e4d6;
  border-radius: 18px;
  padding: 18px;
  background: #fff7ed;
  display: grid;
  gap: 12px;
}

.summary-panel p {
  margin: 0;
}

.primary-button {
  border: none;
  border-radius: 14px;
  padding: 16px 20px;
  background: #f97316;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.primary-button:hover {
  background: #ea580c;
}

.confirmation {
  margin-top: 24px;
  padding: 22px;
  border-radius: 20px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
}

.confirmation.warning {
  background: #fef3c7;
  border: 2px solid #f59e0b;
  color: #92400e;
  font-weight: 500;
}

.hidden {
  display: none;
}

@media (max-width: 480px) {
  .hero {
    padding: 28px 20px;
  }
}
