:root {
  --ruby: #7a1f3d;
  --ruby-deep: #5c1630;
  --ruby-soft: #a63d5e;
  --moss: #3d5a45;
  --moss-soft: #5a7a62;
  --ink: #1a1512;
  --ink-soft: #3d3530;
  --parchment: #f3ede3;
  --parchment-deep: #e7dfd2;
  --butter: #e2c27a;
  --white: #fffcf7;
  --hero-scrim: linear-gradient(
    to top,
    rgba(26, 21, 18, 0.78) 0%,
    rgba(26, 21, 18, 0.45) 42%,
    rgba(26, 21, 18, 0.35) 100%
  );

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 0.875rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3.5rem;
  --space-2xl: 5.5rem;
  --space-3xl: 8rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

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

.site {
  overflow-x: clip;
}

/* ——— Nav ——— */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem);
  transition:
    background 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    color 0.35s var(--ease-out),
    backdrop-filter 0.35s var(--ease-out);
  color: var(--white);
}

.nav.is-scrolled {
  background: rgba(243, 237, 227, 0.92);
  color: var(--ink);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 21, 18, 0.08);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

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

.nav-phone {
  display: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  transition:
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out);
}

.nav.is-scrolled .nav-phone {
  background: var(--ruby);
  color: var(--white);
  border-color: var(--ruby);
}

.nav-phone:hover {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.nav.is-scrolled .nav-phone:hover {
  background: var(--ruby-deep);
  border-color: var(--ruby-deep);
  color: var(--white);
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  color: inherit;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.is-open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(26, 21, 18, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.nav-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(20rem, 88vw);
  height: 100%;
  background: var(--parchment);
  color: var(--ink);
  padding: 5.5rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-panel a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

@media (min-width: 800px) {
  .nav-links,
  .nav-phone {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  color: var(--white);
  overflow: hidden;
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: hero-zoom 18s var(--ease-out) forwards;
}

@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: var(--hero-scrim);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 42rem);
  margin: 0 auto;
  padding: 7rem clamp(1.25rem, 4vw, 2.5rem) clamp(3rem, 8vw, 5rem);
  text-align: center;
}

.hero-brand {
  font-size: clamp(3.25rem, 10vw, 6.5rem);
  font-weight: 700;
  max-width: none;
  opacity: 0;
  transform: translateY(1.5rem);
  animation: rise 0.9s var(--ease-out) 0.15s forwards;
}

.hero-place {
  margin-top: 0.65rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--butter);
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 0.8s var(--ease-out) 0.35s forwards;
}

.hero-lead {
  margin: 1.25rem auto 0;
  max-width: 28rem;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.5;
  color: rgba(255, 252, 247, 0.9);
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 0.8s var(--ease-out) 0.5s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
  opacity: 0;
  transform: translateY(1rem);
  animation: rise 0.8s var(--ease-out) 0.65s forwards;
}

.hero .hero-ctas {
  justify-content: center;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition:
    transform 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ruby);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ruby-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 252, 247, 0.65);
}

.btn-ghost:hover {
  background: rgba(255, 252, 247, 0.12);
  border-color: var(--white);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
}

.btn-ink:hover {
  background: var(--ruby);
}

.btn-outline-ink {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--white);
}

/* ——— Sections ——— */
.section {
  padding: var(--space-2xl) clamp(1.25rem, 4vw, 2.5rem);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ruby);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  max-width: 16ch;
}

.section-copy {
  margin-top: 1rem;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

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

/* ——— Story ——— */
.story {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(122, 31, 61, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(61, 90, 69, 0.1), transparent 50%),
    var(--parchment);
}

.story-grid {
  display: grid;
  gap: var(--space-xl);
  max-width: 40rem;
}

.story-text .section-copy {
  margin-top: 1.25rem;
}

.story-text .section-copy + .section-copy {
  margin-top: 1rem;
}

.story-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(26, 21, 18, 0.12);
  font-size: 0.95rem;
  color: var(--moss);
  font-weight: 500;
}

/* ——— Menu ——— */
.menu {
  background: var(--ink);
  color: var(--parchment);
}

.menu .section-label {
  color: var(--butter);
}

.menu .section-copy {
  color: rgba(243, 237, 227, 0.72);
}

.menu-layout {
  display: grid;
  gap: var(--space-xl);
}

.menu-board {
  min-width: 0;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(243, 237, 227, 0.14);
  padding-bottom: 0.75rem;
}

.menu-tab {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(243, 237, 227, 0.62);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  transition:
    color 0.25s var(--ease-out),
    background 0.25s var(--ease-out);
}

.menu-tab:hover,
.menu-tab:focus-visible {
  color: var(--white);
  outline: none;
}

.menu-tab.is-active {
  color: var(--ink);
  background: var(--butter);
}

.menu-panel {
  max-height: 32rem;
  overflow-y: auto;
  padding-right: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(226, 194, 122, 0.55) transparent;
}

.menu-panel::-webkit-scrollbar {
  width: 6px;
}

.menu-panel::-webkit-scrollbar-thumb {
  background: rgba(226, 194, 122, 0.45);
}

.menu-columns {
  display: grid;
  gap: 1.75rem;
}

.menu-group {
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid rgba(243, 237, 227, 0.16);
  background: rgba(255, 252, 247, 0.03);
}

.menu-group-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.menu-group-note {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: rgba(243, 237, 227, 0.55);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.menu-item {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(243, 237, 227, 0.12);
}

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

.menu-item-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.menu-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0;
}

.menu-price {
  flex-shrink: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--butter);
}

.menu-item p {
  font-size: 0.9rem;
  color: rgba(243, 237, 227, 0.65);
  line-height: 1.45;
}

.menu-footnote {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: rgba(243, 237, 227, 0.55);
}

.menu-footnote-intro {
  margin-top: 1rem;
}

.menu-footnote a {
  color: var(--butter);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 780px) {
  .menu-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }

  .menu-panel {
    max-height: 28rem;
  }

  .menu-columns {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
  }
}

/* ——— Visit ——— */
.visit {
  background:
    linear-gradient(160deg, var(--parchment-deep), var(--parchment) 45%, #ebe4d6);
}

.visit-grid {
  display: grid;
  gap: var(--space-xl);
}

.visit-details {
  display: grid;
  gap: 1.75rem;
}

.visit-block h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ruby);
  margin-bottom: 0.5rem;
}

.visit-block p,
.visit-block a {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
}

.visit-block a:hover {
  color: var(--ruby);
}

.hours-table {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.35rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(26, 21, 18, 0.08);
}

.hours-row span:last-child {
  font-weight: 600;
  white-space: nowrap;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.visit-map {
  position: relative;
  min-height: 18rem;
  background: var(--moss);
  overflow: hidden;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

@media (min-width: 860px) {
  .visit-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: stretch;
  }

  .visit-map,
  .visit-map iframe {
    min-height: 100%;
  }
}

/* ——— Catering ——— */
.catering {
  position: relative;
  color: var(--white);
  overflow: hidden;
}

.catering-media {
  position: absolute;
  inset: 0;
}

.catering-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.catering-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(92, 22, 48, 0.9) 0%,
    rgba(74, 40, 28, 0.68) 42%,
    rgba(26, 21, 18, 0.45) 100%
  );
}

.catering-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 40rem);
  padding: var(--space-2xl) clamp(1.25rem, 4vw, 2.5rem);
}

.catering .section-label {
  color: var(--butter);
}

.catering .section-copy {
  color: rgba(255, 252, 247, 0.85);
}

.catering .hero-ctas {
  opacity: 1;
  transform: none;
  animation: none;
}

/* ——— Footer ——— */
.footer {
  background: var(--ink);
  color: rgba(243, 237, 227, 0.7);
  padding: var(--space-xl) clamp(1.25rem, 4vw, 2.5rem) var(--space-lg);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
}

.footer-meta {
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
}

.footer-meta a:hover {
  color: var(--butter);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(243, 237, 227, 0.12);
  font-size: 0.85rem;
}

.footer-social {
  color: var(--butter);
  font-weight: 600;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }

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

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

  .hero-media img,
  .hero-brand,
  .hero-place,
  .hero-lead,
  .hero-ctas,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

body.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .nav { top: 46px; }
}
.nav-links .menu,
.nav-drawer-panel .menu { display: contents; }
.menu-panel[hidden] { display: none !important; }
.menu-panel.is-active { display: block; }
