/* ============================================================
   ノムカ+Cafe — style.css
   Modern bistro design: Cormorant Garamond × Noto Sans JP
   Color: warm espresso × amber gold × cream
   ============================================================ */

/* --------------- CSS variables --------------- */

:root {
  --header-h: 80px;

  /* ===== THEME COLOR (NOMUCA / Warm Bistro) ===== */
  --primary:        #6B4226;
  --primary-hover:  #522F1A;
  --primary-soft:   #F5E8D8;
  --primary-ink:    #fff;
  --accent:         #C4935A;
  --accent-light:   #E8C99A;
  --bg:             #FAF7F2;
  --bg-dark:        #1A0F08;
  --text:           #251A10;
  --text-sub:       #7A6855;
  --border:         rgba(107, 66, 38, 0.15);
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 20px rgba(37, 26, 16, 0.08);
  --shadow-lg:      0 12px 48px rgba(37, 26, 16, 0.14);
  --transition:     0.3s ease;
}


/* --------------- reset & base --------------- */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.8;
}

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

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

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 600;
}


/* --------------- layout helpers --------------- */

.section {
  padding: 72px 20px;
  scroll-margin-top: var(--header-h);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

/* --------------- section title (elegant) --------------- */

.section-eyebrow {
  display: block;
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-align: center;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 0;
  color: var(--text);
  line-height: 1.3;
}

.section-divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 16px auto 36px;
}

.section-lead {
  text-align: center;
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 48px;
}

/* --------------- scroll reveal --------------- */

.section,
.reveal-up,
.reveal-left,
.reveal-right {
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

/* TOP page section default (hidden) */
body.is-home .section {
  opacity: 0;
  transform: translateY(28px);
}
body.is-home .section.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal helpers for non-section elements */
.reveal-up   { opacity: 0; transform: translateY(28px); }
.reveal-left { opacity: 0; transform: translateX(-28px); }
.reveal-right{ opacity: 0; transform: translateX(28px); }

.reveal-up.is-inview,
.reveal-left.is-inview,
.reveal-right.is-inview {
  opacity: 1;
  transform: translate(0);
}

/* Stagger for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }

/* Sub-pages: always show */
body:not(.is-home) .section {
  opacity: 1;
  transform: none;
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .section, .reveal-up, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* --------------- buttons --------------- */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.08em;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 66, 38, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background-color: var(--primary-soft);
  transform: translateY(-1px);
}

/* Hero内の電話ボタン：写真の上でも必ず見えるよう白系で上書き */
.hero .btn-secondary {
  background-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
}
.hero .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.30);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}


/* --------------- page top button --------------- */

.page-top {
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
  box-shadow: 0 4px 16px rgba(107, 66, 38, 0.35);
  font-size: 0; /* テキスト非表示、CSS矢印で描画 */
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}
/* CSS chevron 矢印 */
.page-top::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-1px, 2px) rotate(-45deg);
}
.page-top.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.page-top:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
}


/* --------------- header --------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 15, 8, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  transition: background 0.3s ease;
}

.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.header-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.2;
}

.site-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-tel {
  display: flex;
  flex-direction: column;
  text-align: right;
  line-height: 1.3;
}
.tel-label {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.tel-number {
  font-size: 18px;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.05em;
}

.header-reserve { font-size: 13px; }

/* Desktop nav */
.global-nav {
  background: rgba(26, 15, 8, 0.4);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.global-nav ul {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.global-nav a {
  display: block;
  padding: 8px 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.global-nav a:hover,
.global-nav a[aria-current="page"] {
  color: var(--accent-light);
}

.header-only-desktop { display: block; }

/* Hamburger */
.nav-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  line-height: 0;
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
}


/* --------------- drawer (mobile) --------------- */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(84vw, 340px);
  background: var(--bg-dark);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 1001;
  padding: 20px 20px 28px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: -12px 0 40px rgba(0,0,0,0.25);
}
.drawer.is-open { transform: translateX(0); }
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

.drawer-close {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 0;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  margin-left: auto;
  display: block;
  color: #fff;
  padding: 4px;
}

.drawer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin: 12px 0 20px;
  text-align: center;
}

.drawer nav ul { padding: 0; }
.drawer nav a {
  display: block;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer nav a:hover { color: var(--accent-light); padding-left: 16px; }

.drawer-footer {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.drawer-footer .tel-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--accent-light);
  display: block;
  margin-bottom: 12px;
}


/* --------------- hero --------------- */

.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  overflow: hidden;
  background-color: var(--bg-dark);
}

/* Slides */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: transform;
}
.hero-slide.is-active { opacity: 1; }

/* Ken Burns — is-active に依存せず常時ループ再生
   これにより切り替え時に transform がリセットされない */
.hero-slide-1 {
  background-image: url("./images/hero-1.jpg");
  animation: kenBurns1 18s ease-in-out infinite alternate;
}
.hero-slide-2 {
  background-image: url("./images/hero-2.jpg");
  animation: kenBurns2 18s ease-in-out infinite alternate;
  animation-delay: -6s;
}
.hero-slide-3 {
  background-image: url("./images/hero-3.jpg");
  animation: kenBurns3 18s ease-in-out infinite alternate;
  animation-delay: -12s;
}

@keyframes kenBurns1 {
  0%   { transform: scale(1.0)  translate(0,    0);    }
  100% { transform: scale(1.07) translate(1.5%, 1%);   }
}
@keyframes kenBurns2 {
  0%   { transform: scale(1.07) translate(-1.5%, -0.5%); }
  100% { transform: scale(1.0)  translate(0.5%,  0.5%);  }
}
@keyframes kenBurns3 {
  0%   { transform: scale(1.0)  translate(0,    1%);   }
  100% { transform: scale(1.07) translate(-1%, -0.5%); }
}

/* Dark overlay with gradient */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(26, 15, 8, 0.72) 0%,
    rgba(26, 15, 8, 0.50) 50%,
    rgba(26, 15, 8, 0.30) 100%
  );
}

/* Text content */
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 0.3em;
  color: var(--accent-light);
  margin: 0 0 16px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 8vw, 88px);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.15;
  margin: 0 0 24px;
  color: #fff;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-lead {
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 300;
  line-height: 2;
  color: rgba(255,255,255,0.88);
  margin: 0 0 10px;
  max-width: 500px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-divider {
  width: 48px;
  height: 1px;
  background: var(--accent-light);
  margin: 28px 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 1s forwards;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.scroll-indicator__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-indicator__line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}


/* --------------- concept section --------------- */

.concept {
  background: var(--bg);
}

.concept-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.concept-text {}
.concept-text .section-title { text-align: left; }
.concept-text .section-eyebrow { text-align: left; }
.concept-text .section-divider { margin: 16px 0 28px; }

.concept-text p {
  color: var(--text-sub);
  line-height: 2;
  margin: 0 0 16px;
  font-size: 15px;
}

.concept-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.concept-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(26,15,8,0.25));
  z-index: 1;
}
.concept-main-image {
  width: 100%;
  height: 100%;
  background-image: url("./images/concept-nomuca.jpg");
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.concept-image-wrap:hover .concept-main-image {
  transform: scale(1.04);
}

/* --------------- signature dishes --------------- */

.signature {
  background: #fff;
}

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

.dish-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dish-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.dish-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #e8d9c8;
  transition: transform 0.7s ease;
}
.dish-card:hover .dish-card-image {
  transform: scale(1.06);
}
.dish-image-1 { background-image: url("./images/menu-1.jpg"); }
.dish-image-2 { background-image: url("./images/menu-2.jpg"); }
.dish-image-3 { background-image: url("./images/menu-3.jpg"); }

.dish-card-body {
  padding: 20px;
}
.dish-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.dish-card-body p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin: 0;
}

/* --------------- drinks section --------------- */

.drinks {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.drinks::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./images/drink-bg.jpg") center/cover no-repeat;
  opacity: 0.25;
}

.drinks .section-inner { position: relative; z-index: 1; }
.drinks .section-title { color: #fff; }
.drinks .section-eyebrow { color: var(--accent-light); }
.drinks .section-lead { color: rgba(255,255,255,0.7); }

.drink-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.drink-highlight-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(4px);
  transition: background var(--transition), transform var(--transition);
  text-align: center;
}
.drink-highlight-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}
.drink-icon {
  font-size: 36px;
  margin-bottom: 14px;
}
.drink-highlight-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}
.drink-highlight-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin: 0;
}

.more-link {
  text-align: center;
  margin-top: 40px;
}
.drinks .btn-secondary {
  color: var(--accent-light);
  border-color: var(--accent-light);
}
.drinks .btn-secondary:hover {
  background: rgba(196, 147, 90, 0.15);
}


/* --------------- space section --------------- */

.space {
  background: var(--bg);
}

.space-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.space-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-lg);
}
.space-main-image {
  width: 100%;
  height: 100%;
  background-image: url("./images/space-nomuca.jpg");
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.space-image-wrap:hover .space-main-image {
  transform: scale(1.04);
}

.space-text {}
.space-text .section-title { text-align: left; }
.space-text .section-eyebrow { text-align: left; }
.space-text .section-divider { margin: 16px 0 28px; }

.space-text p {
  color: var(--text-sub);
  line-height: 2;
  margin: 0 0 16px;
  font-size: 15px;
}

.space-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.space-fact {
  background: var(--primary-soft);
  border-radius: 8px;
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
}
.space-fact-label {
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.space-fact-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}


/* --------------- course section (home) --------------- */

.course-home {
  background: #fff;
}

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

.course-home-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.course-home-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.course-home-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.course-home-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
.course-home-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sub);
  font-family: "Noto Sans JP", sans-serif;
}
.course-home-card p {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin: 0;
}
.course-home-badge {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 10px !important;
  font-weight: 500;
}


/* --------------- blog section --------------- */

.blog {
  background: var(--bg);
}

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

.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.blog-card a { display: block; }

.blog-image {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #e8d9c8;
}

.blog-body {
  padding: 20px;
}
.blog-date {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.blog-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.6;
}
.blog-excerpt {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* --------------- page head (sub pages) --------------- */

.page-head {
  background: var(--bg);
  text-align: center;
  padding-top: calc(var(--header-h) + 40px) !important;
  padding-bottom: 40px;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--text);
}

.page-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.page-lead {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
  margin: 0 auto;
  max-width: 600px;
}

/* Feature image on menu/drink pages */
.menu-feature-image,
.drink-feature-image {
  margin: 28px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
}
.menu-feature-image img,
.drink-feature-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* --------------- menu page --------------- */

.menu-page {
  background: #fff;
}
.menu-page:nth-child(even) {
  background: var(--bg);
}

/* Menu category header */
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.menu-cat-header::before,
.menu-cat-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.menu-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  white-space: nowrap;
}

/* Menu item list */
.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  column-gap: 40px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

/* 右列アイテムに左パディングで間隔確保（縦線なし） */
.menu-list > .menu-item:nth-child(even) {
  padding-left: 20px;
}

/* ランチカード 3列グリッド（PC） */
.lunch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  align-items: stretch; /* 3枚の高さを揃える */
}
.menu-item-name {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
}
.menu-item-name small {
  display: block;
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 3px;
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}

.menu-note {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 24px;
  line-height: 1.8;
}
.menu-note a { text-decoration: underline; }


/* --------------- drink page --------------- */

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

.drinkcat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
}

.drinkcat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.drinkcat-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  gap: 10px;
  font-size: 14px;
  color: var(--text-sub);
}
.drinkcat-list li small {
  display: block;
  font-size: 11px;
  color: var(--text-sub);
  opacity: 0.75;
}
.drinkcat-list .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  color: var(--primary);
  white-space: nowrap;
}

.drinkcat-note {
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 12px;
}


/* --------------- course page --------------- */

.course-hero {
  margin: 28px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
}
.course-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.course-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  transition: transform var(--transition), box-shadow var(--transition);
}
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.course-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.course-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.course-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-sub);
  font-family: "Noto Sans JP", sans-serif;
}

.course-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  border: 1px solid rgba(107,66,38,0.2);
}
.badge-accent {
  background: rgba(196, 147, 90, 0.15);
  color: #8B5E30;
  border-color: var(--accent);
}

.course-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
.course-list li {
  font-size: 14px;
  color: var(--text-sub);
  padding: 6px 0;
  border-bottom: 1px dotted var(--border);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.course-list li::before {
  content: "•";
  color: var(--accent);
  flex-shrink: 0;
}

.course-note-small {
  font-size: 12px;
  color: var(--text-sub);
  opacity: 0.8;
  margin: 12px 0 0;
}

.course-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 16px;
  line-height: 1.8;
}


/* --------------- reserve section --------------- */

.reserve {
  background: var(--primary-soft);
}

.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.reserve-block {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.reserve-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--text);
}
.reserve-tel-label { font-size: 12px; color: var(--text-sub); margin: 0 0 2px !important; }
.reserve-tel-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 54px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 8px !important;
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.reserve-tel-number a { color: inherit; }
.reserve-time { font-size: 13px; color: var(--text-sub); margin: 0 0 20px; }
.reserve-block p { font-size: 14px; color: var(--text-sub); line-height: 1.8; margin: 0 0 16px; }


/* --------------- access section --------------- */

.access {
  background: #fff;
}

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

.shop-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}

.shop-data {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 20px;
  align-items: baseline;
}
.shop-data dt {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.08em;
  white-space: nowrap;
  padding-top: 2px;
}
.shop-data dd {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  margin: 0;
}
.shop-data dd a {
  color: var(--primary);
  text-decoration: underline;
}

.access-map iframe {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow);
}


/* --------------- back-to-home / footer --------------- */

.back-to-top-home {
  background: var(--bg);
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 20px 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.footer-brand .site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.footer-contact {
  text-align: right;
}
.footer-tel-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.footer-tel-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.footer-tel-number a { color: inherit; }
.footer-reserve { margin-top: 0; }

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin: 0;
  letter-spacing: 0.05em;
}


/* --------------- blog post page --------------- */

.post-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.post-breadcrumb {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 24px;
}
.post-breadcrumb a { text-decoration: underline; color: var(--primary); }
.post-breadcrumb span { opacity: 0.5; margin: 0 6px; }
.post-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 24px;
  color: var(--text);
}
.post-hero {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lg);
}
.post-body {
  line-height: 2;
  font-size: 16px;
  color: var(--text-sub);
}
.post-body p { margin: 0 0 1.5em; }
.post-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.post-footer a {
  text-decoration: underline;
  color: var(--primary);
  font-size: 14px;
}
.post-footer span { opacity: 0.35; }
.post-loading { text-align: center; padding: 80px 20px; color: var(--text-sub); }


/* --------------- utilities --------------- */

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


/* ===============================================================
   RESPONSIVE
   =============================================================== */

@media (max-width: 900px) {
  .concept-inner,
  .space-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .concept-image-wrap { aspect-ratio: 16/9; }
  .space-image-wrap { aspect-ratio: 16/9; }
  /* Restore order: text above image on mobile */
  .concept-inner { direction: ltr; }
  .concept-text { order: 1; }
  .concept-image-wrap { order: 2; }

  .dish-grid,
  .drink-highlights { grid-template-columns: repeat(2, 1fr); }

  .course-home-grid { grid-template-columns: repeat(2, 1fr); }
  .course-grid { grid-template-columns: 1fr; }
  .reserve-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .lunch-grid { grid-template-columns: 1fr; }
  .drinkcat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 52px 16px; }

  :root { --header-h: 64px; }

  .header-inner { height: var(--header-h); }
  .site-logo { font-size: 17px; }
  .site-tagline { display: none; }

  .header-only-desktop { display: none !important; }
  .nav-toggle { display: block; }

  /* Show second-level nav only in drawer on mobile */

  .hero-inner { padding: 0 20px; padding-top: var(--header-h); }
  .hero-title  { letter-spacing: 0.04em; }

  .dish-grid   { grid-template-columns: 1fr; }
  .drink-highlights { grid-template-columns: 1fr; }
  .blog-grid   { grid-template-columns: 1fr; }
  .drinkcat-grid { grid-template-columns: 1fr; }
  .course-home-grid { grid-template-columns: 1fr; }

  .space-facts { grid-template-columns: 1fr; }
  .footer-top  { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
}
