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

:root {
  --cream:   #faf6f0;
  --brown:   #5c3d2e;
  --light-brown: #8b6048;
  --accent:  #c8914a;
  --text:    #3a2a1e;
  --muted:   #7a6a5a;
  --white:   #ffffff;
  --serif-en: 'Cormorant Garamond', "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
}

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

/* ===== Header / Hero ===== */
header {
  background: var(--brown);
  color: var(--white);
  text-align: center;
  padding: 80px 24px 60px;
}

header .logo {
  font-family: var(--serif-en);
  font-size: 3.4rem;
  letter-spacing: .35em;
  font-weight: 600;
}

.tagline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.tagline-deco {
  display: inline-block;
  width: 52px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8a97a, transparent);
  opacity: .7;
}

header .tagline {
  font-size: .95rem;
  color: #e8d5b0;
  letter-spacing: .22em;
  font-style: italic;
}

.tagline-sub {
  margin-top: 14px;
  font-family: var(--serif-en);
  font-size: .78rem;
  color: #a89070;
  letter-spacing: .32em;
  text-transform: uppercase;
}

/* ===== Nav ===== */
nav {
  background: var(--light-brown);
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 14px 24px;
  flex-wrap: wrap;
}

nav a {
  color: var(--white);
  font-size: .9rem;
  letter-spacing: .1em;
}

nav a:hover { text-decoration: none; opacity: .75; }

/* ===== Sections ===== */
section {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px;
}

section + section {
  border-top: 1px solid #e0d4c3;
}

h2 {
  font-size: 1.6rem;
  color: var(--brown);
  letter-spacing: .12em;
  margin-bottom: 32px;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* ===== Concept ===== */
.concept-text {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 620px;
}

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

.menu-card {
  background: var(--white);
  border: 1px solid #e8ddd0;
  border-radius: 8px;
  padding: 24px 20px;
}

.menu-card .item-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 6px;
}

.menu-card .item-price {
  font-size: .85rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.menu-card .item-desc {
  font-size: .88rem;
  color: var(--muted);
}

/* ===== Hours ===== */
.hours-table {
  border-collapse: collapse;
  width: 100%;
  max-width: 480px;
}

.hours-table th,
.hours-table td {
  text-align: left;
  padding: 10px 16px;
  border-bottom: 1px solid #e0d4c3;
  font-size: .95rem;
}

.hours-table th {
  width: 120px;
  color: var(--brown);
  font-weight: 600;
}

.closed { color: #b05050; }

/* ===== Map ===== */
.map-placeholder {
  background: #e8e0d4;
  border-radius: 8px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .95rem;
  margin-top: 12px;
}

.map-address {
  margin-top: 16px;
  font-size: .9rem;
  color: var(--muted);
}

/* ===== Contact ===== */
.contact-info p {
  font-size: .95rem;
  margin-bottom: 8px;
  color: var(--muted);
}

.contact-info strong {
  color: var(--text);
}

/* ===== Footer ===== */
footer {
  background: var(--brown);
  color: #c8b49a;
  text-align: center;
  padding: 28px 24px;
  font-size: .82rem;
  letter-spacing: .08em;
}

/* ===== 404 page ===== */
.not-found {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.not-found .big-num {
  font-size: 9rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -.02em;
}

.not-found .nf-title {
  font-size: 1.4rem;
  color: var(--brown);
  margin: 16px 0 8px;
}

.not-found .nf-desc {
  color: var(--muted);
  margin-bottom: 36px;
}

.btn {
  display: inline-block;
  background: var(--brown);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 4px;
  font-size: .95rem;
  letter-spacing: .1em;
}

.btn:hover { background: var(--light-brown); text-decoration: none; }
