/* ===================================================================
   ナマステ カリカ — 公式ウェブサイト スタイルシート
   和風モダン × 高級インドレストラン
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

:root {
  /* === 新カラーパレット: ディープエメラルド × サフラン × アイボリー === */
  --emerald: #0e3b32;        /* ディープエメラルド（メイン） */
  --emerald-deep: #082822;   /* さらに濃いエメラルド */
  --emerald-mid: #1c5a4d;    /* ミッドトーン */
  --teal-soft: #2d7a68;      /* ソフトティール */
  --saffron: #e6a417;        /* サフラン（アクセント） */
  --saffron-light: #f4c14d;  /* ライトサフラン */
  --saffron-deep: #c4860a;   /* ディープサフラン */
  --terracotta: #c75b39;     /* テラコッタ（スパイス） */
  --ivory: #f6f2e9;          /* アイボリー背景 */
  --ivory-warm: #efe7d6;     /* 温かみのあるアイボリー */
  --white: #fffdf8;
  --text-dark: #14322b;
  --text-muted: #5a6f68;

  /* 互換用エイリアス（既存ルールが参照） */
  --dark-brown: #0e3b32;
  --deep-brown: #082822;
  --mid-brown: #1c5a4d;
  --gold: #e6a417;
  --gold-light: #f4c14d;
  --gold-deep: #c4860a;
  --cream: #f6f2e9;
  --spice-red: #c75b39;
  --spice-orange: #d68910;
  --spice-turmeric: #e6a417;

  --shadow-soft: 0 10px 40px rgba(14, 59, 50, 0.12);
  --shadow-deep: 0 20px 60px rgba(8, 40, 34, 0.28);
  --serif-jp: 'Shippori Mincho', serif;
  --serif-en: 'Cormorant Garamond', serif;
  --sans-jp: 'Noto Sans JP', sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans-jp);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }

.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ===== ローディング画面 ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--emerald-deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-mark {
  font-family: var(--serif-jp); font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 3rem); color: var(--gold);
  letter-spacing: 0.3em; margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s ease forwards;
}
.loader-sub {
  font-family: var(--serif-en); font-style: italic;
  color: var(--cream); letter-spacing: 0.2em; font-size: 1rem;
  opacity: 0; animation: fadeUp 1s 0.3s ease forwards;
}
.loader-bar {
  margin-top: 2rem; width: 180px; height: 2px;
  background: rgba(201, 162, 75, 0.2); overflow: hidden;
}
.loader-bar::after {
  content: ''; display: block; height: 100%; width: 40%;
  background: var(--gold); animation: loadSlide 1.2s ease-in-out infinite;
}
@keyframes loadSlide { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(20px); } }

/* ===== ヘッダー ===== */
header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(8, 40, 34, 0.0);
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 1.4rem 0;
}
header.scrolled {
  background: rgba(8, 40, 34, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0.8rem 0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo .logo-main {
  font-family: var(--serif-jp); font-weight: 800; font-size: 1.35rem;
  color: var(--gold); letter-spacing: 0.12em;
}
.logo .logo-sub {
  font-family: var(--serif-en); font-size: 0.7rem; font-style: italic;
  color: var(--cream); letter-spacing: 0.25em; text-transform: uppercase;
}
nav ul { display: flex; align-items: center; gap: 2rem; list-style: none; }
nav ul li a {
  color: var(--cream); font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.05em; position: relative; padding: 0.3rem 0;
  transition: color 0.3s ease;
}
nav ul li a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s ease;
}
nav ul li a:hover { color: var(--gold-light); }
nav ul li a:hover::after { width: 100%; }
.nav-uber {
  background: var(--spice-red); color: var(--white) !important;
  padding: 0.55rem 1.2rem !important; border-radius: 4px;
  font-weight: 700 !important; transition: background 0.3s ease, transform 0.3s ease;
}
.nav-uber:hover { background: #8e2d23; transform: translateY(-2px); }
.nav-uber::after { display: none !important; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.burger span { width: 26px; height: 2px; background: var(--gold); transition: 0.3s; }

/* ===== ヒーロー ===== */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(rgba(8,40,34,0.62), rgba(8,40,34,0.82)),
    url('../images/hero.jpg') center/cover no-repeat fixed;
  color: var(--white); overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(230,164,23,0.20), transparent 60%);
}
.hero-content { position: relative; z-index: 2; padding: 6rem 1rem 2rem; }
.hero-eyebrow {
  font-family: var(--serif-en); font-style: italic; font-size: 1.1rem;
  color: var(--gold-light); letter-spacing: 0.3em; margin-bottom: 1.2rem;
  opacity: 0; animation: fadeUp 1s 0.3s ease forwards;
}
.hero h1 {
  font-family: var(--serif-jp); font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1.25;
  letter-spacing: 0.05em; margin-bottom: 1.5rem; text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  opacity: 0; animation: fadeUp 1s 0.5s ease forwards;
}
.hero p.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem); font-weight: 300;
  letter-spacing: 0.08em; margin-bottom: 2.8rem; max-width: 620px;
  margin-left: auto; margin-right: auto;
  opacity: 0; animation: fadeUp 1s 0.7s ease forwards;
}
.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 0.9s ease forwards;
}
.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: var(--gold-light); font-size: 0.75rem; letter-spacing: 0.2em;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  opacity: 0; animation: fadeUp 1s 1.2s ease forwards;
}
.scroll-cue span {
  width: 1px; height: 40px; background: linear-gradient(var(--gold-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 1.8rem; font-family: var(--sans-jp); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.05em; border-radius: 4px;
  cursor: pointer; border: none; transition: all 0.35s ease; position: relative;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: var(--dark-brown);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(201,162,75,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--dark-brown); transform: translateY(-3px); }
.btn-red { background: var(--spice-red); color: var(--white); }
.btn-red:hover { background: #8e2d23; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(176,58,46,0.35); }
.btn-dark { background: var(--dark-brown); color: var(--gold-light); }
.btn-dark:hover { background: var(--deep-brown); transform: translateY(-3px); }

/* ===== セクション共通 ===== */
section { padding: 6rem 0; position: relative; }
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  font-family: var(--serif-en); font-style: italic; font-size: 1rem;
  color: var(--gold-deep); letter-spacing: 0.25em; display: block; margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--serif-jp); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--dark-brown);
  letter-spacing: 0.06em; position: relative; display: inline-block;
}
.section-title::after {
  content: ''; display: block; width: 50px; height: 2px;
  background: var(--gold); margin: 1rem auto 0;
}

/* ===== 店舗紹介 ===== */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: 8px; box-shadow: var(--shadow-deep); }
.about-img-wrap::before {
  content: ''; position: absolute; top: -16px; left: -16px;
  width: 100px; height: 100px; border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold); z-index: -1;
}
.about-img-wrap::after {
  content: ''; position: absolute; bottom: -16px; right: -16px;
  width: 100px; height: 100px; border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold); z-index: -1;
}
.about-text h3 {
  font-family: var(--serif-jp); font-weight: 700; font-size: 1.6rem;
  color: var(--dark-brown); margin-bottom: 1.5rem; line-height: 1.6;
}
.about-text p { color: var(--text-muted); margin-bottom: 1.2rem; font-size: 1rem; }
.about-badges { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.about-badges span {
  background: var(--cream); border: 1px solid var(--gold); color: var(--gold-deep);
  padding: 0.4rem 1rem; border-radius: 30px; font-size: 0.82rem; font-weight: 500;
}

/* ===== 人気メニュー ===== */
.popular { background: var(--cream); }
.menu-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.menu-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); }
.menu-card-img { height: 220px; overflow: hidden; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.08); }
.menu-card-body { padding: 1.5rem; }
.menu-card-body h4 {
  font-family: var(--serif-jp); font-weight: 700; font-size: 1.2rem;
  color: var(--dark-brown); margin-bottom: 0.5rem;
}
.menu-card-body p { color: var(--text-muted); font-size: 0.9rem; }
.menu-card-price {
  display: inline-block; margin-top: 0.8rem; color: var(--spice-red);
  font-weight: 700; font-family: var(--serif-en); font-size: 1.2rem;
}
.center-btn { text-align: center; margin-top: 3rem; }

/* ===== サービス ===== */
.services { background: var(--dark-brown); color: var(--cream); }
.services .section-title { color: var(--gold-light); }
.services .section-title::after { background: var(--gold); }
.services .section-eyebrow { color: var(--gold); }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,162,75,0.25);
  border-radius: 8px; padding: 2rem 1.5rem; text-align: center;
  transition: background 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}
.service-card:hover {
  background: rgba(201,162,75,0.1); transform: translateY(-6px);
  border-color: var(--gold);
}
.service-icon {
  width: 56px; height: 56px; margin: 0 auto 1.2rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--dark-brown);
}
.service-card h4 { font-family: var(--serif-jp); font-weight: 600; font-size: 1.05rem; color: var(--gold-light); }

/* ===== ギャラリー ===== */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 1rem;
}
.gallery-item {
  overflow: hidden; border-radius: 6px; cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: '＋'; position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; color: var(--white);
  font-size: 2rem; background: rgba(8,40,34,0.5); opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }

/* ===== パーティー予約 ===== */
.party {
  background: linear-gradient(rgba(8,40,34,0.85), rgba(8,40,34,0.92)),
    url('../images/party.jpg') center/cover no-repeat fixed;
  color: var(--cream); text-align: center;
}
.party .section-title { color: var(--gold-light); }
.party .section-title::after { background: var(--gold); }
.party .section-eyebrow { color: var(--gold); }
.party p.party-desc { max-width: 640px; margin: 0 auto 2.5rem; font-size: 1.1rem; font-weight: 300; }

/* ===== お客様の声 ===== */
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review-card {
  background: var(--white); border-radius: 10px; padding: 2.2rem;
  box-shadow: var(--shadow-soft); position: relative;
}
.review-card::before {
  content: '"'; position: absolute; top: 0.5rem; right: 1.5rem;
  font-family: var(--serif-en); font-size: 5rem; color: var(--gold);
  opacity: 0.18; line-height: 1;
}
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.review-card p { color: var(--text-dark); font-size: 1.02rem; margin-bottom: 1.2rem; }
.review-author { font-weight: 700; color: var(--text-muted); font-size: 0.88rem; }

/* ===== アクセス ===== */
.access { background: var(--white); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: stretch; }
.access-info { display: flex; flex-direction: column; justify-content: center; }
.access-info .info-row {
  display: flex; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid rgba(201,162,75,0.3);
}
.access-info .info-row:last-of-type { border-bottom: none; }
.info-label {
  font-family: var(--serif-jp); font-weight: 700; color: var(--gold-deep);
  min-width: 90px; font-size: 0.95rem;
}
.info-value { color: var(--text-dark); font-size: 0.98rem; }
.info-value a { color: var(--spice-red); font-weight: 700; }
.access-buttons { display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.map-wrap { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-soft); min-height: 380px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ===== お問い合わせ ===== */
.contact { background: var(--deep-brown); color: var(--cream); }
.contact .section-title { color: var(--gold-light); }
.contact .section-title::after { background: var(--gold); }
.contact .section-eyebrow { color: var(--gold); }
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--gold-light); font-weight: 500; }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.9rem 1rem; border: 1px solid rgba(201,162,75,0.3);
  background: rgba(255,255,255,0.05); color: var(--white); border-radius: 5px;
  font-family: var(--sans-jp); font-size: 1rem; transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(247,241,230,0.4); }
.form-note { font-size: 0.82rem; color: rgba(247,241,230,0.6); margin-top: 1rem; text-align: center; }
.form-success {
  display: none; background: rgba(201,162,75,0.15); border: 1px solid var(--gold);
  color: var(--gold-light); padding: 1rem; border-radius: 5px; text-align: center; margin-top: 1.2rem;
}

/* ===== フッター ===== */
footer { background: var(--dark-brown); color: var(--cream); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-main { font-family: var(--serif-jp); font-weight: 800; font-size: 1.5rem; color: var(--gold); letter-spacing: 0.1em; }
.footer-brand .logo-sub { font-family: var(--serif-en); font-style: italic; color: rgba(247,241,230,0.7); letter-spacing: 0.2em; display: block; margin-bottom: 1.2rem; }
.footer-brand p { color: rgba(247,241,230,0.7); font-size: 0.92rem; }
.footer-col h5 { font-family: var(--serif-jp); color: var(--gold-light); font-size: 1.05rem; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a, .footer-col ul li { color: rgba(247,241,230,0.75); font-size: 0.9rem; transition: color 0.3s ease; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  width: 42px; height: 42px; border: 1px solid rgba(201,162,75,0.4); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold-light);
  transition: all 0.3s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--dark-brown); border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,162,75,0.2); padding-top: 2rem; text-align: center;
  color: rgba(247,241,230,0.5); font-size: 0.85rem;
}

/* ===== フローティング電話ボタン ===== */
.float-call {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--spice-red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; box-shadow: 0 8px 24px rgba(176,58,46,0.5);
  animation: callPulse 2s ease-in-out infinite; transition: transform 0.3s ease;
}
.float-call:hover { transform: scale(1.1); }
@keyframes callPulse { 0%,100% { box-shadow: 0 8px 24px rgba(176,58,46,0.5); } 50% { box-shadow: 0 8px 24px rgba(176,58,46,0.5), 0 0 0 12px rgba(176,58,46,0.12); } }

/* ===== ライトボックス ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 5000; background: rgba(8,40,34,0.96);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: 6px; box-shadow: var(--shadow-deep); }
.lightbox-close {
  position: absolute; top: 24px; right: 32px; color: var(--gold-light);
  font-size: 2.5rem; cursor: pointer; background: none; border: none; line-height: 1;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); color: var(--gold-light);
  font-size: 2.5rem; cursor: pointer; background: none; border: none; padding: 1rem;
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ===== スクロールアニメーション ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== メニューページ専用 ===== */
.page-hero {
  min-height: 45vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white); padding-top: 90px;
  background: linear-gradient(rgba(8,40,34,0.65), rgba(8,40,34,0.82)),
    url('../images/menu-hero.jpg') center/cover no-repeat;
}
.page-hero h1 { font-family: var(--serif-jp); font-weight: 800; font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 0.06em; }
.page-hero p { font-family: var(--serif-en); font-style: italic; color: var(--gold-light); letter-spacing: 0.2em; margin-top: 0.8rem; }
.menu-gallery-section { background: var(--cream); padding: 5rem 0; }
.menu-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.menu-gallery-item {
  border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft); cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease; background: var(--white);
}
.menu-gallery-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.menu-gallery-item img { width: 100%; height: auto; display: block; }
.menu-empty {
  text-align: center; padding: 4rem 2rem; color: var(--text-muted);
  background: var(--white); border-radius: 10px; border: 2px dashed rgba(201,162,75,0.4);
}
.menu-empty h3 { font-family: var(--serif-jp); color: var(--dark-brown); margin-bottom: 1rem; font-size: 1.4rem; }
.menu-instructions {
  background: var(--white); border-left: 4px solid var(--gold);
  padding: 1.8rem 2rem; margin-top: 3rem; border-radius: 6px; box-shadow: var(--shadow-soft);
}
.menu-instructions h4 { font-family: var(--serif-jp); color: var(--dark-brown); margin-bottom: 1rem; }
.menu-instructions code { background: var(--cream); padding: 0.2rem 0.5rem; border-radius: 4px; color: var(--spice-red); font-size: 0.9rem; }
.menu-instructions ul { margin: 0.8rem 0 0 1.2rem; color: var(--text-muted); }
.menu-instructions li { margin-bottom: 0.5rem; }

/* ===== 404ページ ===== */
.error-page {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(rgba(8,40,34,0.88), rgba(8,40,34,0.94)),
    url('../images/hero.jpg') center/cover no-repeat; color: var(--cream); padding: 2rem;
}
.error-page .err-code { font-family: var(--serif-en); font-size: clamp(5rem, 18vw, 11rem); color: var(--gold); line-height: 1; }
.error-page h1 { font-family: var(--serif-jp); font-weight: 700; font-size: 1.8rem; margin: 1rem 0; }
.error-page p { color: rgba(247,241,230,0.8); margin-bottom: 2rem; max-width: 480px; }

/* ===== レスポンシブ ===== */
@media (max-width: 980px) {
  .menu-grid, .reviews-grid, .menu-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .access-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  nav ul {
    position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh;
    background: var(--emerald-deep); flex-direction: column; justify-content: center;
    gap: 1.8rem; transition: right 0.4s ease; box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  nav ul.open { right: 0; }
  .burger { display: flex; z-index: 1100; }
  header { background: rgba(8,40,34,0.97); }
  .hero { background-attachment: scroll; }
  .party { background-attachment: scroll; }
  section { padding: 4rem 0; }
}
@media (max-width: 520px) {
  .menu-grid, .reviews-grid, .menu-gallery-grid, .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 140px; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ===================================================================
   追加スタイル（新パレット / カレー紹介 / 電話予約コンタクト）
   =================================================================== */

/* ===== ボタン: red を terracotta に統一 ===== */
.btn-red { background: var(--terracotta); color: var(--white); }
.btn-red:hover { background: #a8472b; transform: translateY(-3px); box-shadow: 0 12px 30px rgba(199,91,57,0.35); }
.nav-uber { background: var(--terracotta); }
.nav-uber:hover { background: #a8472b; }
.float-call { background: var(--terracotta); box-shadow: 0 8px 24px rgba(199,91,57,0.5); }
@keyframes callPulse { 0%,100% { box-shadow: 0 8px 24px rgba(199,91,57,0.5); } 50% { box-shadow: 0 8px 24px rgba(199,91,57,0.5), 0 0 0 12px rgba(199,91,57,0.14); } }

/* ===== 人気メニュー: カード画像の枠を上品に ===== */
.menu-card { border: 1px solid rgba(14,59,50,0.06); }

/* ===== お問い合わせ → 電話予約セクション ===== */
.contact { background: var(--emerald); color: var(--ivory); position: relative; overflow: hidden; }
.contact::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(230,164,23,0.12), transparent 55%),
              radial-gradient(circle at 10% 90%, rgba(45,122,104,0.25), transparent 55%);
}
.contact .container { position: relative; z-index: 2; }
.reserve-wrap {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(230,164,23,0.28);
  border-radius: 14px; padding: 3.5rem 2.5rem; backdrop-filter: blur(4px);
}
.reserve-wrap .reserve-icon {
  width: 80px; height: 80px; margin: 0 auto 1.5rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: var(--emerald-deep);
  box-shadow: 0 10px 30px rgba(230,164,23,0.3);
}
.reserve-wrap h3 {
  font-family: var(--serif-jp); font-weight: 700; font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--saffron-light); margin-bottom: 1.2rem; line-height: 1.5;
}
.reserve-wrap p { color: rgba(246,242,233,0.85); font-size: 1.05rem; margin-bottom: 1rem; line-height: 1.9; }
.reserve-services {
  display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; margin: 1.8rem 0 2.2rem;
}
.reserve-services span {
  background: rgba(230,164,23,0.12); border: 1px solid rgba(230,164,23,0.35);
  color: var(--saffron-light); padding: 0.45rem 1.1rem; border-radius: 30px;
  font-size: 0.85rem; font-weight: 500;
}
.reserve-phone {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--serif-en); font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 600;
  color: var(--white); letter-spacing: 0.04em; margin: 0.5rem 0 1.8rem;
  transition: color 0.3s ease;
}
.reserve-phone:hover { color: var(--saffron-light); }
.reserve-phone .ph-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--terracotta);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.reserve-hours { font-size: 0.9rem; color: rgba(246,242,233,0.7); margin-top: 0.5rem; }
.btn-call-big {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  color: var(--emerald-deep); padding: 1.1rem 2.6rem; border-radius: 6px;
  font-weight: 700; font-size: 1.1rem; letter-spacing: 0.05em;
  transition: all 0.35s ease; box-shadow: 0 10px 30px rgba(230,164,23,0.3);
}
.btn-call-big:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(230,164,23,0.45); }

/* ===== カレー紹介セクション ===== */
.curry { background: var(--ivory-warm); position: relative; overflow: hidden; }
.curry::before {
  content: ''; position: absolute; top: -80px; right: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(230,164,23,0.15), transparent 70%); border-radius: 50%;
}
.curry-intro { max-width: 820px; margin: 0 auto 3.5rem; text-align: center; }
.curry-intro p { color: var(--text-muted); font-size: 1.08rem; line-height: 2; }
.curry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; align-items: center; margin-bottom: 4rem; }
.curry-steps { display: flex; flex-direction: column; gap: 1.6rem; }
.curry-step { display: flex; gap: 1.3rem; align-items: flex-start; }
.curry-step .step-num {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%;
  background: var(--emerald); color: var(--saffron-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif-en); font-size: 1.4rem; font-weight: 600;
}
.curry-step .step-body h4 { font-family: var(--serif-jp); color: var(--emerald); font-size: 1.15rem; margin-bottom: 0.4rem; }
.curry-step .step-body p { color: var(--text-muted); font-size: 0.95rem; }
.curry-img-card {
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-deep); position: relative;
}
.curry-img-card img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }

/* スパイス紹介 */
.spice-head { text-align: center; margin-bottom: 2.5rem; }
.spice-head h3 { font-family: var(--serif-jp); color: var(--emerald); font-size: 1.6rem; }
.spice-head span { font-family: var(--serif-en); font-style: italic; color: var(--saffron-deep); letter-spacing: 0.2em; display:block; margin-bottom: 0.5rem; }
.spice-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.spice-card {
  background: var(--white); border-radius: 12px; padding: 2rem 1.4rem; text-align: center;
  box-shadow: var(--shadow-soft); transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-top: 3px solid var(--saffron);
}
.spice-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.spice-card .spice-dot {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.spice-card h5 { font-family: var(--serif-jp); color: var(--emerald); font-size: 1.1rem; margin-bottom: 0.5rem; }
.spice-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.curry-health {
  margin-top: 3.5rem; background: var(--emerald); color: var(--ivory);
  border-radius: 14px; padding: 2.8rem; text-align: center; position: relative; overflow: hidden;
}
.curry-health::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(230,164,23,0.15), transparent 60%);
}
.curry-health > * { position: relative; z-index: 2; }
.curry-health h3 { font-family: var(--serif-jp); color: var(--saffron-light); font-size: 1.4rem; margin-bottom: 1rem; }
.curry-health p { color: rgba(246,242,233,0.88); max-width: 720px; margin: 0 auto; line-height: 2; }

@media (max-width: 980px) {
  .spice-grid { grid-template-columns: repeat(2, 1fr); }
  .curry-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .spice-grid { grid-template-columns: 1fr 1fr; }
  .reserve-wrap { padding: 2.5rem 1.4rem; }
}

/* ===================================================================
   多言語切替 / 言語バナー
   =================================================================== */

/* ===== ヘッダー内 言語スイッチャー ===== */
.lang-switch {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(244,193,77,0.4);
  border-radius: 30px; padding: 3px; margin-left: 1.2rem;
}
.lang-switch button {
  display: inline-flex; align-items: center; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  color: var(--ivory); font-family: var(--sans-jp); font-size: 0.82rem; font-weight: 600;
  padding: 0.4rem 0.85rem; border-radius: 24px; transition: all 0.3s ease; white-space: nowrap;
}
.lang-switch button:hover { color: var(--saffron-light); }
.lang-switch button.active {
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  color: var(--emerald-deep);
}
.lang-switch .flag { font-size: 0.95rem; line-height: 1; }

/* ===== ヒーロー内 言語バナー ===== */
.lang-banner {
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.7rem;
  background: rgba(8,40,34,0.55); border: 1px solid rgba(244,193,77,0.45);
  border-radius: 14px; padding: 1rem 1.6rem; margin-bottom: 2rem;
  backdrop-filter: blur(6px); opacity: 0; animation: fadeUp 1s 0.4s ease forwards;
}
.lang-banner .lang-banner-label {
  font-size: 0.78rem; letter-spacing: 0.12em; color: var(--saffron-light);
  font-weight: 600; text-transform: none;
}
.lang-banner .lang-banner-btns { display: flex; gap: 0.6rem; }
.lang-banner button {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(244,193,77,0.5);
  color: var(--ivory); font-family: var(--sans-jp); font-weight: 700; font-size: 0.92rem;
  padding: 0.55rem 1.3rem; border-radius: 8px; cursor: pointer; transition: all 0.3s ease;
}
.lang-banner button:hover { transform: translateY(-2px); border-color: var(--saffron); }
.lang-banner button.active {
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  color: var(--emerald-deep); border-color: transparent;
}

/* モバイル: 言語スイッチャーを上部固定 */
.mobile-lang-bar {
  display: none; position: fixed; top: 0; left: 0; width: 100%; z-index: 1200;
  background: var(--emerald-deep); border-bottom: 1px solid rgba(244,193,77,0.35);
  padding: 0.5rem 1rem; align-items: center; justify-content: center; gap: 0.6rem;
}
.mobile-lang-bar .ml-label { font-size: 0.72rem; color: var(--saffron-light); font-weight: 600; }
.mobile-lang-bar button {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(244,193,77,0.45);
  color: var(--ivory); font-family: var(--sans-jp); font-weight: 700; font-size: 0.8rem;
  padding: 0.3rem 0.8rem; border-radius: 20px; cursor: pointer; transition: all 0.25s ease;
}
.mobile-lang-bar button.active {
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  color: var(--emerald-deep); border-color: transparent;
}

/* ===================================================================
   メニューページ 2.0（ランチ / グランド / 検索 / フィルター）
   =================================================================== */

/* ランチ通知ブロック（大きく目立たせる） */
.lunch-banner {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: var(--ivory); border-radius: 16px; padding: 2.6rem 2rem; text-align: center;
  margin-bottom: 1rem; position: relative; overflow: hidden;
  border: 2px solid var(--saffron);
}
.lunch-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(230,164,23,0.2), transparent 55%);
}
.lunch-banner > * { position: relative; z-index: 2; }
.lunch-banner .lb-badge {
  display: inline-block; background: var(--saffron); color: var(--emerald-deep);
  font-weight: 700; font-size: 0.85rem; padding: 0.35rem 1.2rem; border-radius: 30px;
  letter-spacing: 0.05em; margin-bottom: 1rem;
}
.lunch-banner h2 {
  font-family: var(--serif-jp); font-weight: 800; font-size: clamp(2rem, 6vw, 3.2rem);
  color: var(--saffron-light); margin-bottom: 0.6rem; letter-spacing: 0.04em;
}
.lunch-banner .lb-hours {
  font-family: var(--serif-en); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 600;
  color: var(--ivory); letter-spacing: 0.06em; margin-bottom: 0.8rem;
}
.lunch-banner .lb-notice {
  font-size: 0.98rem; color: rgba(246,242,233,0.85);
  border-top: 1px solid rgba(244,193,77,0.3); padding-top: 1rem; max-width: 560px; margin: 1rem auto 0;
}

/* グランドメニュー通知 */
.grand-banner {
  background: var(--white); border-radius: 16px; padding: 2.4rem 2rem; text-align: center;
  margin-bottom: 1rem; box-shadow: var(--shadow-soft); border: 2px solid var(--emerald-mid);
}
.grand-banner .gb-badge {
  display: inline-block; background: var(--emerald); color: var(--saffron-light);
  font-weight: 700; font-size: 0.85rem; padding: 0.35rem 1.2rem; border-radius: 30px;
  letter-spacing: 0.05em; margin-bottom: 1rem;
}
.grand-banner h2 {
  font-family: var(--serif-jp); font-weight: 800; font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--emerald); margin-bottom: 0.8rem;
}
.grand-banner .gb-times { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 0.9rem; }
.grand-banner .gb-times span {
  background: var(--ivory-warm); color: var(--emerald); font-weight: 600; font-size: 0.92rem;
  padding: 0.4rem 1.1rem; border-radius: 8px;
}
.grand-banner .gb-notice { color: var(--text-muted); font-size: 0.95rem; }

/* 検索バー */
.menu-search-wrap { max-width: 640px; margin: 2.5rem auto 1.5rem; position: relative; }
.menu-search-wrap input {
  width: 100%; padding: 1rem 1.2rem 1rem 3rem; border: 2px solid rgba(14,59,50,0.15);
  border-radius: 50px; font-family: var(--sans-jp); font-size: 1rem; background: var(--white);
  color: var(--text-dark); transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.menu-search-wrap input:focus { outline: none; border-color: var(--saffron); box-shadow: 0 0 0 4px rgba(230,164,23,0.12); }
.menu-search-wrap .search-icon {
  position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%);
  color: var(--saffron-deep); font-size: 1.1rem; pointer-events: none;
}

/* カテゴリーフィルター（スティッキー） */
.cat-filter {
  position: sticky; top: 70px; z-index: 80; background: var(--ivory);
  padding: 1rem 0; margin-bottom: 2rem; border-bottom: 1px solid rgba(14,59,50,0.08);
}
.cat-filter-inner {
  display: flex; gap: 0.6rem; overflow-x: auto; padding-bottom: 0.3rem;
  scrollbar-width: thin; -webkit-overflow-scrolling: touch;
}
.cat-filter-inner::-webkit-scrollbar { height: 5px; }
.cat-filter-inner::-webkit-scrollbar-thumb { background: rgba(230,164,23,0.5); border-radius: 10px; }
.cat-btn {
  flex-shrink: 0; background: var(--white); border: 1.5px solid rgba(14,59,50,0.15);
  color: var(--emerald); font-family: var(--sans-jp); font-weight: 600; font-size: 0.88rem;
  padding: 0.55rem 1.2rem; border-radius: 30px; cursor: pointer; transition: all 0.25s ease; white-space: nowrap;
}
.cat-btn:hover { border-color: var(--saffron); color: var(--saffron-deep); }
.cat-btn.active {
  background: var(--emerald); color: var(--saffron-light); border-color: var(--emerald);
}

/* メニューアイテムカード */
.menu-section-title {
  font-family: var(--serif-jp); font-weight: 700; font-size: 1.6rem; color: var(--emerald);
  margin: 2.5rem 0 1.4rem; padding-bottom: 0.6rem; border-bottom: 2px solid var(--saffron);
  display: flex; align-items: center; gap: 0.6rem;
}
.menu-section-title .ms-en { font-family: var(--serif-en); font-style: italic; font-size: 1.05rem; color: var(--saffron-deep); font-weight: 500; }
.menu-items-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.item-card {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column; position: relative;
}
.item-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.item-card:active { transform: scale(0.98); }
.item-card-img { position: relative; height: 200px; overflow: hidden; }
.item-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.item-card:hover .item-card-img img { transform: scale(1.08); }
.item-popular-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--terracotta); color: var(--white); font-size: 0.72rem; font-weight: 700;
  padding: 0.3rem 0.8rem; border-radius: 30px; box-shadow: 0 4px 12px rgba(199,91,57,0.4);
}
.item-card-body { padding: 1.3rem; display: flex; flex-direction: column; flex-grow: 1; }
.item-name-ja { font-family: var(--serif-jp); font-weight: 700; font-size: 1.12rem; color: var(--emerald); line-height: 1.4; }
.item-name-en { font-family: var(--serif-en); font-style: italic; font-size: 0.95rem; color: var(--saffron-deep); margin-top: 1px; }
.item-desc { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; margin: 0.7rem 0 1rem; flex-grow: 1; }
.item-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.item-price { font-family: var(--serif-en); font-weight: 600; font-size: 1.5rem; color: var(--terracotta); }
.item-price .price-note { font-size: 0.85rem; color: var(--text-muted); font-family: var(--sans-jp); }
.item-spice { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.item-spice .spice-peppers { font-size: 0.9rem; letter-spacing: 1px; }
.item-spice .spice-label { font-size: 0.68rem; color: var(--text-muted); }
.spice-none { font-size: 0.72rem; color: var(--teal-soft); font-weight: 600; }

/* 検索結果なし */
.menu-no-results {
  text-align: center; padding: 4rem 2rem; color: var(--text-muted); display: none;
  background: var(--white); border-radius: 12px; border: 2px dashed rgba(230,164,23,0.4);
}

/* セクションラッパー */
.menu-block { margin-bottom: 4rem; }

@media (max-width: 980px) {
  .menu-items-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .mobile-lang-bar { display: flex; }
  body.has-mobile-langbar { padding-top: 42px; }
  header { top: 42px; }
  .lang-switch { display: none; }           /* ヘッダー内スイッチャーはモバイルで非表示（上部バーに集約） */
  nav ul .lang-switch-mobile { display: none; }
  .cat-filter { top: 0; }
}
@media (max-width: 560px) {
  .menu-items-grid { grid-template-columns: 1fr; }
  .item-card { flex-direction: row; }
  .item-card-img { width: 42%; height: auto; min-height: 150px; flex-shrink: 0; }
  .item-card-body { width: 58%; }
  .item-card-img img { min-height: 150px; }
}

/* ===================================================================
   ヒーロー ロゴ / スタックテキスト / タグライン
   =================================================================== */

/* AUTHENTIC / INDIAN / CUISINE を縦積みに */
.hero-eyebrow.hero-stack {
  display: flex; flex-direction: column; align-items: center; gap: 0.15em;
  font-family: var(--serif-en); font-style: normal; font-weight: 600;
  letter-spacing: 0.4em; line-height: 1.05; margin-bottom: 1.6rem;
}
.hero-eyebrow.hero-stack span {
  font-size: clamp(1.3rem, 3.6vw, 2.1rem);
  color: var(--saffron-light);
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

/* 円形ロゴ（ゴールドシャドウ + ホバーアニメ） */
.hero-logo {
  display: flex; justify-content: center; align-items: center;
  margin: 0.5rem auto 1.4rem;
  opacity: 0; animation: logoReveal 1.1s 0.45s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-logo img {
  width: clamp(150px, 22vw, 210px); height: clamp(150px, 22vw, 210px);
  border-radius: 50%; object-fit: cover; display: block;
  background: radial-gradient(circle, rgba(14,59,50,0.9), rgba(8,40,34,0.95));
  box-shadow:
    0 0 0 4px rgba(244,193,77,0.35),
    0 0 0 10px rgba(230,164,23,0.12),
    0 18px 50px rgba(230,164,23,0.35),
    0 8px 24px rgba(0,0,0,0.45);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), box-shadow 0.6s ease;
}
.hero-logo img:hover {
  transform: scale(1.06) rotate(-2deg);
  box-shadow:
    0 0 0 4px rgba(244,193,77,0.6),
    0 0 0 12px rgba(230,164,23,0.2),
    0 24px 64px rgba(230,164,23,0.5),
    0 10px 30px rgba(0,0,0,0.5);
}
@keyframes logoReveal {
  0% { opacity: 0; transform: scale(0.6) translateY(20px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* タグライン（ロゴの下） */
.hero-tagline {
  font-family: var(--sans-jp); font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 400; letter-spacing: 0.08em; color: var(--ivory);
  margin-bottom: 1.8rem; opacity: 0; animation: fadeUp 1s 0.7s ease forwards;
}

@media (max-width: 600px) {
  .hero-eyebrow.hero-stack { letter-spacing: 0.3em; gap: 0.1em; }
  .hero-logo img {
    box-shadow:
      0 0 0 3px rgba(244,193,77,0.4),
      0 12px 36px rgba(230,164,23,0.35),
      0 6px 18px rgba(0,0,0,0.4);
  }
}

/* ===================================================================
   メニューページ本体ラッパー
   =================================================================== */
.menu-page { background: var(--ivory); padding: 3.5rem 0 5rem; }
.menu-page .page-hero + & { margin-top: 0; }
.menu-uber-cta { text-align: center; margin-top: 3.5rem; }
.menu-uber-cta .btn { font-size: 1.05rem; padding: 1.1rem 2.6rem; }

/* page-hero 内の section-eyebrow をゴールドに */
.page-hero .section-eyebrow { color: var(--saffron-light); display: block; margin-bottom: 0.6rem; }

/* スティッキーフィルターはページヒーロー直後でも見やすく */
.menu-page .cat-filter { background: var(--ivory); }

/* ===================================================================
   営業時間 / 駐車場 / トラストバッジ / Googleレビュー / パーティーコース
   =================================================================== */

/* ===== 営業時間 ===== */
.hours { background: var(--ivory); }
.hours-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 920px; margin: 0 auto; }
.hours-card {
  background: var(--white); border-radius: 14px; padding: 2rem; box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--saffron);
}
.hours-card h3 {
  font-family: var(--serif-jp); color: var(--emerald); font-size: 1.25rem; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.hours-row { display: flex; justify-content: space-between; align-items: baseline; padding: 0.7rem 0; border-bottom: 1px dashed rgba(14,59,50,0.12); }
.hours-row:last-child { border-bottom: none; }
.hours-row .hr-label { font-weight: 600; color: var(--text-dark); }
.hours-row .hr-time { font-family: var(--serif-en); font-size: 1.15rem; color: var(--terracotta); font-weight: 600; }
.hours-note {
  grid-column: 1 / -1; background: var(--emerald); color: var(--ivory); border-radius: 12px;
  padding: 1.4rem 1.8rem; text-align: center; font-size: 0.95rem; line-height: 1.8;
  border: 1px solid rgba(244,193,77,0.3);
}
.hours-note strong { color: var(--saffron-light); }

/* ===== 駐車場 ===== */
.parking { background: var(--emerald); color: var(--ivory); position: relative; overflow: hidden; }
.parking::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(230,164,23,0.14), transparent 55%);
}
.parking .container { position: relative; z-index: 2; display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; justify-content: center; text-align: center; }
.parking-icon {
  width: 110px; height: 110px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep));
  display: flex; align-items: center; justify-content: center; font-size: 3rem; color: var(--emerald-deep);
  box-shadow: 0 12px 36px rgba(230,164,23,0.35);
}
.parking-text { max-width: 560px; }
.parking-text .section-eyebrow { color: var(--saffron-light); }
.parking-text h2 { font-family: var(--serif-jp); color: var(--saffron-light); font-size: clamp(1.6rem,4vw,2.2rem); margin: 0.4rem 0 1rem; }
.parking-text p { color: rgba(246,242,233,0.88); line-height: 1.9; }

/* ===== トラストバッジ ===== */
.trust-bar { background: var(--ivory-warm); padding: 2.5rem 0; }
.trust-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.trust-item {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white);
  border: 1px solid rgba(14,59,50,0.1); border-radius: 40px; padding: 0.7rem 1.4rem;
  font-weight: 600; color: var(--emerald); font-size: 0.92rem; box-shadow: 0 4px 14px rgba(14,59,50,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.trust-item .tick { color: var(--saffron-deep); font-weight: 800; }

/* ===== Googleレビュー カルーセル ===== */
.greviews { background: var(--white); }
.greview-carousel { position: relative; }
.greview-track {
  display: flex; gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0.5rem 0.2rem 1.5rem; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.greview-track::-webkit-scrollbar { display: none; }
.greview-card {
  flex: 0 0 320px; scroll-snap-align: start; background: var(--ivory);
  border-radius: 14px; padding: 1.6rem; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(14,59,50,0.06); display: flex; flex-direction: column;
}
.greview-head { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.greview-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--emerald-mid), var(--emerald)); color: var(--saffron-light);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--serif-en);
}
.greview-meta { flex-grow: 1; }
.greview-name { font-weight: 700; color: var(--text-dark); font-size: 0.98rem; }
.greview-stars { color: var(--saffron); font-size: 0.95rem; letter-spacing: 1px; }
.greview-g {
  width: 28px; height: 28px; border-radius: 50%; background: var(--white); border: 1px solid rgba(14,59,50,0.12);
  display: flex; align-items: center; justify-content: center; font-family: var(--serif-en);
  font-weight: 700; color: #4285F4; font-size: 1.05rem;
}
.greview-text { color: var(--text-muted); line-height: 1.75; font-size: 0.92rem; flex-grow: 1; }
.greview-ratings { display: flex; gap: 0.8rem; margin-top: 1rem; }
.greview-ratings span {
  background: var(--white); border: 1px solid rgba(230,164,23,0.4); color: var(--saffron-deep);
  font-size: 0.78rem; font-weight: 600; padding: 0.3rem 0.7rem; border-radius: 20px;
}
.greview-nav { display: flex; gap: 0.8rem; justify-content: center; margin-top: 1rem; }
.greview-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--emerald);
  background: var(--white); color: var(--emerald); font-size: 1.4rem; cursor: pointer;
  transition: all 0.25s ease; display: flex; align-items: center; justify-content: center;
}
.greview-nav button:hover { background: var(--emerald); color: var(--saffron-light); }

/* ===== パーティーコース ===== */
.courses { background: var(--ivory); }
.courses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; align-items: stretch; }
.course-card {
  background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid var(--saffron);
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.course-card.featured { border-top-color: var(--terracotta); }
.course-head {
  background: linear-gradient(135deg, var(--emerald), var(--emerald-deep)); color: var(--ivory);
  padding: 1.8rem 1.6rem; text-align: center; position: relative;
}
.course-head h3 { font-family: var(--serif-jp); color: var(--saffron-light); font-size: 1.3rem; margin-bottom: 0.5rem; }
.course-duration { font-size: 0.82rem; color: rgba(246,242,233,0.8); letter-spacing: 0.05em; }
.course-allyoucan { display: inline-block; margin-top: 0.7rem; background: rgba(230,164,23,0.18); border: 1px solid rgba(244,193,77,0.4); color: var(--saffron-light); font-size: 0.78rem; padding: 0.3rem 0.9rem; border-radius: 20px; }
.course-price { text-align: center; padding: 1.4rem; border-bottom: 1px dashed rgba(14,59,50,0.12); }
.course-price .cp-amount { font-family: var(--serif-en); font-size: 2.4rem; font-weight: 700; color: var(--terracotta); }
.course-price .cp-per { font-size: 0.85rem; color: var(--text-muted); }
.course-price .cp-min { display: block; font-size: 0.78rem; color: var(--saffron-deep); margin-top: 0.3rem; }
.course-body { padding: 1.5rem; flex-grow: 1; }
.course-body .ci-label { font-weight: 700; color: var(--emerald); font-size: 0.85rem; margin-bottom: 0.7rem; letter-spacing: 0.05em; }
.course-items { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.course-items span {
  background: var(--ivory-warm); color: var(--text-dark); font-size: 0.78rem;
  padding: 0.3rem 0.7rem; border-radius: 6px;
}
.course-cta { padding: 0 1.5rem 1.5rem; }
.course-cta .btn { width: 100%; justify-content: center; }

/* イベントバナー */
.course-banner {
  margin-top: 3rem; background: linear-gradient(135deg, var(--emerald), var(--emerald-deep));
  color: var(--ivory); border-radius: 16px; padding: 2.8rem 2rem; text-align: center; position: relative; overflow: hidden;
}
.course-banner::before { content:''; position:absolute; inset:0; background: radial-gradient(circle at 80% 20%, rgba(230,164,23,0.16), transparent 55%); }
.course-banner > * { position: relative; z-index: 2; }
.course-banner h3 { font-family: var(--serif-jp); color: var(--saffron-light); font-size: 1.5rem; margin-bottom: 1.4rem; }
.course-occasions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-bottom: 1.4rem; }
.course-occasions span {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(244,193,77,0.4); color: var(--ivory);
  padding: 0.55rem 1.3rem; border-radius: 30px; font-size: 0.9rem; font-weight: 500;
}
.course-group-note { color: var(--saffron-light); font-weight: 600; font-size: 1.05rem; }

/* ===== About: タイプバッジ + 言語ライン ===== */
.about-types { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0; }
.about-types span {
  background: var(--emerald); color: var(--saffron-light); font-size: 0.82rem; font-weight: 600;
  padding: 0.4rem 1rem; border-radius: 30px;
}
.about-lang-line {
  background: rgba(230,164,23,0.1); border-left: 3px solid var(--saffron);
  padding: 1rem 1.3rem; border-radius: 8px; color: var(--text-dark); font-weight: 500;
  margin-top: 1.2rem; line-height: 1.7;
}

/* ===== メニュー: 注目の人気料理（大型カード） ===== */
.featured-block { margin-bottom: 3.5rem; }
.featured-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.featured-card {
  position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-soft);
  background: var(--white); transition: transform 0.3s ease, box-shadow 0.3s ease; min-height: 280px;
  display: flex; flex-direction: column;
}
.featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.featured-card-img { height: 200px; overflow: hidden; position: relative; }
.featured-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-card:hover .featured-card-img img { transform: scale(1.08); }
.featured-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: linear-gradient(135deg, var(--saffron-light), var(--saffron-deep)); color: var(--emerald-deep);
  font-size: 0.75rem; font-weight: 800; padding: 0.35rem 0.9rem; border-radius: 30px;
  box-shadow: 0 4px 12px rgba(230,164,23,0.4);
}
.featured-card-body { padding: 1.3rem 1.4rem; display: flex; justify-content: space-between; align-items: center; }
.featured-name-ja { font-family: var(--serif-jp); font-weight: 700; color: var(--emerald); font-size: 1.15rem; }
.featured-name-en { font-family: var(--serif-en); font-style: italic; color: var(--saffron-deep); font-size: 0.9rem; }
.featured-price { font-family: var(--serif-en); font-weight: 700; font-size: 1.6rem; color: var(--terracotta); white-space: nowrap; }

@media (max-width: 900px) {
  .hours-grid { grid-template-columns: 1fr; }
  .courses-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .featured-grid { grid-template-columns: 1fr; }
  .parking .container { flex-direction: column; }
  .greview-card { flex: 0 0 80%; }
}

/* セクション補足テキスト */
.section-sub { text-align: center; color: var(--text-muted); max-width: 600px; margin: 0.8rem auto 0; font-size: 1rem; line-height: 1.7; }

/* ===================================================================
   画像アップロード用ラベル（VS Codeでの差し替え用ファイル名表示）
   実際の写真をアップロードしたら、このラベルは自然に隠れます。
   =================================================================== */
.img-upload-tag {
  position: absolute; bottom: 8px; left: 8px; right: 8px; z-index: 3;
  background: rgba(8,40,34,0.82); color: var(--saffron-light);
  font-family: 'Courier New', monospace; font-size: 0.72rem; font-weight: 700;
  padding: 0.35rem 0.6rem; border-radius: 6px; text-align: center;
  border: 1px dashed rgba(244,193,77,0.5); letter-spacing: 0.02em;
  pointer-events: none; line-height: 1.3; word-break: break-all;
}
.img-upload-tag::before {
  content: "⬆ "; font-family: inherit;
}
/* 画像エリアに「ここに画像」感を出す薄いオーバーレイ */
.item-card-img, .featured-card-img, .menu-card-img { position: relative; }
