:root {
  --red: #b8201b;
  --red-dark: #7e1512;
  --cream: #fff3d7;
  --cream-2: #f7dca2;
  --green: #1f5b3c;
  --green-dark: #123423;
  --gold: #f2a51b;
  --ink: #231815;
  --muted: #6f5a48;
  --paper: #fff8e8;
  --line: rgba(35, 24, 21, 0.16);
  --shadow: 0 18px 50px rgba(54, 26, 14, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(126, 21, 18, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(126, 21, 18, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 26px 26px;
  color: var(--ink);
  font-family:
    "Pretendard",
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border: 2px solid rgba(255, 243, 215, 0.55);
  background: rgba(35, 24, 21, 0.74);
  color: var(--paper);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(35, 24, 21, 0.25);
}

.site-header.is-scrolled {
  background: rgba(35, 24, 21, 0.92);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-badge {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--cream);
  background: var(--red);
  color: var(--cream);
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1;
  box-shadow: inset -4px -4px 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.brand-badge.has-logo-image {
  width: 58px;
  height: 58px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
}

.brand-badge img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.18);
}

.brand-mark strong {
  display: block;
  font-size: 1.06rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-mark small {
  display: block;
  color: rgba(255, 248, 232, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  color: rgba(255, 248, 232, 0.86);
  font-weight: 800;
}

.site-nav a:hover {
  border-color: rgba(255, 243, 215, 0.36);
  background: rgba(255, 243, 215, 0.1);
}

.site-nav .nav-order {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 243, 215, 0.45);
  background: rgba(255, 243, 215, 0.08);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(42, 14, 11, 0.86) 0%, rgba(42, 14, 11, 0.56) 46%, rgba(42, 14, 11, 0.08) 100%),
    linear-gradient(0deg, rgba(35, 24, 21, 0.65), rgba(35, 24, 21, 0.06) 52%);
}

.hero-content {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 98px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: 5.35rem;
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 4px 4px 0 var(--red-dark), 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.hero-copy {
  max-width: 590px;
  margin: 26px 0 0;
  color: rgba(255, 248, 232, 0.86);
  font-size: 1.16rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 rgba(35, 24, 21, 0.26);
  font-weight: 950;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(35, 24, 21, 0.26);
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.secondary {
  border-color: var(--cream);
  background: rgba(255, 243, 215, 0.1);
  color: var(--cream);
}

.button.light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--red-dark);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 10px;
  margin: 42px 0 0;
}

.hero-stats div {
  border: 2px solid rgba(255, 243, 215, 0.56);
  background: rgba(35, 24, 21, 0.48);
  padding: 14px;
}

.hero-stats dt {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(255, 248, 232, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.ticker {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 16px;
  align-items: center;
  min-height: 56px;
  padding: 11px max(18px, calc((100vw - 1120px) / 2));
  border-block: 3px solid var(--ink);
  background: var(--green);
  color: var(--paper);
}

.ticker span {
  padding: 6px 10px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

.ticker p {
  min-width: 0;
  margin: 0;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2,
.event-band h2,
.order-copy h2 {
  margin: 0;
  font-size: 3.7rem;
  line-height: 1;
  letter-spacing: 0;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.promise-grid article {
  min-height: 210px;
  padding: 26px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.promise-number {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 2.4rem;
  font-weight: 950;
  line-height: 1;
}

.promise-grid h3,
.store-board h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.promise-grid p,
.menu-card p,
.event-band p,
.order-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.menu-section {
  padding-top: 58px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.menu-tab {
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  font-weight: 950;
}

.menu-tab.is-active {
  background: var(--red);
  color: var(--paper);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-card {
  overflow: hidden;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.menu-card.is-hidden {
  display: none;
}

.menu-card.featured {
  grid-column: span 2;
}

.menu-photo {
  min-height: 168px;
  border-bottom: 3px solid var(--ink);
  background:
    radial-gradient(circle at 30% 35%, rgba(255, 243, 215, 0.36) 0 8%, transparent 9%),
    linear-gradient(135deg, var(--red) 0 25%, var(--cream-2) 25% 50%, var(--green) 50% 75%, var(--gold) 75%);
  background-size: 100% 100%, 36px 36px;
  position: relative;
}

.menu-photo::before,
.menu-photo::after {
  content: "";
  position: absolute;
  border: 3px solid rgba(35, 24, 21, 0.88);
  background: #d7781f;
  box-shadow:
    20px 8px 0 #f0a33d,
    45px -2px 0 #c65a1d,
    70px 10px 0 #e38a25;
}

.menu-photo::before {
  right: 82px;
  bottom: 38px;
  width: 54px;
  height: 44px;
  border-radius: 52% 48% 45% 55%;
}

.menu-photo::after {
  right: 34px;
  bottom: 24px;
  width: 92px;
  height: 26px;
  border-radius: 0 0 42px 42px;
  background: var(--red);
  box-shadow: none;
}

.photo-yangnyeom {
  background:
    radial-gradient(circle at 65% 48%, rgba(126, 21, 18, 0.38) 0 12%, transparent 13%),
    linear-gradient(135deg, #f6d7a4 0 25%, #b8201b 25% 50%, #f6d7a4 50% 75%, #1f5b3c 75%);
  background-size: 100% 100%, 34px 34px;
}

.photo-yangnyeom::before {
  background: #b8201b;
  box-shadow:
    20px 8px 0 #d7392c,
    45px -2px 0 #8f1914,
    70px 10px 0 #c02b21;
}

.photo-garlic {
  background:
    radial-gradient(circle at 28% 34%, rgba(255, 255, 255, 0.42) 0 5%, transparent 6%),
    linear-gradient(135deg, #1f5b3c 0 25%, #fff3d7 25% 50%, #f2a51b 50% 75%, #b8201b 75%);
  background-size: 100% 100%, 34px 34px;
}

.photo-set {
  background:
    linear-gradient(rgba(35, 24, 21, 0.12), rgba(35, 24, 21, 0.12)),
    repeating-linear-gradient(90deg, #b8201b 0 24px, #fff3d7 24px 48px);
}

.photo-side {
  background:
    radial-gradient(circle at 66% 42%, rgba(255, 243, 215, 0.75) 0 12%, transparent 13%),
    linear-gradient(135deg, #f2a51b 0 25%, #fff3d7 25% 50%, #b8201b 50% 75%, #1f5b3c 75%);
  background-size: 100% 100%, 34px 34px;
}

.photo-side::before {
  width: 86px;
  height: 18px;
  border-radius: 14px;
  background: #e9b85a;
  box-shadow:
    0 -20px 0 #f5c86e,
    0 -40px 0 #dba448;
}

.photo-radish {
  background:
    radial-gradient(circle at 38% 40%, rgba(255, 255, 255, 0.72) 0 18%, transparent 19%),
    linear-gradient(135deg, #fff3d7 0 25%, #1f5b3c 25% 50%, #fff3d7 50% 75%, #b8201b 75%);
  background-size: 100% 100%, 34px 34px;
}

.photo-radish::before {
  background: #fff8e8;
  box-shadow:
    20px 8px 0 #f7dca2,
    45px -2px 0 #fff8e8,
    70px 10px 0 #f7dca2;
}

.menu-body {
  padding: 20px;
}

.menu-kicker {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.menu-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.menu-bottom strong {
  font-size: 1.18rem;
}

.menu-note {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  min-height: 38px;
  border: 2px solid var(--ink);
  background: var(--green);
  color: var(--paper);
  font-weight: 950;
  font-size: 0.86rem;
}

.event-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 58px max(18px, calc((100vw - 1120px) / 2));
  border-block: 4px solid var(--ink);
  background:
    linear-gradient(90deg, rgba(35, 24, 21, 0.11) 1px, transparent 1px),
    var(--red);
  background-size: 18px 18px;
  color: var(--paper);
}

.event-band p {
  max-width: 650px;
  margin-top: 12px;
  color: rgba(255, 248, 232, 0.82);
}

.store-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.store-board,
.map-panel {
  min-height: 320px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}

.store-board {
  padding: 28px;
  background: var(--paper);
}

.store-board dl {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.store-board dt {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.store-board dd {
  margin: 4px 0 0;
  font-size: 1.08rem;
  font-weight: 850;
}

.map-panel {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(255, 243, 215, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(255, 243, 215, 0.16) 1px, transparent 1px),
    var(--green-dark);
  background-size: 28px 28px;
  color: var(--paper);
}

.map-panel span {
  width: max-content;
  padding: 8px 12px;
  border: 2px solid var(--cream);
  color: var(--gold);
  font-weight: 950;
  letter-spacing: 0.12em;
}

.map-panel strong {
  font-size: 4.1rem;
  line-height: 1;
  text-shadow: 4px 4px 0 var(--red);
}

.order-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
  padding-top: 42px;
}

.order-copy {
  position: sticky;
  top: 110px;
}

.order-ticket {
  padding: 26px;
  border: 3px solid var(--ink);
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 22px), rgba(184, 32, 27, 0.13) calc(100% - 22px)),
    var(--paper);
  box-shadow: var(--shadow);
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px dashed rgba(35, 24, 21, 0.42);
}

.ticket-top span,
.ticket-top strong {
  font-weight: 950;
}

.order-ticket label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 900;
}

.order-ticket input,
.order-ticket textarea {
  width: 100%;
  border: 2px solid rgba(35, 24, 21, 0.52);
  background: #fffdf5;
  color: var(--ink);
  padding: 12px;
  outline: none;
}

.order-ticket input:focus,
.order-ticket textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184, 32, 27, 0.14);
}

.order-ticket .button {
  margin-top: 18px;
}

.order-message {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px max(18px, calc((100vw - 1120px) / 2));
  border-top: 3px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 248, 232, 0.72);
}

.menu-photo.has-custom-image {
  background-size: cover;
  background-position: center;
}

.menu-photo.has-custom-image::before,
.menu-photo.has-custom-image::after {
  display: none;
}

.editor-panel {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 60;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(420px, calc(100vw - 36px));
  max-height: calc(100vh - 36px);
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 rgba(35, 24, 21, 0.22);
  color: var(--ink);
}

.editor-panel.is-collapsed {
  grid-template-rows: auto;
  max-height: none;
}

.editor-panel.is-collapsed .editor-scroll,
.editor-panel.is-collapsed .editor-auth,
.editor-panel.is-collapsed .editor-actions,
.editor-panel.is-collapsed .editor-status {
  display: none;
}

.editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-bottom: 2px solid var(--ink);
  background: var(--green);
  color: var(--paper);
}

.editor-head strong {
  display: block;
  font-size: 1rem;
}

.editor-head small {
  display: block;
  color: rgba(255, 248, 232, 0.74);
  font-size: 0.78rem;
}

.editor-head button,
.editor-actions button,
.editor-import,
.editor-file,
.editor-image-row button {
  min-height: 36px;
  padding: 0 12px;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  font-weight: 950;
}

.editor-head button {
  border-color: var(--cream);
  background: transparent;
  color: var(--paper);
}

.editor-auth {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: end;
  padding: 12px 14px;
  border-bottom: 2px solid rgba(35, 24, 21, 0.18);
  background: #fffdf5;
}

.editor-auth label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.editor-auth input {
  width: 100%;
  min-height: 36px;
  border: 2px solid rgba(35, 24, 21, 0.34);
  background: var(--paper);
  color: var(--ink);
  padding: 7px 9px;
  outline: none;
}

.editor-auth button {
  min-height: 36px;
  padding: 0 12px;
  border: 2px solid var(--ink);
  background: var(--gold);
  color: var(--ink);
  font-weight: 950;
}

.editor-scroll {
  overflow: auto;
  padding: 12px 14px;
}

.editor-group {
  border: 2px solid rgba(35, 24, 21, 0.22);
  background: #fffdf5;
}

.editor-group + .editor-group {
  margin-top: 10px;
}

.editor-group summary {
  padding: 12px;
  background: var(--cream-2);
  font-weight: 950;
  cursor: pointer;
}

.editor-field {
  display: grid;
  gap: 6px;
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(35, 24, 21, 0.14);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.editor-field input,
.editor-field textarea {
  width: 100%;
  border: 2px solid rgba(35, 24, 21, 0.34);
  background: var(--paper);
  color: var(--ink);
  padding: 9px 10px;
  outline: none;
}

.editor-field input:focus,
.editor-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184, 32, 27, 0.12);
}

.editor-image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.editor-inquiry-note,
.editor-inquiry-empty {
  margin: 0;
  padding: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.editor-inquiry-list {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.editor-inquiry-card {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 2px solid rgba(35, 24, 21, 0.22);
  background: var(--paper);
}

.editor-inquiry-card strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.editor-inquiry-card dl {
  display: grid;
  gap: 4px;
  margin: 0;
}

.editor-inquiry-card dl div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 8px;
}

.editor-inquiry-card dt,
.editor-inquiry-card dd,
.editor-inquiry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.editor-inquiry-card dt {
  color: var(--red);
}

.editor-inquiry-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 12px 12px;
}

.editor-inquiry-actions button {
  min-height: 34px;
  padding: 0 12px;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  font-weight: 950;
}

.editor-file,
.editor-import {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.editor-file input,
.editor-import input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px;
  border-top: 2px solid rgba(35, 24, 21, 0.18);
}

.editor-actions .editor-save {
  background: var(--gold);
}

.editor-status {
  min-height: 24px;
  margin: 0;
  padding: 0 14px 14px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

@media (max-width: 860px) {
  .site-header {
    align-items: start;
    right: 14px;
    left: 14px;
    width: auto;
    transform: none;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 26;
  }

  .site-nav {
    position: fixed;
    top: 88px;
    right: 14px;
    display: none;
    width: min(280px, calc(100vw - 28px));
    padding: 10px;
    border: 2px solid var(--cream);
    background: rgba(35, 24, 21, 0.96);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    justify-content: center;
  }

  .hero {
    min-height: 820px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(42, 14, 11, 0.88) 0%, rgba(42, 14, 11, 0.64) 56%, rgba(42, 14, 11, 0.22) 100%),
      linear-gradient(0deg, rgba(35, 24, 21, 0.65), rgba(35, 24, 21, 0.12));
  }

  .hero-content {
    padding-top: 128px;
  }

  .hero h1 {
    max-width: 680px;
    font-size: 4rem;
  }

  .hero-stats,
  .promise-grid,
  .menu-grid,
  .store-layout,
  .order-section {
    grid-template-columns: 1fr;
  }

  .menu-card.featured {
    grid-column: auto;
  }

  .section-heading,
  .event-band,
  .site-footer {
    display: grid;
    align-items: start;
  }

  .order-copy {
    position: static;
  }

  .section-heading h2,
  .event-band h2,
  .order-copy h2 {
    font-size: 2.8rem;
  }

  .map-panel strong {
    font-size: 3rem;
  }

  .editor-panel {
    top: auto;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    max-height: min(78vh, 720px);
  }
}

@media (max-width: 560px) {
  .nav-toggle {
    right: auto;
    left: min(330px, calc(100vw - 68px));
  }

  .site-nav {
    right: auto;
    left: 18px;
    width: calc(100vw - 36px);
    max-width: 330px;
  }

  .brand-mark small {
    display: none;
  }

  .brand-badge {
    width: 40px;
    height: 40px;
  }

  .brand-badge.has-logo-image {
    width: 50px;
    height: 50px;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: 2.35rem;
    line-height: 1.02;
    text-shadow: 3px 3px 0 var(--red-dark), 5px 5px 0 rgba(0, 0, 0, 0.2);
  }

  .hero-copy {
    max-width: 320px;
    font-size: 0.94rem;
    line-height: 1.62;
    overflow-wrap: anywhere;
  }

  .hero-actions .button,
  .button.light {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .ticker {
    grid-template-columns: 1fr;
  }

  .ticker p {
    max-width: 320px;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .event-band h2,
  .order-copy h2 {
    font-size: 2.25rem;
  }

  .promise-grid article,
  .store-board,
  .map-panel,
  .order-ticket {
    padding: 20px;
  }

  .menu-photo {
    min-height: 142px;
  }
}
