/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #5a4a3a;
  background-color: #fdf8f3;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Header / Nav ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid #f0e6da;
}

.nav {
  max-width: 960px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #c48a6a;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  font-size: 0.85rem;
}

.nav-links a {
  transition: color 0.2s;
}

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

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: linear-gradient(175deg, #fdf8f3 0%, #fceee0 50%, #f9e2d0 100%);
}

.hero-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #c48a6a;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.hero-sub {
  font-size: 1rem;
  color: #9a8070;
  margin-bottom: 32px;
}

.hero-cta {
  display: inline-block;
  padding: 12px 36px;
  background: #c48a6a;
  color: #fff;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}

.hero-cta:hover {
  background: #b07a5c;
  transform: translateY(-2px);
}

/* ===== Section Common ===== */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c48a6a;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  font-size: 0.85rem;
  color: #b09a8a;
  margin-bottom: 48px;
  letter-spacing: 0.1em;
}

/* ===== About ===== */
.about-bg {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-card {
  text-align: center;
  padding: 32px 16px;
  border-radius: 12px;
  background: #fdf8f3;
}

.about-card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.about-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #7a6a5a;
}

.about-card p {
  font-size: 0.85rem;
  color: #9a8a7a;
}

/* ===== Menu ===== */
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0e6da;
}

.menu-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: #9a8a7a;
  margin-top: 4px;
}

.menu-item-price {
  font-weight: 700;
  color: #c48a6a;
  font-size: 1rem;
  white-space: nowrap;
  margin-left: 16px;
}

/* ===== Info ===== */
.info-bg {
  background: #fff;
}

.info-table {
  max-width: 600px;
  margin: 0 auto;
}

.info-row {
  display: flex;
  border-bottom: 1px solid #f0e6da;
  padding: 16px 0;
}

.info-label {
  flex: 0 0 120px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #7a6a5a;
}

.info-value {
  font-size: 0.9rem;
}

/* ===== Instagram CTA ===== */
.instagram-section {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(175deg, #fdf8f3, #fceee0);
}

.instagram-section p {
  font-size: 0.9rem;
  color: #9a8070;
  margin-bottom: 20px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 2px solid #c48a6a;
  border-radius: 30px;
  color: #c48a6a;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.instagram-link:hover {
  background: #c48a6a;
  color: #fff;
}

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 0.8rem;
  color: #b09a8a;
  background: #fdf8f3;
  border-top: 1px solid #f0e6da;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-list {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.8rem;
  }

  .info-row {
    flex-direction: column;
    gap: 4px;
  }

  .info-label {
    flex: none;
  }
}
