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

body {
  font-family: "Segoe UI", "Noto Sans Thai", sans-serif;
  color: #4a3428;
  background: #fffaf3;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #7a4a2b;
}

.nav-links a {
  margin-left: 24px;
  text-decoration: none;
  color: #4a3428;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #b5651d;
}

.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #d9a066, #b5651d);
  color: #fff;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 24px;
}

.cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-line {
  background: #06c755;
  color: #fff;
}

.btn-call {
  background: #fff;
  color: #b5651d;
}

main {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

section {
  margin-bottom: 60px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #7a4a2b;
}

.menu-group {
  margin-bottom: 30px;
}

.menu-group h3 {
  margin-bottom: 12px;
  color: #b5651d;
  border-bottom: 2px solid #e8d4bb;
  padding-bottom: 6px;
}

.menu-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #e8d4bb;
}

.price {
  font-weight: 600;
  color: #7a4a2b;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  background: #f1e0c8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.contact {
  text-align: center;
}

.contact p {
  margin-bottom: 8px;
}

.map-placeholder {
  margin-top: 20px;
  height: 180px;
  background: #f1e0c8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0785a;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  padding: 20px;
  color: #a0785a;
  font-size: 0.85rem;
  background: #fff;
}
