/* ==========================================================================
   04-creative — Restaurant / Cafe — Warm Editorial Design
   Colors : #1B3C2D (dark green), #F5F0E8 (warm cream), #C8956C (terracotta/gold), #2C5F45 (mid green)
   Fonts  : Playfair Display 400/600/700, Noto Sans JP 300/400/500
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-weight: 400;
  color: #2E2E2E;
  background: #F5F0E8;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- Sample Bar ---------- */
.sample-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #1B3C2D;
  color: #F5F0E8;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  line-height: 1;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 28px;
  left: 0;
  width: 100%;
  z-index: 900;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.is-scrolled {
  background: rgba(27, 60, 45, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #F5F0E8;
  letter-spacing: 0.15em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #F5F0E8;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #C8956C;
  transition: width 0.3s ease;
}

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

.nav-cta {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #1B3C2D;
  background: #C8956C;
  padding: 8px 22px;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-cta:hover {
  background: #D4A57C;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 950;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #F5F0E8;
  position: absolute;
  left: 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }

.hamburger.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0%   { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 40%, transparent 60%);
  z-index: 1;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 14vw;
  color: rgba(245, 240, 232, 0.06);
  letter-spacing: 0.15em;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-sub {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: #C8956C;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #F5F0E8;
  line-height: 1.4;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: #F5F0E8;
  border-bottom: 1px solid #C8956C;
  padding-bottom: 6px;
  transition: color 0.3s ease, gap 0.3s ease;
}

.hero-cta:hover {
  color: #C8956C;
  gap: 16px;
}

.hero-cta .arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Section Label (shared) ---------- */
.section-label {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C8956C;
  margin-bottom: 12px;
  position: relative;
  padding-left: 36px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 24px;
  height: 1px;
  background: #C8956C;
}

.section-label--light {
  color: #C8956C;
}

/* ---------- Story ---------- */
.story {
  background: #F5F0E8;
  padding: 120px 32px;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1B3C2D;
  margin-bottom: 28px;
  line-height: 1.4;
}

.story-lead {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 2;
  color: #3A3A3A;
  margin-bottom: 20px;
}

.story-body {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 2;
  color: #5A5A5A;
  margin-bottom: 16px;
}

.story-image-wrap {
  position: relative;
}

.story-image-frame {
  position: relative;
  display: inline-block;
}

.story-image-frame::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 2px solid #C8956C;
  z-index: -1;
  transition: transform 0.4s ease;
}

.story-image-frame:hover::after {
  transform: translate(4px, 4px);
}

.story-image {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

/* ---------- Story Heading Accent ---------- */
.story-heading-accent {
  width: 40px;
  height: 2px;
  background: #C8956C;
  margin-bottom: 28px;
}

/* ---------- Philosophy ---------- */
.philosophy {
  background: #1B3C2D;
  padding: 100px 32px;
  text-align: center;
}

.philosophy-inner {
  max-width: 700px;
  margin: 0 auto;
}

.philosophy-border-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.philosophy-border {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, transparent, #C8956C, transparent);
}

.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #F5F0E8;
  letter-spacing: 0.08em;
  line-height: 1.6;
  padding: 40px 0;
}

.philosophy-attribution {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: rgba(200, 149, 108, 0.6);
  margin-top: 20px;
}

/* ---------- Menu Section ---------- */
.menu-section {
  background: #1B3C2D;
  padding: 120px 32px;
}

.menu-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.menu-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #F5F0E8;
  margin-bottom: 56px;
  line-height: 1.4;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.menu-card {
  background: rgba(44, 95, 69, 0.4);
  border-radius: 8px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  background: rgba(44, 95, 69, 0.55);
}

.menu-card-image-wrap {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 12px;
  overflow: hidden;
}

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

.menu-card:hover .menu-card-image {
  transform: scale(1.08);
}

.menu-card-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #F5F0E8;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.menu-card-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.menu-card-price {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #C8956C;
  letter-spacing: 0.05em;
}

.menu-more {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #C8956C;
  border-bottom: 1px solid rgba(200, 149, 108, 0.4);
  padding-bottom: 4px;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.menu-more:hover {
  border-color: #C8956C;
  opacity: 0.8;
}

/* ---------- Chef ---------- */
.chef {
  background: #F5F0E8;
  padding: 120px 32px;
}

.chef-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.chef-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.chef-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  transition: transform 0.6s ease;
}

.chef-image-wrap:hover .chef-image {
  transform: scale(1.03);
}

.chef-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #1B3C2D;
  margin-bottom: 16px;
  line-height: 1.4;
}

.chef-heading-accent {
  width: 40px;
  height: 2px;
  background: #C8956C;
  margin-bottom: 28px;
}

.chef-lead {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 2;
  color: #3A3A3A;
  margin-bottom: 20px;
}

.chef-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 2;
  color: #5A5A5A;
  margin-bottom: 24px;
  font-style: italic;
}

.chef-awards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(200, 149, 108, 0.3);
}

.chef-award-item {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: #C8956C;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: 0;
}

.gallery-inner {
  padding: 80px 32px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  color: #1B3C2D;
  margin-bottom: 16px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}

.gallery-item {
  overflow: hidden;
  height: 300px;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 60, 45, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item {
  position: relative;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #F5F0E8;
  border: 1px solid rgba(245, 240, 232, 0.5);
  padding: 6px 16px;
}

/* ---------- Reservation Ornament ---------- */
.reservation-ornament {
  width: 40px;
  height: 1px;
  background: #C8956C;
  margin: 0 auto 24px;
}

/* ---------- Reservation CTA ---------- */
.reservation {
  background: #F5F0E8;
  padding: 120px 32px;
  text-align: center;
}

.reservation-inner {
  max-width: 640px;
  margin: 0 auto;
}

.reservation-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #1B3C2D;
  margin-bottom: 20px;
}

.reservation-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: #5A5A5A;
  line-height: 2;
  margin-bottom: 36px;
}

.reservation-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.reservation-phone-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #1B3C2D;
  border: 1px solid #1B3C2D;
  padding: 3px 10px;
  border-radius: 2px;
}

.reservation-phone-number {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #1B3C2D;
  letter-spacing: 0.08em;
}

.reservation-phone-number:hover {
  color: #C8956C;
}

.reservation-hours {
  margin-bottom: 36px;
}

.reservation-hours p {
  font-size: 0.85rem;
  font-weight: 300;
  color: #5A5A5A;
  line-height: 2;
}

.reservation-btn {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #F5F0E8;
  background: #1B3C2D;
  padding: 16px 48px;
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.reservation-btn:hover {
  background: #2C5F45;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 60, 45, 0.3);
}

/* ---------- Access ---------- */
.access {
  background: #2C5F45;
  padding: 100px 32px;
}

.access-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.access-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #F5F0E8;
  margin-bottom: 48px;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
}

.access-dl {
  color: #F5F0E8;
}

.access-dl dt {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #C8956C;
  margin-bottom: 4px;
  margin-top: 20px;
}

.access-dl dt:first-child {
  margin-top: 0;
}

.access-dl dd {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.85);
}

.access-map-placeholder {
  background: rgba(27, 60, 45, 0.5);
  border: 1px solid rgba(245, 240, 232, 0.15);
  border-radius: 4px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 240, 232, 0.3);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

/* ---------- Footer ---------- */
.footer {
  background: #1B3C2D;
  padding: 64px 32px 32px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand {
  text-align: center;
  margin-bottom: 32px;
}

.footer-logo {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #F5F0E8;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.footer-address,
.footer-tel {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  margin-bottom: 28px;
}

.footer-nav a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(245, 240, 232, 0.6);
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C8956C;
}

.footer-bottom {
  text-align: center;
}

.footer-copy {
  font-size: 0.7rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.4);
  margin-bottom: 6px;
}

.footer-sample {
  font-size: 0.65rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.25);
}

/* ==========================================================================
   Responsive — max-width: 768px
   ========================================================================== */
@media (max-width: 768px) {

  /* Hamburger show */
  .hamburger {
    display: block;
  }

  /* Mobile nav */
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(27, 60, 45, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 940;
  }

  .nav.is-open {
    transform: translateX(0);
  }

  .nav-link,
  .nav-cta {
    font-size: 0.95rem;
  }

  /* Hero */
  .hero-content {
    padding: 0 24px 60px;
  }

  .hero-watermark {
    font-size: 28vw;
  }

  /* Story */
  .story {
    padding: 80px 24px;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .story-image-wrap {
    order: -1;
  }

  .story-image {
    max-width: 100%;
  }

  /* Menu */
  .menu-section {
    padding: 80px 24px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-card-image-wrap {
    width: 160px;
    height: 160px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item {
    height: 200px;
  }

  /* Reservation */
  .reservation {
    padding: 80px 24px;
  }

  .reservation-phone-number {
    font-size: 1.4rem;
  }

  /* Access */
  .access {
    padding: 80px 24px;
  }

  .access-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Footer */
  .footer-nav {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

/* ==========================================================================
   Responsive — max-width: 480px
   ========================================================================== */
@media (max-width: 480px) {

  .header-inner {
    padding: 12px 20px;
  }

  .logo {
    font-size: 1.3rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 0.75rem;
  }

  .section-label {
    font-size: 0.68rem;
  }

  .gallery-item {
    height: 160px;
  }

  .reservation-btn {
    padding: 14px 32px;
    font-size: 0.8rem;
  }

  .reservation-phone {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==========================================================================
   Scroll-triggered animations
   ========================================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered card animations */
.animate-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Chef responsive */
@media (max-width: 768px) {
  .chef {
    padding: 80px 24px;
  }

  .chef-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .chef-image {
    max-width: 320px;
    margin: 0 auto;
  }

  .philosophy {
    padding: 72px 24px;
  }

  .gallery-inner {
    padding: 60px 24px 32px;
  }
}

@media (max-width: 480px) {
  .chef-awards {
    gap: 6px;
  }

  .chef-award-item {
    font-size: 0.68rem;
  }

  .philosophy-quote {
    font-size: 1.2rem;
  }
}
