:root {
  --paper: #eeece5;
  --ink: #11110f;
  --line: rgba(17, 17, 15, 0.28);
  --pad: clamp(1rem, 2.25vw, 2.5rem);
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  color: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

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

a:hover,
a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

a:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 0.4rem;
}

address {
  font-style: normal;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  z-index: 2;
  top: 0;
  right: auto;
  left: 0;
  display: flex;
  width: 44%;
  align-items: flex-start;
  justify-content: space-between;
  padding: var(--pad);
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
}

.site-logo {
  width: clamp(8.75rem, 11.7vw, 11.375rem);
}

.site-logo img {
  width: 100%;
  height: auto;
}

.header-action {
  padding-top: 0.35rem;
}

.home {
  display: grid;
  height: 100svh;
  grid-template-columns: 44% 56%;
}

.home-panel,
.home-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
}

.home-panel {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.home-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.home-nav a {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  letter-spacing: 0.03em;
}

.home-nav a:hover {
  opacity: 0.55;
}

.home-hours {
  margin: 2rem 0 0;
  line-height: 1.55;
}

.home-photo,
.home-photo img {
  width: 100%;
  height: 100%;
}

.home-photo {
  overflow: hidden;
}

.home-photo img {
  object-fit: cover;
  object-position: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.15fr 1.35fr 0.65fr;
  gap: 2rem;
  padding: 1.15rem var(--pad) 1.35rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.66rem;
  line-height: 1.55;
}

.site-footer > :last-child {
  text-align: right;
}

.page {
  min-height: 100svh;
  padding: clamp(9rem, 13vw, 12rem) var(--pad) clamp(5rem, 9vw, 9rem);
}

.page-nav {
  display: flex;
  gap: 1.25rem;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.menus-page .page {
  position: relative;
  height: max(100svh, 42rem);
  padding-bottom: 0;
}

.info-page .page {
  display: grid;
  min-height: max(100svh, 42rem);
  grid-template-columns: 44% 56%;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 0;
}

.info-page .page-nav {
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: clamp(9rem, 13vw, 12rem) var(--pad) clamp(2.5rem, 5svh, 4.5rem);
}

.menus-page .page-nav {
  position: relative;
  z-index: 1;
}

.menus-layout {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 44% 56%;
}

.info-copy {
  display: grid;
  align-self: center;
  grid-column: 1;
  grid-row: 2;
  gap: clamp(2.5rem, 4vw, 4rem);
  padding: 0 var(--pad) clamp(2rem, 5svh, 4rem);
}

.about,
.details dd {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.025em;
  text-transform: none;
}

.details {
  display: grid;
  gap: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.details dt {
  margin: 0 0 1rem;
  color: rgba(17, 17, 15, 0.58);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.details dd a {
  overflow-wrap: anywhere;
}

.info-photo,
.menus-photo {
  grid-column: 2;
  grid-row: 1;
  width: auto;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  justify-self: center;
  object-fit: contain;
}

.info-photo {
  grid-row: 1 / -1;
}

.menus-enlarge {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  margin: 0 0 var(--pad) var(--pad);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 700px) {
  .site-header {
    width: 100%;
    padding-top: 1.15rem;
  }

  .site-logo {
    width: 8.5rem;
  }

  .home {
    display: block;
    height: auto;
  }

  .home-panel {
    min-height: max(22rem, calc(100svh - 66.667vw));
  }

  .home-photo {
    display: block;
    aspect-ratio: 3 / 2;
  }

  .home-photo img {
    object-position: center;
  }

  .site-footer {
    grid-template-columns: 1fr 1.4fr;
    gap: 1.5rem 1rem;
  }

  .site-footer > :last-child {
    grid-column: 1 / -1;
    text-align: left;
  }

  .page {
    padding-top: 8.5rem;
    padding-bottom: 5rem;
  }

  .page-nav {
    margin-bottom: 4.5rem;
  }

  .menus-page .page {
    height: auto;
    min-height: 100svh;
    padding-bottom: var(--pad);
  }

  .menus-page .page-nav {
    margin-bottom: 2.5rem;
  }

  .menus-page .menus-layout {
    position: static;
    display: flex;
    flex-direction: column;
  }

  .info-page .page {
    min-height: max(100svh, 40rem);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto minmax(12rem, 1fr);
    padding: 8.5rem var(--pad) var(--pad);
  }

  .info-page .page-nav {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 2.5rem;
    padding: 0;
  }

  .info-page .info-copy {
    grid-column: 1;
    grid-row: 2;
    gap: 2rem;
    padding: 0 0 2rem;
  }

  .info-page .details {
    gap: 1.5rem;
  }

  .info-page .info-photo {
    grid-column: 1;
    grid-row: 3;
    width: auto;
    height: 100%;
    max-width: 56vw;
    align-self: end;
    object-position: right bottom;
  }

  .menus-page .menus-photo {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
  }

  .menus-page .menus-enlarge {
    grid-column: auto;
    grid-row: auto;
    align-self: flex-start;
    margin: 1rem 0 0;
  }
}

@media (prefers-reduced-motion: no-preference) {
  a {
    transition: opacity 150ms ease;
  }
}
