:root {
  --cream: rgb(253 251 247);
  --mist: rgb(241 235 227);
  --ink: rgb(40 36 30);
  --olive: rgb(62 78 65);
  --terracotta: rgb(201 128 82);
  --sun: rgb(221 209 183);
  --card: rgb(255 253 249);
  --glass: rgba(255, 255, 255, 0.6);
  --glass-warm: rgba(246, 240, 232, 0.48);
  --glass-strong: rgba(255, 255, 255, 0.72);
  --line: rgba(62, 78, 65, 0.1);
  --shadow: 0 18px 36px rgba(26, 22, 18, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --scroll-margin-top-desktop: 50px;
  --scroll-margin-top-tablet: 50px;
  --scroll-margin-top-mobile: 40px;
  --scroll-margin-top-story: var(--scroll-margin-top-desktop);
  --scroll-margin-top-specials: var(--scroll-margin-top-desktop);
  --scroll-margin-top-gallery: var(--scroll-margin-top-desktop);
  --scroll-margin-top-visit: var(--scroll-margin-top-desktop);
}

@media (max-width: 992px) {
  :root {
    --scroll-margin-top-story: var(--scroll-margin-top-tablet);
    --scroll-margin-top-specials: var(--scroll-margin-top-tablet);
    --scroll-margin-top-gallery: var(--scroll-margin-top-tablet);
    --scroll-margin-top-visit: 160px;
  }
}

@media (max-width: 640px) {
  :root {
    --scroll-margin-top-story: var(--scroll-margin-top-mobile);
    --scroll-margin-top-specials: var(--scroll-margin-top-mobile);
    --scroll-margin-top-gallery: var(--scroll-margin-top-mobile);
    --scroll-margin-top-visit: var(--scroll-margin-top-mobile);
  }
}

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

html {
  overflow-x: hidden;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  overflow-x: hidden;
  background: radial-gradient(
      circle at 16% 2%,
      rgba(255, 255, 255, 0.85) 0,
      rgba(255, 255, 255, 0) 50%
    ),
    radial-gradient(
      circle at 86% 20%,
      rgba(221, 209, 183, 0.22) 0,
      rgba(221, 209, 183, 0) 62%
    ),
    radial-gradient(
      circle at 18% 88%,
      rgba(62, 78, 65, 0.06) 0,
      rgba(62, 78, 65, 0) 65%
    ),
    linear-gradient(180deg, var(--cream) 0%, var(--mist) 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      90deg,
      rgba(62, 78, 65, 0.025) 0,
      rgba(62, 78, 65, 0.025) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(
      0deg,
      rgba(221, 209, 183, 0.028) 0,
      rgba(221, 209, 183, 0.028) 1px,
      transparent 1px,
      transparent 18px
    );
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: -10%;
  background: radial-gradient(
      circle at 18% 10%,
      rgba(221, 209, 183, 0.28) 0,
      rgba(221, 209, 183, 0) 55%
    ),
    radial-gradient(
      circle at 90% 40%,
      rgba(62, 78, 65, 0.1) 0,
      rgba(62, 78, 65, 0) 60%
    ),
    radial-gradient(
      circle at 35% 92%,
      rgba(201, 128, 82, 0.14) 0,
      rgba(201, 128, 82, 0) 65%
    );
  filter: blur(55px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.page {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 28px 0;
  isolation: isolate;
  overflow-x: visible;
}

.page::after {
  content: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.2px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(60, 76, 64, 0.16);
}

.brand-title {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgb(51 53 44);
}

.brand-sub {
  display: block;
  font-size: 0.9rem;
  color: rgba(44, 39, 33, 0.6);
  font-family: "Sora", sans-serif;
}

.nav {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(60, 76, 64, 0.18);
  background: rgba(255, 253, 249, 0.9);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle .menu-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-toggle .menu-icon svg {
  stroke: currentColor;
}

.nav-mobile {
  display: none;
  gap: 12px 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-mobile a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-mobile a:hover {
  background: rgba(62, 78, 65, 0.08);
}

.nav-mobile-cta {
  background: #2f4630;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 8px 14px;
  box-shadow: 0 6px 14px rgba(47, 70, 48, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  /* background: #2f4630; */
  background: #37543c;
  color: #fff;
  border: 1px solid rgba(221, 209, 183, 0.4);
  box-shadow: 0 6px 12px rgba(55, 84, 60, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #2f4630;
  box-shadow: 0 8px 16px rgba(47, 70, 48, 0.2);
}

.btn-ghost {
  border-color: rgba(60, 76, 64, 0.18);
  background: rgba(255, 253, 249, 0.85);
  color: var(--ink);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(60, 76, 64, 0.08);
}

.btn-ghost.subtle {
  background: transparent;
  border-color: transparent;
  color: #37543c;
  box-shadow: none;
}

.btn-ghost.subtle:hover {
  transform: none;
  box-shadow: none;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: rgba(60, 76, 64, 0.65);
  margin-bottom: 10px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
  margin-bottom: 50px;
}

.hero-text h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  margin: 0 0 12px;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 20px;
  color: rgba(44, 39, 33, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.meta-card {
  background: linear-gradient(
    135deg,
    var(--glass-strong) 0%,
    var(--glass-warm) 100%
  );
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border: 1px solid rgba(62, 78, 65, 0.07);
  box-shadow: 0 12px 22px rgba(26, 22, 18, 0.06);
  font-size: 0.9rem;
}

:is(.meta-card, .hero-card, .plate, .menu-card, .instagram, .story-tags span) {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.meta-card a {
  color: var(--olive);
  font-weight: 600;
}

.meta-title {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 6px;
  color: rgba(44, 39, 33, 0.55);
}

.hero-media {
  display: grid;
  gap: 14px;
  position: relative;
}

.hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(60, 76, 64, 0.16);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.hero-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.74) 0%,
    rgba(245, 238, 230, 0.5) 100%
  );
  border-radius: var(--radius-md);
  padding: 10px 12px;
  border: 1px solid rgba(62, 78, 65, 0.08);
  box-shadow: 0 16px 32px rgba(26, 22, 18, 0.09);
  font-size: 0.82rem;
  display: grid;
  gap: 4px;
  max-width: 220px;
  justify-self: end;
}

.meta-hours {
  display: none;
}

.hero-card .meta-title {
  font-size: 0.68rem;
  margin-bottom: 4px;
}

.hero-card span {
  line-height: 1.3;
}

.hero-slice {
  max-width: 340px;
  margin-left: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(31, 26, 21, 0.16);
  border: 1px solid rgba(60, 76, 64, 0.16);
  aspect-ratio: 3 / 2;
}

.hero-frame img,
.hero-slice img {
  height: 100%;
  object-fit: cover;
}

.hero-slice img {
  object-position: left center;
}

section {
  margin-bottom: 90px;
}

#story {
  scroll-margin-top: var(--scroll-margin-top-story);
}

#specials {
  scroll-margin-top: var(--scroll-margin-top-specials);
}

#gallery {
  scroll-margin-top: var(--scroll-margin-top-gallery);
}

#visit {
  scroll-margin-top: var(--scroll-margin-top-visit);
}

.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
  overflow-x: clip;
}

.section-surface {
  position: relative;
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--radius-lg);
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.7) 0%,
      rgba(246, 240, 232, 0.5) 55%,
      rgba(255, 255, 255, 0.55) 100%
    );
  border: 1px solid rgba(62, 78, 65, 0.08);
  box-shadow: 0 14px 30px rgba(26, 22, 18, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 0;
}

.section-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  background: radial-gradient(
      circle at 12% 0%,
      rgba(221, 209, 183, 0.24) 0%,
      rgba(221, 209, 183, 0) 55%
    ),
    radial-gradient(
      circle at 90% 90%,
      rgba(62, 78, 65, 0.08) 0%,
      rgba(62, 78, 65, 0) 58%
    );
  opacity: 0.6;
  pointer-events: none;
}

.section-surface.alt::before {
  background: radial-gradient(
      circle at 88% 6%,
      rgba(201, 128, 82, 0.24) 0%,
      rgba(201, 128, 82, 0) 55%
    ),
    radial-gradient(
      circle at 8% 80%,
      rgba(62, 78, 65, 0.1) 0%,
      rgba(62, 78, 65, 0) 60%
    );
}

.section-surface.spill::after {
  content: "";
  position: absolute;
  inset: -46px -36px;
  border-radius: calc(var(--radius-lg) + 36px);
  background: radial-gradient(
      circle at 30% 0%,
      rgba(221, 209, 183, 0.35) 0%,
      rgba(221, 209, 183, 0) 60%
    ),
    radial-gradient(
      circle at 70% 100%,
      rgba(201, 128, 82, 0.22) 0%,
      rgba(201, 128, 82, 0) 65%
    );
  filter: blur(26px);
  opacity: 0.65;
  z-index: -1;
  pointer-events: none;
}

.section-surface > * {
  position: relative;
  z-index: 1;
}

.story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(60, 76, 64, 0.16);
  box-shadow: var(--shadow);
}

.story-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 0 0 16px;
}

.story-text p {
  margin: 0 0 20px;
  line-height: 1.7;
  color: rgba(44, 39, 33, 0.72);
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.story-tags span {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.62) 0%,
    rgba(245, 238, 230, 0.48) 100%
  );
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  border: 1px solid rgba(62, 78, 65, 0.1);
}

.section-title {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-title h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin: 0 0 12px;
}

.section-title p {
  margin: 0;
  color: rgba(44, 39, 33, 0.68);
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.plate {
  background: linear-gradient(
    140deg,
    rgba(255, 255, 255, 0.74) 0%,
    rgba(245, 238, 230, 0.5) 100%
  );
  border-radius: var(--radius-md);
  overflow: hidden;
  border: none;
  box-shadow: 0 16px 30px rgba(26, 22, 18, 0.08);
  display: grid;
}

.plate img {
  height: 220px;
  object-fit: cover;
}

.plate h3 {
  margin: 18px 18px 6px;
  font-size: 1.1rem;
}

.plate p {
  margin: 0 18px 20px;
  font-size: 0.9rem;
  color: rgba(44, 39, 33, 0.65);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 10px;
  gap: 12px;
  grid-auto-flow: dense;
  max-width: 1180px;
  margin: 0 auto;
}

.gallery-grid img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(60, 76, 64, 0.14);
  box-shadow: 0 12px 24px rgba(31, 26, 21, 0.14);
}

.gallery-grid .gallery-item:nth-child(1) {
  grid-column: 1 / span 7;
  grid-row: 1 / span 20;
}

.gallery-grid .gallery-item:nth-child(2) {
  grid-column: 8 / span 5;
  grid-row: 1 / span 10;
}

.gallery-grid .gallery-item:nth-child(3) {
  grid-column: 8 / span 5;
  grid-row: 11 / span 10;
}

.gallery-grid .gallery-item:nth-child(4) {
  grid-column: 6 / span 7;
  grid-row: 21 / span 18;
}

.gallery-grid .gallery-item:nth-child(5) {
  grid-column: 1 / span 5;
  grid-row: 21 / span 9;
}

.gallery-grid .gallery-item:nth-child(6) {
  grid-column: 1 / span 5;
  grid-row: 30 / span 9;
}

.gallery-grid .gallery-item:nth-child(7) {
  grid-column: 1 / span 12;
  grid-row: 39 / span 10;
}


.menu {
  padding: 60px 140px;
}

.menu-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.75) 0%,
    rgba(245, 238, 230, 0.5) 100%
  );
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  padding: 33px;
  max-width: 1188px;
  margin: 0 auto;
  border: 1px solid rgba(62, 78, 65, 0.08);
  box-shadow: 0 16px 32px rgba(26, 22, 18, 0.08);
  align-items: center;
}

.menu-content {
  max-width: 420px;
  width: 100%;
  justify-self: start;
  display: grid;
  gap: 16px;
}

.menu-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0;
}

.menu-content p {
  margin: 0;
  color: rgba(44, 39, 33, 0.7);
  line-height: 1.7;
}

.menu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.menu-eyebrow .eyebrow {
  margin-bottom: 0;
}

.menu-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--olive);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-items: center;
  gap: 18px;
  /* border: 1px solid rgba(60, 76, 64, 0.16); */
}

.menu-image img {
  max-height: 500px;
  object-fit: cover;
  width: 300px;
}

.menu-open-btn--mobile {
  display: none;
}

.menu-open-btn--desktop {
  justify-self: start;
}

.visit {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(360px, 1.25fr);
  gap: 16px;
  margin-top: 110px;
  margin-bottom: 120px;
  align-items: center;
}

.visit-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  margin: 0 0 8px;
  line-height: 1.15;
}

.visit-info p {
  margin: 0 0 10px;
  color: rgba(44, 39, 33, 0.7);
  line-height: 1.7;
}

.visit-info {
  display: grid;
  gap: 8px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid rgba(201, 128, 82, 0.35);
  max-width: 420px;
  width: 100%;
  justify-self: start;
}

.visit-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  margin-top: 4px;
}

.visit-actions .btn {
  min-height: 46px;
  padding: 12px 18px;
  font-weight: 600;
  white-space: nowrap;
  flex: 1;
}

.visit-actions .btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #37543c;
}

.visit-details {
  display: grid;
  gap: 4px;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.visit-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(60, 76, 64, 0.12);
  box-shadow: 0 16px 32px rgba(26, 22, 18, 0.12);
  min-height: 320px;
  aspect-ratio: 4 / 3;
  align-self: stretch;
  max-width: 100%;
}

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

.instagram,
.contact-card {
  background: transparent;
  border-radius: 0;
  padding: 0 0 8px;
  border: none;
}

.contact-card {
  padding-bottom: 0;
}


.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 56px 24px 36px;
  border-top: none;
  font-size: 0.9rem;
  background-color: var(--mist);
  background-image: linear-gradient(
    180deg,
    rgba(55, 84, 60, 0.08) 0%,
    rgba(55, 84, 60, 0.02) 45%,
    rgba(241, 235, 227, 0) 100%
  );
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -140px;
  height: 160px;
  background: linear-gradient(
    180deg,
    rgba(55, 84, 60, 0) 0%,
    rgba(55, 84, 60, 0.08) 70%,
    rgba(241, 235, 227, 0.5) 100%
  );
  pointer-events: none;
  opacity: 1;
}

.footer-center {
  display: grid;
  gap: 8px;
  justify-items: center;
  width: min(520px, 90vw);
  position: relative;
  z-index: 1;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(60, 76, 64, 0.16);
  box-shadow: 0 10px 20px rgba(26, 22, 18, 0.12);
}

.footer-sub {
  font-size: 0.85rem;
  color: rgba(44, 39, 33, 0.6);
}

.footer-phone {
  font-weight: 600;
  color: var(--olive);
  margin-top: 6px;
}

.footer-powered {
  font-size: 0.85rem;
  color: rgba(44, 39, 33, 0.6);
  margin-top: 18px;
}

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

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: fade-up 0.9s ease forwards;
    animation-delay: var(--delay, 0s);
  }
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .menu-open-btn--desktop {
    display: none;
  }

  .menu-open-btn--mobile {
    display: inline-flex;
  }
}

@media (min-width: 1025px) {
  .menu-content p {
    margin-bottom: 8px;
  }
}

@media (max-width: 992px) {
  .site-header {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .site-header .btn-primary {
    display: none;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
    gap: 12px;
    width: 100%;
    margin: 0 auto 24px;
    padding: 18px 20px;
    background: rgba(255, 253, 249, 0.88);
    border: 1px solid rgba(62, 78, 65, 0.12);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 24px rgba(26, 22, 18, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  body.nav-open .nav-mobile {
    display: flex;
  }

  .nav-mobile a {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
  }

.nav-mobile-cta {
  display: inline-flex;
  justify-content: center;
}

  section {
    margin-bottom: 90px;
  }

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

  .hero {
    grid-template-areas:
      "hero-frame"
      "hero-text"
      "hero-card";
    gap: 22px;
  }

  .hero-media {
    display: contents;
  }

  .hero-text {
    grid-area: hero-text;
    margin-top: 12px;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    text-align: left;
  }

  .hero-frame {
    grid-area: hero-frame;
    aspect-ratio: 16 / 9;
    max-height: 320px;
    width: 100%;
    margin-left: 0;
    border-radius: var(--radius-lg);
  }

  .hero-slice {
    display: none;
  }

  .hero-card {
    grid-area: hero-card;
    margin-left: 0;
    margin-right: 0;
    justify-self: start;
  }

  .hero-meta {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .meta-hours {
    display: block;
  }

  .meta-hours-closed {
    display: none;
  }

  .story-image {
    max-height: 300px;
    aspect-ratio: 4 / 3;
  }

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

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

  .menu-content {
    text-align: center;
    margin: 0 auto;
  }

  .menu-eyebrow {
    justify-content: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 130px;
    gap: 10px;
  }

  .gallery-grid .gallery-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .gallery-grid .gallery-item:last-child {
    grid-column: 1 / -1 !important;
    justify-self: center;
    width: min(420px, 90%);
  }
}

@media (min-width: 641px) and (max-width: 830px) {
  .visit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 20px;
  }

  .visit-info {
    max-width: none;
  }

  .visit-actions {
    flex-wrap: wrap;
    gap: 12px;
  }

  .visit-actions .btn {
    flex: 1 1 160px;
  }

  .visit-photo {
    min-height: 240px;
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 20px 20px 0;
  }

  section {
    margin-bottom: 120px;
  }

  .site-header {
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 12px;
  }

  .nav {
    gap: 12px;
  }

  .hero {
    gap: 16px;
    margin-bottom: 64px;
    grid-template-areas:
      "hero-frame"
      "hero-text"
      "hero-card";
    min-height: 100vh;
    min-height: 100svh;
    padding-bottom: 32px;
    align-content: start;
  }

  .hero-text {
    display: grid;
    gap: 22px;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 0;
  }

  .lead {
    font-size: 0.98rem;
    margin-bottom: 0;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 0;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 16px 16px;
    min-height: 52px;
    font-size: 0.9rem;
  }

  .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 12px;
  }

  .hero-meta .meta-card {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .hero-meta .meta-phone {
    display: none;
  }

  .meta-hours {
    display: block;
  }

  .meta-hours-closed {
    display: none;
  }

  .meta-card {
    padding: 10px 12px;
    font-size: 0.85rem;
  }

  .hero-frame {
    max-height: 240px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .hero-slice {
    display: none;
  }

  .hero-card {
    display: none;
  }

  .story {
    gap: 22px;
  }

  .visit {
    grid-template-columns: 1fr;
    margin-top: 90px;
    margin-bottom: 150px;
  }

  .visit-info {
    padding: 0;
    border-left: none;
    max-width: none;
  }

  .visit-photo {
    min-height: 220px;
    margin-top: 16px;
  }

  .visit-actions .btn {
    min-height: 48px;
    padding: 12px 16px;
  }

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

  .gallery-grid .gallery-item {
    grid-column: span 1;
    grid-row: span 1;
  }

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

  .menu {
    padding: 56px 0;
  }

  .nav-mobile {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    gap: 10px;
  }

  .menu-card {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    padding: 34px 20px;
    max-width: none;
    gap: 32px;
  }

.menu-image img {
  max-height: none;
  width: min(300px, 86vw);
  aspect-ratio: 3 / 4;
  margin: 0 auto;
}

  .menu-content h2 {
    margin-bottom: 8px;
  }

  .menu-content p {
    margin-bottom: 14px;
  }

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

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

  .visit-details {
    gap: 10px;
  }
}

.menu-fab {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(60, 76, 64, 0.18);
  background: rgba(255, 253, 249, 0.95);
  color: var(--ink);
  box-shadow: 0 14px 26px rgba(26, 22, 18, 0.14);
  cursor: pointer;
}

.menu-fab .menu-icon {
  width: 20px;
  height: 20px;
}

.menu-fab .menu-icon svg {
  stroke: currentColor;
}

.menu-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 24px;
}

body.menu-open .menu-modal {
  display: flex;
}

body.menu-open {
  overflow: hidden;
}

.menu-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 20, 16, 0.5);
  backdrop-filter: blur(6px);
}

.menu-modal-panel {
  position: relative;
  width: min(880px, 92vw);
  max-height: min(80vh, 760px);
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(245, 238, 230, 0.9) 100%
  );
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 78, 65, 0.12);
  box-shadow: 0 28px 60px rgba(18, 14, 10, 0.24);
  padding: 0;
  z-index: 1;
}

.menu-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  position: relative;
  padding: 24px 24px 0;
}

.menu-modal-body {
  overflow: auto;
  padding: 0;
  padding-top: 24px;
  padding-bottom: 24px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.menu-modal-inner {
  padding: 0 24px 24px;
}

.menu-modal-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0;
}

.menu-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid rgba(60, 76, 64, 0.18);
  background: rgba(255, 253, 249, 0.95);
  color: var(--ink);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.menu-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 24px;
  row-gap: 24px;
}

.menu-modal-group h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(44, 39, 33, 0.7);
}

.menu-modal-group ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(44, 39, 33, 0.78);
  line-height: 1.6;
}

.menu-modal-group + .menu-modal-group {
  border-top: 1px solid rgba(62, 78, 65, 0.12);
  padding-top: 24px;
}

@media (min-width: 700px) {
  .menu-modal-group + .menu-modal-group {
    border-top: none;
    padding-top: 0;
  }

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

@media (max-width: 640px) {
  .menu-fab {
    right: 28px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .menu-modal-panel {
    padding: 0;
    max-height: 78vh;
  }

  .menu-modal-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px 0;
  }

  .menu-modal-inner {
    padding: 0 18px 20px;
  }

  .menu-modal-close {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .btn,
  .nav a::after {
    transition: none;
  }
}
