:root {
  color-scheme: light;
  --paper: #eee9e2;
  --paper-deep: #d8c9b7;
  --surface: #fffaf3;
  --ink: #222426;
  --ink-soft: #625a50;
  --line: #b9a994;
  --accent: #a64f2f;
  --accent-hover: #7f3821;
  --teal: #9b683e;
  --teal-deep: #68452d;
  --teal-wash: #cdbda8;
  --gold: #bd7b2c;
  --gold-wash: #e2c99d;
  --blush: #e5d8c8;
  --white: #fffaf3;
  --header-height: 72px;
  --radius: 2px;
  --content: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(84px, 11vw, 156px);
  --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);
  --display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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: 0.2em;
}

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3,
.wordmark {
  font-family: var(--display);
  font-weight: 700;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.45rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.6rem, 2.7vw, 2.3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 25%);
  background: color-mix(in srgb, var(--paper), transparent 5%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color 260ms cubic-bezier(0.16, 1, 0.3, 1), border-color 260ms cubic-bezier(0.16, 1, 0.3, 1), color 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-over-hero {
  border-bottom-color: rgb(255 255 255 / 0.24);
  background: linear-gradient(to bottom, rgb(0 0 0 / 0.22), transparent);
  color: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.menu-open .site-header {
  border-bottom-color: var(--line);
  background: var(--paper);
  color: var(--ink);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.wordmark {
  width: fit-content;
  font-size: clamp(1.65rem, 2.3vw, 2.15rem);
  font-style: italic;
  line-height: 1.1;
  text-decoration: none;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

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

.desktop-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

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

.social-link:hover {
  color: var(--accent);
}

.social-link:active,
.menu-toggle:active {
  transform: scale(0.94);
}

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

.gallery-item:active {
  transform: scale(0.985);
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 0;
  z-index: 25;
  padding: 48px var(--gutter);
  background: var(--paper);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px) scale(0.99);
  transform-origin: top center;
  transition: opacity 180ms var(--ease-out), transform 240ms var(--ease-drawer);
}

.mobile-menu.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-menu nav {
  display: grid;
  gap: 4px;
}

.mobile-menu a {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(2.1rem, 9vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  opacity: 0;
  text-decoration: none;
  transform: translateY(-10px);
  transition: opacity 140ms var(--ease-out), transform 180ms var(--ease-out);
}

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

.mobile-menu.is-visible a:nth-child(2) {
  transition-delay: 35ms;
}

.mobile-menu.is-visible a:nth-child(3) {
  transition-delay: 70ms;
}

.mobile-menu.is-visible a:nth-child(4) {
  transition-delay: 105ms;
}

.hero {
  position: relative;
  display: flex;
  isolation: isolate;
  min-height: 100dvh;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(to bottom, rgb(0 0 0 / 0.1) 0%, transparent 34%),
    linear-gradient(to top, rgb(0 0 0 / 0.52) 0%, rgb(0 0 0 / 0.1) 48%, transparent 72%),
    linear-gradient(to right, rgb(0 0 0 / 0.18) 0%, transparent 66%);
  content: "";
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, var(--content));
  flex-direction: column;
  justify-content: flex-end;
  margin-inline: auto;
  padding: calc(var(--header-height) + clamp(72px, 10vh, 132px)) var(--gutter) clamp(52px, 8vh, 92px);
  color: var(--white);
}

.hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3.5rem, 7.4vw, 6rem);
  text-wrap: balance;
  text-shadow: 0 2px 24px rgb(0 0 0 / 0.22);
}

.hero-kicker {
  margin-bottom: 24px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  opacity: 0.9;
  text-transform: uppercase;
}

.hero-summary {
  max-width: 35rem;
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgb(0 0 0 / 0.28);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--white);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 54% 48%;
  transform: translateY(18px) scale(1.05);
}

.motion-ready .hero-media {
  animation: hero-frame-in 1050ms var(--ease-out) both;
}

.motion-ready .hero-media img {
  animation: hero-image-settle 1600ms var(--ease-out) both;
}

.motion-ready .hero-copy > * {
  animation: hero-copy-in 720ms var(--ease-out) both;
}

.motion-ready .hero-copy > :nth-child(1) {
  animation-delay: 180ms;
}

.motion-ready .hero-copy > :nth-child(2) {
  animation-delay: 260ms;
}

.motion-ready .hero-copy > :nth-child(3) {
  animation-delay: 350ms;
}

.motion-ready .hero-copy > :nth-child(4) {
  animation-delay: 440ms;
}

@keyframes hero-frame-in {
  from {
    clip-path: inset(0 0 12% 0);
    opacity: 0.72;
  }
  to {
    clip-path: inset(0);
    opacity: 1;
  }
}

@keyframes hero-image-settle {
  from {
    filter: saturate(0.72) brightness(0.82);
    transform: translateY(4px) scale(1.14);
  }
  to {
    filter: saturate(1) brightness(1);
    transform: translateY(18px) scale(1.05);
  }
}

@keyframes hero-copy-in {
  from {
    filter: blur(5px);
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .button-secondary {
  border-color: rgb(255 255 255 / 0.78);
  background: rgb(15 27 20 / 0.18);
  color: var(--white);
}

.hero .button-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.section {
  max-width: var(--content);
  margin-inline: auto;
  padding: var(--section-space) var(--gutter);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: end;
  gap: clamp(54px, 8vw, 112px);
}

.story-copy p {
  max-width: 61ch;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.45vw, 1.2rem);
}

.story-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.story-image picture,
.story-image img {
  width: 100%;
  height: 100%;
}

.story-image img {
  object-fit: cover;
  object-position: 46% center;
}

.menu-section {
  max-width: none;
  background: var(--paper-deep);
}

.menu-section > * {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin-inline: auto;
}

.section-heading {
  display: grid;
  gap: 22px;
  margin-bottom: clamp(48px, 6vw, 78px);
}

.section-heading p {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

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

.menu-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 260ms var(--ease-out);
}

.menu-panel-wide {
  grid-template-rows: auto 1fr;
}

.menu-image {
  overflow: hidden;
}

.menu-image picture,
.menu-image img {
  width: 100%;
  height: 100%;
}

.menu-image img {
  object-fit: cover;
  transition: transform 280ms var(--ease-out), filter 280ms ease;
}

.menu-image-portrait {
  aspect-ratio: 3 / 4;
}

.menu-image-portrait img {
  object-position: center 55%;
}

.menu-content {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: space-between;
  gap: 32px;
  padding: clamp(26px, 4vw, 44px);
}

.menu-content > :first-child {
  min-height: 8.8rem;
}

.menu-content > :last-child {
  align-self: start;
}

.menu-content p {
  max-width: 35ch;
  margin-top: 10px;
  color: var(--ink-soft);
}

.menu-list {
  display: grid;
  gap: 2px;
}

.menu-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list > div:last-child {
  border-bottom: 0;
}

.menu-list dt {
  font-weight: 700;
}

.menu-list dd {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.counter-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.counter-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.counter-list li:last-child {
  border-bottom: 0;
}

.signature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.signature-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.signature-image picture,
.signature-image img {
  width: 100%;
  height: 100%;
}

.signature-image img {
  object-fit: cover;
  object-position: center;
}

.signature-copy blockquote {
  margin-top: 38px;
}

.signature-copy blockquote p {
  font-family: var(--display);
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.signature-copy blockquote footer {
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
}

.gallery-section {
  max-width: none;
  background: var(--blush);
}

.gallery-section > * {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin-inline: auto;
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper-deep);
  cursor: zoom-in;
  transform-origin: center bottom;
  transition: transform 260ms var(--ease-out);
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  content: "";
  pointer-events: none;
  transition: border-color 180ms ease;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  border-color: var(--accent);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms var(--ease-out);
}

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

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

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

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

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

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

.reviews-section .section-heading {
  max-width: 720px;
}

.reviews-section h2 {
  max-width: none;
}

.reviews-title-line {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 22px;
}

.review-stack {
  display: grid;
  gap: 22px;
}

.review {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: background-color 220ms ease, border-color 220ms ease, transform 260ms var(--ease-out);
}

.review-featured {
  min-height: 520px;
  background: var(--gold-wash);
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 800;
}

.review-stars {
  letter-spacing: 0.08em;
}

.review blockquote {
  margin: 28px 0;
  font-family: var(--display);
  font-size: clamp(1.28rem, 2.2vw, 2rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.review:not(.review-featured) blockquote {
  font-size: clamp(1.13rem, 1.6vw, 1.45rem);
}

.review-author {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 14px;
}

.review-author img,
.avatar-fallback {
  grid-area: 1 / 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.avatar-fallback {
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
}

.review-author img {
  position: relative;
  object-fit: cover;
}

.review-author > div {
  grid-column: 2;
}

.review-author strong,
.review-author a {
  display: block;
}

.review-author a {
  width: fit-content;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.review-author a::after {
  display: inline-block;
  margin-left: 0.28em;
  content: "↗";
  transition: transform 180ms var(--ease-out);
}

.visit-section {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  padding: 0;
  background: var(--teal-wash);
}

.visit-details {
  padding: var(--section-space) var(--gutter);
}

.visit-details address {
  margin-top: 36px;
  font-style: normal;
  font-weight: 700;
}

.phone-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 1.08rem;
  font-weight: 800;
}

.hours {
  max-width: 470px;
  margin-top: 44px;
}

.hours h3 {
  margin-bottom: 18px;
  font-family: var(--body);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

.hours dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 26px;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.hours dt {
  font-weight: 700;
}

.hours dd {
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
}

.map-wrap {
  min-height: 720px;
}

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

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  align-items: end;
  gap: 48px;
  padding: 60px var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-brand p {
  margin-top: 16px;
  color: var(--ink-soft);
}

.footer-brand > a:last-child {
  display: block;
  width: fit-content;
  margin-top: 3px;
  font-weight: 800;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}

.footer-social {
  display: flex;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  padding: 76px clamp(12px, 3vw, 40px) 36px;
  background: rgb(20 29 24 / 0.96);
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}

.lightbox[hidden] {
  display: none;
}

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

.lightbox figure {
  display: grid;
  max-width: min(1200px, 100%);
  max-height: calc(100dvh - 120px);
  place-items: center;
  justify-self: center;
  filter: blur(5px);
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  transition: filter 220ms ease, opacity 180ms var(--ease-out), transform 260ms var(--ease-drawer);
}

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

.lightbox:not(.is-open) figure {
  transition-duration: 140ms;
}

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

.lightbox button {
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  transition: opacity 180ms ease, transform 160ms var(--ease-out);
}

.lightbox.is-open button {
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 52px;
  height: 52px;
  font-size: 2.4rem;
  line-height: 1;
}

.lightbox-nav {
  width: 56px;
  height: 72px;
  font-size: 3.2rem;
  line-height: 1;
}

.lightbox-next {
  justify-self: end;
}

.motion-ready .reveal {
  filter: blur(7px);
  opacity: 0;
  transform: translateY(34px);
  transition: filter 780ms ease, opacity 680ms var(--ease-out), transform 780ms var(--ease-out);
}

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

.motion-ready .story-image.reveal,
.motion-ready .signature-image.reveal {
  clip-path: inset(0 0 16% 0);
  transform: translateY(38px) scale(0.98);
  transition: clip-path 900ms var(--ease-in-out), filter 780ms ease, opacity 680ms var(--ease-out), transform 900ms var(--ease-out);
}

.motion-ready .story-image.reveal.is-visible,
.motion-ready .signature-image.reveal.is-visible {
  clip-path: inset(0);
  transform: translateY(0) scale(1);
}

.motion-ready .menu-grid .reveal:nth-child(2),
.motion-ready .gallery-grid .reveal:nth-child(2),
.motion-ready .review-stack .reveal:nth-child(2) {
  transition-delay: 55ms;
}

.motion-ready .menu-grid .reveal:nth-child(3),
.motion-ready .gallery-grid .reveal:nth-child(3) {
  transition-delay: 110ms;
}

.motion-ready .gallery-grid .reveal:nth-child(4) {
  transition-delay: 165ms;
}

.motion-ready .gallery-grid .reveal:nth-child(5) {
  transition-delay: 220ms;
}

.motion-ready .gallery-grid .reveal:nth-child(6) {
  transition-delay: 275ms;
}

.motion-ready .menu-panel.reveal.is-settled,
.motion-ready .gallery-item.reveal.is-settled {
  transition: transform 260ms var(--ease-out);
}

.motion-ready .review.reveal.is-settled {
  transition: background-color 220ms ease, border-color 220ms ease, transform 260ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover {
    transform: translateY(-3px) scale(1.04);
  }

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

  .menu-panel:hover,
  .motion-ready .menu-panel.reveal.is-settled:hover {
    transform: translateY(-10px);
  }

  .menu-panel:hover .menu-image img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.055);
  }

  .gallery-item:hover,
  .motion-ready .gallery-item.reveal.is-settled:hover {
    transform: translateY(-10px) rotate(0.35deg);
  }

  .gallery-item:nth-child(even):hover,
  .motion-ready .gallery-item.reveal.is-settled:nth-child(even):hover {
    transform: translateY(-10px) rotate(-0.35deg);
  }

  .gallery-item:hover img {
    transform: scale(1.065);
  }

  .review:hover,
  .motion-ready .review.reveal.is-settled:hover {
    border-color: color-mix(in srgb, var(--accent), var(--line) 52%);
    background: var(--white);
    transform: translateY(-7px);
  }

  .review-author a:hover::after {
    transform: translate(3px, -3px);
  }

  .lightbox button:hover {
    transform: scale(1.08);
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: clamp(3rem, 6vw, 4.8rem);
  }

  .story,
  .signature {
    gap: 52px;
  }

  .counter-list {
    grid-template-columns: 1fr;
  }

}

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

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions .social-link {
    display: none;
  }

  .hero {
    min-height: 100dvh;
  }

  .hero-copy {
    justify-content: flex-end;
    padding-top: calc(var(--header-height) + 72px);
    padding-bottom: clamp(38px, 7vh, 64px);
  }

  .hero-kicker {
    margin-bottom: 16px;
  }

  .hero-summary {
    max-width: 31rem;
    margin-top: 18px;
  }

  .hero-cta {
    margin-top: 24px;
  }

  .hero-media img {
    object-position: 54% 48%;
  }

  .story,
  .signature,
  .reviews-layout,
  .visit-section {
    grid-template-columns: 1fr;
  }

  .story {
    align-items: start;
  }

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

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

  .menu-content > :first-child {
    min-height: 0;
  }

  .menu-panel-wide {
    grid-row: auto;
  }

  .menu-image-portrait {
    aspect-ratio: 3 / 4;
  }

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

  .review-featured {
    min-height: 420px;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .footer-social {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

@media (max-width: 600px) {
  h1 {
    max-width: 11ch;
    font-size: clamp(2.65rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 15vw, 4.5rem);
  }

  .hero::after {
    background:
      linear-gradient(to bottom, rgb(0 0 0 / 0.14) 0%, transparent 28%),
      linear-gradient(to top, rgb(0 0 0 / 0.58) 0%, rgb(0 0 0 / 0.16) 54%, transparent 78%);
  }

  .hero-summary {
    max-width: 30ch;
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .hero-cta,
  .visit-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    width: 100%;
    padding-inline: 16px;
  }

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

  .story {
    gap: 44px;
  }

  .story-image {
    width: 100%;
  }

  .menu-grid {
    gap: 16px;
  }

  .menu-content {
    gap: 26px;
  }

  .signature {
    gap: 42px;
  }

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

  .gallery-item {
    aspect-ratio: 3 / 4;
  }

  .reviews-layout,
  .review-stack {
    gap: 14px;
  }

  .review-featured {
    min-height: 0;
  }

  .review blockquote,
  .review:not(.review-featured) blockquote {
    font-size: 1.35rem;
  }

  .visit-details {
    padding-top: 82px;
    padding-bottom: 82px;
  }

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

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 40px 24px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .footer-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .lightbox {
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    padding-inline: 4px;
  }

  .lightbox-nav {
    width: 48px;
  }
}

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

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

  .motion-ready .reveal {
    clip-path: none;
    filter: none;
    opacity: 1;
    transform: none;
  }

  .motion-ready .hero-media,
  .motion-ready .hero-media img,
  .motion-ready .hero-copy > * {
    animation: none;
  }

  .mobile-menu,
  .lightbox figure {
    filter: none;
    transform: none;
  }

  .social-link:hover,
  .button:hover,
  .menu-panel:hover,
  .motion-ready .menu-panel.reveal.is-settled:hover,
  .gallery-item:hover,
  .motion-ready .gallery-item.reveal.is-settled:hover,
  .gallery-item:nth-child(even):hover,
  .motion-ready .gallery-item.reveal.is-settled:nth-child(even):hover,
  .review:hover,
  .motion-ready .review.reveal.is-settled:hover,
  .lightbox button:hover {
    transform: none;
  }

  .menu-panel:hover .menu-image img,
  .gallery-item:hover img {
    transform: none;
  }
}

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