/* ==========================================================
   Avonix Place — Design Tokens
   White & gold palette drawn from the brand medallion.
   Footer stays intentionally dark as a bookend frame.
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Instrument+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --paper: #0D1A2C;
  --paper-2: #122238;
  --card: #16263F;
  --card-2: #1E3153;
  --ink: #F2ECDD;
  --ink-dim: #A9B7CC;
  --gold: #C9A227;
  --gold-deep: #E6CE8E;
  --gold-pale: #F1E3BC;
  --on-gold: #1B140D;
  --line: rgba(226, 206, 142, 0.16);
  --line-strong: rgba(226, 206, 142, 0.30);

  --display: 'Fraunces', serif;
  --body: 'Instrument Sans', sans-serif;
  --mono: 'JetBrains Mono', monospace;

  --max: 1180px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.01em;
}

p { margin: 0; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ---------------- Watermark (behind all page content) ---------------- */
.watermark {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.watermark::after {
  content: "";
  width: min(640px, 90vw);
  height: min(640px, 90vw);
  border-radius: 50%;
  background-image: url('../images/avonix-logo.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
}
.page-frame {
  position: relative;
  z-index: 1;
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.9em 1.7em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.btn-primary {
  background: linear-gradient(180deg, #D9B454, var(--gold));
  color: var(--on-gold);
  box-shadow: 0 14px 30px -12px rgba(201, 162, 39, 0.45);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn-block { width: 100%; }

/* ---------------- Nav ---------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(13, 26, 44, 0.94);
  backdrop-filter: none;
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand img {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  animation: beam-logo 3.2s ease-in-out infinite;
}
@keyframes beam-logo {
  0%, 100% { box-shadow: 0 0 6px 1px rgba(201,162,39,0.35); }
  50% { box-shadow: 0 0 18px 6px rgba(201,162,39,0.8); }
}
.brand-word {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  animation: beam-text 3.2s ease-in-out infinite;
}
@keyframes beam-text {
  0%, 100% { text-shadow: 0 0 4px rgba(230,206,142,0.12); }
  50% { text-shadow: 0 0 14px rgba(230,206,142,0.6), 0 0 5px rgba(242,236,221,0.45); }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--ink-dim);
  position: relative;
  padding: 0.3em 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 1.6rem; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 84px 0 0 0; background: var(--paper); flex-direction: column;
    justify-content: flex-start; padding: 2.5rem var(--pad); gap: 1.6rem; transform: translateX(100%);
    transition: transform 0.35s ease; z-index: 1; }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .nav-toggle { display: inline-flex; background: none; border: 1px solid var(--line-strong); color: var(--ink);
    width: 42px; height: 42px; border-radius: 50%; align-items: center; justify-content: center; cursor: pointer; }
  .nav-cta .btn-ghost { display: none; }
}

/* ---------------- Seal / ring motif ---------------- */
.seal-ring {
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  position: relative;
}
.seal-ring::after {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(138, 100, 35, 0.4);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding: 6.5rem 0 5.5rem;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(201,162,39,0.18), transparent 60%),
    var(--paper);
}
.hero-glow {
  position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.20), transparent 65%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.hero-medal {
  width: 118px; height: 118px; margin: 0 auto 2rem;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-medal::before {
  content: "";
  position: absolute; inset: -22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,39,0.5), rgba(201,162,39,0.12) 55%, transparent 75%);
  animation: radiate 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes radiate {
  0%, 100% { opacity: 0.55; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1.18); }
}
.hero-medal img { width: 100%; height: 100%; border-radius: 50%; box-shadow: 0 18px 34px -16px rgba(0,0,0,0.45); position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  letter-spacing: 0.02em;
  max-width: 14ch;
  margin: 0 auto;
}
.hero .lede {
  max-width: 46ch;
  margin: 1.3rem auto 2.4rem;
  color: var(--ink-dim);
  font-size: 1.08rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 640px) {
  .hero-actions { flex-wrap: nowrap; gap: 0.6rem; }
  .hero-actions .btn { font-size: 0.78rem; padding: 0.75em 1em; white-space: nowrap; }
}

/* ---------------- Sections ---------------- */
section { padding: 5.5rem 0; }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-top: 0.9rem; }
.section-head p { color: var(--ink-dim); margin-top: 1rem; font-size: 1.02rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}

/* ---------------- Manifesto strip ---------------- */
.manifesto {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
}
.manifesto blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.45;
  color: var(--gold-deep);
  margin: 0;
  font-style: italic;
  font-weight: 400;
}
.manifesto-list { display: flex; flex-direction: column; gap: 1.6rem; }
.manifesto-list .item h4 { font-size: 1.02rem; color: var(--gold-deep); margin-bottom: 0.35rem; font-family: var(--body); font-weight: 600;}
.manifesto-list .item p { color: var(--ink-dim); font-size: 0.95rem; }

@media (max-width: 860px) {
  .manifesto { gap: 1.2rem; }
  .manifesto blockquote { font-size: 1.05rem; }
  .manifesto-list { gap: 0.9rem; }
  .manifesto-list .item h4 { font-size: 0.86rem; }
  .manifesto-list .item p { font-size: 0.78rem; }
}

/* ---------------- Cards ---------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .grid-3 .card:nth-child(3) { grid-column: span 2; }
  .grid-3 .card { padding: 1.1rem; }
  .grid-3 .card .num { font-size: 0.68rem; }
  .grid-3 .card h3 { font-size: 1.05rem; margin: 0.6rem 0 0.5rem; }
  .grid-3 .card p { font-size: 0.78rem; line-height: 1.5; }
}

.card {
  background: linear-gradient(165deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.2rem;
  box-shadow: 0 24px 48px -30px rgba(0,0,0,0.35);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { border-color: var(--line-strong); transform: translateY(-3px); box-shadow: 0 30px 56px -28px rgba(0,0,0,0.4); }
.card .num { font-family: var(--mono); font-size: 0.75rem; color: var(--gold-deep); letter-spacing: 0.15em; }
.card h3 { font-size: 1.3rem; margin: 1rem 0 0.7rem; }
.card p { color: var(--ink-dim); font-size: 0.96rem; }

.card-glyph {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--gold-deep);
}

/* ---------------- Reservation band (home) ---------------- */
.res-band {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.res-band .wrap { display: grid; grid-template-columns: 0.85fr 1.45fr; gap: 3rem; align-items: center; }
.res-band h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.res-band p { color: var(--ink-dim); margin-top: 0.9rem; }
@media (max-width: 900px) { .res-band .wrap { grid-template-columns: 1fr; } }
@media (max-width: 900px) {
  .order-band .wrap { grid-template-columns: 0.9fr 1.1fr; gap: 0.9rem; }
  .order-band .eyebrow { font-size: 0.62rem; }
  .order-band h2 { font-size: 1.15rem; margin-top: 0.5rem; }
  .order-band .wrap > div:first-child > p { font-size: 0.74rem; margin-top: 0.5rem; }
  .order-band .btn { font-size: 0.72rem; padding: 0.65em 0.9em; margin-top: 0.9rem !important; }
  .order-band .card { padding: 0.9rem; }
  .order-band .card .num { font-size: 0.62rem; }
  .order-band .card h3 { font-size: 0.82rem !important; margin-top: 0.6rem !important; }
  .order-band .card p { font-size: 0.68rem; margin-top: 0.5rem !important; }
}

.quick-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 1.3rem;
  box-shadow: 0 20px 40px -26px rgba(0,0,0,0.32);
}
.quick-form .field { min-width: 0; }
.quick-form select {
  font-size: 0.85rem;
  padding: 0.75em 0.55em;
}
.quick-form .btn {
  grid-column: span 4;
  font-size: 0.8rem;
  padding: 0.85em 0.9em;
  white-space: nowrap;
}
@media (min-width: 700px) {
  .quick-form .btn { grid-column: span 1; }
}
@media (max-width: 640px) {
  .quick-form { grid-template-columns: 1fr 1fr; }
  .quick-form .field:nth-child(3) { grid-column: span 2; }
  .quick-form .btn { grid-column: span 2; }
}

/* ---------------- Form elements ---------------- */
label { font-size: 0.78rem; color: var(--ink-dim); letter-spacing: 0.03em; display: block; margin-bottom: 0.4rem; }
input, select, textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.95rem;
  padding: 0.75em 0.9em;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 90px; }
.field { margin-bottom: 1.1rem; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field-row > .field { min-width: 0; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

/* ---------------- Ticket / reservation card ---------------- */
.ticket {
  position: relative;
  background: linear-gradient(165deg, var(--card), var(--card-2));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 2.4rem;
  box-shadow: 0 30px 60px -32px rgba(0,0,0,0.4);
}
.ticket::before, .ticket::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
}
.ticket::before { left: -13px; }
.ticket::after { right: -13px; }
.ticket-perf {
  border-left: 1px dashed var(--line-strong);
  padding-left: 2rem;
}
@media (max-width: 900px) {
  .ticket-perf { border-left: none; border-top: 1px dashed var(--line-strong); padding-left: 0; padding-top: 2rem; margin-top: 2rem; }
  .ticket::before, .ticket::after { display: none; }
}

.ticket-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.4rem; }
.ticket-head .ref { font-family: var(--mono); font-size: 0.8rem; color: var(--gold-deep); }

.confirm-panel { display: none; }
.confirm-panel.show { display: block; }
.confirm-row { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.confirm-row span:first-child { color: var(--ink-dim); }
.confirm-row span:last-child { color: var(--ink); font-weight: 600; }

.note-box {
  background: rgba(201,162,39,0.10);
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  color: var(--gold-deep);
  margin-top: 1.4rem;
}

/* ---------------- Info rows (reservations page policies) ---------------- */
.info-row { display: flex; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row h4 { font-size: 0.95rem; color: var(--ink); font-family: var(--body); font-weight: 600; margin-bottom: 0.3rem; }
.info-row p { color: var(--ink-dim); font-size: 0.9rem; }

/* ---------------- Responsive split layouts ---------------- */
.split-13 { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3rem; }
.split-11 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; }
.split-equal { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 900px) {
  .split-13, .split-11, .split-equal {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ---------------- Menu page ---------------- */
.menu-tabs { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.menu-tab {
  font-size: 0.85rem; padding: 0.6em 1.2em; border-radius: 999px;
  border: 1px solid var(--line-strong); color: var(--ink-dim); cursor: pointer;
  background: var(--card); font-family: var(--body); transition: all 0.2s ease;
}
.menu-tab.active, .menu-tab:hover { border-color: var(--gold); color: var(--gold-deep); }
.menu-section { display: none; }
.menu-section.active { display: block; }
.menu-item {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.menu-item .name { font-family: var(--display); font-size: 1.12rem; color: var(--ink); }
.menu-item .desc { color: var(--ink-dim); font-size: 0.88rem; margin-top: 0.35rem; max-width: 52ch; }
.menu-item .price { font-family: var(--mono); color: var(--gold-deep); font-size: 0.92rem; white-space: nowrap; }
.menu-item .price.price-pending {
  font-family: var(--body); font-size: 0.75rem; font-weight: 600;
  color: var(--gold-deep); background: rgba(201,162,39,0.08);
  border: 1px solid rgba(201,162,39,0.3); border-radius: 999px;
  padding: 0.35em 0.8em; white-space: normal; text-align: center;
  letter-spacing: 0.04em; text-transform: uppercase;
}

/* ---------------- Timeline (about) ---------------- */
.timeline { position: relative; padding-left: 2.2rem; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 1px; background: var(--line-strong); }
.timeline-item { position: relative; padding-bottom: 2.2rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: -2.2rem; top: 4px; width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--paper);
}
.timeline-item h4 { color: var(--gold-deep); font-family: var(--body); font-size: 0.95rem; margin-bottom: 0.3rem; }
.timeline-item p { color: var(--ink-dim); font-size: 0.92rem; }

/* ---------------- Waitlist / newsletter ---------------- */
.waitlist {
  background: linear-gradient(180deg, var(--paper-2), var(--paper));
  border-top: 1px solid var(--line);
  text-align: center;
}
.waitlist-form { display: flex; gap: 0.7rem; max-width: 460px; margin: 1.8rem auto 0; }
.waitlist-form input { flex: 1; background: var(--card); }
@media (max-width: 500px) { .waitlist-form { flex-direction: column; } }

/* ---------------- Footer ---------------- */
footer {
  background: #091220;
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  position: relative;
  z-index: 1;
}
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.foot-brand img { width: 34px; height: 34px; border-radius: 50%; }
.foot-col h5 { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.9rem; }
.foot-col a, .foot-col p { display: block; color: var(--ink-dim); font-size: 0.88rem; margin-bottom: 0.6rem; }
.foot-col a:hover { color: var(--gold-deep); }
.foot-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.78rem; color: var(--ink-dim); padding-top: 1.6rem; border-top: 1px solid var(--line); }

/* ---------------- Utility ---------------- */
.status-pill {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--gold-deep); background: rgba(201,162,39,0.1);
  border: 1px solid rgba(201,162,39,0.35); padding: 0.4em 0.9em; border-radius: 999px;
  margin-bottom: 1.4rem; text-transform: uppercase;
}
.status-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
  animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.page-hero {
  padding: 4rem 0 3rem;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(201,162,39,0.14), transparent 60%);
}
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3rem); margin-top: 0.8rem; }
.page-hero p { color: var(--ink-dim); margin-top: 0.9rem; max-width: 56ch; font-size: 1.02rem; }

/* ---------------- Cart icon ---------------- */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.cart-badge {
  position: absolute;
  top: -6px; right: -6px;
  min-width: 18px; height: 18px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--on-gold);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  transition: transform 0.2s ease;
}
.cart-badge.bump { transform: scale(1.25); }
.cart-badge[data-count="0"] { display: none; }

/* ---------------- Add-to-cart controls on menu items ---------------- */
.menu-item .buy {
  display: flex; align-items: center; gap: 0.7rem;
  margin-top: 0.6rem;
}
.qty-stepper {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 0.25em 0.3em;
}
.qty-stepper button {
  width: 24px; height: 24px; border-radius: 50%; border: none;
  background: var(--paper-2); color: var(--ink); font-family: var(--body);
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.qty-stepper button:hover { background: var(--gold); color: var(--on-gold); }
.qty-stepper span { font-family: var(--mono); font-size: 0.85rem; min-width: 1.2em; text-align: center; }
.add-btn {
  font-family: var(--body); font-size: 0.82rem; font-weight: 600;
  padding: 0.5em 1.1em; border-radius: 999px; border: 1px solid var(--gold);
  background: transparent; color: var(--gold-deep); cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.add-btn:hover { background: var(--gold); color: var(--on-gold); }
.add-btn.added { background: var(--gold); color: var(--on-gold); border-color: var(--gold); }

/* ---------------- Cart drawer ---------------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(20, 15, 8, 0.55);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 60;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--card);
  border-left: 1px solid var(--line-strong);
  z-index: 61;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -30px rgba(0,0,0,0.45);
}
.cart-drawer.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem var(--pad); border-bottom: 1px solid var(--line);
}
.cart-close {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: transparent; color: var(--ink); cursor: pointer; font-size: 1rem;
}
.cart-close:hover { border-color: var(--gold); color: var(--gold-deep); }

.cart-items { flex: 1; overflow-y: auto; padding: 1rem var(--pad); }
.cart-empty { color: var(--ink-dim); font-size: 0.92rem; padding: 2rem 0; text-align: center; }

.cart-row {
  display: flex; justify-content: space-between; gap: 0.8rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.cart-row .name { font-family: var(--display); font-size: 1rem; color: var(--ink); }
.cart-row .unit { color: var(--ink-dim); font-size: 0.8rem; margin-top: 0.2rem; }
.cart-row .right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.cart-row .line-total { font-family: var(--mono); color: var(--gold-deep); font-size: 0.88rem; }
.cart-row .remove { background: none; border: none; color: var(--ink-dim); font-size: 0.76rem; cursor: pointer; text-decoration: underline; padding: 0; }
.cart-row .remove:hover { color: var(--gold-deep); }

.cart-foot { padding: 1.4rem var(--pad) 1.8rem; border-top: 1px solid var(--line-strong); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 0.95rem; margin-bottom: 1rem; }
.cart-subtotal .amt { font-family: var(--mono); color: var(--gold-deep); }

/* ---------------- Checkout page ---------------- */
.order-summary-row {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 0.92rem;
}
.order-summary-row .qty { color: var(--ink-dim); font-family: var(--mono); font-size: 0.8rem; margin-left: 0.5em; }
.order-summary-total {
  display: flex; justify-content: space-between; padding-top: 1.1rem; margin-top: 0.4rem;
  font-family: var(--display); font-size: 1.15rem; color: var(--gold-deep);
}
.fulfillment-toggle { display: flex; gap: 0.7rem; margin-bottom: 1.3rem; }
.fulfillment-option {
  flex: 1; text-align: center; padding: 0.8em; border-radius: 12px;
  border: 1px solid var(--line-strong); cursor: pointer; font-size: 0.9rem; color: var(--ink-dim);
  transition: all 0.2s ease; min-width: 0;
}
.fulfillment-option.active { border-color: var(--gold); color: var(--gold-deep); background: rgba(201,162,39,0.08); }
.hidden { display: none !important; }
.empty-state { text-align: center; padding: 3rem 1rem; }
.empty-state p { color: var(--ink-dim); margin-top: 0.6rem; }

/* ---------------- Language switcher ---------------- */
.lang-switcher { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 0.4em;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 999px; color: var(--ink); cursor: pointer;
  padding: 0.5em 0.8em; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--card); border: 1px solid var(--line-strong); border-radius: 12px;
  padding: 0.4rem; min-width: 140px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}
.lang-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.lang-option {
  display: block; width: 100%; text-align: left;
  background: none; border: none; border-radius: 8px;
  color: var(--ink-dim); font-family: var(--body); font-size: 0.88rem;
  padding: 0.55em 0.7em; cursor: pointer;
}
.lang-option:hover { background: var(--paper-2); color: var(--ink); }
.lang-option.active { color: var(--gold-deep); font-weight: 600; }

@media (max-width: 860px) {
  .lang-switcher { order: -1; margin-right: auto; }
}

/* ---------- Guest frequency badges ---------- */
.guest-status-slot { margin: 1rem 0; }
.guest-status.note-box { margin-top: 0; }
.guest-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35em 0.75em;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold-deep);
  background: rgba(201, 162, 39, 0.08);
}
.guest-badge--regular { color: var(--gold-pale); border-color: rgba(226, 206, 142, 0.35); }
.guest-badge--frequent {
  color: var(--on-gold);
  background: var(--gold);
  border-color: var(--gold);
}
.guest-badge--vip {
  color: var(--on-gold);
  background: linear-gradient(135deg, var(--gold) 0%, #e8d28a 50%, var(--gold-deep) 100%);
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25);
}

/* ---------- Feedbacks page ---------- */
.feedback-list .feedback-item { padding-bottom: 1.1rem; margin-bottom: 0.4rem; }
.feedback-list .feedback-item:last-child { border-bottom: none; margin-bottom: 0; }
.feedback-stars {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-family: var(--mono);
}

/* ---------- Location map ---------- */
.map-section { padding: 0 0 3.5rem; }
.map-frame {
  position: relative;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--card);
  aspect-ratio: 16 / 9;
  min-height: 280px;
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
}
.map-address-line {
  color: var(--ink-dim);
  font-size: 0.95rem;
}
.map-address-line a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.map-address-line a:hover { color: var(--gold-pale); }
@media (max-width: 640px) {
  .map-frame { aspect-ratio: 4 / 3; min-height: 220px; }
}

/* Careers position dropdown groups */
select optgroup {
  font-weight: 600;
  color: var(--gold-deep);
  background: var(--card);
}
select option {
  font-weight: 400;
  color: var(--ink);
}
