:root {
  --ink: #191512;
  --paper: #fff8e8;
  --lime: #bfd94b;
  --tomato: #d93f25;
  --corn: #f2b632;
  --leaf: #257a4b;
  --charcoal: #24211d;
  --muted: #6e6256;
  --line: rgba(25, 21, 18, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 46px);
  color: #fff;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0));
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-transform: none;
}

.site-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.hero-logo {
  display: block;
  width: min(170px, 42vw);
  max-height: 120px;
  object-fit: contain;
  margin-bottom: 18px;
}

[hidden] {
  display: none !important;
}

nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.language-switcher {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.language-switcher button {
  min-width: 34px;
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--ink);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.02) 56%);
}

.hero-content {
  position: relative;
  width: min(860px, 100%);
  padding: 120px clamp(18px, 5vw, 64px) 86px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 680;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: none;
}

.hero p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.35;
}

.hero-actions,
.location-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  font-weight: 650;
  cursor: pointer;
}

.btn.primary {
  border-color: var(--tomato);
  color: #fff;
  background: var(--tomato);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.btn.light {
  background: rgba(255, 255, 255, 0.78);
}

.btn.small {
  min-height: 38px;
  padding-inline: 12px;
}

.btn.danger,
.icon-btn.danger {
  border-color: rgba(217, 63, 37, 0.3);
  color: #fff;
  background: var(--tomato);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--charcoal);
  color: #fff;
}

.quick-strip span,
.quick-strip a {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  font-weight: 600;
}

.quick-strip a {
  transition: background 160ms ease, color 160ms ease;
}

.quick-strip a:hover {
  color: var(--ink);
  background: var(--lime);
}

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

.section-head {
  max-width: 660px;
  margin-bottom: 28px;
}

.section-head h2,
.location-band h2,
.admin-topbar h1 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.2vw, 56px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: none;
}

.section-head.compact h2 {
  font-size: clamp(26px, 3.5vw, 40px);
}

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

.menu-card {
  min-height: 224px;
  display: grid;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf5;
}

.menu-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: rgba(25, 21, 18, 0.08);
}

.menu-card-body {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
}

.menu-card h3 {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.menu-card p {
  color: var(--muted);
  line-height: 1.5;
}

.menu-card strong {
  white-space: nowrap;
  color: var(--tomato);
  font-size: 21px;
  font-weight: 650;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag-row span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(191, 217, 75, 0.28);
  font-size: 12px;
  font-weight: 600;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 18px;
}

.price-list small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.location-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 58px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--leaf);
}

.location-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hours-line {
  margin: 8px 0 10px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 650;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--charcoal);
  color: #fff;
  font-weight: 600;
}

.admin-page {
  background: #f4f1e8;
  font-family: "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #211d19;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px clamp(16px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 232, 0.96);
  backdrop-filter: blur(14px);
}

.admin-topbar .eyebrow {
  color: var(--leaf);
}

.admin-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 60px;
}

.admin-panel {
  display: none;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  box-shadow: 0 18px 50px rgba(25, 21, 18, 0.06);
}

.admin-panel.is-active {
  display: block;
}

.admin-tabs {
  position: sticky;
  top: 91px;
  z-index: 9;
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.94);
  backdrop-filter: blur(12px);
}

.tab-btn {
  min-height: 40px;
  flex: 1;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 560;
  letter-spacing: 0;
  cursor: pointer;
}

.tab-btn.is-active {
  color: #fff;
  background: var(--charcoal);
}

.panel-title,
.panel-head {
  margin-bottom: 18px;
}

.panel-title h2,
.admin-panel h2 {
  margin-bottom: 0;
  font-size: clamp(27px, 3.4vw, 40px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.015em;
  text-transform: none;
}

.logo-admin {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.logo-preview {
  min-height: 110px;
  display: grid;
  place-items: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.logo-preview img {
  max-width: 124px;
  max-height: 84px;
  object-fit: contain;
}

.quick-admin {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(25, 21, 18, 0.1);
}

.quick-admin h3 {
  margin-bottom: 4px;
  font-size: 20px;
  font-weight: 620;
}

.quick-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.quick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(25, 21, 18, 0.1);
  border-radius: var(--radius);
  background: #fff;
}

.translation-rows {
  display: grid;
  gap: 12px;
}

.translation-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(25, 21, 18, 0.1);
  border-radius: var(--radius);
  background: #fff;
}

.translation-source {
  min-height: 90px;
  padding: 12px;
  border-radius: var(--radius);
  background: #fffaf1;
}

.translation-source span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.translation-source p {
  margin: 0;
  line-height: 1.45;
}

.translation-row textarea {
  min-height: 90px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.02em;
}

label.wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 15px;
  letter-spacing: 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(37, 122, 75, 0.55);
  box-shadow: 0 0 0 3px rgba(37, 122, 75, 0.12);
  outline: none;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.rows {
  display: grid;
  gap: 12px;
}

.edit-row {
  display: grid;
  grid-template-columns: 150px 1fr 42px;
  gap: 12px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid rgba(25, 21, 18, 0.1);
  border-radius: var(--radius);
  background: #fff;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 650;
  cursor: pointer;
}

.status {
  min-height: 22px;
  margin: 8px 0 0;
  color: var(--leaf);
  font-weight: 650;
}

.admin-topbar .status {
  min-width: 120px;
  margin: 0;
  align-self: center;
  text-align: right;
}

.helper {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.count-control {
  width: min(160px, 100%);
}

.section-rows {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.section-editor {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf1;
}

.section-editor-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.section-editor-head h3 {
  margin-bottom: 0;
  font-size: 21px;
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-kicker {
  margin-bottom: 5px;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.section-actions,
.menu-tools,
.image-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.section-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr 150px;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(25, 21, 18, 0.1);
}

.edit-row.compact-row {
  grid-template-columns: 1fr 42px;
}

.item-fields {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  align-content: start;
}

.edit-row:not(.compact-row) .item-fields {
  grid-template-columns: 1fr 120px;
}

.edit-row:not(.compact-row) .item-fields label:nth-child(3),
.edit-row:not(.compact-row) .item-fields label:nth-child(4) {
  grid-column: 1 / -1;
}

.item-image-editor {
  display: grid;
  gap: 8px;
}

.item-image-preview {
  min-height: 96px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.item-image-preview img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}

.file-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.file-btn input {
  display: none;
}

.item-delete {
  align-self: start;
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    padding: 12px;
  }

  .wordmark {
    max-width: 150px;
  }

  .site-logo {
    width: 32px;
    height: 32px;
  }

  nav {
    gap: 6px;
  }

  .topbar-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  nav a {
    min-height: 34px;
    padding: 0 8px;
    font-size: 12px;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-content {
    padding: 108px 18px 46px;
  }

  h1 {
    font-size: clamp(44px, 14vw, 68px);
  }

  .quick-strip,
  .menu-grid,
  .two-col,
  .logo-admin,
  .form-grid,
  .section-fields,
  .item-fields,
  .edit-row:not(.compact-row) .item-fields {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    top: 124px;
    overflow-x: auto;
  }

  .tab-btn {
    min-width: 110px;
  }

  .quick-strip span,
  .quick-strip a {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section {
    padding: 46px 0;
  }

  .menu-card-body,
  .location-band,
  .admin-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-card {
    min-height: 0;
  }

  .location-actions .btn,
  .hero-actions .btn,
  .admin-actions .btn {
    width: 100%;
  }

  footer {
    flex-direction: column;
  }

  .edit-row,
  .edit-row.compact-row,
  .section-editor-head {
    grid-template-columns: 1fr;
  }

  .quick-rows,
  .quick-row,
  .translation-row {
    grid-template-columns: 1fr;
  }

  .edit-row,
  .edit-row.compact-row,
  .section-editor-head,
  .panel-head {
    display: grid;
  }

  .icon-btn {
    width: 100%;
  }
}
