
:root {
  --paper: #f6f1e8;
  --paper-2: #fffaf3;
  --ink: #1c1410;
  --muted: #6d5c52;
  --line: rgba(40, 24, 16, 0.12);
  --ox: #6e2a22;
  --ox-deep: #4a1b16;
  --copper: #a45a32;
  --gold: #c9a36a;
  --ok: #2f5d45;
  --warn: #8a4b12;
  --shadow: 0 18px 50px rgba(48, 22, 12, 0.08);
  --serif: "Fraunces", "Iowan Old Style", Palatino, "Times New Roman", serif;
  --sans: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(196, 122, 72, 0.16), transparent 50%),
    linear-gradient(180deg, #fbf7f1 0%, var(--paper) 40%, #f3ece2 100%);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  min-height: 100%;
}
a { color: inherit; }
img {
  display: block;
  max-width: 100%;
  height: auto;
  visibility: visible;
  opacity: 1;
}
.wrap { width: min(720px, calc(100% - 32px)); margin: 0 auto; }
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 8px;
}
.mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.seal {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ox);
  color: #f6eadc;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: 0.04em;
}
.word {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.word strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 560; }
.word span { color: var(--muted); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.chip {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.55);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero { padding: 18px 0 8px; }
.kicker {
  color: var(--copper);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 10px;
}
h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.6rem, 10vw, 4.6rem);
  line-height: 0.92;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}
.hi { display: block; margin-top: 8px; font-size: 0.42em; color: var(--ox); letter-spacing: 0; }
.lede {
  font-size: 1.12rem;
  max-width: 36ch;
  margin: 0 0 16px;
}
.ruleline {
  display: grid;
  gap: 8px;
  margin: 16px 0 6px;
}
.ruleline p {
  margin: 0;
  padding: 12px 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.ruleline strong { font-family: var(--serif); font-weight: 560; }
.closed-banner {
  display: none;
  margin: 16px 0;
  padding: 16px 16px 14px;
  background: #3d1b16;
  color: #f8efe6;
  border-radius: 18px;
}
.closed-banner h2 { margin: 0 0 6px; font-family: var(--serif); font-size: 1.45rem; font-weight: 540; }
.closed-banner p { margin: 0; color: #f0d8c8; }
body.is-closed .closed-banner { display: block; }
body.is-closed .order-form,
body.is-closed .order-cta { display: none; }
.steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 22px;
}
.step {
  background: rgba(255,255,255,0.48);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  min-height: 108px;
}
.step b { display: block; font-family: var(--serif); font-size: 1.2rem; font-weight: 560; }
.step span { color: var(--muted); font-size: 0.92rem; }
section h2 {
  font-family: var(--serif);
  font-weight: 540;
  font-size: 1.7rem;
  margin: 8px 0 12px;
}
.menu { display: grid; gap: 12px; }
.plate {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.plate header { display: flex; justify-content: space-between; gap: 12px; align-items: flex-start; }
.plate h3 { margin: 0; font-family: var(--serif); font-size: 1.35rem; font-weight: 560; }
.plate .price { font-family: var(--serif); font-size: 1.45rem; color: var(--ox); }
.plate p { margin: 6px 0 12px; color: var(--muted); }
.qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty button, .tap, button.primary, button.ghost, .linkbtn {
  min-height: 48px;
  min-width: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.qty button { width: 48px; font-size: 1.3rem; }
.qty strong { min-width: 1.4rem; text-align: center; font-size: 1.15rem; }
.notes { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0 14px; }
.notes label {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
}
.field { display: grid; gap: 6px; margin: 0 0 12px; }
.field span { font-size: 0.86rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
input, textarea, select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 12px 14px;
  font: inherit;
  color: inherit;
}
textarea { min-height: 88px; resize: vertical; }
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.areas label {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: var(--serif);
  font-size: 1.05rem;
}
.areas input { position: absolute; opacity: 0; pointer-events: none; }
.areas label:has(input:checked) {
  background: var(--ox);
  color: #f8efe6;
  border-color: var(--ox);
}
.actions { display: grid; gap: 10px; margin: 8px 0 18px; }
a.wa, a.call, button.primary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
}
a.wa, button.primary { background: var(--ox); color: #f8efe6; border: 0; }
a.call { background: transparent; border: 1px solid var(--ox); color: var(--ox-deep); }
.totalbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 6px 0 10px;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.err {
  display: none;
  background: #f8e7df;
  color: #6a2418;
  border-radius: 14px;
  padding: 12px 14px;
  margin: 0 0 12px;
}
.err.show { display: block; }
.fine { color: var(--muted); font-size: 0.92rem; }
footer {
  padding: 10px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}
.status-page, .staff-page { padding-bottom: 40px; }
.order-no {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  margin: 8px 0;
}
.rail { display: grid; gap: 8px; margin: 14px 0 18px; }
.rail div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.rail div.on { background: var(--ox); color: #f8efe6; border-color: var(--ox); }
.slip {
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  margin: 0 0 12px;
  box-shadow: var(--shadow);
}
.slip.example { outline: 1px dashed var(--copper); }
.badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: #efe2c8;
  color: #6a3d12;
}
.meta { color: var(--muted); font-size: 0.92rem; }
.phone {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 650;
}
.statrow { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin: 12px 0; }
.stat {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 10px;
}
.stat b { display: block; font-family: var(--serif); font-size: 1.35rem; }
.stat span { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.04em; text-transform: uppercase; }
.btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.btns button { min-height: 48px; padding: 0 12px; }
.btns button.on { background: var(--ox); color: #f8efe6; border-color: var(--ox); }
.pinbox { max-width: 420px; margin: 28px auto; }
@media (max-width: 560px) {
  .steps, .statrow { grid-template-columns: 1fr 1fr; }
  .statrow { grid-template-columns: 1fr; }
}

#closed-contact { display: none; }
body.is-closed #closed-contact { display: block; }

.hero-photo-frame,
.plate-photo-frame,
.qr-frame {
  margin: 8px 0 16px;
}
.hero-photo-frame {
  width: min(960px, calc(100vw - 24px));
  margin-left: 50%;
  transform: translateX(-50%);
}
.hero-photo,
.plate-photo,
.upi-qr {
  display: block;
  width: 100%;
  height: auto;
  visibility: visible;
  opacity: 1;
  border: 0;
}
.hero-photo {
  width: 100%;
  min-height: 280px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(48, 22, 12, 0.18);
}
.plate-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.pay-copy {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.25rem;
}
.pay-step {
  margin: 18px 0 8px;
  padding: 16px;
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 22px;
}
.pay-step h2 { margin-top: 0; }
.qr-frame {
  margin: 0 0 12px;
  padding: 12px;
  background: #fff;
  border-radius: 18px;
  text-align: center;
}
.upi-qr {
  width: min(100%, 480px);
  margin: 0 auto;
  border-radius: 12px;
  background: #fff;
}
.qr-frame figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}
.copy-upi, a.pay-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  margin: 0 0 12px;
  border-radius: 14px;
  text-decoration: none;
  font: inherit;
  font-weight: 650;
}
.copy-upi {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: inherit;
  cursor: pointer;
}
a.pay-link {
  background: var(--ox-deep);
  color: #f8efe6;
}
#upi-id { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; letter-spacing: 0.02em; }

/* International dinner house */
body {
  background: #0c0b0a;
  color: #f4efe8;
  font-size: 18px;
}
.wrap { width: min(1040px, calc(100% - 40px)); }
.top { padding: 22px 0 14px; }
.seal { background: #f4efe8; color: #161311; }
.word span { color: #b7aa9c; letter-spacing: 0.16em; }
.chip, button.chip {
  border: 0;
  background: #f4efe8;
  color: #161311;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-photo-frame {
  width: 100vw;
  margin: 8px 0 0 calc(50% - 50vw);
  height: min(86vh, 820px);
  border: 0;
  border-radius: 0;
  position: relative;
}
.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,11,10,0.05) 20%, rgba(12,11,10,0.82) 100%);
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
.hero {
  position: relative;
  margin-top: -220px;
  padding: 0 0 28px;
  z-index: 2;
}
.hero .kicker { color: #e7d3b0; letter-spacing: 0.22em; }
.hero h1 {
  font-size: clamp(4.2rem, 10vw, 8rem);
  line-height: 0.88;
  color: #faf6f1;
}
.hero .hi { color: #f0e2cc; font-size: 0.28em; letter-spacing: 0.08em; }
.hero .lede { max-width: 28rem; color: #efe6dc; font-size: 1.15rem; }
.ruleline, .steps, .plate, .pay-step, .order-form, .field input, .field textarea, .closed-banner {
  background: #171412;
  border-color: rgba(244,239,232,0.12);
  color: #f4efe8;
}
.step span, .fine, .muted, .word span { color: #cbbfb2; }
.plate-photo-frame { border: 0; border-radius: 18px; overflow: hidden; }
.plate .price { color: #f4efe8; font-size: 1.7rem; }
button.pay-link, .copy-upi {
  width: 100%;
  border: 0;
  cursor: pointer;
  min-height: 56px;
  border-radius: 999px;
  font: inherit;
  font-weight: 650;
}
button.pay-link {
  background: #f4efe8;
  color: #161311;
}
.copy-upi { background: transparent; color: #f4efe8; border: 1px solid rgba(244,239,232,0.22); }
.upi-qr { width: min(100%, 280px); border-radius: 8px; background: #fff; padding: 10px; }
.pay-sheet {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(8,7,6,0.72);
  display: grid;
  place-items: center;
  padding: 24px;
}
.pay-sheet[hidden] { display: none; }
.pay-card {
  width: min(420px, 100%);
  background: #f7f1e8;
  color: #161311;
  border-radius: 22px;
  padding: 28px 24px 22px;
  text-align: center;
}
.pay-card h2 { font-family: var(--serif); font-size: 2.4rem; margin: 0 0 12px; }
.sheet-qr { width: min(100%, 260px); margin: 0 auto 12px; background: #fff; padding: 10px; }
.upi-line { font-family: ui-monospace, Menlo, Consolas, monospace; letter-spacing: 0.04em; }
.pay-wa, .pay-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 999px;
  margin-top: 10px;
  text-decoration: none;
  font: inherit;
  font-weight: 650;
}
.pay-wa { background: #161311; color: #f7f1e8; }
.pay-close { background: transparent; border: 1px solid rgba(22,19,17,0.16); cursor: pointer; }
footer { color: #cbbfb2; }

.desk { margin: 28px 0 12px; }
.desk-kinds { display: flex; gap: 16px; margin: 8px 0 14px; }
.desk-kinds label { display: flex; gap: 8px; align-items: center; }
body.is-closed .desk { display: block; }

.closed-line {
  display: none;
  margin: 28px 0 8px;
  color: #e7d3b0;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}
.closed-line a { color: #f4efe8; }
body.is-closed .closed-line { display: block; }
.ritual {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 18px 0 36px;
  padding: 0;
  border: 0;
  background: transparent;
}
.ritual li {
  background: transparent;
  border: 0;
  padding: 0;
  min-width: 0;
}
.ritual span {
  display: block;
  color: #b7aa9c;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ritual b {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: #faf6f1;
}
@media (max-width: 640px) {
  .ritual { gap: 16px; flex-wrap: wrap; }
}

.menu-photo { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; }
