:root {
  color-scheme: light;
  --ink: #021A4D;
  --muted: #4C6590;
  --paper: #F7EDDC;
  --surface: #FFFAF1;
  --soft-blue: #DCEBFF;
  --accent: #1565CF;
  --accent-dark: #0B4AA8;
  --brick: #D09473;
  --brick-dark: #A16947;
  --line: #B8CBE5;
  --header: rgba(11, 74, 168, 0.94);
  --focus: #D09473;
  --radius: 2px;
  --shadow: 0 20px 50px rgba(2, 26, 77, 0.16);
  --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);
  --font-display: "Gill Sans", "Trebuchet MS", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

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

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 10vw, 140px);
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1;
}

h2 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 6vw, 5.5rem);
}

h3 {
  font-size: 1.6rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 68px;
  padding: 8px clamp(16px, 4vw, 52px);
  background: transparent;
  color: var(--paper);
  box-shadow: 0 1px 0 transparent;
  backdrop-filter: blur(0);
  transition: background-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out), backdrop-filter 240ms var(--ease-out);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: var(--header);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-link img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  white-space: nowrap;
}

.desktop-nav a,
.footer-nav a {
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav a {
  position: relative;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  text-decoration: none;
}

.social-link svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  transition: transform 240ms var(--ease-out);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms var(--ease-drawer), opacity 150ms var(--ease-out);
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: 68px 0 0;
  z-index: 19;
  min-height: calc(100dvh - 68px);
  padding: 48px 24px 32px;
  background: var(--paper);
  color: var(--ink);
  opacity: 0;
  transform: translateY(-18px) scale(0.985);
  transform-origin: top right;
  transition: opacity 200ms var(--ease-out), transform 260ms var(--ease-drawer);
  will-change: opacity, transform;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu > a {
  display: block;
  padding-block: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 12vw, 4rem);
  font-weight: 650;
  line-height: 1.1;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: color 180ms var(--ease-out), opacity 220ms var(--ease-out), transform 280ms var(--ease-drawer);
}

.mobile-menu.is-open {
  opacity: 1;
  transform: none;
}

.mobile-menu.is-open > a {
  opacity: 1;
  transform: none;
}

.mobile-menu.is-open > a:nth-child(1) { transition-delay: 35ms; }
.mobile-menu.is-open > a:nth-child(2) { transition-delay: 70ms; }
.mobile-menu.is-open > a:nth-child(3) { transition-delay: 105ms; }
.mobile-menu.is-open > a:nth-child(4) { transition-delay: 140ms; }

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

.mobile-socials {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.mobile-socials .social-link {
  color: var(--accent-dark);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 56%;
}

.js .hero-image {
  transform: scale(1.075);
  transition: transform 1400ms var(--ease-out);
  will-change: transform;
}

.js body.is-ready .hero-image {
  transform: scale(1);
}

.hero-overlay {
  background: linear-gradient(to bottom, rgba(2, 26, 77, 0.14), rgba(2, 26, 77, 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100svh;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 90px 0 44px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.eyebrow {
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1080px;
  margin-bottom: 20px;
  font-size: clamp(3.35rem, 8vw, 6.4rem);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.22);
}

.hero-content > p:not(.eyebrow) {
  max-width: 530px;
  margin-bottom: 26px;
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.js .hero .eyebrow,
.js .hero h1,
.js .hero-content > p:not(.eyebrow),
.js .hero-actions {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 720ms var(--ease-out), transform 820ms var(--ease-out);
}

.js body.is-ready .hero .eyebrow,
.js body.is-ready .hero h1,
.js body.is-ready .hero-content > p:not(.eyebrow),
.js body.is-ready .hero-actions {
  opacity: 1;
  transform: none;
}

.js body.is-ready .hero .eyebrow { transition-delay: 80ms; }
.js body.is-ready .hero h1 { transition-delay: 150ms; }
.js body.is-ready .hero-content > p:not(.eyebrow) { transition-delay: 225ms; }
.js body.is-ready .hero-actions { transition-delay: 300ms; }

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(2, 26, 77, 0);
  transition: transform 180ms var(--ease-out), background-color 180ms var(--ease-out), color 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:active,
.gallery-item:active,
.menu-toggle:active,
.social-link:active,
.lightbox-close:active,
.lightbox-prev:active,
.lightbox-next:active {
  transform: scale(0.97);
}

.button-light {
  background: var(--accent);
  color: var(--paper);
}

.button-outline {
  border-color: rgba(252, 245, 230, 0.82);
  background: rgba(2, 26, 77, 0.28);
  color: var(--paper);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--accent);
  color: var(--paper);
}

.intro-band p {
  margin: 0;
  padding: 20px 12px;
  border-right: 1px solid rgba(208, 148, 115, 0.42);
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.6vw, 1.06rem);
  font-weight: 650;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr;
  gap: clamp(48px, 10vw, 130px);
  align-items: center;
}

.about-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent-dark);
  font-weight: 750;
  transition: color 180ms var(--ease-out), text-underline-offset 180ms var(--ease-out);
}

.about-media,
.menu-image,
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.about-media {
  margin: 0;
  box-shadow: var(--shadow);
}

.about-media img,
.menu-image img,
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out);
}

.about-media img {
  object-position: 50% 52%;
}

.menu-section {
  background: var(--soft-blue);
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading p,
.visit-header p {
  max-width: 610px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.menu-card {
  background: var(--surface);
  box-shadow: 0 8px 30px rgba(2, 26, 77, 0.10);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.menu-image img {
  object-position: 50% 50%;
}

.menu-copy {
  padding: 28px 26px 30px;
}

.menu-copy h3 {
  margin-bottom: 10px;
}

.menu-copy p {
  min-height: 3.2em;
  margin-bottom: 22px;
  color: var(--muted);
}

.menu-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-copy li {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.menu-copy li:last-child {
  border-bottom: 0;
}

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

.gallery-item {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--soft-blue);
  cursor: zoom-in;
  box-shadow: var(--shadow);
  transition: transform 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
}

.gallery-item::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(2, 26, 77, 0.82);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px) rotate(-18deg) scale(0.82);
  transition: opacity 180ms var(--ease-out), transform 240ms var(--ease-out);
  pointer-events: none;
}

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

.reviews-section {
  background: var(--surface);
  scroll-margin-top: 80px;
}

.reviews-heading {
  display: flex;
  margin-bottom: 16px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

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

.reviews-source {
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews-source a {
  color: var(--accent-dark);
  font-weight: 650;
}

.rating-link {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.rating-link span,
.stars {
  color: var(--brick-dark);
  letter-spacing: 0.08em;
}

.reviews-list {
  border-top: 2px solid var(--accent);
}

.review {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 150px;
  grid-template-areas: "identity copy link";
  gap: clamp(24px, 4vw, 56px);
  padding: 32px 0 36px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  transition: background-color 220ms var(--ease-out), transform 220ms var(--ease-out);
}

.review-identity {
  display: flex;
  grid-area: identity;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.review-copy {
  margin-bottom: 0;
  grid-area: copy;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 38ch;
  align-self: center;
}

.review-meta {
  display: flex;
  align-items: flex-start;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soft-blue);
  object-fit: cover;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author cite {
  font-style: normal;
  font-weight: 750;
}

.review-author-link {
  color: inherit;
  text-decoration: none;
}

.review-link {
  grid-area: link;
  align-self: center;
  color: var(--accent-dark);
  font-size: 0.9rem;
}

.visit-header {
  margin-bottom: 52px;
}

.visit-grid {
  display: block;
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.visit-details .detail-group {
  grid-area: auto;
}

.detail-group h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.detail-group address {
  font-style: normal;
}

.hours-list {
  margin-bottom: 0;
}

.hours-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 5px 0;
}

.hours-list dd {
  margin-bottom: 0;
}

.phone-link {
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 750;
}

.map-wrap {
  margin-top: 58px;
  overflow: hidden;
  background: var(--soft-blue);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 500px;
}

.site-footer {
  padding-block: 58px;
  background: var(--accent-dark);
  color: var(--paper);
  border-top: 1px solid rgba(208, 148, 115, 0.5);
}

.site-footer a {
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.2fr 0.7fr auto;
  gap: 38px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 750;
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.footer-brand p,
.site-footer p {
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-socials {
  display: flex;
}

.lightbox {
  width: min(1000px, calc(100% - 32px));
  max-width: none;
  height: min(880px, calc(100dvh - 32px));
  max-height: none;
  padding: 64px 78px 24px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(22px) scale(0.955);
  transition: opacity 190ms var(--ease-out), transform 260ms var(--ease-drawer), display 260ms allow-discrete, overlay 260ms allow-discrete;
}

.lightbox::backdrop {
  background: rgba(8, 12, 18, 0.82);
  opacity: 0;
  transition: opacity 220ms var(--ease-out), display 220ms allow-discrete, overlay 220ms allow-discrete;
}

.lightbox[open] {
  opacity: 1;
  transform: none;
}

.lightbox[open]::backdrop {
  opacity: 1;
}

.lightbox.is-closing {
  opacity: 0;
  transform: translateY(14px) scale(0.975);
}

.lightbox.is-closing::backdrop {
  opacity: 0;
}

.lightbox.is-instant,
.lightbox.is-instant::backdrop {
  transition-duration: 0.01ms;
}

@starting-style {
  .lightbox[open] {
    opacity: 0;
    transform: translateY(22px) scale(0.955);
  }

  .lightbox[open]::backdrop {
    opacity: 0;
  }
}

.lightbox figure {
  display: grid;
  height: 100%;
  margin-bottom: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox figcaption {
  padding-top: 12px;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: var(--accent);
  color: var(--paper);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background-color 160ms var(--ease-out), border-color 160ms var(--ease-out);
}

.lightbox-close {
  top: 16px;
  right: 16px;
  padding: 8px 12px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 54px;
  height: 54px;
  transform: translateY(-50%);
}

.lightbox-prev:active,
.lightbox-next:active {
  transform: translateY(-50%) scale(0.94);
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(38px) scale(0.985);
  transition: opacity 620ms var(--ease-out), transform 760ms var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .menu-card.reveal,
.js .gallery-item.reveal,
.js .about-media.reveal,
.js .map-wrap.reveal {
  clip-path: inset(0 0 16% 0);
  transition: opacity 620ms var(--ease-out), transform 820ms var(--ease-out), clip-path 900ms var(--ease-out);
}

.js .menu-card.reveal.is-visible,
.js .gallery-item.reveal.is-visible,
.js .about-media.reveal.is-visible,
.js .map-wrap.reveal.is-visible {
  clip-path: inset(0);
}

.js .menu-grid .reveal:nth-child(2),
.js .gallery-grid .reveal:nth-child(2),
.js .reviews-list .reveal:nth-child(2) { transition-delay: 70ms; }

.js .menu-grid .reveal:nth-child(3),
.js .gallery-grid .reveal:nth-child(3),
.js .reviews-list .reveal:nth-child(3) { transition-delay: 140ms; }

.js .gallery-grid .reveal:nth-child(4) { transition-delay: 55ms; }
.js .gallery-grid .reveal:nth-child(5) { transition-delay: 125ms; }
.js .gallery-grid .reveal:nth-child(6) { transition-delay: 195ms; }

@media (hover: hover) and (pointer: fine) {
  .brand-link:hover img {
    transform: rotate(-7deg) scale(1.08);
    box-shadow: 0 8px 24px rgba(2, 26, 77, 0.2);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .social-link:hover svg {
    transform: rotate(-10deg) scale(1.15);
  }

  .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(2, 26, 77, 0.2);
  }

  .button-light:hover {
    background: var(--accent-dark);
  }

  .button-outline:hover {
    background: rgba(2, 26, 77, 0.56);
  }

  .text-link:hover {
    color: var(--accent);
    text-underline-offset: 7px;
  }

  .menu-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 22px 48px rgba(2, 26, 77, 0.17);
  }

  .menu-card:hover .menu-image img,
  .gallery-item:hover img {
    transform: scale(1.055);
  }

  .gallery-item:hover {
    transform: translateY(-9px) rotate(0.35deg);
    box-shadow: 0 30px 68px rgba(2, 26, 77, 0.25);
  }

  .gallery-item:hover::after {
    opacity: 1;
    transform: none;
  }

  .review:hover {
    transform: translateX(8px);
    background: rgba(220, 235, 255, 0.32);
  }

  .lightbox-close:hover,
  .lightbox-prev:hover,
  .lightbox-next:hover {
    background: var(--paper);
    border-color: var(--paper);
    color: var(--ink);
  }

  .lightbox-prev:hover,
  .lightbox-next:hover {
    transform: translateY(-50%) scale(1.08);
  }
}

@media (max-width: 900px) {
  .desktop-nav,
  .header-actions > .social-link {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

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

  .visit-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 44px;
  }

  .about-media {
    width: min(100%, 620px);
    justify-self: end;
  }

  .menu-grid {
    gap: 16px;
  }

  .review {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "identity link"
      "copy copy";
    gap: 24px 32px;
  }

  .review-copy {
    max-width: 46ch;
  }

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

@media (max-width: 767px) {
  .section-shell,
  .hero-content {
    width: min(100% - 32px, 620px);
  }

  .section {
    padding-block: 78px;
  }

  .hero-content {
    padding-top: 86px;
    padding-bottom: 32px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

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

  .intro-band p:nth-child(2) {
    border-right: 0;
  }

.intro-band p:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(208, 148, 115, 0.42);
  }

  .menu-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    gap: 26px;
  }

  .menu-copy p {
    min-height: 0;
  }

  .gallery-grid {
    gap: 14px;
  }

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

  .review {
    grid-template-columns: 1fr;
    grid-template-areas:
      "identity"
      "copy"
      "link";
    gap: 18px;
    padding: 28px 0;
  }

  .review-identity {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .review-link {
    justify-self: start;
  }

  .visit-details {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .map-wrap iframe {
    min-height: 430px;
  }

  .footer-nav {
    flex-direction: row;
    gap: 24px;
  }

  .lightbox {
    padding: 62px 18px 70px;
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 12px;
    transform: none;
  }

  .lightbox-prev:active,
  .lightbox-next:active {
    transform: scale(0.94);
  }

  @media (hover: hover) and (pointer: fine) {
    .lightbox-prev:hover,
    .lightbox-next:hover {
      transform: scale(1.08);
    }
  }
}

@media (max-width: 430px) {
  .brand-link span {
    font-size: 1.05rem;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1;
    padding-inline: 16px;
  }

  .hours-list div {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .js .hero-image,
  .js .hero .eyebrow,
  .js .hero h1,
  .js .hero-content > p:not(.eyebrow),
  .js .hero-actions {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--ink);
    backdrop-filter: none;
  }
}
