@charset "UTF-8";

/* =========================================
   Variables & Reset
 ========================================= */
:root {
  --color-bg: #FAF9F6; /* Creamy off-white */
  --color-text: #2C1E14; /* Deep dark brown */
  --color-accent: #8B4513; /* Saddle brown for elegance */
  --color-green: #556B2F; /* Dark olive green for a classic feel */
  --color-white: #FFFFFF;
  --font-serif-en: 'Cormorant Garamond', serif;
  --font-serif-jp: 'Noto Serif JP', serif;
  --font-sans: 'Outfit', sans-serif;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: var(--font-serif-jp);
  line-height: 1.8;
  letter-spacing: 0.08em;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
}

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.center {
  text-align: center;
}

/* =========================================
   Typography
 ========================================= */
.section-title {
  font-family: var(--font-serif-en);
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--color-green);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--color-text);
}

.section-title.center::after {
  left: 50%;
  transform: translateX(-50%);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--color-text);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 20px;
}

.btn:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

/* =========================================
   Animations
 ========================================= */
.js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* =========================================
   Header
 ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: all 0.4s ease;
  color: var(--color-white);
}

.header.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(74, 59, 50, 0.05);
  color: var(--color-text);
}

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

.logo {
  font-family: var(--font-serif-en);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
}

.nav ul {
  display: flex;
  gap: 15px;
}

.nav li a {
  display: block;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.header.scrolled .nav li a {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text);
}

.nav a:hover {
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
}

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

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

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  max-width: 800px;
  padding: 40px 60px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 4px;
}

.hero-content h2 {
  font-family: var(--font-serif-en);
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 2rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.hero-content h2 i {
  color: #E2D2B0;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.scroll-down {
  position: absolute;
  bottom: 0;
  right: 10%;
  display: flex;
  align-items: center;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.scroll-down span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-right: 20px;
}

.scroll-down .line {
  width: 80px;
  height: 1px;
  background-color: var(--color-text);
  position: relative;
  overflow: hidden;
}

.scroll-down .line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  animation: scrollAnim 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollAnim {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* =========================================
   About
 ========================================= */
.about {
  background-color: var(--color-white);
}

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

.about .text-area {
  width: 45%;
}

.about .catchphrase {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #555;
}

.about .image-area {
  width: 45%;
  position: relative;
}

.about .img-box {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 200px 200px 0 0; /* Arch shape */
}

.about .caption {
  position: absolute;
  bottom: 20px;
  right: -20px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  color: rgba(255,255,255,0.7);
}

.about .floating-box {
  position: absolute;
  bottom: -40px;
  left: -60px;
  background-color: var(--color-green);
  color: var(--color-bg);
  padding: 40px;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: var(--font-serif-en);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.2;
}

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

.menu-card {
  display: flex;
  flex-direction: column;
}

.menu-card:nth-child(even) {
  margin-top: 80px;
}

.card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.card-header h4 {
  font-family: var(--font-serif-en);
  font-size: 1.4rem;
  font-weight: 400;
}

.card-header .price {
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.card-body p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

/* =========================================
   Footer
 ========================================= */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid #eee;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-serif-en);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
}

.copyright {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: #999;
}

/* =========================================
   Responsive
 ========================================= */
@media screen and (max-width: 899px) {
  .about-flex, .menu-grid {
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about .text-area, .about .image-area { width: 100%; }
  .menu-card:nth-child(even) { margin-top: 0; }
  .hero-content h2 { font-size: 3.5rem; }
  .nav ul { gap: 10px; }
  .nav li a { padding: 5px 10px; font-size: 0.75rem; }
}
