:root {
  /* Color Palette - Neo Japanese Modern */
  --c-ink: #1a1a2e;
  /* Deep Indigo/Black */
  --c-paper: #faf9f6;
  /* Off-white/Washi */
  --c-gold: #c5a059;
  /* Muted Gold */
  --c-wood: #8b5a2b;
  /* Warm Wood */
  --c-accent: #b94e48;
  /* Traditional Red */
  --c-gray: #f4f4f8;
  /* Light Gray background */
  --c-text-muted: #666677;

  /* Fonts */
  --f-sans: "Zen Maru Gothic", sans-serif;
  --f-serif: "Kaisei Decol", serif;

  /* Spacing & Layout */
  --container-width: 1200px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
}

/* Reset & Base */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-sans);
  color: var(--c-ink);
  background-color: var(--c-paper);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-serif);
  margin: 0;
  line-height: 1.4;
  font-weight: 700;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--c-ink);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8em;
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: 2rem;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.btn-reserve {
  background: var(--c-accent);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-reserve:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 78, 72, 0.3);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  animation: fadeUp 1s ease-out;
}

.hero-tagline {
  font-family: var(--f-serif);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 1.2rem;
  letter-spacing: 0.5em;
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  /* Show on desktop */
}

@media (min-width: 1024px) {
  .hero-tagline {
    display: block;
  }

  .hero-content {
    text-align: left;
    margin-right: auto;
    margin-left: 10%;
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  letter-spacing: 0.05em;
}

/* Sections General */
section {
  padding: 6rem 0;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--c-ink);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::before {
  content: attr(data-en);
  display: block;
  font-family: var(--f-sans);
  font-size: 0.9rem;
  color: var(--c-gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.section-desc {
  color: var(--c-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* About / Concept */
.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .concept-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.concept-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 20px 20px 0 var(--c-gold);
}

.concept-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

/* Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.menu-item {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-img-wrap {
  height: 200px;
  overflow: hidden;
}

.menu-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item:hover .menu-img-wrap img {
  transform: scale(1.05);
}

.menu-content {
  padding: 1.5rem;
}

.menu-name {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}

.menu-price {
  color: var(--c-accent);
  font-weight: 700;
}

.menu-desc {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Info & Access */
.info-section {
  background: var(--c-ink);
  color: var(--c-paper);
}

.info-section .section-title {
  color: var(--c-paper);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.info-box h3 {
  color: var(--c-gold);
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.info-rows {
  display: grid;
  gap: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

/* Footer */
footer {
  background: #0f0f1a;
  color: #888;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
}

/* Animation Utilities */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--c-ink);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 767px) {
  .mobile-menu-btn {
    display: block;
  }
}

/* Additions for updated Menu Content */

.menu-category-title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  color: var(--c-wood);
  border-bottom: 2px solid var(--c-gold);
  padding-bottom: 0.5rem;
  margin: 4rem 0 2rem;
}

.menu-category-title:first-of-type {
  margin-top: 2rem;
}

/* Compact Text List for smaller items */
.menu-text-list-wrap {
  margin: 1rem 0 3rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.menu-text-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 3rem;
}

@media (min-width: 768px) {
  .menu-text-list {
    grid-template-columns: 1fr 1fr;
  }
}

.menu-text-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 0.5rem;
  font-size: 0.95rem;
}

.menu-text-list li span:last-child {
  font-weight: 700;
  color: var(--c-accent);
  white-space: nowrap;
  margin-left: 1rem;
}