/* Villa Zucchini QR Menu — mobile-first, dark brand */
:root {
  --bg: #0B1215;
  --surface: #101a1d;
  --gold: #CEAB5D;
  --gold-dim: #8C7652;
  --petrol: #123947;
  --text: #EDE9E0;
  --text-muted: #9C9D9B;
  --border: #1a2829;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100svh;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.header {
  background: linear-gradient(180deg, #0f1d20 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  padding: 32px 20px 28px;
  text-align: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.logo {
  width: 48px;
  height: 48px;
}
.header h1 {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
  color: var(--gold);
  line-height: 1.2;
}
.subtitle {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Menu */
.menu {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

.section-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 20px 0 6px;
  border-bottom: 1px solid var(--gold-dim);
  margin-bottom: 12px;
}
.section-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-style: italic;
}

/* Item */
.item {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.item:last-child { border-bottom: none; }

.item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.item-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  flex: 1;
}
.item-price {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
  white-space: nowrap;
}
.item-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 4px;
}

/* Info bar */
.info-bar {
  margin-top: 32px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
}
.info-bar p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  transition: opacity .2s;
}
.cta:hover { opacity: .85; }

.disclaimer {
  margin-top: 20px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
}

/* Tablet+ */
@media (min-width: 640px) {
  .header { padding: 40px 32px 36px; }
  .logo { width: 56px; height: 56px; }
  .header h1 { font-size: 24px; }
  .menu { padding: 32px 32px 100px; }
  .item-name { font-size: 16px; }
  .item-desc { font-size: 14px; }
}