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

body {
  font-family: 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  color: #4a3f35;
  line-height: 1.9;
  background: #fffdf9;
}

.container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* sample banner */
.sample-banner {
  background: #4a3f35;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  padding: 8px 16px;
  font-family: 'Hiragino Sans', sans-serif;
}

.sample-banner a {
  color: #ffd9a0;
  text-decoration: none;
}

/* header */
header {
  padding: 22px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

nav a {
  margin-left: 26px;
  text-decoration: none;
  color: #6b5d4f;
  font-size: 0.95rem;
}

nav a:hover {
  color: #b08d57;
}

/* hero */
.hero {
  height: 70vh;
  min-height: 380px;
  background: linear-gradient(rgba(74,63,53,0.35), rgba(74,63,53,0.35)),
              url("https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: normal;
}

.hero p {
  font-size: 1.05rem;
  letter-spacing: 0.05em;
}

/* sections */
section {
  padding: 72px 0;
}

section h2 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  text-align: center;
  color: #b08d57;
}

section p {
  text-align: center;
}

.bg-cream {
  background: #f6efe4;
}

/* menu */
.menu-list {
  max-width: 480px;
  margin: 0 auto;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed #d8c8b0;
}

.menu-price {
  color: #b08d57;
}

/* info */
.info-table {
  max-width: 480px;
  margin: 0 auto;
  border-collapse: collapse;
  width: 100%;
}

.info-table th,
.info-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #ece3d4;
  text-align: left;
  font-weight: normal;
}

.info-table th {
  width: 110px;
  color: #b08d57;
}

/* footer */
footer {
  padding: 30px 0;
  text-align: center;
  background: #4a3f35;
  color: #d8c8b0;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.7rem; }
  nav a { margin-left: 14px; font-size: 0.85rem; }
}
