:root {
  --orange: #ef7d00;
  --orange-dark: #cf6900;
  --brown: #4a3728;
  --brown-deep: #2a211b;
  --ink: #25201b;
  --cream: #f4efe7;
  --paper: #fbf8f3;
  --white: #fffdf9;
  --muted: #70675f;
  --line: rgba(74, 55, 40, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --page: min(1240px, calc(100vw - 48px));
  --space: clamp(5rem, 10vw, 9rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--brown-deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
}

.site-header.is-scrolled,
.site-header.header-solid {
  position: fixed;
  color: var(--white);
  background: rgba(42, 33, 27, 0.94);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: var(--page);
  min-height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  transition: width 220ms ease, height 220ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 78px;
}

.site-header.is-scrolled .brand img {
  width: 58px;
  height: 58px;
}

.brand-word {
  margin-left: 0.8rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.7rem);
}

.main-nav a {
  position: relative;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 0.78rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: border-color 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  padding: 0;
  color: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 19px;
  height: 1px;
  display: block;
  content: "";
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle span {
  margin: 5px 0;
}

.menu-open .menu-toggle::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span {
  opacity: 0;
}

.menu-open .menu-toggle::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
  height: max(760px, 100svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--brown-deep);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 54%;
  animation: hero-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(26, 21, 17, 0.8) 0%, rgba(35, 28, 23, 0.4) 45%, rgba(35, 28, 23, 0.08) 75%),
    linear-gradient(0deg, rgba(25, 20, 16, 0.78) 0%, transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding: 10rem 0 clamp(5.5rem, 10vh, 8rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.35rem;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero .eyebrow {
  color: #ff9b32;
}

.hero h1,
.section-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(4rem, 8.6vw, 8.4rem);
  text-wrap: balance;
}

.hero h1 em {
  color: var(--orange);
  font-weight: 400;
}

.hero-lead {
  max-width: 610px;
  margin: 1.75rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.25rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--brown);
  color: var(--brown);
  background: transparent;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
}

.button-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--brown-deep);
  border-color: var(--white);
  background: var(--white);
}

.button svg,
.text-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-meta {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - 1240px) / 2));
  bottom: clamp(2.25rem, 5vw, 4rem);
  width: min(310px, 26vw);
  padding: 1.45rem 0 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-meta strong,
.hero-meta span {
  display: block;
}

.hero-meta strong {
  margin-bottom: 0.2rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.section {
  padding: var(--space) 0;
}

.container {
  width: var(--page);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.78fr);
  gap: clamp(3.5rem, 8vw, 8rem);
  align-items: start;
}

.intro-hours {
  position: sticky;
  top: 120px;
  scroll-margin-top: 120px;
}

.intro-hours .eyebrow {
  margin-bottom: 1.55rem;
}

.intro-copy .section-title {
  max-width: 820px;
  font-size: clamp(2.8rem, 5.8vw, 5.3rem);
}

.intro-copy .section-title em {
  color: var(--orange);
  font-weight: 400;
}

.intro-copy-text {
  max-width: 710px;
  margin-top: 2.5rem;
  columns: 2;
  column-gap: 3rem;
  color: var(--muted);
}

.intro-copy-text p {
  margin: 0;
}

.menu-feature {
  position: relative;
  overflow: hidden;
  padding-top: clamp(4.5rem, 8vw, 7rem);
  padding-bottom: clamp(4.5rem, 8vw, 7rem);
  color: var(--white);
  background: var(--brown);
}

.menu-feature::after {
  position: absolute;
  top: 50%;
  right: clamp(-11rem, -8vw, -4rem);
  width: clamp(420px, 43vw, 720px);
  aspect-ratio: 400.215 / 356.707;
  background: url("../images/Muehle.svg") center / contain no-repeat;
  content: "";
  opacity: 0.055;
  pointer-events: none;
  transform: translateY(-50%);
}

.menu-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 10vw, 9rem);
  align-items: center;
}

.menu-cover-wrap {
  position: relative;
  width: min(100%, 320px);
  margin-left: 3vw;
}

.menu-cover-wrap::before {
  position: absolute;
  inset: 7% 8% -6% -9%;
  content: "";
  background: var(--orange);
}

.menu-cover-link {
  position: relative;
  display: block;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.menu-cover-link:hover,
.menu-cover-link:focus-visible {
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.36);
  transform: translateY(-4px);
}

.menu-cover {
  width: 100%;
  height: auto;
  aspect-ratio: 1058 / 1497;
  object-fit: contain;
}

.menu-copy .eyebrow {
  color: #ff9b32;
}

.menu-copy .section-title {
  max-width: 640px;
  font-size: clamp(3.2rem, 6.6vw, 6.2rem);
}

.menu-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.menu-note {
  display: inline-block;
  margin-top: 2.1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.restaurant-section {
  background: var(--cream);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-heading-row .section-title {
  font-size: clamp(3.1rem, 6.4vw, 6.1rem);
}

.section-heading-row > p {
  max-width: 440px;
  margin: 0 0 0.6rem;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: 270px 250px;
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  cursor: zoom-in;
  background: var(--brown);
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
  grid-column: 2 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: brightness(0.82);
  transform: scale(1.035);
}

.gallery-item::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  content: "+";
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 1.3rem;
  font-weight: 200;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  width: min(1100px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  padding: 0;
  border: 0;
  background: #17120f;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox::backdrop {
  background: rgba(26, 20, 16, 0.86);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 30px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(23, 18, 15, 0.65);
  cursor: pointer;
  font-size: 1.45rem;
}

.hours-contact {
  padding: 0;
  color: var(--brown-deep);
  background: var(--orange);
}

.contact-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
  background: var(--orange);
}

.contact-panel::after {
  position: absolute;
  right: clamp(-9rem, -5vw, -3rem);
  bottom: clamp(-8rem, -7vw, -3rem);
  width: clamp(390px, 38vw, 620px);
  aspect-ratio: 400.215 / 356.707;
  background: url("../images/Muehle.svg") center / contain no-repeat;
  content: "";
  opacity: 0.08;
  pointer-events: none;
}

.contact-panel-inner {
  position: relative;
  z-index: 1;
  width: var(--page);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
  margin: 0 auto;
}

.contact-panel .eyebrow {
  color: var(--brown-deep);
}

.hours-contact .section-title {
  margin-bottom: 2.4rem;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
}

.hours-list {
  margin: 0;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

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

.hours-row dt,
.hours-row dd {
  margin: 0;
}

.hours-row dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.hours-row dd {
  font-family: var(--serif);
  font-size: 1.05rem;
  text-align: right;
}

.hours-hint {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.hours-state-special {
  display: grid;
  isolation: isolate;
}

.hours-state-special > * {
  grid-area: 1 / 1;
}

.hours-regular {
  opacity: 0.12;
  filter: grayscale(1);
  pointer-events: none;
  user-select: none;
}

.hours-notice {
  z-index: 1;
  align-self: center;
  margin: 0.75rem -1rem 0.75rem 1rem;
  padding: 1.4rem 1.45rem;
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  background: var(--white);
  box-shadow: 0 22px 55px rgba(74, 55, 40, 0.16);
}

.hours-notice-kicker {
  margin: 0 0 0.55rem;
  color: var(--orange-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hours-notice h3 {
  margin: 0;
  color: var(--brown);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.15rem);
  font-weight: 400;
  line-height: 1.05;
}

.special-hours-list {
  margin: 1.2rem 0 0;
}

.special-hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.special-hours-row:last-child {
  border-bottom: 1px solid var(--line);
}

.special-hours-row dt,
.special-hours-row dd {
  margin: 0;
}

.special-hours-row dt {
  color: var(--muted);
  font-size: 0.76rem;
}

.special-hours-row dd {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 0.9rem;
  text-align: right;
}

.hours-notice-foot,
.vacation-copy {
  color: var(--muted);
  font-size: 0.76rem;
}

.hours-notice-foot {
  margin: 1rem 0 0;
}

.vacation-copy {
  margin: 1.2rem 0 0;
  font-size: 0.85rem;
}

.vacation-copy strong,
.hours-notice-foot strong {
  color: var(--brown);
  font-weight: 700;
}

.contact-panel .section-title {
  max-width: 520px;
  color: var(--brown-deep);
}

.contact-details {
  margin: 0;
  font-style: normal;
}

.contact-phone {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--brown-deep);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  text-decoration: none;
}

.contact-address {
  color: rgba(42, 33, 27, 0.8);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.8rem;
  color: var(--brown-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  border-bottom: 1px solid currentColor;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #1c1713;
}

.footer-inner {
  width: var(--page);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  margin: 0 auto;
  padding: 2.4rem 0;
  font-size: 0.72rem;
}

.footer-logo {
  width: 46px;
  justify-self: center;
  opacity: 0.8;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.legal-page {
  padding: 11rem 0 var(--space);
}

.legal-header {
  max-width: 760px;
  margin-bottom: 4rem;
}

.legal-header .section-title {
  font-size: clamp(3.5rem, 7vw, 6.6rem);
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin: 3rem 0 0.8rem;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 2rem 0 0.6rem;
  font-size: 1rem;
}

.legal-content p,
.legal-content ul {
  color: var(--muted);
}

.legal-content a {
  color: var(--brown);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.035);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(100% - 36px, 720px);
  }

  .brand-word {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 6rem max(24px, calc((100vw - 720px) / 2));
    color: var(--white);
    background: var(--brown-deep);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .menu-open .site-header {
    position: fixed;
    inset: 0;
    height: 100dvh;
    background: var(--brown-deep);
    box-shadow: none;
    backdrop-filter: none;
  }

  .menu-open .header-inner {
    min-height: 96px;
  }

  .menu-open .brand img {
    width: 74px;
    height: 74px;
  }

  .main-nav a {
    font-family: var(--serif);
    font-size: clamp(2rem, 9vw, 3.6rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }

  .main-nav .nav-cta {
    margin-top: 1rem;
    padding: 0.8rem 1.1rem;
    font-family: var(--sans);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .menu-open .main-nav {
    position: absolute;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-meta {
    display: none;
  }

  .intro-grid,
  .menu-grid,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    gap: 3.5rem;
  }

  .intro-hours {
    position: static;
    max-width: 440px;
  }

  .intro-copy-text {
    columns: 1;
  }

  .menu-cover-wrap {
    width: min(72%, 320px);
    margin: 0 auto;
  }

  .menu-copy {
    padding-top: 1rem;
  }

  .section-heading-row {
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 220px;
  }

  .gallery-item:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .gallery-item:nth-child(2) {
    grid-column: auto;
  }

  .gallery-item:nth-child(4) {
    display: none;
  }

  .contact-panel-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-details {
    margin-top: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
  }

  .footer-logo {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --page: calc(100% - 32px);
    --space: 4.5rem;
  }

  .header-inner {
    min-height: 92px;
  }

  .brand img {
    width: 70px;
    height: 70px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 72px;
  }

  .site-header.is-scrolled .brand img {
    width: 52px;
    height: 52px;
  }

  .menu-open .header-inner {
    min-height: 92px;
  }

  .menu-open .brand img {
    width: 70px;
    height: 70px;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media img {
    object-position: 42% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(26, 21, 17, 0.9) 0%, rgba(26, 21, 17, 0.45) 68%, rgba(26, 21, 17, 0.2));
  }

  .hero-content {
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
  }

  .hero-lead {
    font-size: 1.08rem;
  }

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

  .intro-copy .section-title,
  .menu-copy .section-title,
  .section-heading-row .section-title {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .menu-cover-wrap {
    width: min(78%, 300px);
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 260px);
  }

  .gallery-item:first-child,
  .gallery-item:nth-child(2) {
    grid-column: auto;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .hours-row dd {
    text-align: left;
  }

  .hours-notice {
    margin-right: 0;
    margin-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-links {
    justify-content: flex-start;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
