:root {
  --yellow: #ffbc0d;
  --red: #b31920;
  --red-dark: #86151a;
  --ink: #24201b;
  --muted: #6e665d;
  --paper: #fff8ec;
  --line: #ead8b9;
  --green: #4f5d49;
  --white: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--yellow);
  color: var(--ink);
  overflow-x: hidden;
}

.topbar {
  background: var(--yellow);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 18px 18px 14px;
  position: sticky;
  top: 0;
  z-index: 5;
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
}

.brand-home {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  gap: 14px;
  min-width: 0;
  padding: 0;
  text-align: left;
}

.brand-mark {
  align-items: center;
  background: var(--red);
  border-radius: 50%;
  color: var(--yellow);
  display: inline-flex;
  flex: 0 0 44px;
  font-family: Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand-title {
  font-family: Georgia, serif;
  line-height: 1;
  min-width: 0;
}

.brand-title span {
  color: var(--red);
  display: block;
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 700;
}

.brand-title strong {
  color: var(--red-dark);
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin-top: 8px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.top-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.header-controls {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.language-switch {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  display: flex;
  overflow: hidden;
}

.lang-button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 12px;
}

.lang-button.is-active {
  background: var(--red);
  color: var(--white);
}

.top-action {
  appearance: none;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  min-height: 42px;
  padding: 0 18px;
}

.top-action:hover,
.top-action:focus-visible,
.top-action.is-active {
  background: var(--red);
  color: var(--white);
  outline: none;
}

.layout {
  display: grid;
  gap: 28px;
  grid-template-columns: 230px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 18px 44px;
}

.page-view {
  display: none;
}

.page-view.is-visible {
  display: grid;
}

.menu-tabs {
  align-self: start;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: grid;
  overflow: hidden;
  position: sticky;
  top: 98px;
}

.tab {
  appearance: none;
  background: var(--white);
  border: 0;
  border-bottom: 1px solid #ededed;
  color: var(--ink);
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  min-height: 58px;
  padding: 0 18px;
  text-align: left;
}

.tab:last-child {
  border-bottom: 0;
}

.tab:hover,
.tab:focus-visible {
  background: #fff3d1;
  outline: none;
}

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

.menu-card {
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(300px, 0.95fr);
  min-width: 0;
  min-height: 620px;
}

.photo-wrap {
  background: #d9b56f;
  min-height: 360px;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.photo-wrap picture {
  display: block;
  height: 100%;
  width: 100%;
}

.photo-wrap img {
  display: block;
  height: 100%;
  inset: 0;
  max-width: 100%;
  min-height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 42px clamp(22px, 5vw, 56px);
}

.hotel {
  color: var(--muted);
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 10px;
}

h2 {
  color: var(--red);
  font-family: Georgia, serif;
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1;
  margin: 0 0 18px;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

.note {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 28px;
}

.table {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(47, 33, 18, 0.08);
  width: 100%;
}

.table-row {
  display: flex;
  gap: 0;
}

.table-row span {
  align-items: center;
  display: flex;
  min-height: 52px;
  min-width: 0;
  padding: 10px 16px;
}

.table-row span:last-child {
  flex: 1 1 auto;
}

.table-body {
  border-top: 1px solid var(--line);
}

.table-head {
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.info-page {
  margin: 0 auto;
  max-width: 1120px;
  padding: 28px 18px 44px;
}

.info-page.is-visible {
  display: block;
}

.info-panel {
  background: var(--paper);
  padding: clamp(22px, 5vw, 56px);
}

.info-heading h2 {
  margin-bottom: 28px;
}

.responsive-table {
  border: 1px solid var(--line);
  overflow-x: auto;
}

table {
  background: var(--white);
  border-collapse: collapse;
  min-width: 700px;
  width: 100%;
}

th,
td {
  border: 1px solid var(--line);
  padding: 13px 14px;
  text-align: center;
}

th {
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

td {
  font-size: 16px;
}

td:last-child {
  font-weight: 800;
}

.info-notes {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  padding: 16px 18px;
}

.info-notes p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
}

.info-notes p:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px 14px 12px;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .brand-home {
    gap: 10px;
  }

  .brand-title strong {
    font-size: 13px;
  }

  .top-actions {
    gap: 8px;
    overflow-x: auto;
  }

  .header-controls {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 10px;
    width: 100%;
  }

  .language-switch {
    align-self: flex-end;
  }

  .top-action {
    flex: 0 0 auto;
    font-size: 14px;
    min-height: 38px;
    padding: 0 14px;
  }

  .brand-mark {
    flex-basis: 38px;
    height: 38px;
    width: 38px;
  }

  .layout {
    padding: 0 0 28px;
  }

  .layout.is-visible {
    display: block;
  }

  .menu-tabs {
    border-left: 0;
    border-right: 0;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 14px;
    position: sticky;
    top: 76px;
    z-index: 4;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    flex: 0 0 auto;
    font-size: 15px;
    min-height: 42px;
    padding: 0 16px;
    text-align: center;
  }

  .menu-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
  }

  .photo-wrap {
    aspect-ratio: 1.35 / 1;
    min-height: 0;
  }

  .content {
    padding: 28px 18px 34px;
    width: 100%;
  }

  .table {
    width: 100%;
  }

  h2 {
    margin-bottom: 24px;
  }

  .table-row span {
    font-size: 14px;
    min-height: 48px;
    padding: 10px 10px;
  }

  .table-head {
    font-size: 12px;
  }

  .info-page {
    padding: 0 0 28px;
  }

  .info-panel {
    padding: 28px 18px 34px;
  }

  table {
    min-width: 0;
  }

  th,
  td {
    font-size: 14px;
    padding: 11px 10px;
  }

  .responsive-table {
    border: 0;
    overflow: visible;
  }

  .responsive-table table,
  .responsive-table thead,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td {
    display: block;
    width: 100%;
  }

  .responsive-table thead {
    display: none;
  }

  .responsive-table tr {
    background: var(--white);
    border: 1px solid var(--line);
    margin-bottom: 10px;
  }

  .responsive-table td {
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    min-height: 42px;
    text-align: right;
  }

  .responsive-table td:last-child {
    border-bottom: 0;
    color: var(--red);
    font-size: 16px;
  }

  .responsive-table td::before {
    color: var(--muted);
    content: attr(data-label);
    flex: 0 0 42%;
    font-weight: 800;
    text-align: left;
  }
}

.page-view:not(.is-visible) {
  display: none;
}
