:root {
  --green-900: #12362f;
  --green-800: #173f35;
  --green-600: #356859;
  --cream-100: #f6f0e4;
  --cream-50: #fcf9f2;
  --red-600: #9c2f24;
  --gold-500: #b38a47;
  --charcoal: #292b2a;
  --white: #fff;
  --line: rgba(23, 63, 53, 0.2);
  --shadow: 0 24px 70px rgba(21, 46, 39, 0.13);
  --container: min(1180px, calc(100% - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream-100);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

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

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--green-900);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--green-900);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

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

.section {
  position: relative;
  padding: clamp(78px, 10vw, 150px) 0;
  overflow: clip;
}

.section--tight {
  padding-block: clamp(64px, 7vw, 96px);
}

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

.section--green {
  color: rgba(255, 255, 255, 0.82);
  background: var(--green-900);
}

.section--green h2,
.section--green h3 {
  color: var(--cream-50);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--red-600);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section--green .eyebrow,
.media-hero .eyebrow,
.page-hero .eyebrow {
  color: #e9b58e;
}

.lead {
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.45;
}

.muted {
  color: rgba(41, 43, 42, 0.68);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--white);
  transition:
    color 250ms ease,
    background-color 250ms ease,
    box-shadow 250ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  content: "";
}

.site-header.is-scrolled,
.site-header--solid {
  color: var(--green-900);
  background: rgba(246, 240, 228, 0.96);
  box-shadow: 0 10px 35px rgba(20, 49, 42, 0.1);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled::after,
.site-header--solid::after {
  background: var(--line);
}

.site-header__inner {
  display: grid;
  width: min(1380px, calc(100% - 44px));
  min-height: 96px;
  margin-inline: auto;
  align-items: center;
  grid-template-columns: 260px 1fr auto;
  gap: 32px;
}

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

.brand img {
  width: 238px;
  height: 74px;
  padding: 0;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .brand img,
.site-header--solid .brand img {
  filter: none;
}

.site-nav {
  justify-self: center;
}

.site-nav__links {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  list-style: none;
}

.site-nav a {
  position: relative;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

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

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: var(--green-800);
  border: 1px solid var(--green-800);
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 200ms ease,
    background-color 200ms ease,
    border-color 200ms ease,
    transform 200ms var(--ease);
}

.button:hover {
  color: var(--white);
  background: var(--red-600);
  border-color: var(--red-600);
  transform: translateY(-2px);
}

.button--cream {
  color: var(--green-900);
  background: var(--cream-50);
  border-color: var(--cream-50);
}

.button--ghost {
  color: inherit;
  background: transparent;
  border-color: currentColor;
}

.button--text {
  min-height: 48px;
  padding-inline: 0;
  color: inherit;
  background: transparent;
  border-width: 0 0 1px;
}

.button--text:hover {
  color: #edb58f;
  background: transparent;
  border-color: currentColor;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.media-hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  color: var(--white);
  background: var(--green-900);
  isolation: isolate;
}

.media-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 28, 24, 0.84) 0%, rgba(10, 28, 24, 0.58) 42%, rgba(10, 28, 24, 0.12) 78%),
    linear-gradient(0deg, rgba(9, 25, 21, 0.58) 0%, transparent 46%),
    var(--hero-image) center / cover no-repeat;
  content: "";
}

.media-hero__content {
  display: grid;
  width: min(1380px, calc(100% - 64px));
  margin: 0 auto;
  padding: 160px 0 158px;
  align-content: center;
}

.media-hero__copy {
  max-width: 780px;
}

.media-hero h1,
.page-hero h1 {
  margin-bottom: 34px;
  color: var(--white);
}

.media-hero h1 em,
.page-hero h1 em {
  color: #e8a57b;
  font-weight: 400;
}

.media-hero__intro {
  max-width: 630px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(12, 32, 27, 0.75);
  backdrop-filter: blur(13px);
}

.hero-rail__item {
  min-height: 112px;
  padding: 25px clamp(24px, 4vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-rail__item:last-child {
  border-right: 0;
}

.hero-rail span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-rail strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 400;
  line-height: 1.25;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 68svh;
  padding: 170px 0 90px;
  align-items: end;
  color: var(--white);
  background: var(--green-900);
  isolation: isolate;
}

.page-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 28, 24, 0.88), rgba(10, 28, 24, 0.3) 70%),
    linear-gradient(0deg, rgba(10, 28, 24, 0.62), transparent 55%),
    var(--hero-image) center / cover no-repeat;
  content: "";
}

.page-hero__copy {
  max-width: 860px;
}

.page-hero h1 {
  font-size: clamp(3.6rem, 7vw, 7rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.page-hero--menu .button-row {
  margin-top: 30px;
}

.intro-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(40px, 8vw, 140px);
}

.intro-grid h2 {
  max-width: 700px;
}

.intro-grid__copy {
  max-width: 650px;
  padding-top: 58px;
}

.rule {
  width: 58px;
  height: 2px;
  margin: 32px 0;
  background: var(--gold-500);
}

.featured-grid {
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.dish-card {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--green-900);
  min-height: 560px;
}

.dish-card img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.dish-card:hover img {
  transform: scale(1.035);
}

.dish-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 25, 21, 0.92), rgba(8, 25, 21, 0.05) 64%);
  content: "";
}

.dish-card__content {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 32px;
}

.dish-card h3 {
  color: var(--white);
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.dish-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.section-heading > div:first-child {
  max-width: 820px;
}

.split {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
}

.split--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.split__media {
  min-height: 640px;
  overflow: hidden;
}

.split__media img {
  height: 100%;
  object-fit: cover;
}

.split__content {
  display: flex;
  padding: clamp(48px, 7vw, 110px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--cream-50);
}

.split__content h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
}

.split__content .button-row {
  margin-top: 28px;
}

.service-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-card {
  min-height: 310px;
  padding: 42px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

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

.service-card__number {
  display: block;
  margin-bottom: 76px;
  color: #e8a57b;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
}

.service-card p {
  color: rgba(255, 255, 255, 0.68);
}

.location-band {
  display: grid;
  min-height: 520px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 31, 26, 0.92), rgba(11, 31, 26, 0.42)),
    url("assets/FB_IMG_1785047941452.jpg") center / cover no-repeat;
}

.location-band__content {
  max-width: 660px;
  padding-block: 80px;
}

.location-band h2 {
  color: var(--white);
}

.location-band p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-band {
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  background: var(--cream-50);
}

.quote-band blockquote {
  max-width: 1050px;
  margin: 0 auto 36px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: clamp(2.3rem, 5.2vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.quote-band cite {
  color: var(--red-600);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(46px, 9vw, 130px);
}

.story-copy {
  padding-block: 38px;
}

.story-copy p {
  max-width: 620px;
}

.story-image {
  position: relative;
  min-height: 660px;
}

.story-image img {
  height: 100%;
  object-fit: cover;
}

.story-image::before {
  position: absolute;
  z-index: 1;
  top: -20px;
  left: -20px;
  width: 116px;
  height: 116px;
  border-top: 2px solid var(--gold-500);
  border-left: 2px solid var(--gold-500);
  content: "";
}

.timeline {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.timeline article {
  padding: 34px 34px 0 0;
}

.timeline strong {
  display: block;
  margin-bottom: 16px;
  color: var(--red-600);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

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

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--green-900);
}

.gallery-grid figure:first-child {
  grid-row: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(12, 34, 28, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.info-card {
  padding: clamp(34px, 4vw, 58px);
  background: var(--cream-50);
  border: 1px solid var(--line);
}

.info-card--green {
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-900);
  border-color: var(--green-900);
}

.info-card--green h2,
.info-card--green h3 {
  color: var(--white);
}

.address {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.4;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.hours-table td {
  text-align: right;
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.policy-card {
  padding: clamp(34px, 4vw, 52px);
  background: var(--cream-50);
  border-top: 3px solid var(--gold-500);
}

.policy-card h3 {
  max-width: 480px;
}

.page-hero--contact {
  min-height: 64svh;
}

.page-hero--contact::before {
  background:
    linear-gradient(90deg, rgba(10, 28, 24, 0.9), rgba(10, 28, 24, 0.24) 76%),
    linear-gradient(0deg, rgba(10, 28, 24, 0.68), transparent 58%),
    var(--hero-image) center 58% / cover no-repeat;
}

.contact-section {
  position: relative;
  padding: 0 0 clamp(90px, 11vw, 150px);
}

.contact-directory {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: -72px;
  align-items: start;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(42px, 7vw, 104px);
}

.contact-directory__intro {
  padding-top: 146px;
}

.contact-directory__intro h2 {
  max-width: 520px;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.contact-directory__intro > p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(41, 43, 42, 0.72);
}

.contact-intents {
  display: flex;
  margin: 34px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.contact-intents li {
  padding: 8px 13px;
  color: var(--green-900);
  border: 1px solid var(--line);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-sheet {
  padding: clamp(34px, 5vw, 66px);
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 38%),
    var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(18, 54, 47, 0.2);
}

.contact-sheet__top {
  display: flex;
  margin-bottom: 46px;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
}

.contact-sheet__kicker,
.contact-sheet__status {
  margin-bottom: 10px;
  color: #e9b58e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-sheet__top h2 {
  margin-bottom: 0;
  color: var(--cream-50);
  font-size: clamp(3rem, 5.4vw, 5.4rem);
}

.contact-sheet__status {
  display: flex;
  margin-top: 12px;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.contact-sheet__status span {
  width: 8px;
  height: 8px;
  background: #e9b58e;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(233, 181, 142, 0.14);
}

.contact-phone-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-phone {
  display: flex;
  min-height: 124px;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.65rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
  transition: color 200ms ease, padding 300ms var(--ease);
}

.contact-phone small {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-phone svg {
  width: 36px;
  flex: 0 0 auto;
  fill: none;
  stroke: #e9b58e;
  stroke-linecap: square;
  stroke-width: 1.4;
  transition: transform 250ms var(--ease);
}

.contact-phone:hover {
  padding-inline: 10px;
  color: #e9b58e;
}

.contact-phone:hover svg {
  transform: translate(4px, -4px);
}

.contact-facts {
  display: grid;
  margin: 42px 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-facts > div {
  padding: 30px 30px 0 0;
}

.contact-facts > div + div {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-facts dt {
  margin-bottom: 13px;
  color: #e9b58e;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-facts dd {
  min-height: 112px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.contact-facts dd strong {
  color: var(--white);
  font-weight: 600;
}

.contact-facts__action {
  display: inline-flex;
  min-height: 44px;
  padding: 0;
  align-items: center;
  color: var(--cream-50);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.52);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-facts__action:hover {
  color: #e9b58e;
  border-color: #e9b58e;
}

.contact-visit__grid {
  display: grid;
  min-height: 570px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.contact-visit__image {
  position: relative;
  min-height: 570px;
  margin: 0;
  overflow: hidden;
}

.contact-visit__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 34, 28, 0.54), transparent 48%);
  content: "";
}

.contact-visit__image img {
  height: 100%;
  object-fit: cover;
}

.contact-visit__image figcaption {
  position: absolute;
  z-index: 1;
  right: 32px;
  bottom: 28px;
  left: 32px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-visit__copy {
  display: flex;
  padding: clamp(46px, 7vw, 92px);
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-800);
}

.contact-visit__copy h2 {
  color: var(--cream-50);
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}

.contact-visit__copy .lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

.menu-masthead {
  position: relative;
  overflow: hidden;
  padding: 158px 0 62px;
  color: var(--white);
  background: var(--green-900);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  isolation: isolate;
}

.menu-masthead::before,
.menu-masthead::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
}

.menu-masthead::before {
  background: url("assets/FB_IMG_1785047950972.jpg") 58% 52% / cover no-repeat;
  transform: scale(1.015);
}

.menu-masthead::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 34, 29, 0.96) 0%, rgba(10, 34, 29, 0.9) 42%, rgba(10, 34, 29, 0.7) 72%, rgba(10, 34, 29, 0.78) 100%),
    linear-gradient(0deg, rgba(10, 34, 29, 0.32), transparent 58%);
}

.menu-masthead__grid {
  display: grid;
  align-items: end;
  grid-template-columns: 210px minmax(0, 1fr) 250px;
  gap: clamp(34px, 6vw, 82px);
}

.menu-masthead__brand {
  padding-right: 28px;
  border-right: 2px solid #e9b58e;
}

.menu-masthead__brand img {
  width: 178px;
  height: 72px;
  padding: 6px 12px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(179, 138, 71, 0.55);
  border-radius: 999px;
}

.menu-masthead__brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.menu-masthead__copy h1 {
  max-width: 710px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 5.8vw, 6rem);
}

.menu-masthead__copy h1 em {
  color: #e9b58e;
  font-weight: 400;
}

.menu-masthead .eyebrow {
  color: #e9b58e;
}

.menu-masthead__copy > p:last-child {
  max-width: 670px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.menu-masthead__details {
  padding: 18px 0 4px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-masthead__details p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  line-height: 1.45;
}

.menu-masthead__details span {
  display: block;
  margin-bottom: 2px;
  color: #e9b58e;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-masthead__details a {
  color: #f1c6a5;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-notice {
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--green-900);
}

.menu-notice .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.menu-notice p {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 0.86rem;
}

.menu-notice strong {
  color: var(--white);
}

.menu-notice__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.menu-notice__actions .button {
  white-space: nowrap;
}

.menu-tools {
  position: sticky;
  z-index: 50;
  top: 96px;
  padding: 15px 0 13px;
  background: rgba(252, 249, 242, 0.97);
  border-bottom: 1px solid rgba(179, 138, 71, 0.48);
  box-shadow: 0 10px 24px rgba(21, 46, 39, 0.05);
  backdrop-filter: blur(16px);
}

.menu-tools__top {
  display: flex;
  margin-bottom: 12px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.menu-search {
  width: min(520px, 100%);
}

.menu-search label,
.menu-tools__label {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-500);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-search__field {
  position: relative;
}

.menu-search__field::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 14px;
  color: var(--gold-500);
  font-size: 1rem;
  content: "⌕";
  pointer-events: none;
  transform: translateY(-52%);
}

.menu-search input {
  width: 100%;
  height: 45px;
  padding: 0 74px 0 40px;
  background: var(--white);
  border: 1px solid rgba(179, 138, 71, 0.52);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.menu-search input:focus {
  border-color: var(--red-600);
  box-shadow: 0 0 0 3px rgba(156, 47, 36, 0.08);
  outline: 0;
}

.menu-search button {
  position: absolute;
  top: 50%;
  right: 12px;
  padding: 4px 0;
  color: var(--red-600);
  background: transparent;
  border: 0;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(-50%);
}

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

.result-count {
  max-width: 400px;
  margin: 0 0 3px;
  color: rgba(41, 43, 42, 0.58);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: right;
}

.menu-tools__label {
  margin-bottom: 6px;
}

.category-nav {
  display: flex;
  padding: 0 0 3px;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-chip {
  flex: 0 0 auto;
  min-height: 31px;
  padding: 0 12px;
  color: var(--green-900);
  background: transparent;
  border: 1px solid rgba(179, 138, 71, 0.42);
  border-radius: 0;
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.category-chip:hover {
  border-color: var(--gold-500);
}

.category-chip.is-active {
  color: var(--white);
  background: var(--red-600);
  border-color: var(--red-600);
}

.menu-root {
  padding: 58px 0 112px;
}

.menu-print-art {
  display: none;
}

.menu-board {
  display: grid;
  padding: clamp(26px, 4vw, 46px);
  background: var(--cream-50);
  border: 1px solid rgba(179, 138, 71, 0.5);
  box-shadow: 0 24px 60px rgba(21, 46, 39, 0.1);
  grid-template-columns: 185px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 44px);
}

.menu-board__rail {
  display: flex;
  min-width: 0;
  padding-right: 26px;
  flex-direction: column;
  border-right: 2px solid var(--gold-500);
}

.menu-board__monogram {
  display: block;
  margin-bottom: 14px;
  padding-bottom: 10px;
  color: var(--green-900);
  border-bottom: 2px solid var(--gold-500);
  font-family: var(--serif);
  font-size: 2.75rem;
  line-height: 1;
}

.menu-board__label {
  margin-bottom: 7px;
  color: var(--gold-500);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.menu-board__rail h2 {
  margin-bottom: 28px;
  color: var(--red-600);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.92;
}

.menu-board__rail-note {
  margin: 0 0 26px;
  padding: 14px 12px;
  border: 1px solid var(--gold-500);
}

.menu-board__rail-note span,
.menu-board__facts dt {
  color: var(--red-600);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-board__rail-note p {
  margin: 6px 0 0;
  font-family: var(--serif);
  font-size: 0.82rem;
  line-height: 1.35;
}

.menu-board__facts {
  margin: auto 0 24px;
}

.menu-board__facts div {
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.menu-board__facts dd {
  margin: 4px 0 0;
  font-size: 0.72rem;
  line-height: 1.45;
}

.menu-board__contact {
  color: var(--green-900);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-board__content {
  min-width: 0;
  column-count: 3;
  column-gap: clamp(22px, 3vw, 34px);
}

.menu-board--filtered .menu-board__content {
  column-count: 1;
}

.menu-board--filtered .menu-items {
  column-count: 2;
  column-gap: 34px;
}

.menu-category {
  display: inline-block;
  width: 100%;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  break-inside: avoid;
}

.menu-category--featured {
  padding: 12px 13px 3px;
  border: 2px solid var(--gold-500);
}

.menu-category__heading {
  position: static;
}

.menu-category__meta {
  display: flex;
  margin-bottom: 7px;
  padding-bottom: 5px;
  align-items: center;
  justify-content: space-between;
  color: rgba(41, 43, 42, 0.48);
  border-bottom: 1px solid rgba(179, 138, 71, 0.42);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-category__heading h2 {
  margin-bottom: 8px;
  color: var(--red-600);
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: 0.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.menu-category__heading > p:not(.menu-category__note) {
  margin-bottom: 10px;
  color: rgba(41, 43, 42, 0.62);
  font-size: 0.67rem;
  line-height: 1.35;
}

.menu-category__note {
  margin: 8px 0 10px;
  padding: 7px 8px;
  color: rgba(41, 43, 42, 0.72);
  background: rgba(179, 138, 71, 0.08);
  border-left: 2px solid var(--gold-500);
  font-size: 0.63rem;
  line-height: 1.35;
}

.menu-items {
  display: block;
}

.menu-item {
  margin-bottom: 9px;
  padding: 0 0 9px;
  border-bottom: 1px solid rgba(23, 63, 53, 0.12);
  break-inside: avoid;
}

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

.menu-item h3 {
  margin-bottom: 3px;
  color: var(--green-900);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  line-height: 1.22;
}

.menu-item p {
  margin-bottom: 0;
  color: rgba(41, 43, 42, 0.68);
  font-size: 0.62rem;
  line-height: 1.35;
}

.menu-tags {
  display: flex;
  margin-top: 4px;
  flex-wrap: wrap;
  gap: 5px;
}

.menu-tags span {
  padding: 0;
  color: var(--gold-500);
  background: transparent;
  border-radius: 0;
  font-size: 0.5rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.empty-state {
  padding: 82px 24px;
  text-align: center;
  border: 1px solid rgba(179, 138, 71, 0.5);
  column-span: all;
}

.empty-state h2 {
  font-size: 3rem;
}

.empty-state .button {
  margin-top: 18px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #0c2923;
}

.footer-main {
  display: grid;
  padding: 82px 0 70px;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: clamp(42px, 8vw, 120px);
}

.footer-brand img {
  width: 210px;
  margin-bottom: 28px;
  padding: 8px 14px;
  background: var(--cream-50);
  border-radius: 999px;
}

.footer-brand p {
  max-width: 420px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 11px;
}

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

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

@media (max-width: 1020px) {
  .site-header__inner {
    grid-template-columns: 225px 1fr auto;
    gap: 20px;
  }

  .brand img {
    width: 210px;
    height: 66px;
  }

  .site-nav__links {
    gap: 20px;
  }

  .header-actions .button {
    display: none;
  }

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

  .featured-grid .dish-card:last-child {
    grid-column: span 2;
    min-height: 470px;
  }

  .menu-masthead__grid {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .menu-masthead__brand {
    padding-right: 20px;
  }

  .menu-masthead__details {
    display: flex;
    padding: 18px 0 0;
    align-items: end;
    grid-column: 2;
    gap: 28px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
  }

  .menu-masthead__details p {
    margin-bottom: 0;
  }

  .menu-board {
    grid-template-columns: 165px minmax(0, 1fr);
  }

  .menu-board__rail {
    padding-right: 20px;
  }

  .menu-board__content {
    column-count: 2;
  }

  .intro-grid,
  .story-grid,
  .contact-directory,
  .menu-category {
    gap: 48px;
  }

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

@media (max-width: 840px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header--solid {
    color: var(--white);
    background: var(--green-900);
    box-shadow: 0 10px 28px rgba(10, 28, 24, 0.2);
    backdrop-filter: none;
  }

  .site-header::after,
  .site-header.is-scrolled::after,
  .site-header--solid::after {
    background: rgba(255, 255, 255, 0.16);
  }

  .site-header__inner {
    width: calc(100% - 28px);
    min-height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 190px;
    height: 58px;
  }

  .site-header .brand img,
  .site-header.is-scrolled .brand img,
  .site-header--solid .brand img {
    filter: brightness(0) invert(1);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 0;
    display: grid;
    visibility: hidden;
    padding: 44px 24px;
    align-content: center;
    justify-self: stretch;
    color: var(--cream-50);
    background: var(--green-900);
    box-shadow: none;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  }

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

  .site-nav__links {
    flex-direction: column;
    gap: 28px;
  }

  .site-nav a {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .header-actions {
    position: absolute;
    right: 64px;
  }

  .media-hero__content {
    width: var(--container);
    padding: 140px 0 230px;
  }

  .media-hero::before {
    background:
      linear-gradient(0deg, rgba(10, 28, 24, 0.88) 0%, rgba(10, 28, 24, 0.45) 70%),
      var(--hero-image) 62% center / cover no-repeat;
  }

  .hero-rail {
    grid-template-columns: 1fr;
  }

  .hero-rail__item {
    display: none;
    min-height: 86px;
  }

  .hero-rail__item:first-child {
    display: block;
    border-right: 0;
  }

  .page-hero {
    min-height: 72svh;
    padding-top: 135px;
  }

  .intro-grid,
  .story-grid,
  .split,
  .split--reverse,
  .info-grid,
  .contact-directory,
  .contact-visit__grid,
  .menu-category {
    grid-template-columns: 1fr;
  }

  .intro-grid__copy {
    padding-top: 0;
  }

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

  .featured-grid .dish-card:last-child {
    grid-column: auto;
  }

  .dish-card {
    min-height: 500px;
  }

  .split__media {
    min-height: 520px;
  }

  .split--reverse .split__media {
    order: -1;
  }

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

  .service-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-card__number {
    margin-bottom: 36px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-grid figure:first-child {
    grid-column: span 2;
    grid-row: auto;
  }

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

  .contact-section {
    padding-top: 74px;
  }

  .contact-directory__intro {
    padding-top: 0;
  }

  .contact-visit__image,
  .contact-visit__grid {
    min-height: 440px;
  }

  .menu-masthead {
    padding-top: 128px;
  }

  .menu-masthead__grid {
    align-items: start;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 28px;
  }

  .menu-masthead__brand img {
    width: 145px;
    height: 62px;
  }

  .menu-masthead__copy h1 {
    font-size: clamp(3rem, 9vw, 5rem);
  }

  .menu-masthead__details {
    grid-column: 1 / -1;
  }

  .menu-tools {
    top: 76px;
  }

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

  .menu-board__rail {
    display: grid;
    padding: 0 0 24px;
    align-items: start;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    border-right: 0;
    border-bottom: 2px solid var(--gold-500);
  }

  .menu-board__rail h2 {
    margin-bottom: 0;
  }

  .menu-board__rail-note {
    margin: 0;
  }

  .menu-board__facts {
    margin: 0;
  }

  .menu-board__contact {
    align-self: end;
  }

  .menu-category {
    gap: 20px;
  }

  .menu-category__heading {
    position: static;
    max-width: 620px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --container: calc(100% - 28px);
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section {
    padding-block: 74px;
  }

  .media-hero__content {
    padding-bottom: 190px;
  }

  .media-hero__intro {
    font-size: 1rem;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

  .page-hero h1 {
    font-size: clamp(3.1rem, 15vw, 5.2rem);
  }

  .page-hero--contact {
    min-height: 66svh;
  }

  .contact-section {
    padding-top: 62px;
  }

  .contact-sheet {
    padding: 30px 22px;
  }

  .contact-sheet__top {
    margin-bottom: 34px;
    flex-direction: column;
    gap: 4px;
  }

  .contact-sheet__status {
    margin-top: 4px;
  }

  .contact-phone {
    min-height: 104px;
    font-size: clamp(1.85rem, 10vw, 2.65rem);
  }

  .contact-phone svg {
    width: 28px;
  }

  .contact-facts {
    grid-template-columns: 1fr;
  }

  .contact-facts > div {
    padding: 28px 0;
  }

  .contact-facts > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .contact-facts dd {
    min-height: auto;
    margin-bottom: 18px;
  }

  .contact-visit__image,
  .contact-visit__grid {
    min-height: 340px;
  }

  .contact-visit__copy {
    padding: 42px 24px;
  }

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

  .dish-card {
    min-height: 470px;
  }

  .dish-card__content {
    padding: 25px;
  }

  .split__media {
    min-height: 400px;
  }

  .split__content {
    padding: 42px 24px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 280px;
  }

  .gallery-grid figure:first-child {
    grid-column: auto;
  }

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

  .menu-notice .container,
  .menu-tools__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-notice__actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .menu-tools__top {
    gap: 8px;
  }

  .result-count {
    max-width: none;
    text-align: left;
  }

  .menu-search {
    width: 100%;
  }

  .menu-masthead {
    padding: 112px 0 44px;
  }

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

  .menu-masthead__brand {
    display: flex;
    padding: 0 0 20px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-right: 0;
    border-bottom: 2px solid #e9b58e;
  }

  .menu-masthead::before {
    background-position: 62% center;
  }

  .menu-masthead__brand p {
    margin: 0;
    text-align: right;
  }

  .menu-masthead__details {
    display: block;
    padding-top: 16px;
    grid-column: auto;
  }

  .menu-masthead__details p {
    margin-bottom: 12px;
  }

  .menu-board {
    padding: 20px;
  }

  .menu-board__rail {
    display: block;
  }

  .menu-board__rail h2 {
    margin-bottom: 24px;
  }

  .menu-board__rail-note {
    margin-bottom: 20px;
  }

  .menu-board__facts {
    margin-bottom: 20px;
  }

  .menu-board__content,
  .menu-board--filtered .menu-board__content,
  .menu-board--filtered .menu-items {
    column-count: 1;
  }

  .menu-category {
    padding-block: 0;
  }

  .menu-category--featured {
    padding: 12px 13px 3px;
  }

  .menu-item {
    min-height: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 65px;
  }

  .footer-brand {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  @page {
    size: A3 landscape;
    margin: 0;
  }

  html,
  body {
    width: 420mm;
    height: 297mm;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
  }

  body > :not(.menu-print-art) {
    display: none !important;
  }

  .menu-print-art {
    display: block;
    width: 420mm;
    height: 297mm;
    margin: 0;
    overflow: hidden;
  }

  .menu-print-art img {
    display: block;
    width: 420mm;
    max-width: none;
    height: 297mm;
    object-fit: contain;
  }
}
