:root {
  --ink: #211914;
  --muted: #6d5d50;
  --paper: #f5efe4;
  --panel: #fffaf0;
  --line: rgba(33, 25, 20, 0.14);
  --brown: #2a1a12;
  --brown-2: #3a2418;
  --red: #8c3525;
  --ochre: #bd8b47;
  --olive: #525d3d;
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.topbar {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 10px clamp(16px, 4vw, 44px);
  color: #fff8eb;
  background: rgba(33, 21, 14, 0.88);
  backdrop-filter: blur(10px);
}

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

.mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(189, 139, 71, 0.7);
  border-radius: 50%;
  color: #efd7aa;
  font-family: var(--serif);
  font-size: 14px;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 248, 235, 0.7);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.phone {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--brown);
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero img {
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(31, 19, 12, 0.86), rgba(31, 19, 12, 0.35) 54%, rgba(31, 19, 12, 0.12));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 128px clamp(18px, 5vw, 56px) 70px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
}

h1 {
  max-width: 720px;
  color: #fff8eb;
  font-size: clamp(34px, 4.4vw, 50px);
  letter-spacing: 0;
}

h2 {
  color: var(--brown);
  font-size: clamp(25px, 3.2vw, 36px);
}

h3 {
  font-size: 21px;
}

.intro {
  max-width: 580px;
  margin: 18px 0 24px;
  color: rgba(255, 248, 235, 0.86);
  font-size: 17px;
}

.actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.btn.primary {
  color: #fff8eb;
  background: var(--red);
}

.btn.secondary {
  color: #fff8eb;
  border-color: rgba(255, 248, 235, 0.58);
  background: rgba(255, 248, 235, 0.08);
}

.details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: #eee0c9;
}

.details div {
  padding: 20px clamp(18px, 4vw, 36px);
  border-right: 1px solid var(--line);
}

.details div:last-child {
  border-right: 0;
}

.details span,
.hours span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.details strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 110px) 0;
}

.story {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
}

.copy p:not(.kicker) {
  max-width: 610px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(39, 25, 15, 0.16);
}

.photo img {
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
}

.menu {
  padding: clamp(60px, 9vw, 104px) clamp(18px, 5vw, 48px);
  color: #fff8eb;
  background: linear-gradient(180deg, var(--brown), var(--brown-2));
}

.menu h2,
.visit h2 {
  color: #fff8eb;
}

.section-head {
  width: min(820px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.menu-grid article {
  padding: 24px 22px;
  border: 1px solid rgba(239, 215, 170, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 248, 235, 0.05);
}

.menu-grid span {
  color: var(--ochre);
  font-family: var(--serif);
  font-size: 17px;
}

.menu-grid h3 {
  margin-top: 14px;
}

.menu-grid p {
  margin: 10px 0 0;
  color: rgba(255, 248, 235, 0.78);
  font-size: 15px;
}

.gallery {
  width: min(1200px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 110px) 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-auto-rows: 220px;
  gap: 12px;
}

.gallery-grid img {
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

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

.note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(24px, 5vw, 54px);
  padding: clamp(62px, 9vw, 110px) clamp(18px, 5vw, 48px);
  color: #fff8eb;
  background: var(--olive);
}

.visit > div:first-child {
  max-width: 650px;
}

.visit p:not(.kicker) {
  color: rgba(255, 248, 235, 0.82);
}

.hours {
  padding: 10px 0;
  border: 1px solid rgba(255, 248, 235, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 248, 235, 0.08);
}

.hours p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 248, 235, 0.16);
}

.hours p:last-child {
  border-bottom: 0;
}

.hours span {
  color: rgba(255, 248, 235, 0.66);
}

.hours strong {
  text-align: right;
  font-size: 14px;
}

.visit-actions {
  grid-column: 1 / -1;
  justify-content: center;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 48px);
  color: rgba(255, 248, 235, 0.72);
  background: #15100d;
}

footer strong {
  color: #fff8eb;
  font-family: var(--serif);
  font-size: 19px;
}

.mobile-bar {
  display: none;
}

@media (max-width: 860px) {
  .topbar {
    min-height: 62px;
    padding: 9px 14px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 9px;
  }

  .mark {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .nav a:not(.phone) {
    display: none;
  }

  .phone {
    font-size: 11px;
    padding: 7px 10px;
  }

  .hero {
    min-height: 78vh;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(31, 19, 12, 0.28), rgba(31, 19, 12, 0.88));
  }

  .hero-content {
    padding: 100px 18px 48px;
  }

  h1 {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .intro {
    font-size: 16px;
  }

  .details,
  .split,
  .story,
  .visit {
    grid-template-columns: 1fr;
  }

  .details div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .details div:last-child {
    border-bottom: 0;
  }

  .split {
    width: calc(100% - 32px);
    padding: 54px 0;
  }

  .story .photo {
    order: 2;
  }

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

  .gallery {
    width: calc(100% - 32px);
    padding: 54px 0;
  }

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

  .gallery-grid img:first-child {
    grid-row: auto;
  }

  .visit {
    padding: 54px 16px 82px;
  }

  .visit-actions {
    justify-content: flex-start;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 88px;
  }

  .mobile-bar {
    position: fixed;
    z-index: 25;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(33, 21, 14, 0.94);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.32);
  }

  .mobile-bar a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border-radius: 999px;
    color: #fff8eb;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-bar a:first-child {
    background: var(--red);
  }
}

@media (max-width: 520px) {
  .actions .btn,
  .visit-actions .btn {
    width: 100%;
  }

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

  .hours p {
    display: block;
  }

  .hours strong {
    display: block;
    margin-top: 4px;
    text-align: left;
  }
}
