@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  /* Colors */
  --color-main: #722f37;
  /* Wine Red */
  --color-main-light: #8e3f48;
  --color-base: #FAF7F2;
  /* Warm Beige */
  --color-accent: #D4AF37;
  /* Gold */
  --color-accent-hover: #bda036;
  --color-text: #2c2c2c;
  --color-text-light: #595959;
  --color-white: #ffffff;
  --color-black: #111111;

  /* Typography */
  --font-en: 'Playfair Display', serif;
  --font-ja: 'Noto Serif JP', serif;

  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
}

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

body {
  font-family: var(--font-ja);
  color: var(--color-text);
  background-color: var(--color-base);
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-ja);
  font-weight: 500;
  line-height: 1.4;
}

.en {
  font-family: var(--font-en);
}

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

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

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

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 4%;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .en {
  display: block;
  font-size: 2.5rem;
  color: var(--color-main);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.section-title .ja {
  font-size: 1rem;
  color: var(--color-text-light);
  letter-spacing: 0.1em;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--color-main);
  color: var(--color-white);
  border: 1px solid var(--color-main);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.btn:hover {
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-gold {
  background-color: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-gold::before {
  background-color: var(--color-accent);
}

.btn-gold:hover {
  color: var(--color-white);
}

/* Header */
.header {
  position: absolute;
  /* Initially absolute to stay at top of hero */
  top: 40px;
  /* Space above header */
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
  z-index: 100;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, top 0.4s ease;
}

.header.scrolled {
  position: fixed;
  top: 0;
  background-color: rgba(114, 47, 55, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  border-top: none;
  border-bottom: none;
}

.header-logo a {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.15em;
  transition: color 0.4s ease;
  text-transform: uppercase;
}

.header.scrolled .header-logo a {
  color: var(--color-white);
}

.header-right {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-nav ul {
  display: flex;
  height: 100%;
  margin-right: 0;
}

.header-nav li {
  display: flex;
  align-items: center;
  padding: 0 25px;
}

.header-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: color 0.3s ease;
}

.header.scrolled .header-nav a {
  color: var(--color-white);
}

.header-nav a .en {
  font-family: var(--font-en);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 2px;
}

.header-nav a .ja {
  font-family: var(--font-ja);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

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

.header-sns {
  display: flex;
  gap: 20px;
  margin-left: 35px;
}

.header-sns a {
  color: var(--color-white);
  font-size: 1.35rem;
  /* Increased size */
  transition: color 0.3s ease;
}

.header.scrolled .header-sns a {
  color: var(--color-white);
}

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

/* Footer sns alignment */
.footer-sns a {
  font-size: 1.5rem;
  /* Increased size */
}

.header-reserve:hover {
  background-color: var(--color-accent-hover);
}

.header-reserve::after {
  display: none;
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-white);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.header.scrolled .hamburger span {
  background-color: var(--color-white);
}

/* Footer */
.footer {
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 80px 0 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-info {
  width: 40%;
}

.footer-logo {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-white);
}

.footer-address {
  font-size: 0.95rem;
  line-height: 2;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact {
  font-size: 1.2rem;
  font-family: var(--font-en);
  margin-bottom: 20px;
  color: var(--color-accent);
}

.footer-sns {
  display: flex;
  gap: 15px;
}

.footer-sns a {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-sns a:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent);
}

.footer-nav {
  display: flex;
  gap: 80px;
}

.footer-nav-col h3 {
  font-family: var(--font-en);
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-accent);
  letter-spacing: 0.05em;
}

.footer-nav-col ul li {
  margin-bottom: 12px;
}

.footer-nav-col a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-nav-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth wrapper for pages */
main {
  min-height: 80vh;
}

/* Responsive */
@media (max-width: 991px) {
  .header-nav {
    display: none;
    /* Hide for mobile initially */
  }

  .header-right {
    flex-grow: 1;
    justify-content: flex-end;
    margin-right: 20px;
  }

  .hamburger {
    display: block;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-info,
  .footer-nav {
    width: 100%;
  }
}

/* =========================================
   Top Page Styles
   ========================================= */

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('../images/hero.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(17, 17, 17, 0.4), rgba(114, 47, 55, 0.4));
}

.hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  padding: 0 4%;
}

.hero-logo {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-catch {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Concept */
.concept-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.concept-lead {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 40px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.concept-visual {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.concept-visual img {
  width: 100%;
  height: auto;
  transition: transform 1s ease;
}

.concept-visual:hover img {
  transform: scale(1.03);
}

.concept-text {
  font-size: 1rem;
  line-height: 2.2;
  margin-bottom: 50px;
}

/* Brand Story */
.brand-story {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 120px 0;
}

.brand-story .section-title .en {
  color: var(--color-accent);
}

.brand-story .section-title .ja {
  color: rgba(255, 255, 255, 0.7);
}

.brand-story-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.brand-story-img {
  width: 50%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.brand-story-img img {
  width: 100%;
  height: auto;
  transition: transform 1s ease;
}

.brand-story-img:hover img {
  transform: scale(1.05);
  /* Sizzle zoom */
}

.brand-story-content {
  width: 50%;
}

.brand-story-h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--color-white);
  line-height: 1.6;
}

.brand-story-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 2.2;
}

/* Home Menu */
.home-menu {
  background-color: var(--color-white);
}

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

.home-menu-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.home-menu-img {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.home-menu-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

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

.home-menu-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--color-white);
}

.home-menu-info h3 {
  font-family: var(--font-en);
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-accent);
}

.home-menu-info p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.home-menu-btn {
  text-align: center;
}

/* Home Info */
.home-info-inner {
  display: flex;
  background-color: var(--color-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  overflow: hidden;
}

.home-info-content {
  width: 50%;
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-info-content h3 {
  font-family: var(--font-en);
  font-size: 2rem;
  color: var(--color-main);
  margin-bottom: 30px;
}

.home-info-dl {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.home-info-dl dt {
  width: 30%;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-accent);
}

.home-info-dl dd {
  width: 70%;
  margin-bottom: 15px;
}

.home-info-map {
  width: 50%;
  min-height: 400px;
}

.home-info-map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .hero-logo {
    font-size: 2.5rem;
  }

  .hero-catch {
    font-size: 1rem;
  }

  .concept-lead {
    font-size: 1.2rem;
  }

  .brand-story-inner {
    flex-direction: column;
    gap: 40px;
  }

  .brand-story-img,
  .brand-story-content {
    width: 100%;
  }

  .brand-story-content .section-title {
    text-align: center !important;
  }

  .brand-story-h3 {
    text-align: center;
  }

  .home-menu-grid {
    grid-template-columns: 1fr;
  }

  .home-info-inner {
    flex-direction: column;
  }

  .home-info-content,
  .home-info-map {
    width: 100%;
  }

  .home-info-content {
    padding: 30px 20px;
  }

  .home-info-dl dl,
  .home-info-dl dd {
    width: 100%;
    margin-bottom: 5px;
  }

  .home-info-dl dd {
    margin-bottom: 20px;
  }
}

/* =========================================
   News & Reviews Sections
   ========================================= */

/* News */
.home-news {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-inner {
  display: flex;
  background: var(--color-white);
  padding: 30px 40px;
  border-radius: 4px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  align-items: center;
}

.news-header {
  min-width: 150px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  margin-right: 30px;
  padding-right: 30px;
}

.news-header .en {
  display: block;
  font-size: 1.5rem;
  color: var(--color-main);
  font-family: var(--font-en);
}

.news-header .ja {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.news-list {
  flex-grow: 1;
}

.news-list li {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.news-list li:last-child {
  border-bottom: none;
}

.news-list a {
  display: flex;
  align-items: center;
  padding: 15px 0;
  transition: opacity 0.3s ease;
}

.news-list a:hover {
  opacity: 0.7;
}

.news-date {
  font-family: var(--font-en);
  font-size: 0.9rem;
  color: var(--color-text-light);
  min-width: 100px;
}

.news-label {
  font-size: 0.75rem;
  background-color: var(--color-main);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 20px;
  margin-right: 20px;
  min-width: 80px;
  text-align: center;
}

.news-title {
  flex-grow: 1;
  font-size: 0.95rem;
}

/* Reviews Segment */
.reviews-summary {
  text-align: center;
  margin-bottom: 40px;
}

.google-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.rating-number {
  font-size: 2.5rem;
  font-family: var(--font-en);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.reviews-rating .stars {
  font-size: 1.2rem;
}

.rating-count {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--color-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #4285F4;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-family: sans-serif;
  margin-right: 15px;
}

.review-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.review-stars {
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .news-inner {
    flex-direction: column;
    padding: 20px;
  }

  .news-header {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 0;
    padding-right: 0;
    margin-bottom: 20px;
    padding-bottom: 20px;
    width: 100%;
    text-align: center;
  }

  .news-list a {
    flex-wrap: wrap;
  }

  .news-date {
    width: 100%;
    margin-bottom: 5px;
  }

  .news-label {
    margin-bottom: 10px;
  }

  .news-title {
    width: 100%;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Floating Navigation (Global)
   ========================================= */
.floating-nav {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.floating-nav.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  color: var(--color-white);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.floating-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: var(--color-white);
}

.floating-btn i {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.floating-btn span {
  font-size: 0.65rem;
  line-height: 1.2;
  font-family: var(--font-ja);
}

.btn-line {
  background-color: #06C755;
  /* LINE Green */
}

.btn-reserve {
  background-color: var(--color-main);
}

@media (max-width: 768px) {
  .floating-nav {
    bottom: 0;
    right: 0;
    width: 100%;
    flex-direction: row;
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .floating-btn {
    width: 50%;
    height: 60px;
    border-radius: 0;
    flex-direction: row;
    gap: 10px;
    box-shadow: none;
  }

  .floating-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .floating-btn i {
    font-size: 1.5rem;
    margin-bottom: 0;
  }

  .floating-btn span {
    font-size: 0.9rem;
    font-weight: 500;
  }
}

/* =========================================
   Subpage Global & Menu Page Styles
   ========================================= */

/* Subpage Hero */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background-color: var(--color-black);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  color: var(--color-white);
  padding: 0 4%;
  padding-top: var(--header-height);
}

.page-hero-title {
  font-family: var(--font-en);
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.page-hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.2em;
}

/* Menu Layout */
.menu-section {
  max-width: 900px;
  margin: 0 auto;
}

.menu-category-title {
  text-align: center;
  font-family: var(--font-en);
  font-size: 2.2rem;
  color: var(--color-main);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
  position: relative;
  padding-bottom: 20px;
}

.menu-category-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background-color: var(--color-accent);
}

/* Course Menu */
.course-list {
  margin-bottom: 80px;
}

.course-item {
  background-color: var(--color-white);
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
  text-align: center;
}

.course-item-img {
  width: 100%;
  height: 420px;
  margin-bottom: 30px;
  border-radius: 4px;
  overflow: hidden;
}

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

.course-item:hover .course-item-img img {
  transform: scale(1.03);
}

.course-name {
  font-family: var(--font-en);
  font-size: 2rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.course-price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.course-desc {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-text-light);
}

/* A la carte Menu */
.alacarte-group {
  margin-bottom: 60px;
}

.alacarte-group-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 30px;
  border-left: 4px solid var(--color-accent);
  padding-left: 15px;
}

.alacarte-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
  position: relative;
}

/* Digital Menu Cards */
.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.menu-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.menu-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.menu-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-text);
  line-height: 1.4;
}

.menu-card-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.menu-card-price {
  font-family: var(--font-en);
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 700;
  text-align: right;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 15px;
}

/* Usage Scenes */
.usage-scenes {
  background-color: var(--color-white);
}

.scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.scene-item {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: #fff;
  transition: transform 0.3s ease;
}

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

.scene-img {
  height: 300px;
  overflow: hidden;
}

.scene-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

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

.scene-content {
  padding: 30px;
  text-align: center;
}

.scene-content h3 {
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: var(--color-main);
  margin-bottom: 15px;
}

.scene-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .page-hero-title {
    font-size: 2.5rem;
  }

  .course-item {
    padding: 30px 20px;
  }

  .course-item-img {
    height: auto;
    aspect-ratio: 4 / 3;
    max-height: 350px;
  }

  .menu-card-grid {
    grid-template-columns: 1fr;
  }

  .scenes-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Chef & About Page Styles
   ========================================= */

.about-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 100px;
}

.about-intro-text {
  font-size: 1.1rem;
  line-height: 2.2;
}

/* Chef Profile */
.chef-profile {
  display: flex;
  align-items: center;
  background-color: var(--color-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 100px;
}

.chef-img {
  width: 45%;
  position: relative;
  overflow: hidden;
}

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

.chef-info {
  width: 55%;
  padding: 60px;
}

.chef-role {
  font-family: var(--font-en);
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.chef-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.chef-history {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--color-text-light);
}

/* Philosophy */
.philosophy-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 60px;
}

.philosophy-item:nth-child(even) {
  flex-direction: row-reverse;
}

.philosophy-img {
  width: 50%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.philosophy-text {
  width: 50%;
}

.philosophy-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 20px;
}

.philosophy-desc {
  font-size: 0.95rem;
  line-height: 2;
}

@media (max-width: 768px) {
  .chef-profile {
    flex-direction: column;
  }

  .chef-img,
  .chef-info {
    width: 100%;
  }

  .chef-info {
    padding: 40px 20px;
  }

  .philosophy-item,
  .philosophy-item:nth-child(even) {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .philosophy-img,
  .philosophy-text {
    width: 100%;
  }
}

/* =========================================
   Reservation Page Styles
   ========================================= */

.reserve-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--color-white);
  padding: 60px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.reserve-lead {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.05rem;
  line-height: 2;
}

.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-main);
}

.form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--color-base);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-white);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 20px;
}

.form-submit .btn {
  width: 100%;
  max-width: 300px;
}

@media (max-width: 768px) {
  .reserve-wrapper {
    padding: 40px 20px;
  }
}