:root {
  --ink: #1d1812;
  --ink-soft: #2a231b;
  --charcoal: #16130f;
  --charcoal-2: #221c15;
  --paper: #f4ede1;
  --paper-2: #efe6d6;
  --card: #fffdf9;
  --gold: #b08433;
  --gold-bright: #c9a24b;
  --gold-deep: #8c6a28;
  --text: #221d16;
  --muted: #6f6557;
  --muted-2: #8a7f6e;
  --line: rgba(29, 24, 18, 0.12);
  --line-soft: rgba(29, 24, 18, 0.08);
  --shadow-sm: 0 2px 10px rgba(29, 24, 18, 0.06);
  --shadow-md: 0 14px 34px rgba(29, 24, 18, 0.1);
  --shadow-gold: 0 10px 30px rgba(176, 132, 51, 0.22);
  --radius: 16px;
  --radius-lg: 22px;
  --header-h: 62px;
  --serif: "Fraunces", Georgia, serif;
  --garamond: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 50% -10%, rgba(176, 132, 51, 0.1), transparent 45%),
    linear-gradient(180deg, #f6f0e5 0%, #f1e8d8 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.1rem 3rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 1.1rem;
  min-height: var(--header-h);
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  border-bottom: 1px solid rgba(201, 162, 75, 0.28);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 9px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.18rem;
  color: #f3e8cf;
  letter-spacing: 0.02em;
}

.brand-sub {
  font-size: 0.66rem;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 0.32em;
}

.lang-toggle {
  flex: 0 0 auto;
  border: 1px solid rgba(201, 162, 75, 0.45);
  background: transparent;
  color: #f3e8cf;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.lang-toggle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #1a1409;
}

/* ---------- Hero ---------- */
.hero {
  margin: 1.6rem 0 1.4rem;
}

.hero-card {
  position: relative;
  text-align: center;
  padding: 2.6rem 1.4rem 2.2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 162, 75, 0.16), transparent 60%),
    linear-gradient(165deg, #1a1610 0%, #241d15 55%, #19140e 100%);
  border: 1px solid rgba(201, 162, 75, 0.32);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(201, 162, 75, 0.6);
}
.hero-corner--tl { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.hero-corner--tr { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.hero-corner--bl { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.hero-corner--br { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.hero-crest {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 1rem;
  border-radius: 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 7vw, 3.4rem);
  line-height: 1.05;
  color: #f6ecd6;
}

.hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 1rem auto 1.1rem;
  max-width: 220px;
}

.hero-rule::before,
.hero-rule::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 75, 0.7));
}
.hero-rule::after {
  background: linear-gradient(90deg, rgba(201, 162, 75, 0.7), transparent);
}

.hero-diamond {
  width: 7px;
  height: 7px;
  background: var(--gold-bright);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.hero-sub {
  color: #cdbfa3;
  font-size: 1rem;
  max-width: 34rem;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-pills {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.pill {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #e9dcc0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(201, 162, 75, 0.4);
  background: rgba(201, 162, 75, 0.08);
}

/* ---------- Toolbar / search ---------- */
.toolbar {
  display: grid;
  gap: 0.85rem;
  margin: 1.6rem 0 0.5rem;
}

.search-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.search-field {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--muted-2);
  pointer-events: none;
}

.search-field input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.8rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
  color: var(--text);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-field input::placeholder {
  color: var(--muted-2);
}

.search-field input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 132, 51, 0.16);
}

.search-hint {
  color: var(--muted);
  font-size: 0.82rem;
}

.results-count {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
}

/* ---------- Category nav (sticky) ---------- */
.category-nav {
  position: sticky;
  top: calc(var(--header-h) + 6px);
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.9rem 0 0.4rem;
  padding: 0.5rem 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  border-radius: 999px;
  background: rgba(247, 241, 230, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}

.category-nav::-webkit-scrollbar {
  display: none;
}

.nav-divider {
  flex: 0 0 auto;
  align-self: center;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted-2);
  padding: 0 0.5rem 0 0.65rem;
  border-left: 1px solid var(--line);
  margin-left: 0.2rem;
}

.category-chip {
  flex: 0 0 auto;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.category-chip:hover {
  background: rgba(176, 132, 51, 0.12);
  color: var(--gold-deep);
}

.category-chip.is-active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1c1407;
  box-shadow: 0 3px 12px rgba(140, 106, 40, 0.3);
}

/* ---------- Menu sections ---------- */
.menu-section {
  margin-top: 2.6rem;
  scroll-margin-top: 132px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.section-head::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
}

.section-kicker {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: 0.35rem;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.55rem, 5vw, 2.1rem);
  line-height: 1.1;
  color: var(--ink);
}

.section-count {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  padding-bottom: 0.15rem;
}

.menu-grid {
  display: grid;
  gap: 0.85rem;
}

/* ---------- Food cards ---------- */
.menu-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.menu-item:hover {
  border-color: rgba(176, 132, 51, 0.4);
  box-shadow: var(--shadow-md);
}

.menu-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 2.9rem 1rem 1.15rem;
  position: relative;
}

.menu-item summary::-webkit-details-marker {
  display: none;
}

.menu-item summary::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 1.55rem;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.menu-item[open] summary::after {
  transform: rotate(-135deg);
}

.menu-item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

.menu-item[open] {
  border-color: rgba(176, 132, 51, 0.45);
  box-shadow: var(--shadow-md);
}

.menu-item--static {
  padding: 1rem 1.15rem;
}

.item-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.item-summary h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.25;
  color: var(--ink);
}

.item-meta {
  color: var(--muted);
  font-size: 0.8rem;
  margin-top: 0.25rem;
  letter-spacing: 0.01em;
}

.item-desc {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.35rem;
  font-style: italic;
}

.item-price {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--gold-deep);
  white-space: nowrap;
}

.price-unit {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--muted-2);
  margin-left: 0.18rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.item-body {
  padding: 0.2rem 1.15rem 1.15rem;
  display: grid;
  gap: 1rem;
  border-top: 1px solid var(--line-soft);
  margin-top: 0.1rem;
  padding-top: 1rem;
}

.item-row {
  display: grid;
  gap: 0.45rem;
}

.item-label {
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
}

.item-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.nutrition-card {
  padding: 0.6rem 0.7rem;
  border-radius: 11px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  display: grid;
  gap: 0.2rem;
}

.nutrition-card span {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.25;
}

.nutrition-card strong {
  font-size: 0.95rem;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 600;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 500;
  background: rgba(140, 106, 40, 0.12);
  color: var(--gold-deep);
  border: 1px solid rgba(176, 132, 51, 0.25);
}

.chip--trace {
  background: rgba(29, 24, 18, 0.05);
  color: var(--muted);
  border-color: var(--line);
}

.chip--none {
  background: transparent;
  color: var(--muted-2);
  border: 1px dashed var(--line);
}

.item-note {
  padding: 0.65rem 0.85rem;
  border-left: 3px solid var(--gold);
  background: rgba(176, 132, 51, 0.1);
  border-radius: 8px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}

/* ---------- Drinks list ---------- */
.drink-list {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 1.15rem 0.9rem;
}

.drink-group {
  font-family: var(--garamond);
  font-style: italic;
  font-weight: 600;
  font-size: 1.24rem;
  color: var(--gold-deep);
  padding: 0.4rem 0 0.5rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.drink-group::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(176, 132, 51, 0.45), transparent);
}

.drink-block {
  padding: 0.6rem 0 0.2rem;
}

.drink-row {
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line-soft);
}

.drink-row:last-child {
  border-bottom: 0;
}

.drink-head {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.drink-name {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
}

.drink-size {
  color: var(--muted-2);
  font-size: 0.78rem;
  font-weight: 400;
  margin-left: 0.45rem;
  white-space: nowrap;
}

.drink-leader {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(29, 24, 18, 0.28);
  transform: translateY(-0.32rem);
  min-width: 1rem;
}

.drink-price {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--gold-deep);
  white-space: nowrap;
}

.drink-desc {
  color: var(--muted);
  font-size: 0.83rem;
  font-style: italic;
  margin-top: 0.3rem;
  max-width: 90%;
}

/* ---------- No results ---------- */
.no-results {
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px dashed var(--line);
  text-align: center;
  color: var(--muted);
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 3.5rem;
  padding: 2.6rem 1.4rem 2.8rem;
  text-align: center;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  border-top: 1px solid rgba(201, 162, 75, 0.28);
}

.footer-crest {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 0.9rem;
  border-radius: 12px;
}

.footer-brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  color: #f3e8cf;
  margin-bottom: 0.7rem;
}

.footer-brand span {
  color: var(--gold-bright);
  font-weight: 500;
}

.footer-note {
  color: #b6a98e;
  font-size: 0.82rem;
  max-width: 38rem;
  margin: 0 auto;
  line-height: 1.6;
}

.noscript {
  padding: 1rem;
  text-align: center;
  background: var(--charcoal);
  color: #f3e8cf;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 75, 0.5);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1c1407;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 50;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (min-width: 700px) {
  main {
    padding: 0 1.6rem 3.5rem;
  }

  .toolbar {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1.2rem;
  }

  .results-count {
    text-align: right;
  }

  .hero-card {
    padding: 3.2rem 2rem 2.8rem;
  }

  .hero-crest {
    width: 112px;
    height: 112px;
  }

  .nutrition-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-item summary {
    padding: 1.15rem 3.1rem 1.15rem 1.4rem;
  }

  .menu-item summary::after {
    top: 1.7rem;
    right: 1.4rem;
  }

  .item-body {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .menu-item--static {
    padding: 1.15rem 1.4rem;
  }

  .drink-list {
    padding: 0.6rem 1.6rem 1.1rem;
  }
}

@media (min-width: 1000px) {
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .nutrition-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .drink-list--rows {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.6rem;
  }

  .drink-list--blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2.6rem;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
