:root {
  --bg: #f4ece1;
  --bg-deep: #111111;
  --surface: rgba(255, 250, 243, 0.82);
  --surface-strong: rgba(255, 248, 238, 0.94);
  --line: rgba(52, 37, 23, 0.16);
  --text: #22170f;
  --muted: #65584c;
  --accent: #b45a2d;
  --accent-deep: #7f3516;
  --accent-soft: #f0c4a8;
  --forest: #274334;
  --shadow: 0 24px 80px rgba(41, 24, 12, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(180, 90, 45, 0.2), transparent 28%),
    radial-gradient(circle at bottom right, rgba(39, 67, 52, 0.14), transparent 26%),
    linear-gradient(180deg, #f9f2e8 0%, var(--bg) 42%, #efe2d3 100%);
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.page-glow {
  position: fixed;
  z-index: -1;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.5;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(180, 90, 45, 0.24);
}

.page-glow-right {
  right: -8rem;
  bottom: 12rem;
  background: rgba(39, 67, 52, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--content-width);
  margin: 1rem auto 0;
  padding: 0.85rem 1.2rem;
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid rgba(82, 56, 30, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 35px rgba(42, 25, 15, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: min(20rem, 48vw);
  line-height: 0;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-mark {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 1.2rem + 1vw, 2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-mark-image {
  display: block;
  width: clamp(13rem, 10.2rem + 9vw, 18rem);
  max-width: 100%;
  height: auto;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--accent-deep);
}

.nav-toggle {
  display: none;
  border: 0;
  background: rgba(180, 90, 45, 0.12);
  color: var(--accent-deep);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

.section-shell {
  width: var(--content-width);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.5rem;
  align-items: center;
  padding: 5rem 0 3rem;
}

.hero h1,
.section-heading h2,
.visit-card h2,
.location-card h3 {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.04em;
}

.hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 2.1rem + 3vw, 5.5rem);
  line-height: 0.92;
}

.hero-text,
.section-heading p,
.visit-card p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #d66a36 100%);
  color: #fff7ef;
  box-shadow: 0 18px 35px rgba(146, 67, 29, 0.22);
}

.button-secondary {
  background: rgba(255, 251, 246, 0.72);
  border-color: rgba(82, 56, 30, 0.12);
  color: var(--text);
}

.hero-list {
  display: grid;
  gap: 0.85rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
}

.hero-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #d88d66);
}

.hero-media {
  position: relative;
  min-height: 28rem;
}

.hero-photo-frame {
  overflow: hidden;
  height: 100%;
  min-height: 28rem;
  border: 1px solid rgba(73, 45, 26, 0.12);
  border-radius: min(2.6rem, 8vw);
  box-shadow: var(--shadow);
}

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

.hero-note {
  position: absolute;
  right: -1rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 13rem;
  padding: 1.1rem 1.2rem;
  background: rgba(25, 19, 15, 0.86);
  color: #f8efe6;
  border-radius: 1.4rem;
  box-shadow: 0 16px 35px rgba(23, 15, 10, 0.28);
}

.hero-note-label {
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
  width: min(1080px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1rem;
}

.signal-bar span {
  padding: 0.8rem 1rem;
  background: rgba(255, 249, 241, 0.72);
  border: 1px solid rgba(82, 56, 30, 0.09);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-stack {
  padding: 4.5rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2,
.visit-card h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 1.55rem + 1.7vw, 3.6rem);
  line-height: 1.02;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.location-card {
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid rgba(84, 60, 34, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.location-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.location-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.location-card:hover .location-media img {
  transform: scale(1.03);
}

.location-body {
  padding: 1.6rem;
}

.location-kicker {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 0.5rem 0 0.65rem;
  font-size: 2rem;
  line-height: 0.98;
}

.location-summary,
.location-favorite {
  color: var(--muted);
}

.location-favorite {
  margin-top: 0.9rem;
}

.location-meta {
  display: grid;
  gap: 1rem;
  margin: 1.35rem 0 0;
}

.location-meta div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.location-meta dt {
  margin-bottom: 0.25rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-meta dd {
  margin: 0;
}

.feature-card {
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(84, 60, 34, 0.08);
  border-radius: var(--radius-md);
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.05;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.visit {
  padding-bottom: 5rem;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.hours-card {
  padding: 1.5rem;
  background: var(--surface-strong);
  border: 1px solid rgba(84, 60, 34, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hours-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.02;
}

.hours-card p {
  margin: 0.35rem 0;
  color: var(--muted);
}

.hours-card ul,
.detail-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.hours-card li,
.detail-list li {
  margin-bottom: 0.45rem;
}

.visit-card {
  padding: clamp(1.6rem, 1.2rem + 2vw, 3rem);
  background:
    radial-gradient(circle at top left, rgba(212, 125, 84, 0.26), transparent 32%),
    linear-gradient(135deg, rgba(24, 18, 14, 0.95), rgba(50, 34, 20, 0.98));
  color: #fff4e8;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(27, 18, 11, 0.22);
}

.visit-card .eyebrow,
.visit-card p {
  color: #f1dbc8;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--content-width);
  margin: 0 auto 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(82, 56, 30, 0.12);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.footer-note {
  margin: 0;
  color: var(--muted);
}

.subpage-hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2.5rem;
  align-items: center;
  padding: 4.6rem 0 3rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  padding-bottom: 2rem;
}

.detail-card {
  padding: 1.6rem;
  background: var(--surface-strong);
  border: 1px solid rgba(84, 60, 34, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.detail-card h2,
.split-copy h2 {
  margin: 0 0 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.8rem, 1.35rem + 1.1vw, 2.8rem);
  line-height: 1.04;
}

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

.food-shot {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  margin: 0;
  border: 1px solid rgba(84, 60, 34, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.5);
}

.food-shot::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(16, 10, 7, 0.72));
}

.food-shot img {
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.food-shot:hover img {
  transform: scale(1.03);
}

.food-shot figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: #fff4e8;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.menu-section {
  padding-bottom: 4rem;
}

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

.menu-card {
  padding: 1.6rem;
  background: var(--surface-strong);
  border: 1px solid rgba(84, 60, 34, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.menu-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.02;
}

.menu-note,
.menu-footnote p,
.menu-item p {
  color: var(--muted);
}

.menu-note {
  margin: 0 0 1.1rem;
  font-weight: 600;
}

.menu-list {
  display: grid;
  gap: 1rem;
}

.menu-item {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.menu-item:first-child {
  padding-top: 0;
  border-top: 0;
}

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

.menu-item h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.menu-price {
  flex-shrink: 0;
  color: var(--accent-deep);
  font-weight: 800;
}

.menu-item p,
.menu-footnote p {
  margin: 0.35rem 0 0;
}

.menu-footnote {
  margin-top: 1.2rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 1.2rem;
  align-items: start;
  padding-bottom: 4rem;
}

.split-copy p {
  color: var(--muted);
}

.split-aside {
  display: grid;
  gap: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

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

@media (max-width: 960px) {
  .hero,
  .location-grid,
  .visit-grid,
  .subpage-hero,
  .detail-grid,
  .food-gallery,
  .menu-grid,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero h1 {
    max-width: 14ch;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-photo-frame {
    min-height: 22rem;
  }

  .hero-note {
    position: static;
    margin-top: 1rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: sticky;
    padding: 0.9rem 1rem;
    border-radius: 1.4rem;
  }

  .brand {
    max-width: min(15rem, 60vw);
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 249, 241, 0.95);
    border: 1px solid rgba(82, 56, 30, 0.1);
    border-radius: 1.4rem;
    box-shadow: 0 18px 45px rgba(42, 25, 15, 0.12);
  }

  body[data-nav-open="true"] .site-nav {
    display: flex;
  }

  .hero {
    gap: 1.6rem;
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 1.65rem + 6vw, 3.9rem);
  }

  .button,
  .card-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-actions,
  .card-actions {
    flex-direction: column;
  }

  .location-card h3 {
    font-size: 1.75rem;
  }

  .menu-item-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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