:root {
  --accent: #C9943A;
  --accent-light: #F0BC68;
  --brand-primary: #0B2318;
  --body-bg: #F7F5F0;
  --surface: #FFFFFF;
  --border-subtle: #E8E3DB;
  --text-primary: #1C1A17;
  --text-muted: #7A7060;
}

body {
  background: var(--body-bg);
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

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

/* ========== Cover ========== */
.gp-cover {
  position: fixed; inset: 0; z-index: 100;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 40px 28px 30px;
  color: #fff;
  overflow: hidden;
}
.gp-cover-bg {
  position: absolute; inset: 0; z-index: 0;
  background: var(--brand-primary) url('https://images.unsplash.com/photo-1572116469696-31de0f17cc34?w=900&q=80') center/cover;
}
.gp-cover-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,35,24,0.55) 0%, rgba(11,35,24,0.92) 100%);
}
.gp-cover-content {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  height: 100%;
}
.gp-brand {
  font-family: "Fraunces", serif; font-size: 28px; font-weight: 500; letter-spacing: 0.02em;
}
.gp-brand em { color: var(--accent-light); font-style: italic; }
.gp-cover-divider { width: 38px; height: 1.5px; background: var(--accent); margin: 12px 0 16px; }
.gp-tagline {
  font-family: "Fraunces", serif; font-style: italic;
  font-size: 18px; color: rgba(255,255,255,0.85);
  line-height: 1.4; max-width: 240px;
}
.gp-cover-bottom { text-align: center; }
.gp-cta {
  display: inline-block; padding: 14px 36px;
  background: var(--accent); color: var(--text-primary);
  border-radius: 999px; border: 0;
  font-family: "DM Sans", sans-serif; font-weight: 600;
  letter-spacing: 0.05em; font-size: 13px;
  cursor: pointer;
}
.gp-cta:hover { background: var(--accent-light); }

/* ========== Menu chrome ========== */
.gp-menu { padding-bottom: 40px; min-height: 100vh; }
.gp-menu-top {
  background: var(--body-bg); padding: 14px 20px 0;
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border-subtle);
}
.gp-menu-topbar { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.gp-menu .gp-brand { font-size: 18px; }
.gp-menu .gp-brand em { color: var(--accent); }

.gp-cat-nav {
  display: flex; gap: 18px; padding: 14px 0 0;
  overflow-x: auto; scrollbar-width: none;
}
.gp-cat-nav::-webkit-scrollbar { display: none; }
.gp-cat-nav-item {
  font-family: "Fraunces", serif; font-style: italic; font-size: 14px;
  color: var(--text-muted); padding-bottom: 12px;
  white-space: nowrap; flex-shrink: 0;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.gp-cat-nav-item.active { color: var(--text-primary); border-bottom-color: var(--accent); font-weight: 500; }

/* ========== Categories & items ========== */
.gp-cat-header { padding: 28px 28px 6px; text-align: center; }
.gp-ornament { color: var(--accent); font-size: 16px; letter-spacing: 10px; padding-left: 10px; }
.gp-cat-header h3 {
  font-family: "Fraunces", serif; font-size: 24px;
  margin: 4px 0 2px; font-weight: 500; font-style: italic;
}
.gp-cat-divider {
  display: flex; align-items: center; justify-content: center;
  margin: 10px 0 4px;
}
.gp-cat-divider::before, .gp-cat-divider::after {
  content: ''; flex: 0 0 40px; border-bottom: 1px solid var(--accent);
}
.gp-cat-divider::before { margin-right: 10px; }
.gp-cat-divider::after { margin-left: 10px; }
.gp-cat-mark { color: var(--accent); font-size: 12px; }

.gp-items { padding: 8px 28px 28px; }
.gp-item { padding: 14px 0; }
.gp-item-row { display: flex; align-items: baseline; gap: 4px; }
.gp-item-name { font-family: "Fraunces", serif; font-size: 15.5px; font-weight: 500; }
.gp-leader {
  flex: 1; border-bottom: 1.5px dotted var(--accent);
  transform: translateY(-3px); margin: 0 4px;
}
.gp-item-price { font-family: "Fraunces", serif; font-size: 14px; font-weight: 500; }
.gp-item-desc {
  font-size: 11px; color: var(--text-muted);
  margin-top: 3px; font-style: italic;
}

.gp-empty-cat {
  padding: 60px 28px;
  text-align: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 14px;
}

.gp-cat-coming-soon {
  padding: 28px 24px;
  margin: 8px 0 16px;
  text-align: center;
  border: 1px dashed rgba(201, 148, 58, 0.35);
  border-radius: 10px;
  background: rgba(201, 148, 58, 0.05);
}
.gp-cat-coming-soon .gp-coming-icon {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 6px;
}
.gp-cat-coming-soon p {
  margin: 0;
  color: var(--text-muted);
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== Social links ========== */
.gp-social {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 18px;
}
.gp-social a {
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, transform 0.2s;
  text-decoration: none;
}
.gp-social a:hover { transform: translateY(-2px); }

.gp-social-dark a  { color: rgba(255,255,255,0.35); }
.gp-social-dark a:hover { color: rgba(255,255,255,0.85); }

.gp-social-light a { color: var(--text-muted); }
.gp-social-light a:hover { color: var(--accent); }

.gp-menu-footer {
  text-align: center; padding: 28px 28px 36px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 8px;
}
.gp-menu-footer-brand {
  font-family: "Fraunces", serif; font-style: italic;
  font-size: 14px; color: var(--text-muted); margin-bottom: 4px;
}

/* ========== Unavailable ========== */
.gp-unavailable {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 28px;
  text-align: center;
}
.gp-unavailable-card {
  max-width: 380px;
}
.gp-unavailable-icon {
  font-size: 36px; color: var(--accent);
  letter-spacing: 8px; margin-bottom: 18px;
}
.gp-unavailable h1 {
  font-family: "Fraunces", serif; font-style: italic;
  font-size: 26px; font-weight: 500; margin: 0 0 12px;
}
.gp-unavailable p {
  color: var(--text-muted); font-size: 14px; line-height: 1.55;
}
