:root {
  color-scheme: light;
  --ink: #322618;
  --muted: #6f624d;
  --paper: #f8f2df;
  --panel: #fffaf0;
  --line: #d8c59c;
  --accent: #7b3f16;
  --accent-dark: #4d270e;
  --blue: #254f74;
  --shadow: 0 18px 45px rgba(53, 37, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.48), transparent 28rem),
    linear-gradient(90deg, #d2c39f, #efe4c6 18%, #efe4c6 82%, #d2c39f);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site {
  width: min(100%, 760px);
  margin: 0 auto;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero {
  min-height: 260px;
  padding: 64px 32px 44px;
  text-align: center;
  background:
    linear-gradient(rgba(255, 250, 238, 0.14), rgba(255, 250, 238, 0.9)),
    linear-gradient(#d8e3dc, #fbf5e3);
  border-bottom: 1px solid var(--line);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: clamp(2.4rem, 8vw, 4.7rem);
  font-weight: 400;
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.1;
}

h3 {
  color: var(--accent-dark);
  font-size: 1rem;
}

.subtitle {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 1px;
  padding: 0 24px;
  background: #5b3319;
  border-top: 1px solid #7d5430;
  border-bottom: 1px solid #321b0d;
}

.nav a {
  padding: 12px 16px;
  color: #fff5da;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.section {
  padding: 56px 32px;
  border-bottom: 1px solid var(--line);
}

.intro,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 32px;
  align-items: start;
}

.reverse {
  grid-template-columns: 230px minmax(0, 1fr);
}

.reverse .section-copy {
  order: 2;
}

.info-panel,
.menu-card {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.info-panel address {
  margin-bottom: 16px;
  font-style: normal;
}

.phone {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 1.35rem;
  font-weight: 700;
}

.phone a {
  text-decoration: none;
}

.note {
  color: var(--accent-dark);
  font-weight: 700;
}

.image-stack {
  display: grid;
  gap: 16px;
}

.image-stack img,
.photo-grid img {
  width: 100%;
  border: 8px solid #fff9ec;
  outline: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(54, 38, 22, 0.18);
}

.photo-grid {
  display: grid;
  gap: 16px;
}

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

.prices {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 18px;
  background: rgba(255, 250, 240, 0.62);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.prices div {
  display: grid;
  gap: 2px;
}

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

.footer {
  padding: 32px;
  color: var(--muted);
  text-align: center;
  background: #eadbb9;
}

.footer p {
  margin-bottom: 12px;
}

.footer summary {
  color: var(--accent-dark);
  cursor: pointer;
  font-weight: 700;
}

@media (max-width: 720px) {
  .site {
    width: 100%;
  }

  .hero {
    min-height: 220px;
    padding: 48px 22px 34px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
  }

  .nav a {
    flex: 1 1 50%;
    text-align: center;
  }

  .section {
    padding: 40px 22px;
  }

  .intro,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .reverse .section-copy {
    order: 0;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
