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

:root {
  --bg: #FFF9E6;
  --bg-alt: #F5EEDC;
  --text: #3E2723;
  --accent: #8B5A2B;
  --white: #ffffff;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  background: var(--bg-alt);
  border-bottom: 2px solid var(--accent);
  padding: 1rem 1.5rem;
  text-align: center;
}

header img {
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0 auto 0.5rem;
}

nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

nav a:hover, nav a.active {
  border-bottom-color: var(--accent);
  text-decoration: none;
}

main {
  flex: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text);
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

p, li { margin-bottom: 0.75rem; }

ul { padding-left: 1.25rem; }

.hero {
  text-align: center;
  padding: 2rem 0;
}

.hero p {
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 0.75rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-card {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.image-grid figure {
  background: var(--bg-alt);
  border-radius: 8px;
  overflow: hidden;
}

.image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.image-grid figcaption {
  padding: 0.75rem 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--accent);
}

.contact-block {
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-block img {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  display: block;
  margin: 1rem auto 0;
}

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

.menu-section h2 {
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.5rem;
}

.menu-section table {
  width: 100%;
  border-collapse: collapse;
}

.menu-section th, .menu-section td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--bg-alt);
}

.menu-section th {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
}

footer {
  background: var(--bg-alt);
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  border-top: 2px solid var(--accent);
  margin-top: auto;
}

@media (max-width: 600px) {
  header img { max-width: 200px; }
  nav { gap: 1rem; }
  main { padding: 1.5rem 1rem; }
  h1 { font-size: 1.4rem; }
  .image-grid img { height: 180px; }
}
