@charset "utf-8";
/* ============================================================
 * Bar Baton — 下北沢・音楽とごはんの酒場
 * 参考: Bar Bar Bar（barbarbar.jp）実CSS採寸
 *   gold #d1af00 / warm-brown #272420 / olive-black #1a1d0c
 *   cream #ece8de / tan #d1cbb1 / ink #352c20
 *   fonts: Abril Fatface / Oswald / Zen Kaku Gothic New / Shippori Mincho / Cormorant Garamond
 * 方向性: カジュアル・にぎやか・入りやすい（明るいクリーム地×金アクセント。渋めバーと差別化）
 * ============================================================ */

:root {
  --gold: #d1af00;
  --gold-deep: #a98c07;
  --gold-soft: #e7cf5e;
  --ink: #352c20;
  --ink-soft: #6b5f4c;
  --brown: #272420;
  --olive-black: #1a1d0c;
  --cream: #ece8de;
  --tan: #d1cbb1;
  --paper: #f7f4ec;
  --paper-alt: #efe8d8;

  --font-display: 'Abril Fatface', 'Shippori Mincho', serif;
  --font-en: 'Oswald', 'Zen Kaku Gothic New', sans-serif;
  --font-jp: 'Zen Kaku Gothic New', -apple-system, 'Hiragino Sans', sans-serif;
  --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-script: 'Cormorant Garamond', serif;

  --maxw: 1140px;
  --accent: var(--gold);
  --accent-dark: var(--gold-deep);
  --accent-soft: var(--gold-soft);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .02em;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Shared bits ---------- */
.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }

.section { padding: clamp(64px, 10vw, 128px) 0; }
.section-alt { background: var(--paper-alt); }

.sec-head { text-align: center; margin-bottom: clamp(40px, 6vw, 68px); }

.sec-label {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-block;
  position: relative;
  padding-left: 34px;
  margin-bottom: 18px;
}
.sec-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 26px; height: 1px;
  background: var(--gold);
}

.sec-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(26px, 4.4vw, 40px);
  line-height: 1.45;
  letter-spacing: .04em;
  color: var(--brown);
}
.sec-title em {
  font-style: normal;
  background-image: linear-gradient(transparent 62%, rgba(209,175,0,.42) 62%, rgba(209,175,0,.42) 92%, transparent 92%);
  padding: 0 .06em;
}
.sec-lead {
  margin-top: 22px;
  font-size: 15.5px;
  line-height: 2.1;
  color: var(--ink-soft);
}

.script-deco {
  display: block;
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(30px, 5vw, 52px);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  opacity: .9;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: .12em;
  font-size: 14px;
  padding: 15px 34px;
  border-radius: 2px;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-arrow { transition: transform .25s ease; }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn-primary { background: var(--gold); color: var(--olive-black); box-shadow: 0 8px 22px rgba(209,175,0,.28); }
.btn-primary:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); }

.btn-secondary { background: var(--brown); color: var(--cream); }
.btn-secondary:hover { background: var(--olive-black); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(236,232,222,.5); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline { background: transparent; color: var(--brown); border-color: var(--tan); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); }

/* ============================================================
 * Header
 * ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,29,12,.0);
  transition: background .35s ease, box-shadow .35s ease;
}
.header.scrolled {
  background: rgba(26,29,12,.94);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
}
.header-inner {
  width: 92%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.logo a { display: flex; flex-direction: column; line-height: 1; }
.logo-en {
  font-family: var(--font-display);
  font-size: 25px;
  color: var(--gold);
  letter-spacing: .02em;
}
.logo-ja {
  font-family: var(--font-en);
  font-size: 10.5px;
  letter-spacing: .42em;
  color: var(--cream);
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-list { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-list a {
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: .12em;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color .25s ease;
  white-space: nowrap;
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--gold); transition: width .3s ease;
}
.nav-list a:hover, .nav-list a.active { color: var(--gold); }
.nav-list a:hover::after, .nav-list a.active::after { width: 100%; }

.nav-list a.nav-reservation {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 8px 14px 8px 17px;
  border-radius: 2px;
}
.nav-list a.nav-reservation::after { display: none; }
.nav-list a.nav-reservation:hover { background: var(--gold); color: var(--olive-black) !important; }

.hamburger { display: none; background: none; border: 0; cursor: pointer; width: 34px; height: 26px; position: relative; }
.hamburger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--cream); transition: .3s ease; }
.hamburger span:nth-child(1) { top: 2px; }
.hamburger span:nth-child(2) { top: 12px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.is-open span:nth-child(1) { top: 12px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 12px; transform: rotate(-45deg); }

/* ============================================================
 * Hero
 * ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(26,29,12,.62) 0%, rgba(26,29,12,.30) 42%, rgba(26,29,12,.78) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  width: 90%; max-width: var(--maxw); margin: 0 auto;
  color: var(--cream);
}
.hero-eyebrow {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(26px, 4.4vw, 44px);
  color: var(--gold-soft);
  margin-bottom: 10px;
  opacity: 0; animation: heroPop .7s .2s ease both;
}
.hero-title-line {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 62px);
  line-height: 1.32;
  letter-spacing: .04em;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
  opacity: 0;
}
.hero-title-line:nth-of-type(1) { animation: heroPop .8s .4s ease both; }
.hero-title-line:nth-of-type(2) { animation: heroPop .8s .62s ease both; }
.hero-title-line em {
  font-style: normal;
  color: var(--olive-black);
  background: var(--gold);
  padding: .02em .28em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@keyframes heroPop {
  0% { opacity: 0; transform: translateY(22px) scale(.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream); opacity: .8;
}
.hero-scroll::after {
  content: ""; display: block; width: 1px; height: 40px; margin: 8px auto 0;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
 * News strip（チケット風マーキー）
 * ============================================================ */
.news-strip { background: var(--olive-black); color: var(--cream); }
.news-inner {
  width: 92%; max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; gap: 26px;
  padding: 15px 0;
}
.news-label {
  flex-shrink: 0;
  font-family: var(--font-en); font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--olive-black); background: var(--gold);
  padding: 5px 15px; border-radius: 2px;
}
.news-list { list-style: none; display: flex; flex-direction: column; gap: 7px; overflow: hidden; }
.news-list li { display: flex; align-items: baseline; gap: 16px; font-size: 13.5px; }
.news-list li:nth-child(n+4) { display: none; }
.news-date { font-family: var(--font-en); color: var(--gold-soft); letter-spacing: .08em; flex-shrink: 0; }
.news-text { color: var(--tan); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ============================================================
 * Concept（重ねコラージュ）
 * ============================================================ */
.concept-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.collage { position: relative; padding-bottom: 40px; padding-right: 34px; }
.collage-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 22px 50px rgba(39,36,32,.22);
  transform: rotate(-1.4deg);
}
.collage-sub {
  position: absolute; right: 0; bottom: 0;
  width: 45%; aspect-ratio: 3/4; object-fit: cover;
  border: 6px solid #fff;
  box-shadow: 0 16px 36px rgba(39,36,32,.28);
  transform: rotate(3deg);
}
.concept-copy .sec-title { margin-top: 4px; }

/* ============================================================
 * Features（交互ロウ）— 明るい地に写真
 * ============================================================ */
.feature-row {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 90px);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.is-flip .feature-img { order: 2; }
.feature-img {
  position: relative;
}
.feature-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  box-shadow: 0 18px 44px rgba(39,36,32,.20);
}
.feature-img::before {
  content: ""; position: absolute; inset: 14px 14px auto auto;
  width: 46px; height: 46px;
  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
}
.feature-num {
  font-family: var(--font-en); font-weight: 500;
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 14px;
}
.feature-title {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(21px, 3vw, 28px); line-height: 1.5; color: var(--brown);
  margin-bottom: 18px;
}
.feature-desc { font-size: 15px; line-height: 2.05; color: var(--ink-soft); }

/* ============================================================
 * Signature（2枚看板カード）
 * ============================================================ */
.course-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 46px); }
.course-card {
  background: #fff;
  box-shadow: 0 14px 40px rgba(39,36,32,.12);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.course-img { overflow: hidden; }
.course-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform .6s ease; }
.course-card:hover .course-img img { transform: scale(1.05); }
.course-body { padding: 30px 30px 34px; display: flex; flex-direction: column; flex: 1; }
.course-name-en {
  font-family: var(--font-script); font-style: italic; font-weight: 600;
  font-size: 22px; color: var(--gold-deep); line-height: 1; margin-bottom: 4px;
}
.course-name { font-family: var(--font-serif); font-weight: 700; font-size: 22px; color: var(--brown); margin-bottom: 12px; }
.course-desc { font-size: 14px; line-height: 1.95; color: var(--ink-soft); flex: 1; }
.course-meta {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 14px;
  margin-top: 20px; padding-top: 16px; border-top: 1px dotted var(--tan);
}
.course-price { font-family: var(--font-en); font-weight: 600; font-size: 26px; color: var(--brown); line-height: 1; }
.course-price small { font-size: 12px; font-weight: 400; color: var(--ink-soft); margin-left: 5px; letter-spacing: .04em; }
.course-note {
  font-family: var(--font-en); font-size: 11px; letter-spacing: .1em;
  color: var(--olive-black); background: var(--gold-soft);
  padding: 4px 11px; border-radius: 2px; white-space: nowrap;
}
.course-cta { text-align: center; margin-top: clamp(40px, 6vw, 60px); }

/* ============================================================
 * Interior（全幅ダークバンド — ページ内唯一の全面ダーク）
 * ============================================================ */
.interior-wide {
  position: relative; overflow: hidden;
  padding: clamp(90px, 15vw, 180px) 0;
}
.interior-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.interior-wide::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26,29,12,.9) 0%, rgba(26,29,12,.74) 48%, rgba(26,29,12,.32) 100%);
}
.interior-copy {
  position: relative; z-index: 2;
  max-width: 500px; color: var(--cream);
}
.interior-copy .sec-label { color: var(--gold-soft); }
.interior-copy .sec-title { color: #fff; }
.interior-copy .sec-lead { color: var(--tan); }

/* ============================================================
 * FAQ
 * ============================================================ */
.faq-intro { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.faq-container { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--tan); }
.faq-question {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; gap: 16px;
  padding: 24px 4px; text-align: left;
}
.faq-q-label { font-family: var(--font-en); font-weight: 600; color: var(--gold-deep); font-size: 17px; flex-shrink: 0; }
.faq-q-text { flex: 1; font-family: var(--font-serif); font-weight: 500; font-size: 17px; color: var(--brown); line-height: 1.6; }
.faq-toggle { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; background: var(--gold-deep); transition: transform .3s ease;
}
.faq-toggle::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-toggle::after { left: 7px; top: 0; width: 2px; height: 16px; }
.faq-item.is-open .faq-toggle::after { transform: scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.is-open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 4px 26px 40px; font-size: 14.5px; line-height: 2.05; color: var(--ink-soft); }

/* ============================================================
 * Reservation band
 * ============================================================ */
.reservation-section {
  position: relative; overflow: hidden;
  padding: clamp(70px, 11vw, 120px) 0;
  text-align: center; color: var(--cream);
  background: var(--brown);
}
.reservation-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .34; }
.reservation-section::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(26,29,12,.5), rgba(26,29,12,.86));
}
.reservation-inner { position: relative; z-index: 2; width: 90%; max-width: 700px; margin: 0 auto; }
.reservation-label {
  font-family: var(--font-script); font-style: italic; font-size: 32px; color: var(--gold-soft); margin-bottom: 6px;
}
.reservation-title { font-family: var(--font-serif); font-weight: 700; font-size: clamp(22px, 3.6vw, 32px); line-height: 1.5; margin-bottom: 18px; }
.reservation-note { font-size: 14.5px; line-height: 2; color: var(--tan); margin-bottom: 30px; }
.reservation-tel {
  display: inline-flex; flex-direction: column; align-items: center;
  font-family: var(--font-en); font-weight: 600; font-size: clamp(28px, 5vw, 40px); letter-spacing: .04em;
  color: var(--gold); margin-bottom: 26px;
}
.reservation-tel small { font-family: var(--font-jp); font-weight: 400; font-size: 12px; letter-spacing: .2em; color: var(--tan); margin-bottom: 4px; }
.reservation-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
 * Footer
 * ============================================================ */
.footer { background: var(--olive-black); color: var(--tan); padding: clamp(56px, 8vw, 84px) 0 0; }
.footer-inner {
  width: 90%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { font-family: var(--font-display); font-size: 30px; color: var(--gold); line-height: 1; }
.footer-logo-en { font-family: var(--font-en); font-size: 11px; letter-spacing: .34em; text-transform: uppercase; color: var(--cream); margin-top: 8px; }
.footer-tagline { font-size: 13px; color: var(--tan); margin-top: 16px; }
.footer-info { font-size: 13px; line-height: 1.95; color: var(--tan); margin-top: 16px; }
.footer-heading { font-family: var(--font-en); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: var(--tan); transition: color .25s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(209,203,177,.16);
  padding: 22px 0; text-align: center;
  font-family: var(--font-en); font-size: 11px; letter-spacing: .16em; color: rgba(209,203,177,.6);
}

/* ============================================================
 * Mobile fixed CTA
 * ============================================================ */
.mobile-cta-bar { display: none; }

/* ============================================================
 * Sub-page hero（下層ページ共通の帯）
 * ============================================================ */
.page-hero {
  position: relative;
  padding: calc(74px + clamp(56px,10vw,96px)) 0 clamp(48px,8vw,80px);
  background: var(--olive-black); color: var(--cream);
  text-align: center; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(209,175,0,.14), transparent 60%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .script-deco { color: var(--gold-soft); }
.page-hero-title { font-family: var(--font-serif); font-weight: 700; font-size: clamp(26px, 4.6vw, 42px); letter-spacing: .05em; }
.page-hero-sub { margin-top: 14px; font-size: 14px; color: var(--tan); letter-spacing: .06em; }

/* breadcrumb */
.crumb { width: 90%; max-width: var(--maxw); margin: 22px auto 0; font-family: var(--font-en); font-size: 11px; letter-spacing: .1em; color: var(--ink-soft); }
.crumb a { color: var(--gold-deep); }
.crumb span { margin: 0 8px; color: var(--tan); }

/* ============================================================
 * Menu page
 * ============================================================ */
.menu-lead { text-align: center; max-width: 640px; margin: 0 auto clamp(44px,6vw,64px); }
.menu-lead img { width: 100%; aspect-ratio: 16/7; object-fit: cover; margin-bottom: 30px; box-shadow: 0 16px 40px rgba(39,36,32,.16); }

/* 名物：今日の一杯・店主の気分 */
.todays { display: grid; grid-template-columns: minmax(0,.86fr) 1.14fr; gap: clamp(28px,5vw,64px); align-items: center; max-width: 960px; margin: 0 auto; }
.todays-photo { position: relative; border: 6px solid var(--paper); box-shadow: 0 18px 44px rgba(39,36,32,.2); }
.todays-photo img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.todays-date { position: absolute; left: 0; bottom: 0; padding: 7px 15px; background: var(--olive-black); color: var(--gold-soft); font-family: var(--font-en); font-weight: 500; font-size: 12px; letter-spacing: .14em; }
.todays-eyebrow { font-family: var(--font-en); font-weight: 500; font-size: 13px; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep); position: relative; padding-left: 34px; display: inline-block; margin-bottom: 16px; }
.todays-eyebrow::before { content: ""; position: absolute; left: 0; top: 50%; width: 26px; height: 1px; background: var(--gold); }
.todays-title { font-family: var(--font-serif); font-weight: 700; font-size: clamp(24px,3.4vw,34px); line-height: 1.4; letter-spacing: .04em; color: var(--brown); margin-bottom: 16px; }
.todays-name { font-family: var(--font-serif); font-weight: 700; font-size: 19px; color: var(--gold-deep); line-height: 1.6; padding-top: 16px; border-top: 1px dotted var(--tan); margin-bottom: 12px; }
.todays-note { font-family: var(--font-jp); font-size: 15px; line-height: 2.05; color: var(--ink-soft); max-width: 44ch; }
.todays-sign { font-family: var(--font-serif); font-size: 13.5px; color: var(--ink); margin-top: 18px; }
.menu-cat { margin-bottom: clamp(48px, 7vw, 76px); }
.menu-cat-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 8px; border-bottom: 2px solid var(--brown); padding-bottom: 12px; }
.menu-cat-en { font-family: var(--font-script); font-style: italic; font-weight: 600; font-size: 26px; color: var(--gold-deep); }
.menu-cat-name { font-family: var(--font-serif); font-weight: 700; font-size: clamp(19px, 2.6vw, 24px); color: var(--brown); }
.menu-cat-intro { font-size: 13.5px; color: var(--ink-soft); margin: 14px 0 26px; }
.menu-item { display: flex; align-items: baseline; gap: 14px; padding: 16px 0; border-bottom: 1px dotted var(--tan); }
.menu-item-body { flex: 1; }
.menu-item-name { font-family: var(--font-serif); font-weight: 500; font-size: 16.5px; color: var(--brown); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.menu-badge { font-family: var(--font-en); font-size: 10.5px; letter-spacing: .08em; color: var(--olive-black); background: var(--gold-soft); padding: 2px 9px; border-radius: 2px; }
.menu-item-desc { font-size: 13px; color: var(--ink-soft); margin-top: 5px; line-height: 1.85; }
.menu-item-note { font-size: 11.5px; color: var(--gold-deep); margin-top: 4px; }
.menu-item-price { font-family: var(--font-en); font-weight: 600; font-size: 19px; color: var(--brown); white-space: nowrap; }
.menu-item-price small { font-size: 11px; font-weight: 400; color: var(--ink-soft); margin-left: 3px; }
.menu-dots { flex: 0 1 48px; border-bottom: 1px dotted var(--tan); transform: translateY(-4px); min-width: 14px; }
.menu-footnote { max-width: 780px; margin: 0 auto; font-size: 12.5px; line-height: 2; color: var(--ink-soft); background: var(--paper-alt); padding: 22px 28px; border-left: 3px solid var(--gold); }

/* ============================================================
 * About page
 * ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center;
}
.about-copy .sec-lead { font-size: 15.5px; }
.about-imgwrap { position: relative; padding-bottom: 36px; padding-left: 30px; }
.about-imgwrap img.about-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; border: 6px solid #fff; box-shadow: 0 22px 50px rgba(39,36,32,.22); }
.about-imgwrap img.about-sub { position: absolute; left: 0; bottom: 0; width: 42%; aspect-ratio: 3/4; object-fit: cover; border: 6px solid #fff; box-shadow: 0 16px 34px rgba(39,36,32,.26); }

.chef-section { background: var(--paper-alt); }
.chef-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.chef-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; box-shadow: 0 18px 44px rgba(39,36,32,.22); }
.chef-role { font-family: var(--font-script); font-style: italic; font-size: 22px; color: var(--gold-deep); }
.chef-name { font-family: var(--font-serif); font-weight: 700; font-size: clamp(24px, 3.4vw, 32px); color: var(--brown); margin: 4px 0 4px; }
.chef-name-en { font-family: var(--font-en); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 22px; }
.chef-bio { font-size: 15px; line-height: 2.05; color: var(--ink-soft); margin-bottom: 26px; }
.chef-career { list-style: none; border-top: 1px solid var(--tan); }
.chef-career li { font-size: 13.5px; color: var(--ink); padding: 11px 0; border-bottom: 1px solid var(--tan); font-family: var(--font-jp); }

/* ============================================================
 * Access page
 * ============================================================ */
.access-map { width: 100%; aspect-ratio: 16/8; border: 0; filter: grayscale(.15) contrast(1.02); box-shadow: 0 16px 40px rgba(39,36,32,.16); }
.access-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2px; margin-top: 40px; background: var(--tan); border: 1px solid var(--tan); }
.access-cell { background: var(--paper); padding: 26px 24px; }
.access-cell h3 { font-family: var(--font-en); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 12px; }
.access-cell p { font-size: 14px; line-height: 1.9; color: var(--ink); }
.access-hours-row { display: flex; justify-content: space-between; gap: 12px; padding: 7px 0; border-bottom: 1px dotted var(--tan); font-size: 13.5px; }
.access-hours-row:last-child { border-bottom: 0; }
.access-hours-row .d { color: var(--ink-soft); }
.access-hours-row .h { text-align: right; }

/* ============================================================
 * Contact page
 * ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 66px); align-items: start; }
.contact-intro { font-size: 15px; line-height: 2.05; color: var(--ink-soft); margin-bottom: 30px; }
.contact-quick { background: var(--olive-black); color: var(--cream); padding: 34px 32px; }
.contact-quick .sec-label { color: var(--gold-soft); }
.contact-quick-title { font-family: var(--font-serif); font-weight: 700; font-size: 22px; margin-bottom: 18px; }
.contact-quick-title em { font-style: normal; color: var(--gold); }
.contact-tel { font-family: var(--font-en); font-weight: 600; font-size: 32px; color: var(--gold); display: block; margin-bottom: 10px; }
.contact-quick-note { font-size: 12.5px; color: var(--tan); line-height: 1.9; }

.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 13px; font-weight: 500; color: var(--brown); margin-bottom: 8px; }
.form-field label .req { color: var(--gold-deep); font-size: 11px; margin-left: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; font-family: var(--font-jp); font-size: 15px; color: var(--ink);
  padding: 12px 14px; border: 1px solid var(--tan); background: #fff; border-radius: 2px;
  transition: border-color .25s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: 0; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-submit { text-align: center; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--ink-soft); margin-top: 16px; line-height: 1.8; }

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

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-delay: 0s !important; transition-duration: .001ms !important; }
  .hero-eyebrow, .hero-title-line, .fade-in { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
 * Responsive
 * ============================================================ */
@media (max-width: 900px) {
  .concept-grid, .feature-row, .feature-row.is-flip, .about-grid, .chef-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature-row.is-flip .feature-img { order: 0; }
  .concept-copy { order: 2; }
  .collage { max-width: 480px; margin: 0 auto; }
  .chef-photo { max-width: 340px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ナビ切替（タブレット幅での項目折れ防止・ナビ専用ブロック / 834px=ハンバーガー） */
@media (max-width: 1024px) {
  .header-inner { height: 62px; }
  .nav-list {
    position: fixed; top: 62px; right: 0;
    width: min(78vw, 300px); height: calc(100vh - 62px);
    background: rgba(26,29,12,.98);
    flex-direction: column; align-items: flex-start; gap: 0;
    padding: 20px 30px; transform: translateX(105%); transition: transform .35s ease;
  }
  .nav-list.is-open { transform: none; }
  .nav-list li { width: 100%; }
  .nav-list a { display: block; padding: 16px 0; width: 100%; border-bottom: 1px solid rgba(209,203,177,.14); font-size: 15px; white-space: normal; }
  .nav-list a.nav-reservation { border: 0 !important; color: var(--gold) !important; padding: 16px 0 !important; }
  .hamburger { display: block; }
}

@media (max-width: 720px) {
  .course-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .todays { grid-template-columns: 1fr; gap: 24px; }
  .todays-photo { max-width: 340px; }
  .todays-photo img { aspect-ratio: 16/11; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }

  .mobile-cta-bar {
    display: flex; gap: 8px; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
    background: rgba(26,29,12,.96); backdrop-filter: blur(4px);
  }
  .mobile-cta-bar .btn { flex: 1; justify-content: center; padding: 13px 0; font-size: 13px; }
  body { padding-bottom: 60px; }
}

@media (max-width: 460px) {
  .collage-sub, .about-imgwrap img.about-sub { position: relative; width: 70%; margin: -30px 0 0 auto; transform: rotate(2deg); }
  .collage, .about-imgwrap { padding: 0; }
  .menu-item { flex-wrap: wrap; }
}

/* ============================================================
 * 下層ページの視覚強化（2026-07-13 下層エンリッチ）
 *   のっぺりした単色帯を減らし、写真の存在感と明暗リズムを足す
 * ============================================================ */

/* 下層ヒーローに写真の奥行きを（無地のダーク帯 → 写真入り） */
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: grayscale(.1) contrast(1.02);
}
.page-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,29,12,.62) 0%, rgba(26,29,12,.48) 46%, rgba(26,29,12,.82) 100%);
}
.page-hero.has-photo::before { z-index: 1; }

/* 全幅の写真バンド（明暗リズム・editorial caption） */
.photo-band { position: relative; isolation: isolate; overflow: hidden; padding: clamp(78px,12vw,138px) 0; color: var(--cream); }
.photo-band-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.photo-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(26,29,12,.86) 0%, rgba(26,29,12,.6) 50%, rgba(26,29,12,.3) 100%); }
.photo-band-inner { width: 90%; max-width: var(--maxw); margin: 0 auto; }
.photo-band-en { font-family: var(--font-script); font-style: italic; font-weight: 600; font-size: clamp(28px,4vw,42px); color: var(--gold-soft); line-height: 1; margin-bottom: 10px; }
.photo-band-title { font-family: var(--font-serif); font-weight: 700; font-size: clamp(20px,3vw,30px); line-height: 1.5; letter-spacing: .03em; max-width: 22ch; text-shadow: 0 2px 20px rgba(0,0,0,.4); }

/* 額装ワイド写真（access外観／contact雰囲気） */
.access-visual { position: relative; margin-bottom: 36px; overflow: hidden; box-shadow: 0 18px 44px rgba(39,36,32,.2); }
.access-visual img { width: 100%; aspect-ratio: 16/7; object-fit: cover; display: block; }
.access-visual figcaption { position: absolute; left: 0; bottom: 0; padding: 9px 18px; background: rgba(26,29,12,.82); color: var(--cream); font-family: var(--font-en); font-size: 12px; letter-spacing: .14em; }
.access-visual::before { content: ""; position: absolute; inset: 14px 14px auto auto; width: 44px; height: 44px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); z-index: 2; }

@media (max-width: 720px) {
  .photo-band::after { background: linear-gradient(180deg, rgba(26,29,12,.5) 0%, rgba(26,29,12,.72) 100%); }
  .access-visual img { aspect-ratio: 16/10; }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-bg, .photo-band-bg { transform: none; }
}
