:root {
  --bg: #f7f0e7;
  --paper: #fffaf2;
  --ink: #2b2118;
  --muted: #6f6256;
  --accent: #7a4f35;
  --accent-dark: #533522;
  --green: #5d6f4f;
  --line: rgba(43, 33, 24, 0.16);
  --shadow: 0 18px 50px rgba(43, 33, 24, 0.12);
  --radius: 28px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 240, 231, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 10px 25px rgba(122, 79, 53, 0.22);
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 620px;
  margin: 24px 0 30px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
}

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

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo {
  min-height: 430px;
  background:
    linear-gradient(rgba(43, 33, 24, 0.12), rgba(43, 33, 24, 0.12)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1200&q=80") center / cover;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
}

.quick-info div {
  background: var(--paper);
  padding: 20px;
}

.quick-info strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.92rem;
}

.quick-info span {
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 35px rgba(43, 33, 24, 0.08);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

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

.menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.menu-panel {
  background: var(--ink);
  color: #fff8ee;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.menu-panel h3 {
  margin: 0 0 18px;
  font-size: 1.6rem;
}

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

.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 248, 238, 0.18);
}

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

.menu-list span {
  color: rgba(255, 248, 238, 0.72);
}

.notice {
  margin-top: 16px;
  color: rgba(255, 248, 238, 0.72);
  font-size: 0.95rem;
}

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

.image-tile {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(43, 33, 24, 0.1), rgba(43, 33, 24, 0.1)),
    url("https://images.unsplash.com/photo-1442512595331-e89e73853f31?auto=format&fit=crop&w=1200&q=80") center / cover;
  box-shadow: var(--shadow);
}

.hours {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

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

.hours-row span:last-child {
  color: var(--muted);
  text-align: right;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.map {
  min-height: 320px;
  border: 0;
  width: 100%;
  border-radius: var(--radius);
  filter: grayscale(0.15);
  box-shadow: var(--shadow);
}

footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  font: inherit;
  color: var(--ink);
}

@media (max-width: 820px) {
  .mobile-toggle {
    display: inline-flex;
  }

  .nav {
    align-items: flex-start;
    padding: 16px 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .quick-info,
  .cards,
  .menu,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .photo {
    min-height: 320px;
  }
}
