:root {
  --paper: #e4c9a8;
  --paper-deep: #d6b88f;
  --mint: #7faac5;
  --mint-soft: #c4dce6;
  --ink: #2b3030;
  --ink-soft: #59534b;
  --accent: #8d513d;
  --line: rgba(82, 67, 54, 0.2);
  --shell: min(1180px, calc(100% - 40px));
  --header-h: 72px;
  --radius: 3px;
  --display: Baskerville, "Baskerville Old Face", Georgia, serif;
  --body: Avenir, "Avenir Next", "Trebuchet MS", Arial, sans-serif;
  --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);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

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

::selection {
  background: var(--accent);
  color: #fff8f5;
}

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

img {
  max-width: 100%;
}

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

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

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 32px;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #fffdf8;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 180ms ease, text-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(228, 201, 168, 0.97);
  border-bottom-color: rgba(82, 67, 54, 0.2);
  color: var(--ink);
  text-shadow: none;
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(43, 48, 48, 0.1);
}

.site-header:not(.is-scrolled) .social-links a {
  border-color: rgba(255, 255, 255, 0.68);
  color: #fffdf8;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms var(--ease-out);
}

.site-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 36px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.site-menu > a,
.footer-links > a {
  text-decoration: none;
}

.site-menu > a {
  position: relative;
  white-space: nowrap;
}

.site-menu > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms var(--ease-out);
}

.site-menu > a:focus-visible::after,
.site-menu > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background-color 180ms ease, color 180ms ease, transform 180ms var(--ease-out), box-shadow 180ms ease;
}

.social-links a:focus-visible {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-3px) rotate(-2deg);
  box-shadow: 0 8px 18px rgba(43, 48, 48, 0.16);
}

.social-links svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
}

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

.hero picture,
.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  z-index: -2;
  inset: -5% 0;
  height: 110%;
  will-change: transform;
}

.hero__image {
  display: block;
  object-fit: cover;
  object-position: 48% 52%;
  will-change: transform;
}

.hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.18) 50%, rgba(0, 0, 0, 0.08));
}

.hero__content {
  color: #f9f7f0;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: clamp(48px, 9vh, 90px);
}

.hero__content > * {
  max-width: 640px;
}

.hero__content h1 {
  margin: 10px 0 14px;
  font-family: var(--display);
  font-size: clamp(54px, 8vw, 104px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero__content > p:not(.eyebrow) {
  max-width: 510px;
  margin: 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  text-wrap: balance;
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--accent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero__scroll {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: clamp(46px, 8vh, 82px);
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #fffdf8;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero__scroll i {
  width: 1px;
  height: 58px;
  display: block;
  background: rgba(255, 255, 255, 0.76);
  transform-origin: top;
}

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

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

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

.button--primary {
  background: var(--accent);
  color: #fff8f5;
  border-color: var(--accent);
}

.button--primary:focus-visible {
  background: #8f523d;
  border-color: #8f523d;
  box-shadow: 0 10px 26px rgba(141, 81, 61, 0.28);
}

.button--glass {
  color: #fffdf8;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.button--glass:focus-visible {
  background: rgba(0, 0, 0, 0.28);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.72fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.story__copy h2,
.section-heading h2,
.reviews h2,
.visit h2 {
  margin: 10px 0 22px;
  font-family: var(--display);
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.story__copy > p:last-child,
.section-heading > p {
  max-width: 62ch;
  color: var(--ink-soft);
}

.media-frame,
.ratio-media,
.gallery-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
}

.media-frame {
  margin: 0;
}

.media-frame img,
.ratio-media img,
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story__media img {
  object-position: 50% 50%;
}

.menu-preview {
  background: var(--mint-soft);
}

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

.section-heading h2 {
  margin-top: 0;
}

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

.menu-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-top: 4px solid var(--accent);
  background: var(--paper);
  transform-origin: 50% 78%;
  transition: transform 480ms var(--ease-out), box-shadow 300ms ease;
}

.menu-card:nth-child(2) {
  transform: translateY(30px);
}

.menu-card__copy {
  padding: 26px 24px 30px;
}

.menu-card h3,
.highlight p {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.menu-card p,
.highlight span {
  margin: 0;
  color: var(--ink-soft);
}

.menu-card:nth-child(1) img {
  object-position: 50% 45%;
}

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

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

.menu-card img {
  transition: transform 700ms var(--ease-out), filter 300ms ease;
}

.highlights {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
}

.highlight {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 420ms var(--ease-out), box-shadow 280ms ease;
}

.highlight--wide {
  grid-row: span 2;
  background: var(--mint);
}

.highlight--wide p {
  font-size: clamp(38px, 5vw, 62px);
  max-width: 8ch;
}

.highlight--accent {
  grid-column: span 2;
  background: var(--accent);
  color: #fff8f5;
  border-color: var(--accent);
}

.highlight--accent span {
  color: rgba(255, 248, 245, 0.84);
}

.gallery {
  padding-top: 40px;
}

.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(--paper-deep);
  cursor: zoom-in;
  transform-origin: 50% 72%;
  transition: transform 420ms var(--ease-out), box-shadow 280ms ease;
}

.gallery-item::after {
  content: "View";
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border-radius: var(--radius);
  background: rgba(228, 201, 168, 0.94);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out);
}

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

.gallery-item img {
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:focus-visible img {
  transform: scale(1.025);
}

.gallery-item:active,
.lightbox__close:active,
.lightbox__nav:active {
  transform: scale(0.97);
}

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

.reviews {
  background: var(--paper-deep);
}

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

.reviews__heading h2 {
  margin-bottom: 0;
}

.rating,
.review__stars {
  color: var(--accent);
  letter-spacing: 0.1em;
}

.rating {
  margin: 0 0 8px;
  font-size: 25px;
}

.review-list {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0 52px;
}

.review {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: transform 360ms var(--ease-out), border-color 220ms ease;
}

.review:first-child {
  grid-row: span 2;
  padding-right: 42px;
  border-right: 1px solid var(--line);
}

.review__stars {
  margin: 0 0 16px;
  font-size: 15px;
}

.review blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.28;
}

.review:not(:first-child) blockquote {
  font-size: clamp(20px, 2.2vw, 28px);
}

.review__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  font-size: 14px;
}

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

.review__meta a {
  color: var(--accent);
  font-weight: 800;
  white-space: nowrap;
}

.visit {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) 1.42fr;
  min-height: 720px;
  padding: 0;
  background: var(--mint-soft);
}

.visit__details {
  display: grid;
  place-items: center;
  padding: 90px max(36px, 6vw);
}

.visit__inner {
  width: min(100%, 420px);
}

.visit h2 {
  margin-top: 0;
}

.visit__block {
  margin: 26px 0;
}

.visit__block h3 {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visit__block p {
  margin: 0;
}

.visit__block a {
  font-size: 20px;
  font-weight: 800;
}

.visit__map,
.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
}

.site-footer {
  padding: 64px 0 22px;
  background: var(--ink);
  color: var(--paper);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr;
  gap: 48px;
  align-items: start;
}

.site-footer p {
  margin: 0 0 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--display);
  font-size: 24px;
}

.footer-brand img {
  width: 84px;
  height: 84px;
  object-fit: cover;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.site-footer .social-links {
  margin-top: 10px;
}

.site-footer .social-links a {
  color: var(--paper);
  border-color: rgba(228, 201, 168, 0.28);
}

.site-footer .social-links a:focus-visible {
  background: var(--mint);
  color: var(--ink);
}

.site-footer__note {
  width: var(--shell);
  margin: 54px auto 0 !important;
  padding-top: 18px;
  border-top: 1px solid rgba(228, 201, 168, 0.18);
  color: rgba(228, 201, 168, 0.68);
  font-size: 12px;
}

.lightbox {
  width: min(94vw, 1120px);
  height: min(92vh, 860px);
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: #111817;
  color: #fffdf8;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transition: opacity 220ms var(--ease-out), transform 320ms var(--ease-out), display 320ms allow-discrete, overlay 320ms allow-discrete;
  transition-behavior: allow-discrete;
}

.lightbox::backdrop {
  background: rgba(7, 12, 12, 0);
  backdrop-filter: blur(6px);
  transition: background-color 260ms ease, display 260ms allow-discrete, overlay 260ms allow-discrete;
}

.lightbox[open] {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox[open]::backdrop {
  background: rgba(7, 12, 12, 0.82);
}

.lightbox__figure {
  min-width: 0;
  min-height: 0;
  height: 100%;
  margin: 0;
  padding: 28px 0 18px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
}

.lightbox__figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.lightbox__figure figcaption {
  padding-inline: 8px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 13px;
}

.lightbox__close,
.lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(17, 24, 23, 0.88);
  color: #fffdf8;
  cursor: pointer;
  transition: transform 150ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 800;
}

.lightbox__nav {
  width: 44px;
  height: 54px;
  justify-self: center;
  font-size: 34px;
  line-height: 1;
}

.js .reveal {
  opacity: 0;
  translate: 0 38px;
  scale: 0.985;
  transition: opacity 680ms var(--ease-out), translate 760ms var(--ease-out), scale 760ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__image {
    animation: hero-settle 1500ms 80ms both var(--ease-out);
  }

  .hero__content > .eyebrow,
  .hero__content > h1,
  .hero__content > p:not(.eyebrow),
  .hero__actions,
  .hero__scroll {
    animation: hero-enter 780ms both var(--ease-out);
  }

  .hero__content > .eyebrow { animation-delay: 180ms; }
  .hero__content > h1 { animation-delay: 260ms; }
  .hero__content > p:not(.eyebrow) { animation-delay: 350ms; }
  .hero__actions { animation-delay: 430ms; }
  .hero__scroll { animation-delay: 620ms; }

  .hero__scroll i {
    animation: scroll-pulse 1800ms 1100ms infinite var(--ease-in-out);
  }

  @keyframes hero-settle {
    from { transform: scale(1.08); filter: blur(2px); }
    to { transform: scale(1); filter: blur(0); }
  }

  @keyframes hero-enter {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scroll-pulse {
    0%, 100% { transform: scaleY(0.28); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
  }
}

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

  .lightbox[open]::backdrop {
    background: rgba(7, 12, 12, 0);
  }
}

@media (hover: hover) and (pointer: fine) {
  .brand:hover img {
    transform: scale(1.045) rotate(-1deg);
  }

  .site-menu > a:hover::after {
    transform: scaleX(1);
    transform-origin: left center;
  }

  .social-links a:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 0 8px 18px rgba(43, 48, 48, 0.16);
  }

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

  .button--primary:hover {
    background: #8f523d;
    border-color: #8f523d;
    box-shadow: 0 12px 28px rgba(141, 81, 61, 0.3);
  }

  .button--glass:hover {
    background: rgba(0, 0, 0, 0.32);
  }

  .menu-card:hover {
    transform: translateY(-12px) rotate(-0.45deg);
    box-shadow: 0 24px 46px rgba(43, 48, 48, 0.17);
  }

  .menu-card:nth-child(2):hover {
    transform: translateY(17px) rotate(0.55deg);
  }

  .menu-card:hover img {
    transform: scale(1.065);
    filter: saturate(1.08);
  }

  .highlight:hover {
    transform: translateY(-8px) rotate(0.35deg);
    box-shadow: 0 20px 38px rgba(43, 48, 48, 0.13);
  }

  .gallery-item:hover {
    transform: translateY(-8px) rotate(-0.45deg);
    box-shadow: 0 22px 40px rgba(43, 48, 48, 0.18);
  }

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

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

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

  .review:hover {
    transform: translateX(8px);
    border-color: rgba(141, 81, 61, 0.5);
  }

  .site-footer .social-links a:hover {
    background: var(--mint);
    color: var(--ink);
  }

  .lightbox__close:hover,
  .lightbox__nav:hover {
    transform: scale(1.06);
    background: rgba(141, 81, 61, 0.92);
    border-color: rgba(255, 255, 255, 0.56);
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
    translate: none;
    scale: none;
  }
}

@media (max-width: 900px) {
  .site-menu {
    gap: 18px;
  }

  .site-menu > a:nth-of-type(1),
  .site-menu > a:nth-of-type(4) {
    display: none;
  }

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

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

  .highlight--wide {
    grid-row: auto;
    grid-column: span 2;
  }

  .highlight--wide p {
    max-width: none;
  }

  .visit {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 767px) {
  :root {
    --shell: min(100% - 32px, 640px);
    --header-h: 64px;
  }

  .section {
    padding-block: 78px;
  }

  .site-header {
    height: var(--header-h);
    padding-inline: 16px;
  }

  .brand {
    width: 46px;
    height: 46px;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    width: 46px;
    height: 46px;
    margin-left: auto;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.16);
    color: #fffdf8;
    transition: transform 150ms var(--ease-out), background-color 180ms ease;
  }

  .site-header.is-scrolled .menu-toggle {
    border-color: var(--line);
    background: var(--paper);
    color: var(--ink);
  }

  .menu-toggle:active {
    transform: scale(0.96);
  }

  .menu-toggle__line {
    width: 100%;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform 180ms var(--ease-out);
  }

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

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

  .site-menu {
    position: fixed;
    inset: var(--header-h) 0 auto;
    min-height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 28px 20px 40px;
    background: var(--paper);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 340ms var(--ease-drawer), visibility 340ms;
  }

  .site-menu.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-menu > a,
  .site-menu > a:nth-of-type(1),
  .site-menu > a:nth-of-type(4) {
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 28px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 220ms var(--ease-out), transform 320ms var(--ease-out);
  }

  .site-menu.is-open > a {
    opacity: 1;
    transform: translateX(0);
  }

  .site-menu.is-open > a:nth-of-type(1) { transition-delay: 70ms; }
  .site-menu.is-open > a:nth-of-type(2) { transition-delay: 105ms; }
  .site-menu.is-open > a:nth-of-type(3) { transition-delay: 140ms; }
  .site-menu.is-open > a:nth-of-type(4) { transition-delay: 175ms; }
  .site-menu.is-open > a:nth-of-type(5) { transition-delay: 210ms; }

  .site-menu > a::after {
    display: none;
  }

  .site-menu .social-links {
    margin-top: 28px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 220ms var(--ease-out), transform 280ms var(--ease-out);
  }

  .site-menu.is-open .social-links {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 235ms;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.06));
  }

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

  .hero__content {
    padding-bottom: 46px;
  }

  .hero__content h1 {
    max-width: 9.5ch;
    margin-top: 8px;
    font-size: clamp(46px, 13.5vw, 62px);
    line-height: 0.96;
  }

  .hero__content > p:not(.eyebrow) {
    max-width: 29ch;
    font-size: 17px;
  }

  .hero__actions {
    margin-top: 23px;
  }

  .hero__scroll {
    display: none;
  }

  .button {
    min-height: 48px;
  }

  .story,
  .menu-grid,
  .gallery-grid,
  .review-list,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .story {
    gap: 42px;
  }

  .story__copy h2,
  .section-heading h2,
  .reviews h2,
  .visit h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .story__media {
    width: min(100%, 480px);
    justify-self: center;
  }

  .menu-grid,
  .gallery-grid {
    gap: 16px;
  }

  .menu-card:nth-child(2) {
    transform: none;
  }

  .menu-card__copy {
    padding: 24px 20px 28px;
  }

  .highlights {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .highlight,
  .highlight--wide,
  .highlight--accent {
    grid-column: auto;
    grid-row: auto;
    min-height: 180px;
  }

  .highlight--wide p {
    font-size: 42px;
  }

  .gallery {
    padding-top: 0;
  }

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

  .reviews__heading {
    display: block;
  }

  .rating {
    margin-top: 18px;
  }

  .review-list {
    gap: 0;
  }

  .review:first-child {
    grid-row: auto;
    padding-right: 0;
    border-right: 0;
  }

  .review blockquote,
  .review:not(:first-child) blockquote {
    font-size: 25px;
  }

  .review__meta {
    align-items: flex-start;
  }

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

  .visit__details {
    padding: 78px 20px;
  }

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

  .site-footer__grid {
    gap: 36px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .lightbox[open] {
    grid-template-columns: 48px 1fr 48px;
  }

  .lightbox__figure {
    padding-top: 64px;
  }

  .lightbox__nav {
    width: 38px;
    height: 48px;
  }
}

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

  .hero__actions .button {
    padding-inline: 14px;
  }

  .review__meta {
    display: grid;
  }
}
