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

body {
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  color: #3a3a3a;
  line-height: 1.9;
  background: #fff;
}

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

/* sample banner */
.sample-banner {
  background: #2c2c2c;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  padding: 8px 16px;
}

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

/* header */
header {
  padding: 22px 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}

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

.logo {
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  color: #fff;
  font-weight: 300;
}

nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

nav a:hover {
  opacity: 0.7;
}

/* hero */
.hero {
  height: 90vh;
  min-height: 420px;
  background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
              url("https://images.unsplash.com/photo-1560066984-138dadb4c035?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-sub {
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.4rem;
  letter-spacing: 0.2em;
  font-weight: 300;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1rem;
  letter-spacing: 0.08em;
}

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

section h2 {
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  margin-bottom: 32px;
  text-align: center;
  text-transform: uppercase;
  color: #c08aa0;
}

section p {
  text-align: center;
  letter-spacing: 0.03em;
}

.bg-soft {
  background: #faf6f7;
}

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

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #ece0e4;
}

.menu-price {
  color: #c08aa0;
}

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

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

.info-table th {
  width: 110px;
  color: #c08aa0;
  letter-spacing: 0.08em;
}

/* footer */
footer {
  padding: 32px 0;
  text-align: center;
  background: #2c2c2c;
  color: #bbb;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

@media (max-width: 600px) {
  .hero h1 { font-size: 2.4rem; }
  nav a { margin-left: 16px; font-size: 0.75rem; }
}
