:root {
  --blue: #2b5579;
  --ochre: #c67a2c;
  --cream: #f7e8d3;
  --coral: #d34e3b;
  --espresso: #2b241f;
  --ink: #18120f;
  --paper: #fff8ed;
  --muted: rgba(43, 36, 31, 0.66);
  --line: rgba(43, 36, 31, 0.14);
  --soft-line: rgba(247, 232, 211, 0.2);
  --shadow: 0 22px 70px rgba(43, 36, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--espresso);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 18px 34px;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(24, 18, 15, 0.72), rgba(24, 18, 15, 0));
}

.brand {
  width: 122px;
  flex: 0 0 auto;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid transparent;
  color: rgba(247, 232, 211, 0.88);
  font-size: 0.76rem;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-button {
  border-color: rgba(247, 232, 211, 0.34);
  background: rgba(43, 36, 31, 0.18);
  backdrop-filter: blur(10px);
}

.team-login-link {
  color: var(--espresso);
  border-color: var(--cream);
  background: var(--cream);
}

.team-login-link:hover {
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--espresso);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/photos/current/tempo-wall-mural.jpg");
  background-position: center 42%;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 18, 15, 0.92) 0%, rgba(24, 18, 15, 0.62) 42%, rgba(24, 18, 15, 0.14) 100%),
    linear-gradient(180deg, rgba(24, 18, 15, 0.28) 0%, rgba(24, 18, 15, 0.14) 44%, rgba(24, 18, 15, 0.76) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 132px 0 168px;
}

.eyebrow,
.menu-list span,
.hero-info span,
.article-list span,
.menu-category-title span,
.menu-meta span {
  margin: 0 0 14px;
  color: var(--ochre);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 8vw, 8.2rem);
  font-weight: 520;
  line-height: 0.88;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.6rem);
  font-weight: 520;
  line-height: 0.94;
}

h3 {
  margin-bottom: 8px;
  color: var(--espresso);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 850;
  line-height: 1.05;
}

.lead {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(247, 232, 211, 0.86);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 560;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid var(--espresso);
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

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

.button.outline-light {
  border-color: rgba(247, 232, 211, 0.6);
  color: var(--cream);
}

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

.hero-info {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  width: min(640px, calc(100% - 68px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(247, 232, 211, 0.28);
  background: rgba(43, 36, 31, 0.58);
  backdrop-filter: blur(18px);
}

.hero-info div {
  padding: 18px;
  border-right: 1px solid rgba(247, 232, 211, 0.18);
}

.hero-info div:last-child {
  border-right: 0;
}

.hero-info span {
  display: block;
  margin-bottom: 6px;
}

.hero-info strong {
  display: block;
  color: var(--cream);
  font-size: 0.98rem;
}

.intro-section,
.daytime-section,
.photo-section,
.menu-section,
.hours-section,
.visit-section,
.updates-section {
  padding: 108px 0;
}

.intro-section {
  background: var(--paper);
}

.intro-grid,
.daytime-grid,
.hours-grid,
.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  gap: 74px;
  align-items: start;
}

.intro-copy p,
.daytime-copy p,
.section-title p,
.feature-card p,
.visit-grid p,
.hours-grid p,
.menu-list p {
  color: var(--muted);
  font-size: 1.06rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.daytime-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.daytime-copy {
  padding-top: 10px;
}

.daytime-copy .button {
  margin-top: 18px;
}

.daypart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 62px;
  background: var(--line);
  border: 1px solid var(--line);
}

.daypart-grid article {
  min-height: 170px;
  padding: 26px;
  background: var(--paper);
}

.daypart-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.daypart-grid strong {
  display: block;
  max-width: 260px;
  color: var(--espresso);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  font-weight: 520;
  line-height: 1.03;
}

.section-title {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-title.compact {
  max-width: 620px;
}

.photo-section {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.photo-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.68fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}

.photo-heading h2 {
  margin-bottom: 0;
}

.photo-heading p:last-child {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.06rem;
}

.photo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(240px, 0.62fr));
  gap: 18px;
}

.photo-card {
  position: relative;
  min-height: 300px;
  margin: 0;
  overflow: hidden;
  background: var(--espresso);
}

.photo-card-large {
  grid-row: span 2;
  min-height: 618px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.photo-card:nth-child(2) img {
  object-position: center 42%;
}

.photo-card:nth-child(3) img,
.photo-card:nth-child(5) img {
  object-position: center 46%;
}

.photo-card:nth-child(6) img {
  object-position: center 52%;
}

.photo-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 11px;
  background: rgba(43, 36, 31, 0.78);
  color: var(--cream);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.menu-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.menu-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list p {
  max-width: 760px;
  margin-bottom: 0;
}

.menu-action-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.menu-action-row p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.menu-preview-button {
  flex: 0 0 auto;
}

.menu-page .site-header,
.simple-page .site-header {
  position: sticky;
  background: var(--espresso);
}

.menu-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  align-items: end;
  color: var(--cream);
  background: var(--espresso);
}

.menu-hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 18, 15, 0.9), rgba(24, 18, 15, 0.54)),
    url("assets/photos/current/tempo-current-collage.jpg") center / cover;
  opacity: 0.82;
}

.menu-hero-content {
  position: relative;
  z-index: 1;
  padding: 112px 0 82px;
}

.menu-hero h1 {
  color: var(--cream);
}

.menu-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.menu-meta span {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(247, 232, 211, 0.26);
  background: rgba(43, 36, 31, 0.34);
  color: var(--cream);
}

.full-menu-section {
  padding: 96px 0 112px;
  background: var(--paper);
}

.menu-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 40px;
  max-width: none;
  align-items: end;
}

.menu-heading .eyebrow,
.menu-heading h2 {
  grid-column: 1;
}

.menu-heading p:last-child {
  grid-column: 2;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 1.06rem;
}

.menu-jump-nav {
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 50px;
}

.menu-jump-nav a {
  border-color: var(--line);
  color: var(--espresso);
  background: var(--cream);
}

.menu-download {
  margin: -24px 0 48px;
}

.full-menu-grid {
  display: grid;
  gap: 28px;
}

.menu-category {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.menu-category:last-child {
  border-bottom: 1px solid var(--line);
}

.menu-category-title {
  position: sticky;
  top: 104px;
  align-self: start;
}

.menu-category-title span {
  display: block;
}

.menu-category-title h2 {
  margin-bottom: 0;
  color: var(--espresso);
  font-size: clamp(2rem, 3.6vw, 4rem);
}

.menu-category-title p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.menu-item {
  min-height: 156px;
  padding: 24px;
  background: var(--paper);
}

.menu-subcategory {
  grid-column: 1 / -1;
  padding: 18px 24px;
  background: var(--espresso);
  color: var(--cream);
}

.menu-subcategory span {
  display: block;
  margin-bottom: 5px;
  color: var(--ochre);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-subcategory h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
}

.menu-item.wide {
  grid-column: 1 / -1;
}

.menu-item-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}

.menu-item h3 {
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 1.6vw, 1.45rem);
}

.menu-item-title h3 {
  margin-bottom: 0;
}

.menu-item-title strong {
  flex: 0 0 auto;
  color: var(--coral);
  font-size: 1.05rem;
  font-weight: 900;
}

.menu-item p {
  margin-top: 10px;
  margin-bottom: 0;
  color: var(--muted);
}

.menu-table-wrap {
  overflow-x: auto;
}

.menu-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--paper);
}

.menu-table th,
.menu-table td {
  padding: 16px 18px;
  border: 1px solid var(--line);
  text-align: left;
}

.menu-table th {
  background: var(--cream);
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-table td:not(:first-child) {
  color: var(--coral);
  font-weight: 900;
}

.menu-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.menu-disclaimer {
  margin-top: 44px;
  padding: 22px 24px;
  border-left: 4px solid var(--coral);
  background: var(--cream);
}

.menu-disclaimer p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.feature-section {
  min-height: 520px;
  display: grid;
  align-items: end;
  padding: 48px;
  background:
    linear-gradient(90deg, rgba(43, 36, 31, 0.04), rgba(43, 36, 31, 0.46)),
    url("assets/photos/current/tempo-bar-seating.jpg") center 58% / cover;
}

.feature-card {
  width: min(560px, 100%);
  padding: 34px;
  margin-left: auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.feature-card h2 {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.hours-section {
  background: var(--paper);
}

.hours-list {
  margin: 0;
  border-top: 1px solid var(--line);
}

.hours-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.72fr) minmax(180px, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.hours-list dt {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hours-list dd {
  margin: 0;
  color: var(--espresso);
  font-weight: 720;
}

.visit-section {
  background: var(--blue);
  color: var(--cream);
}

.visit-section .eyebrow {
  color: var(--cream);
}

.visit-section h2,
.visit-section p {
  color: var(--cream);
}

.visit-panel {
  padding: 34px;
  background: var(--cream);
  color: var(--espresso);
  box-shadow: var(--shadow);
}

.visit-panel img {
  width: 240px;
  margin-bottom: 26px;
}

.visit-panel p {
  color: var(--muted);
}

.visit-panel .button {
  width: 100%;
  margin: 8px 0 18px;
}

.directions-link {
  color: var(--blue);
  font-weight: 850;
}

.updates-section {
  background: var(--paper);
}

.article-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.article-list a {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.article-list strong {
  color: var(--espresso);
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  line-height: 1.12;
}

.simple-hero {
  padding: 136px 0 76px;
  background: var(--espresso);
  color: var(--cream);
}

.simple-hero h1 {
  max-width: 980px;
  color: var(--cream);
  font-size: clamp(3.4rem, 7.2vw, 7rem);
}

.simple-hero .lead {
  max-width: 720px;
}

.content-section {
  padding: 88px 0;
  background: var(--paper);
}

.content-section.alt {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.content-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 58px;
  align-items: start;
}

.content-copy p,
.content-copy li,
.split-grid p,
.split-grid li {
  color: var(--muted);
  font-size: 1.08rem;
}

.content-copy h2,
.split-grid h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
}

.feature-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--line);
  list-style: none;
}

.feature-list li {
  padding: 22px 24px;
  background: var(--paper);
  color: var(--espresso);
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.faq-list details {
  padding: 22px 24px;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  color: var(--espresso);
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
  color: var(--muted);
}

.article-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.article-hub-card {
  min-height: 236px;
  padding: 28px;
  background: var(--paper);
  text-decoration: none;
}

.article-hub-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
}

.article-hub-card p {
  margin: 0;
  color: var(--muted);
}

.article-body ul {
  padding-left: 22px;
}

.article-body li {
  margin-bottom: 10px;
}

footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 40px;
  background: var(--espresso);
  color: var(--cream);
}

footer img {
  width: 126px;
}

footer p {
  margin: 0;
  color: var(--ochre);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

footer a {
  color: var(--cream);
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  position: static;
  color: var(--cream);
  background: var(--espresso);
}

.legal-main {
  min-height: 70vh;
}

.legal-hero {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 34px;
}

.legal-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--espresso);
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.legal-hero .lead {
  color: var(--muted);
}

.legal-content {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 88px;
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.legal-content p {
  max-width: 76ch;
  color: var(--muted);
  font-size: 1rem;
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.article-page {
  background: var(--paper);
}

.article-page .site-header {
  position: sticky;
  background: var(--espresso);
}

.article-hero {
  padding: 126px 0 68px;
  background:
    linear-gradient(90deg, rgba(43, 36, 31, 0.93), rgba(43, 36, 31, 0.76)),
    url("assets/tempo-logo-ground-shadow-web.jpg") center / cover;
  color: var(--cream);
}

.article-hero h1 {
  max-width: 980px;
  color: var(--cream);
}

.article-body {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 96px;
  color: var(--espresso);
  font-size: 1.12rem;
}

.article-body h2 {
  margin-top: 42px;
  color: var(--espresso);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
}

.article-body a {
  color: var(--coral);
  font-weight: 850;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 22px;
    background: linear-gradient(180deg, rgba(24, 18, 15, 0.8), rgba(24, 18, 15, 0));
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }

  .simple-page .site-header,
  .menu-page .site-header,
  .article-page .site-header {
    position: sticky;
    background: var(--espresso);
  }

  .hero-content {
    padding: 150px 0 250px;
  }

  .hero-info {
    right: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }

  .intro-grid,
  .daytime-grid,
  .photo-heading,
  .photo-grid,
  .hours-grid,
  .visit-grid,
  .menu-heading,
  .menu-category,
  .content-grid,
  .split-grid,
  .article-hub-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .menu-heading .eyebrow,
  .menu-heading h2,
  .menu-heading p:last-child {
    grid-column: auto;
  }

  .menu-heading p:last-child {
    margin-bottom: 0;
  }

  .menu-category-title {
    position: static;
  }

  .photo-card-large {
    grid-row: auto;
    min-height: 430px;
  }

  .photo-card {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .inner,
  .hero-content {
    width: min(320px, calc(100vw - 48px));
  }

  .hero-content {
    margin-left: 24px;
    margin-right: auto;
  }

  .brand {
    width: 112px;
  }

  nav a {
    min-height: 34px;
    padding: 7px 9px;
    font-size: 0.68rem;
  }

  .nav-button {
    display: none;
  }

  .nav-button.team-login-link {
    display: inline-flex;
  }

  .hero {
    min-height: 850px;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(24, 18, 15, 0.54) 0%, rgba(24, 18, 15, 0.7) 48%, rgba(24, 18, 15, 0.92) 100%);
  }

  .hero-content {
    padding: 150px 0 300px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 2.85rem);
    line-height: 0.94;
    overflow-wrap: normal;
  }

  .simple-hero {
    padding: 76px 0 62px;
  }

  .simple-hero h1 {
    font-size: clamp(2.7rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.4rem);
  }

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

  .hero-info {
    grid-template-columns: 1fr;
    left: 20px;
    right: auto;
    width: min(340px, calc(100vw - 40px));
  }

  .hero-info div {
    padding: 15px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 232, 211, 0.18);
  }

  .hero-info div:last-child {
    border-bottom: 0;
  }

  .intro-section,
  .daytime-section,
  .photo-section,
  .menu-section,
  .hours-section,
  .visit-section,
  .updates-section,
  .full-menu-section,
  .content-section {
    padding: 76px 0;
  }

  .menu-list article,
  .hours-list div,
  .article-list a,
  .daypart-grid,
  .menu-items,
  .menu-action-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .photo-heading {
    gap: 24px;
    margin-bottom: 28px;
  }

  .photo-card,
  .photo-card-large {
    min-height: 360px;
  }

  .photo-card figcaption {
    left: 14px;
    bottom: 14px;
  }

  .menu-hero {
    min-height: 640px;
  }

  .menu-hero-content {
    padding: 110px 0 64px;
  }

  .menu-category {
    padding: 28px 0;
  }

  .menu-item {
    min-height: auto;
    padding: 22px;
  }

  .feature-section {
    min-height: 600px;
    padding: 20px;
  }

  .feature-card {
    padding: 26px;
  }

  .visit-panel {
    padding: 26px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 22px;
  }
}
