:root {
  color-scheme: light;
  --bg: #fdf7f2;
  --bg-accent: #f3e6d7;
  --ink: #2b1f1a;
  --muted: #6b5b52;
  --primary: #e27d5f;
  --secondary: #6f92bf;
  --accent: #f2c078;
  --card: #ffffff;
  --border: #e6d6c6;
  --shadow: 0 20px 50px rgba(43, 31, 26, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #fff3e6 0%, var(--bg) 45%, #f3efe9 100%);
  color: var(--ink);
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8vw 16px;
}

.logo {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero {
  padding: 64px 8vw 72px;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.hero h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2.6rem, 3.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-card {
  background: var(--card);
  border-radius: 28px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(226, 125, 95, 0.12);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 30px rgba(226, 125, 95, 0.25);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--ink);
}

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

.section {
  padding: 60px 8vw;
}

.section h2 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.section p {
  color: var(--muted);
  max-width: 640px;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: 28px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(43, 31, 26, 0.08);
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-shell {
  max-width: 520px;
  margin: 40px auto;
  background: var(--card);
  border-radius: 26px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-shell h1 {
  font-family: "Fraunces", "Georgia", serif;
  margin-bottom: 8px;
}

.form-shell p {
  color: var(--muted);
  margin-bottom: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.field label {
  font-weight: 600;
  font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  background: #fff;
}

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

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.85rem;
  cursor: pointer;
}

.pill.active {
  border-color: var(--primary);
  background: rgba(226, 125, 95, 0.12);
  color: var(--primary);
  font-weight: 600;
}

.dashboard {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 8vw 80px;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.menu-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.menu-card {
  background: var(--card);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 32px rgba(43, 31, 26, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.menu-card h3 {
  font-size: 1.1rem;
}

.menu-card small {
  color: var(--muted);
}

.menu-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(111, 146, 191, 0.12);
  color: #315170;
  font-size: 0.9rem;
}

.qr-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--card);
  border-radius: 24px;
  border: 1px solid var(--border);
}

.menu-public {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 8vw 80px;
}

.menu-public header {
  text-align: center;
  margin-bottom: 32px;
}

.menu-public h1 {
  font-family: "Fraunces", "Georgia", serif;
  font-size: 2.4rem;
  margin-top: 12px;
}

.menu-section {
  margin-bottom: 32px;
}

.menu-section h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  text-align: center;
  padding: 26px;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .hero {
    padding: 50px 6vw 60px;
  }

  .nav {
    padding: 20px 6vw 12px;
  }
}
