@charset "UTF-8";

/* =========================================
   Variables & Reset
========================================= */
:root {
  --color-bg: #FAF8F5;
  --color-text: #4A3B32;
  --color-accent: #D4B895;
  --color-green: #8F9C88;
  --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 {
  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%;
}

.section {
  padding: 120px 0;
}

.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: 100;
  padding: 25px 0;
  transition: all 0.4s ease;
}

.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);
}

.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: 40px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
}

.nav a:hover {
  color: var(--color-accent);
}

/* =========================================
   Hero
========================================= */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  /* Fallback beautiful abstract pattern mimicking light and coffee tones */
  background: 
    radial-gradient(circle at 70% 30%, rgba(212, 184, 149, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(143, 156, 136, 0.15) 0%, transparent 40%),
    linear-gradient(135deg, #fdfbf8 0%, #e8e2d7 100%);
  z-index: -1;
}

/* Subtle grain overlay for premium feel */
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
}

.hero-content {
  padding-left: 10%;
}

.hero-content h2 {
  font-family: var(--font-serif-en);
  font-size: 5rem;
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero-content h2 i {
  color: var(--color-green);
}

.hero-content p {
  font-size: 1.1rem;
  color: #666;
}

.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%; }
}

/* =========================================
   Image Fallback Patterns
========================================= */
.img-pattern-1, .img-pattern-2, .img-pattern-3, .img-pattern-4, .img-pattern-5 {
  background-color: #e5dfd5;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.img-pattern-1 { background: linear-gradient(120deg, #dcd5c9 0%, #cecca6 100%); }
.img-pattern-2 { background: linear-gradient(45deg, #bbb3a7 0%, #a49182 100%); }
.img-pattern-3 { background: linear-gradient(-45deg, #c7d2c3 0%, #8f9c88 100%); }
.img-pattern-4 { background: linear-gradient(to top, #e4ded7 0%, #cdb29b 100%); }
.img-pattern-5 { background: linear-gradient(180deg, #d3d9d0 0%, #b8a28e 100%); }

.img-pattern-1::after, .img-pattern-2::after, .img-pattern-3::after, .img-pattern-4::after, .img-pattern-5::after {
  content: 'Image Place';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

/* =========================================
   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-lead {
  margin-bottom: 60px;
  font-size: 0.95rem;
  color: #666;
}

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

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

/* Stagger grid items */
.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;
}

/* =========================================
   Info
========================================= */
.info {
  background-color: var(--color-white);
}

.info-content {
  display: flex;
  background-color: var(--color-bg);
  padding: 80px;
}

.info-text {
  width: 40%;
  padding-right: 40px;
}

.info-text h3 {
  font-family: var(--font-serif-en);
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 300;
}

.info-text p {
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #555;
}

.info-map-placeholder {
  width: 60%;
  background: #e5dfd5;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #888;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

/* =========================================
   Footer
========================================= */
.footer {
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(74, 59, 50, 0.1);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

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

.sns {
  display: flex;
  gap: 30px;
}

.sns a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

/* =========================================
   Responsive
========================================= */
@media screen and (max-width: 899px) {
  .about-flex, .info-content {
    flex-direction: column;
    gap: 60px;
  }
  
  .about .text-area, .about .image-area, .info-text, .info-map-placeholder {
    width: 100%;
  }

  .about .img-box {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }
  
  .info-content {
    padding: 40px 20px;
  }
  .info-map-placeholder {
    aspect-ratio: 16 / 9;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  .hero-content h2 {
    font-size: 3.5rem;
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .menu-card:nth-child(even) {
    margin-top: 0;
  }
  
  .header .inner {
    flex-direction: column;
    gap: 15px;
  }
}
