:root {
  --paper: #f5efe5;
  --paper-soft: #f1ded0;
  --ink: #241d18;
  --muted: #67584c;
  --line: #c8b5a1;
  --accent: #b8432c;
  --accent-deep: #853126;
  --accent-light: #ffe9de;
  --olive: #3f5a46;
  --olive-soft: #d8e4d2;
  --gold: #d58a2f;
  --white: #fffaf2;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-drawer: cubic-bezier(0.32, 0.72, 0, 1);
  --header-height: 68px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

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

a:hover {
  color: var(--accent);
}

button,
input,
textarea,
select {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
iframe:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin-top: 0;
}

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3,
.wordmark {
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-stretch: condensed;
}

h2 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 5.3vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

h3 {
  margin-bottom: 8px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(18px, 4vw, 58px);
  color: var(--ink);
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: color 220ms ease, background-color 260ms var(--ease-out), border-color 220ms ease;
}

.site-header.is-solid {
  color: var(--ink);
  border-bottom-color: var(--line);
  background: var(--paper);
}

.wordmark {
  color: inherit;
  font-size: 1.06rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
}

.wordmark:hover {
  color: inherit;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  height: 100%;
}

.desktop-nav > a:not(.social-link) {
  position: relative;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav > a:not(.social-link)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.social-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease, transform 160ms var(--ease-out);
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  color: inherit;
  border: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 160ms var(--ease-out);
}

.menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transform-origin: center;
  transition: opacity 160ms ease, transform 240ms var(--ease-out);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-4%) scale(0.985);
  transform-origin: top center;
  transition: opacity 220ms ease, transform 320ms var(--ease-drawer), visibility 320ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__close {
  justify-self: end;
  padding: 8px 0;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.mobile-menu nav a {
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(3.5rem, 17vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-decoration: none;
  opacity: 0;
  transform: translateY(28px);
  transition: color 180ms ease, opacity 260ms ease, transform 360ms var(--ease-out);
}

.mobile-menu.is-open nav a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.is-open nav a:nth-child(2) {
  transition-delay: 55ms;
}

.mobile-menu.is-open nav a:nth-child(3) {
  transition-delay: 110ms;
}

.mobile-menu.is-instant,
.mobile-menu.is-instant nav a {
  transition-duration: 0ms;
  transition-delay: 0ms;
}

.mobile-menu__social {
  justify-self: start;
  border: 1px solid var(--ink);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
}

.hero__image,
.hero__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -2;
  display: block;
  object-fit: cover;
  object-position: 52% 50%;
  will-change: transform;
}

.js .hero__image {
  filter: saturate(0.88) brightness(0.92);
  transform: scale(1.1);
}

.js.is-ready .hero__image {
  filter: saturate(1) brightness(1);
  transform: scale(1);
  transition: filter 1100ms ease, transform 1400ms var(--ease-out);
}

.hero__scrim {
  z-index: -1;
  background: linear-gradient(to top, rgb(22 21 20 / 0.28), rgb(22 21 20 / 0.1));
}

.hero__content {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: calc(var(--header-height) + 56px) clamp(20px, 5vw, 72px) clamp(42px, 7vw, 86px);
  color: var(--white);
  text-shadow: 0 2px 22px rgb(20 20 20 / 0.36);
}

.js .hero h1,
.js .hero__content > p,
.js .hero__actions {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px);
}

.js.is-ready .hero h1,
.js.is-ready .hero__content > p,
.js.is-ready .hero__actions {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 700ms ease, filter 620ms ease, transform 820ms var(--ease-out);
}

.js.is-ready .hero__content > p {
  transition-delay: 110ms;
}

.js.is-ready .hero__actions {
  transition-delay: 210ms;
}

.hero h1 {
  max-width: 8ch;
  margin-bottom: 18px;
  font-size: clamp(3.55rem, 11vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.82;
}

.hero__content > p {
  max-width: 31rem;
  margin-bottom: 26px;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.45;
}

.hero__actions,
.visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  font-size: 0.91rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transform-origin: center;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 160ms var(--ease-out);
}

.button:active {
  transform: scale(0.965);
}

.button--light {
  color: var(--ink);
  border: 1px solid var(--white);
  background: var(--white);
  text-shadow: none;
}

.button--light:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.button--outline-light {
  color: var(--white);
  border: 1px solid rgb(249 247 242 / 0.82);
  background: rgb(29 29 27 / 0.18);
}

.button--outline-light:hover {
  color: var(--ink);
  border-color: var(--white);
  background: var(--white);
  text-shadow: none;
}

.button--dark {
  color: var(--white);
  border: 1px solid var(--ink);
  background: var(--ink);
}

.button--dark:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.button--outline-dark {
  color: var(--ink);
  border: 1px solid var(--ink);
  background: transparent;
}

.button--outline-dark:hover {
  color: var(--white);
  border-color: var(--accent);
  background: var(--accent);
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 144px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(38px, 6vw, 68px);
}

.section-heading > p:last-child,
.intro__copy > p {
  max-width: 60ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.section-tag {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
}

.intro__copy {
  padding-left: clamp(0px, 3vw, 40px);
}

.intro__copy > p {
  margin-bottom: 28px;
}

.text-link {
  display: inline-block;
  color: var(--ink);
  font-weight: 750;
  text-decoration-color: var(--accent);
}

.media-portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.media-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 480ms ease, transform 620ms var(--ease-out);
}

.intro__media img {
  object-position: 48% 55%;
}

.food {
  width: 100%;
  max-width: none;
  padding-inline: max(clamp(20px, 5vw, 72px), calc((100vw - var(--max-width)) / 2 + 72px));
  border-top: 1px solid var(--accent);
  background: var(--accent);
  color: var(--white);
}

.food .section-heading > p:last-child,
.food-card p {
  color: var(--accent-light);
}

.food .section-tag {
  color: var(--accent-light);
}

.food h2,
.food h3 {
  color: var(--white);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 28px);
}

.food-card {
  min-width: 0;
  padding-top: 12px;
  border-top: 3px solid var(--accent-light);
}

.food-card:nth-child(2) {
  border-top-color: var(--olive-soft);
}

.food-card__image {
  margin-bottom: 24px;
  background: var(--paper-soft);
}

.food-card:first-child img {
  object-position: 43% 54%;
}

.food-card:nth-child(2) img {
  object-position: 50% 48%;
}

.food-card:nth-child(3) img {
  object-position: 51% 48%;
}

.food-card p {
  max-width: 34ch;
}

.service-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  padding-inline: max(clamp(20px, 5vw, 72px), calc((100vw - var(--max-width)) / 2 + 72px));
  margin: 0 auto;
  border-top: 1px solid var(--olive);
  border-bottom: 1px solid var(--olive);
  background: var(--olive);
  color: var(--white);
}

.service-band__item {
  padding: 38px 28px 40px;
  border-right: 1px solid var(--olive-soft);
  transition: background-color 220ms ease, transform 220ms var(--ease-out);
}

.service-band__item:last-child {
  border-right: 0;
}

.service-band strong,
.service-band span {
  display: block;
}

.service-band strong {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.1;
}

.service-band span {
  color: var(--olive-soft);
  font-size: 0.91rem;
  line-height: 1.45;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  background: var(--paper-soft);
  cursor: zoom-in;
  transition: transform 220ms var(--ease-out);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(249 247 242 / 0);
  content: "";
  pointer-events: none;
  transition: border-color 220ms ease, inset 320ms var(--ease-out);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  inset: 10px;
  border-color: rgb(249 247 242 / 0.82);
}

.gallery-item:first-child img,
.gallery-item:nth-child(2) img {
  object-position: 50% 52%;
}

.gallery-item:nth-child(3) img {
  object-position: 50% 48%;
}

.gallery-item:nth-child(4) img,
.gallery-item:nth-child(5) img {
  object-position: 50% 52%;
}

.gallery-item:nth-child(6) img {
  object-position: 50% 46%;
}

.reviews {
  width: 100%;
  max-width: none;
  padding-inline: max(clamp(20px, 5vw, 72px), calc((100vw - var(--max-width)) / 2 + 72px));
  background: var(--paper-soft);
}

.reviews__heading {
  display: flex;
  gap: 36px;
  align-items: end;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto clamp(40px, 5vw, 64px);
}

.reviews__heading h2 {
  margin-bottom: 18px;
}

.rating {
  margin-bottom: 0;
  color: var(--muted);
}

.rating strong {
  color: var(--accent-deep);
  font-size: 1.45rem;
}

.rating span,
.review__stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--line);
}

.review {
  display: flex;
  min-height: 310px;
  padding: clamp(28px, 3vw, 42px);
  flex-direction: column;
  background: var(--paper);
  transition: background-color 220ms ease, transform 260ms var(--ease-out);
}

.review__stars {
  margin-bottom: 28px;
}

.review blockquote {
  margin-bottom: auto;
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.review__author {
  margin: 0;
  font-weight: 800;
}

.review__identity {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 28px 0 6px;
}

.review__avatar-link {
  display: block;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: var(--paper-soft);
  border-radius: 50%;
  transition: transform 220ms var(--ease-out);
}

.review__avatar {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review a {
  width: fit-content;
  color: var(--muted);
  font-size: 0.84rem;
}

.visit {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  min-height: 690px;
  border-top: 1px solid var(--line);
}

.visit__details {
  display: flex;
  padding: clamp(72px, 9vw, 132px) clamp(24px, 7vw, 104px);
  flex-direction: column;
  justify-content: center;
}

.visit__details h2 {
  max-width: 9ch;
}

.visit address {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.1rem;
  font-style: normal;
}

.visit__phone {
  width: fit-content;
  margin-bottom: 36px;
  font-family: "Arial Narrow", "Segoe UI", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.hours {
  max-width: 470px;
  margin-bottom: 38px;
}

.hours div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  color: var(--muted);
}

.visit__map {
  min-height: 540px;
  background: var(--olive-soft);
}

.visit__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 690px;
  border: 0;
}

.site-footer {
  display: flex;
  gap: 36px;
  align-items: end;
  justify-content: space-between;
  padding: 52px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--olive);
  background: var(--olive);
  color: var(--white);
}

.wordmark--footer {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.site-footer p {
  margin-bottom: 4px;
  color: var(--olive-soft);
}

.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-footer nav > a:not(.social-link) {
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 72px clamp(18px, 4vw, 52px) 34px;
  color: var(--white);
  background: rgb(20 20 19 / 0.96);
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 280ms;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox figure {
  display: grid;
  max-height: calc(100svh - 112px);
  margin: 0;
  place-items: center;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(24px) scale(0.95);
  transition: opacity 220ms ease, filter 260ms ease, transform 340ms var(--ease-drawer);
}

.lightbox.is-open figure {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.lightbox img {
  display: block;
  max-width: 100%;
  max-height: calc(100svh - 146px);
  object-fit: contain;
}

.lightbox figcaption {
  max-width: 70ch;
  margin-top: 12px;
  color: rgb(249 247 242 / 0.82);
  font-size: 0.86rem;
  text-align: center;
}

.lightbox button {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--white);
  border: 1px solid rgb(249 247 242 / 0.55);
  background: rgb(249 247 242 / 0.04);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 140ms var(--ease-out);
}

.lightbox button:active {
  transform: scale(0.95);
}

.lightbox button:hover {
  border-color: var(--white);
  background: rgb(249 247 242 / 0.12);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.lightbox.is-instant,
.lightbox.is-instant figure {
  transition-duration: 0ms;
}

.js .reveal.is-reveal-ready {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(36px) scale(0.985);
  transition: opacity 620ms ease, filter 520ms ease, transform 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (hover: hover) and (pointer: fine) {
  .desktop-nav > a:not(.social-link):hover::after,
  .desktop-nav > a:not(.social-link):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .social-link:hover {
    transform: translateY(-3px) rotate(-5deg) scale(1.08);
  }

  .menu-toggle:hover {
    background: var(--paper-soft);
    transform: rotate(2deg) scale(1.04);
  }

  .button:hover {
    transform: translateY(-3px) scale(1.015);
  }

  .text-link {
    transition: color 180ms ease, transform 220ms var(--ease-out);
  }

  .text-link:hover {
    transform: translateX(5px);
  }

  .intro__media:hover img,
  .food-card:hover .food-card__image img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.045);
  }

  .service-band__item:hover {
    background: #4b6952;
    transform: translateY(-5px);
  }

  .gallery-item:hover {
    transform: translateY(-7px) rotate(-0.35deg);
  }

  .gallery-item:nth-child(even):hover {
    transform: translateY(-7px) rotate(0.35deg);
  }

  .gallery-item:hover img,
  .gallery-item:focus-visible img {
    filter: saturate(1.1) contrast(1.04);
    transform: scale(1.075);
  }

  .review:hover {
    background: var(--white);
    transform: translateY(-7px);
  }

  .review__avatar-link:hover {
    transform: rotate(-5deg) scale(1.1);
  }
}

@media (max-width: 900px) {
  .intro {
    grid-template-columns: 1fr 0.78fr;
    gap: 44px;
  }

  .service-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-band__item:nth-child(2) {
    border-right: 0;
  }

  .service-band__item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--olive-soft);
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .review {
    min-height: auto;
  }

  .review blockquote {
    max-width: 34ch;
  }

  .visit {
    grid-template-columns: 1fr;
  }

  .visit__map,
  .visit__map iframe {
    min-height: 520px;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 64px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__image {
    object-position: 51% 50%;
  }

  .hero__content {
    padding-right: 20px;
    padding-bottom: max(38px, 7svh);
    padding-left: 20px;
  }

  .hero h1 {
    max-width: 4.8ch;
    font-size: clamp(3.2rem, 15vw, 4.8rem);
    line-height: 0.84;
  }

  .mobile-menu nav a {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero__content > p {
    max-width: 19rem;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro__copy {
    padding-left: 0;
  }

  .intro__media {
    width: min(100%, 480px);
  }

  .food-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .food-card__image {
    margin-bottom: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item {
    width: 100%;
  }

  .reviews__heading {
    align-items: start;
    flex-direction: column;
  }

  .visit__details {
    padding-inline: 20px;
  }

  .visit__actions .button {
    flex: 1 1 150px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .site-footer nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 72px 16px 18px;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .lightbox__nav--prev,
  .lightbox__nav--next {
    grid-row: 2;
  }
}

@media (max-width: 480px) {
  .hero__actions,
  .visit__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    padding-inline: 16px;
  }

  .service-band {
    grid-template-columns: 1fr;
  }

  .service-band__item,
  .service-band__item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--olive-soft);
  }

  .service-band__item:last-child {
    border-bottom: 0;
  }

  .hours div {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .visit__map,
  .visit__map iframe {
    min-height: 460px;
  }
}

@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;
  }

  .js .hero__image,
  .js .hero h1,
  .js .hero__content > p,
  .js .hero__actions,
  .js .reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .button:active,
  .lightbox button:active {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: transparent;
  }

  .site-header.is-solid {
    background: var(--paper);
  }
}
