/* =========================================================
   Belle 上野 — redesign 2026
   Vanilla CSS / shared across all pages
   ========================================================= */

:root {
  /* warm neutral base — single hue family (warm) */
  --bg:          #f4efe9;   /* warm paper */
  --bg-deep:     #ece4da;   /* slightly darker same family */
  --surface:     #fbf8f4;   /* card surface */
  --ink:         #2a241e;   /* near-black, warm */
  --ink-soft:    #6c625704;
  --muted:       #8b8073;   /* warm gray text */
  --line:        #e2d8cc;
  /* single considered accent — desaturated terracotta */
  --accent:      #b06a4f;
  --accent-deep: #8a4f38;
  --gold:        #a98a55;
  --green:       #5d7a64;
  --radius-lg:   18px;
  --radius:      12px;
  --radius-sm:   8px;
  --maxw:        1240px;
  --shadow:      0 24px 60px -24px rgba(80, 52, 36, .35);
  --shadow-sm:   0 10px 30px -16px rgba(80, 52, 36, .3);
  --ease:        cubic-bezier(.2, .7, .2, 1);
  --z-overlay:   200;
  --z-header:    300;
  --z-sticky:    90;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-weight: 300;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
}

/* grain overlay — breaks digital flatness */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.serif { font-family: "Cormorant Garamond", serif; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.section { padding: 120px 0 130px; position: relative; }
.section--cream { background: var(--bg-deep); }

/* ---------- shared section header (left-aligned, editorial) ---------- */
.section-head { margin-bottom: 64px; max-width: 720px; }
.section-head .en {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 17px; letter-spacing: .02em;
  color: var(--accent); margin-bottom: 10px;
}
.section-head .ja {
  display: block;
  font-size: clamp(26px, 4vw, 40px); font-weight: 500;
  letter-spacing: -.02em; line-height: 1.2;
  text-wrap: balance;
}
.section-head .lead { margin-top: 20px; color: var(--muted); font-size: 15.5px; max-width: 56ch; }
/* centered variant (concept etc.) */
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .en { font-style: normal; font-family: "Outfit", "Noto Sans JP", sans-serif; font-size: 12px; letter-spacing: .28em; text-transform: none; }
.section-head--center .ja { margin-top: 2px; }
.section-head--center::after { content: ""; display: block; width: 56px; height: 1px; background: var(--accent); margin: 22px auto 0; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 15px 30px; font-size: 13.5px; font-weight: 500; letter-spacing: .06em;
  background: var(--ink); color: var(--bg);
  border: none; border-radius: 999px; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.btn:hover { background: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); box-shadow: none; }
.btn--outline:hover { background: var(--ink); color: var(--bg); }
/* button-in-button trailing icon */
.btn--cta { padding-right: 9px; }
.btn .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px;
  background: rgba(255,255,255,.16); margin-left: 2px;
  transition: transform .35s cubic-bezier(.32,.72,0,1), background .25s;
}
.btn--cta:hover .ico { transform: translate(3px, -2px); background: rgba(255,255,255,.26); }
.cta-band .btn--cta .ico { background: rgba(42,36,30,.1); }
.cta-band .btn--cta:hover .ico { background: rgba(42,36,30,.18); }
.btn .ico svg { width: 15px; height: 15px; }

/* ---------- header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-header);
  background: rgba(244, 239, 233, .72);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.header.is-scrolled { border-bottom-color: var(--line); background: rgba(244, 239, 233, .9); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
}
.logo { font-family: "Cormorant Garamond", serif; font-size: 28px; font-weight: 600; letter-spacing: .04em; line-height: 1; }
.logo small { display: block; font-family: "Outfit", sans-serif; font-size: 9.5px; font-weight: 400; letter-spacing: .42em; color: var(--muted); margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-size: 13px; font-weight: 400; letter-spacing: .04em; color: var(--ink); opacity: .7; transition: opacity .2s; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px; background: var(--accent); transition: width .25s var(--ease); }
.nav a:not(.btn):hover { opacity: 1; }
.nav a:not(.btn):hover::after { width: 100%; }
.nav .btn { color: var(--bg); opacity: 1; padding: 11px 24px; }
.nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--ink); }

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate;
  min-height: 100dvh; display: flex; align-items: center;
  padding: 120px 0 80px;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 75% 20%, rgba(176,106,79,.3), transparent 55%),
    linear-gradient(100deg, rgba(42,36,30,.78) 0%, rgba(42,36,30,.55) 45%, rgba(42,36,30,.35) 100%),
    url("hero.jpg") right center/cover no-repeat;
}
.hero::after { /* subtle vignette */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(100% 100% at 50% 100%, rgba(42,36,30,.45), transparent 60%);
}
.hero__inner { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.hero__en {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Outfit", "Noto Sans JP", sans-serif; font-style: normal;
  font-size: 13px; font-weight: 400; letter-spacing: .14em; opacity: .92;
}
.hero__en::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 6.4vw, 80px); font-weight: 500;
  letter-spacing: -.01em; line-height: 1.18; margin: 18px 0 26px;
  text-wrap: balance;
}
.hero__copy { font-size: clamp(16px, 1.8vw, 19px); font-weight: 400; opacity: .96; margin-bottom: 20px; line-height: 1.85; }
.hero__copy span { display: block; white-space: nowrap; }
.hero__text { font-size: clamp(13px, 1.3vw, 14.5px); font-weight: 300; opacity: .82; margin-bottom: 38px; max-width: 44ch; line-height: 1.95; }
.hero p { font-size: clamp(15px, 1.6vw, 17px); font-weight: 300; opacity: .94; margin-bottom: 40px; max-width: 46ch; line-height: 1.9; }
.hero .actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .btn--outline { color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(2px); }
.hero .btn--outline:hover { background: #fff; color: var(--ink); border-color: #fff; }
/* scroll cue */
.hero__cue { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2; font-size: 11px; letter-spacing: .3em; opacity: .7; text-transform: uppercase; }
.hero__cue::after { content: ""; display: block; width: 1px; height: 40px; margin: 10px auto 0; background: linear-gradient(#fff, transparent); }

/* ---------- page hero (下層共通) ---------- */
.page-hero {
  margin-top: 76px; padding: 90px 0 76px; position: relative; isolation: isolate;
  color: #fff; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(42,36,30,.5), rgba(42,36,30,.72)),
    url("subpage-hero.jpg") center/cover no-repeat;
}
.page-hero .container { max-width: var(--maxw); }
.page-hero__en { display: inline-block; font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 18px; letter-spacing: .02em; opacity: .92; margin-bottom: 6px; }
.page-hero h1 { font-family: "Cormorant Garamond", serif; font-size: clamp(32px, 5vw, 56px); font-weight: 500; letter-spacing: -.02em; line-height: 1.1; }
.page-hero p { margin-top: 18px; opacity: .9; font-size: 15.5px; max-width: 56ch; }
.page-hero__sub { display: block; font-size: 12px; letter-spacing: .26em; color: var(--muted); margin-top: 14px; }
/* light variant: no photo, centered title */
.page-hero--light { color: var(--ink); }
.page-hero--light::before { background: var(--bg-deep); }
.page-hero--light .breadcrumb { opacity: 1; }
.page-hero--light .breadcrumb a { color: var(--accent); }
.page-hero--center { text-align: center; }
.page-hero--center .breadcrumb { display: flex; justify-content: flex-start; }
.page-hero--light .page-hero__en { font-family: "Outfit", "Noto Sans JP", sans-serif; font-style: normal; font-size: 12px; letter-spacing: .28em; color: var(--accent); opacity: 1; margin-bottom: 6px; }
.page-hero--light h1 { margin: 0 auto; }
.page-hero--light p { color: var(--muted); margin: 18px auto 0; max-width: 60ch; opacity: 1; }
.breadcrumb { font-size: 12px; letter-spacing: .04em; margin-bottom: 22px; opacity: .85; }
.breadcrumb a { transition: opacity .2s; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ---------- about (asymmetric, overlapping) ---------- */
.about__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.about__img {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: var(--bg-deep) url("about.jpg") center/cover no-repeat;
  box-shadow: var(--shadow); position: relative;
}
.about__img::after { /* frame accent — same size, offset to bottom-right */
  content: ""; position: absolute; inset: 0;
  transform: translate(20px, 20px);
  border: 1px solid var(--accent); border-radius: var(--radius-lg); z-index: -1;
  pointer-events: none;
}
.about__body .en { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 18px; color: var(--accent); }
.about__body h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(28px, 4vw, 44px); font-weight: 500; letter-spacing: -.02em; margin: 12px 0 26px; line-height: 1.2; text-wrap: balance; }
.about__body p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; max-width: 52ch; }
.about__badge { display: inline-block; margin-top: 10px; padding: 11px 22px; border: 1px solid var(--gold); color: var(--gold); font-size: 12.5px; letter-spacing: .08em; border-radius: 999px; }

/* ---------- concept (broken grid — first card is hero) ---------- */
.cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: 22px; }
.card {
  grid-column: span 2;
  display: flex; flex-direction: column;
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid var(--line);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
/* feature the first card */
.cards > .card:first-child { grid-column: span 3; }
.cards > .card:nth-child(2) { grid-column: span 3; }
.card__img { aspect-ratio: 16/11; background: var(--bg-deep); position: relative; overflow: hidden; }
.card__img::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(42,36,30,.18)); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 0 28px 30px; display: flex; flex-direction: column; flex: 1; text-align: center; align-items: center; }
.card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 999px;
  background: var(--bg-deep); color: var(--accent);
  margin: -28px 0 18px; position: relative; z-index: 1;
  box-shadow: 0 6px 18px -8px rgba(80,52,36,.4);
}
.card__icon svg { width: 22px; height: 22px; }
.card__body .en { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 15px; letter-spacing: .02em; color: var(--accent); }
.card__body h3 { font-size: 20px; font-weight: 500; letter-spacing: -.01em; margin: 4px 0 14px; }
.card__body p { font-size: 14px; color: var(--muted); text-align: center; }
.card__more { margin-top: 22px; padding-top: 20px; font-size: 13px; font-weight: 500; letter-spacing: .03em; color: var(--accent-deep); display: inline-flex; align-items: center; gap: .4em; transition: gap .25s var(--ease); border-top: 1px solid var(--line); width: 100%; justify-content: center; }
.card:hover .card__more { gap: .9em; }
/* concept top section: 3 equal cards */
.cards--concept { grid-template-columns: repeat(3, 1fr); }
.cards--concept > .card,
.cards--concept > .card:first-child,
.cards--concept > .card:nth-child(2) { grid-column: auto; }

/* ---------- concerns (offset list, not equal squares) ---------- */
.concerns { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.concern {
  display: block; padding: 36px 28px 32px;
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  position: relative; overflow: hidden;
}
.concern::before { content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 0; background: var(--accent); transition: height .35s var(--ease); }
.concern:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.concern:hover::before { height: 100%; }
.concern .no { font-family: "Cormorant Garamond", serif; font-size: 40px; font-style: italic; color: var(--accent); opacity: .55; line-height: 1; }
.concern h3 { font-size: 17px; font-weight: 500; margin: 12px 0 10px; letter-spacing: -.01em; }
.concern p { font-size: 13.5px; color: var(--muted); }

/* ---------- menu (editorial price list) ---------- */
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 72px; }
.menu-item { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 26px 4px; border-bottom: 1px solid var(--line); transition: padding-left .25s var(--ease); }
.menu-item:hover { padding-left: 12px; }
.menu-item__name { font-size: 16.5px; font-weight: 500; letter-spacing: -.01em; }
.menu-item__name span { display: block; font-size: 12px; color: var(--muted); font-weight: 300; margin-top: 4px; letter-spacing: .03em; }
.menu-item__price { font-family: "Cormorant Garamond", serif; font-size: 26px; font-weight: 600; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.menu-item__price small { font-size: 12px; font-family: "Outfit", sans-serif; color: var(--muted); }
.menu-note { text-align: center; margin-top: 52px; }
.menu-note--tight { margin-top: 28px; }
.menu-note--left { text-align: left; }
.menu-foot-note { text-align: center; margin-top: 40px; color: var(--muted); font-size: 13.5px; }

/* ---------- concept feature (下層・左右交互の大ブロック) ---------- */
.concept-feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.concept-feature + .concept-feature { margin-top: clamp(72px, 10vw, 130px); }
.concept-feature__img {
  aspect-ratio: 5/4; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-deep); box-shadow: var(--shadow); position: relative;
}
.concept-feature__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.concept-feature__img::after {
  content: ""; position: absolute; inset: 0; transform: translate(20px, 20px);
  border: 1px solid var(--accent); border-radius: var(--radius-lg); z-index: -1; pointer-events: none;
}
/* even blocks: image on right */
.concept-feature:nth-child(even) .concept-feature__img { order: 2; }
.concept-feature:nth-child(even) .concept-feature__img::after { transform: translate(-20px, 20px); }
.concept-feature__no { font-family: "Outfit", sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .22em; color: var(--accent); }
.concept-feature__title { font-family: "Cormorant Garamond", serif; font-size: clamp(30px, 4vw, 46px); font-weight: 500; letter-spacing: -.01em; line-height: 1.2; margin: 10px 0 0; }
.concept-feature__title::after { content: ""; display: block; width: 56px; height: 1px; background: var(--accent); margin: 22px 0 24px; }
.concept-feature__desc { color: var(--muted); font-size: 15.5px; line-height: 1.95; margin-bottom: 28px; }
.concept-feature__point { display: flex; align-items: center; gap: 14px; }
.concept-feature__point .ico {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 999px; background: var(--bg-deep); color: var(--accent);
}
.concept-feature__point .ico svg { width: 18px; height: 18px; }
.concept-feature__point span { font-size: 14.5px; color: var(--ink); font-weight: 500; }
@media (max-width: 860px) {
  .concept-feature { grid-template-columns: 1fr; gap: 28px; }
  .concept-feature:nth-child(even) .concept-feature__img { order: 0; }
  .concept-feature__img::after,
  .concept-feature:nth-child(even) .concept-feature__img::after { display: none; }
  .concept-feature + .concept-feature { margin-top: 64px; }
}

/* ---------- menu cards (top section) ---------- */
.menu-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.menu-card {
  display: flex; flex-direction: column; background: var(--surface);
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.menu-card__img { aspect-ratio: 1/1; background: var(--bg-deep); position: relative; overflow: hidden; }
.menu-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.menu-card:hover .menu-card__img img { transform: scale(1.05); }
.menu-card__badge {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  background: var(--accent); color: #fff; font-size: 11px; letter-spacing: .04em;
  padding: 5px 11px; border-radius: 999px; line-height: 1.5;
}
.menu-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.menu-card__cat { font-size: 11.5px; color: var(--muted); letter-spacing: .03em; margin-bottom: 10px; line-height: 1.6; }
.menu-card__title { font-size: 16px; font-weight: 500; letter-spacing: -.01em; line-height: 1.6; margin-bottom: 10px; }
.menu-card__desc { font-size: 13px; color: var(--muted); margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.menu-card__meta { display: flex; justify-content: space-between; align-items: baseline; margin-top: auto; padding-top: 8px; }
.menu-card__price { font-family: "Cormorant Garamond", serif; font-size: 22px; font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; }
.menu-card__time { font-size: 12.5px; color: var(--muted); }
.menu-card__more { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; font-weight: 500; color: var(--accent-deep); display: inline-flex; align-items: center; gap: .4em; transition: gap .25s var(--ease); }
.menu-card:hover .menu-card__more { gap: .9em; }

/* ---------- gallery (3-col tidy grid) ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item { aspect-ratio: 4/3; border-radius: var(--radius); background: var(--bg-deep) center/cover no-repeat; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease); }
.gallery__item:hover { transform: scale(1.02); }
.gallery__item:nth-child(1) { background-image: url("gallery-1.jpg"); }
.gallery__item:nth-child(2) { background-image: url("gallery-2.jpg"); }
.gallery__item:nth-child(3) { background-image: url("gallery-3.jpg"); }
.gallery__item:nth-child(4) { background-image: url("gallery-4.jpg"); }
.gallery__item:nth-child(5) { background-image: url("about.jpg"); }
.gallery__item:nth-child(6) { background-image: url("hero.jpg"); }

/* ---------- detail pages: checklist / flow ---------- */
.checklist { max-width: 720px; display: grid; gap: 14px; list-style: none; }
.checklist li {
  position: relative; padding: 18px 24px 18px 58px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); font-size: 15px;
}
.checklist li::before {
  content: ""; position: absolute; left: 22px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 999px; background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.flow { max-width: 720px; list-style: none; counter-reset: flow; display: grid; gap: 0; }
.flow li {
  counter-increment: flow; position: relative;
  padding: 26px 8px 26px 74px; border-bottom: 1px solid var(--line);
}
.flow li::before {
  content: "0" counter(flow); position: absolute; left: 8px; top: 26px;
  font-family: "Cormorant Garamond", serif; font-size: 26px; color: var(--gold); line-height: 1.2;
}
.flow li strong { display: block; font-size: 16.5px; font-weight: 500; margin-bottom: 6px; }
.flow li span { color: var(--muted); font-size: 14.5px; }

/* ---------- staff ---------- */
.staff { display: grid; grid-template-columns: 360px 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.staff__img { aspect-ratio: 3/4; border-radius: var(--radius-lg); background: var(--bg-deep) url("staff.jpg") center/cover no-repeat; box-shadow: var(--shadow); }
.staff__body .en { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 18px; color: var(--accent); }
.staff__body h3 { font-family: "Cormorant Garamond", serif; font-size: clamp(26px, 3.5vw, 38px); font-weight: 500; letter-spacing: -.02em; margin: 8px 0; }
.staff__body .role { color: var(--gold); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 22px; }
.staff__kana { font-size: .55em; font-weight: 400; margin-left: 10px; letter-spacing: .06em; }
.staff__body p { color: var(--muted); font-size: 15.5px; max-width: 52ch; }
.staff__img { position: relative; }
.staff__img::after { content: ""; position: absolute; right: -22px; bottom: -22px; width: 62%; height: 62%; background: var(--bg-deep); border-radius: var(--radius-lg); z-index: -1; }
.staff__tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 6px; }
.staff__tags span { font-size: 12px; letter-spacing: .03em; color: var(--muted); border: 1px solid var(--line); background: var(--surface); padding: 7px 16px; border-radius: 999px; }
.staff__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 28px; }
.staff__actions .btn { background: var(--green); }
.staff__actions .btn:hover { background: #4a6650; }
.staff__actions .link-more { font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: .4em; transition: gap .25s var(--ease), color .2s; }
.staff__actions .link-more:hover { color: var(--ink); gap: .9em; }

/* ---------- blog ---------- */
.blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.blog__item { transition: transform .3s var(--ease); }
.blog__item:hover { transform: translateY(-4px); }
.blog__item .blog__img { aspect-ratio: 3/2; border-radius: var(--radius); background: var(--bg-deep) center/cover no-repeat; margin-bottom: 18px; box-shadow: var(--shadow-sm); }
.blog__item:nth-child(1) .blog__img { background-image: url("https://picsum.photos/seed/belleueno-b1/600/400"); }
.blog__item:nth-child(2) .blog__img { background-image: url("https://picsum.photos/seed/belleueno-b2/600/400"); }
.blog__item:nth-child(3) .blog__img { background-image: url("https://picsum.photos/seed/belleueno-b3/600/400"); }
.blog__meta { display: flex; gap: 14px; align-items: baseline; }
.blog__cat { font-size: 12px; color: var(--accent); letter-spacing: .03em; }
.blog__item .date { font-size: 12.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.blog__item h4 { font-size: 16px; font-weight: 500; margin: 8px 0 10px; letter-spacing: -.01em; line-height: 1.6; text-wrap: pretty; }
.blog__item .excerpt { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog__more { font-size: 13px; font-weight: 500; color: var(--accent-deep); display: inline-flex; align-items: center; gap: .4em; transition: gap .25s var(--ease); }
.blog__item:hover .blog__more { gap: .9em; }

/* ---------- reviews (offset masonry feel) ---------- */
.reviews-summary { text-align: center; margin-bottom: 34px; font-size: 16px; }
.reviews-summary strong { color: var(--gold); font-size: 1.25em; }
.reviews-summary a { color: var(--accent); text-decoration: underline; }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.reviews .review:nth-child(2) { margin-top: 28px; }
.review { background: var(--surface); border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.review__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 14px; }
.review .stars { color: var(--gold); letter-spacing: .25em; font-size: 13px; }
.review .quote { font-family: "Cormorant Garamond", serif; font-size: 44px; line-height: 1; color: var(--beige); }
.review p { font-size: 14.5px; color: var(--ink); opacity: .85; margin-bottom: 22px; font-style: italic; }
.review .who { font-size: 14px; color: var(--ink); font-weight: 500; }
.review .treat { font-size: 12px; color: var(--muted); margin-top: 4px; }
.review .rdate { font-size: 12px; color: var(--muted); font-variant-numeric: tabular-nums; margin-top: 2px; }
.review-banner { text-align: center; margin-bottom: 48px; }
.review-banner p { color: var(--muted); font-size: 14.5px; margin-bottom: 20px; }
.review-banner a { display: inline-flex; align-items: center; gap: .5em; background: #e9486a; color: #fff; padding: 14px 26px; border-radius: 999px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), background .25s; }
.review-banner a:hover { transform: translateY(-2px); background: #d83c5d; }

/* ---------- detail body ---------- */
.detail { max-width: 760px; margin: 0 auto; }
.detail__hero-img { aspect-ratio: 16/7; border-radius: var(--radius-lg); background: var(--bg-deep) center/cover no-repeat; margin-bottom: 48px; box-shadow: var(--shadow); }
.detail h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(24px, 3vw, 32px); font-weight: 500; letter-spacing: -.01em; margin: 56px 0 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.detail h2:first-child { margin-top: 0; }
.detail p { color: var(--muted); font-size: 15.5px; margin-bottom: 18px; }
.detail ul { list-style: none; margin: 0 0 18px; }
.detail ul li { position: relative; padding-left: 24px; color: var(--muted); font-size: 15.5px; margin-bottom: 11px; }
.detail ul li::before { content: ""; position: absolute; left: 4px; top: 13px; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }

/* ---------- access ---------- */
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: center; }
.access-map { aspect-ratio: 4/3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--bg-deep); }
.access-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.access-info dl { display: grid; grid-template-columns: max-content 1fr; gap: 16px 28px; margin-top: 8px; }
.access-info dt { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); padding-top: 3px; }
.access-info dd { font-size: 15.5px; color: var(--ink); }
.access-info .en { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 18px; color: var(--accent); }
.access-info h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(26px, 3.5vw, 38px); font-weight: 500; letter-spacing: -.02em; margin: 8px 0 24px; }
@media (max-width: 760px) { .access-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 24px 0; font-size: 16.5px; font-weight: 500; display: flex; justify-content: space-between; align-items: center; gap: 20px; letter-spacing: -.01em; transition: color .2s; }
.faq summary:hover { color: var(--accent-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 24px; font-weight: 300; transition: transform .3s var(--ease); flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 24px; color: var(--muted); font-size: 14.5px; max-width: 64ch; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; text-align: center;
  padding: 110px 28px 120px; color: #fff; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(100% 120% at 50% 0%, rgba(176,106,79,.45), transparent 60%),
    linear-gradient(180deg, #332b23, #2a241e);
}
.cta-band .en { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 19px; color: #e6b98f; }
.cta-band h2 { font-family: "Cormorant Garamond", serif; font-size: clamp(30px, 5vw, 52px); font-weight: 500; letter-spacing: -.02em; margin: 10px 0 32px; }
.cta-band .btn { background: #fff; color: var(--ink); }
.cta-band .btn:hover { background: #f0e7dd; }

/* ---------- footer ---------- */
.footer { background: #221d18; color: #cfc4b6; padding: 80px 0 36px; font-size: 13px; position: relative; z-index: 2; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; }
.footer__lead { color: #a89c8c; margin-bottom: 18px; line-height: 1.8; }
.footer__contact p { display: flex; gap: 10px; margin-bottom: 13px; color: #b4aea6; align-items: flex-start; }
.footer__contact svg { flex: none; margin-top: 3px; opacity: .7; }
.footer__map { margin-top: 16px; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/10; max-width: 250px; }
.footer__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.footer .logo { color: #fff; margin-bottom: 18px; }
.footer .logo small { color: #948977; }
.footer h5 { color: #fff; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 500; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { opacity: .8; transition: opacity .2s; }
.footer ul a:hover { opacity: 1; color: #fff; }
.footer__info p { margin-bottom: 9px; color: #a89c8c; }
.footer__bottom { text-align: center; margin-top: 56px; padding-top: 28px; border-top: 1px solid #3a322a; color: #82786a; font-size: 12px; }
.footer .sns { display: flex; gap: 22px; margin-top: 20px; }
.footer .sns a { color: #cfc4b6; opacity: .8; transition: opacity .2s, transform .2s; display: inline-flex; }
.footer .sns a:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta { display: none; }

/* ---------- scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .cards--concept { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .blog { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .staff { grid-template-columns: 1fr; gap: 40px; }
  .staff__img { max-width: 360px; }
}
@media (max-width: 760px) {
  /* hero: 縦長では「写真エリア（上）＋テキストエリア（下）」に分離して顔の切れを防ぐ */
  .hero {
    min-height: 0; padding: 76px 0 0;
    display: block; color: var(--ink);
    background: var(--bg);
  }
  .hero::before {
    position: relative; height: 56vw; max-height: 420px; inset: auto;
    display: block; z-index: 0;
    background:
      linear-gradient(180deg, rgba(42,36,30,.15) 0%, transparent 40%),
      url("hero.jpg") center 32%/cover no-repeat;
  }
  .hero::after { display: none; }
  .hero__inner { padding: 36px 28px 44px; }
  .hero__en { color: var(--accent); }
  .hero h1 { max-width: 100%; font-size: clamp(28px, 8vw, 34px); line-height: 1.3; }
  .hero h1 span { white-space: normal; }
  .hero__copy { font-size: 15px; max-width: 100%; }
  .hero__copy span { white-space: normal; display: inline; }
  .hero__text { font-size: 13px; max-width: 100%; margin-bottom: 30px; }
  .hero p { max-width: 100%; opacity: 1; color: var(--muted); }
  .hero .btn--outline { color: var(--ink); border-color: var(--ink); backdrop-filter: none; }
  .hero .btn--outline:hover { background: var(--ink); color: var(--bg); }
  .hero__cue { display: none; }

  /* ---- hamburger morph (3→X) ---- */
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 44px; height: 44px; position: relative; z-index: calc(var(--z-overlay) + 1);
  }
  .nav-toggle span {
    display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px;
    transition: transform .5s cubic-bezier(.32,.72,0,1), background .3s;
  }
  .nav-toggle[aria-expanded="true"] span { background: var(--ink); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }

  /* ---- fullscreen glass menu overlay ---- */
  .nav {
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 0;
    position: fixed; inset: 0; z-index: var(--z-overlay);
    padding: 110px 36px 48px;
    background: rgba(241,235,227,.97);
    -webkit-backdrop-filter: saturate(150%) blur(30px);
    backdrop-filter: saturate(150%) blur(30px);
    opacity: 0; visibility: hidden;
    transition: opacity .5s cubic-bezier(.32,.72,0,1), visibility .5s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a:not(.btn) {
    display: block; width: 100%; text-align: left;
    font-family: "Cormorant Garamond", serif; font-size: 32px; font-weight: 500;
    letter-spacing: -.01em; line-height: 1.35; padding: 7px 0; opacity: 0; transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.32,.72,0,1), transform .6s cubic-bezier(.32,.72,0,1);
  }
  .nav a:not(.btn)::after { display: none; }
  .nav.is-open a:not(.btn) { opacity: 1; transform: none; }
  /* staggered reveal */
  .nav.is-open a:nth-child(1) { transition-delay: .08s; }
  .nav.is-open a:nth-child(2) { transition-delay: .13s; }
  .nav.is-open a:nth-child(3) { transition-delay: .18s; }
  .nav.is-open a:nth-child(4) { transition-delay: .23s; }
  .nav.is-open a:nth-child(5) { transition-delay: .28s; }
  .nav.is-open a:nth-child(6) { transition-delay: .33s; }
  .nav.is-open a:nth-child(7) { transition-delay: .38s; }
  .nav.is-open a:nth-child(8) { transition-delay: .43s; }
  .nav .btn {
    align-self: flex-start; margin-top: 28px; padding: 16px 30px; font-size: 14px;
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.32,.72,0,1) .5s, transform .6s cubic-bezier(.32,.72,0,1) .5s, background .25s;
  }
  .nav.is-open .btn { opacity: 1; transform: none; }
  body.nav-locked { overflow: hidden; }
  body.nav-locked .header { background: transparent; backdrop-filter: none; border-bottom-color: transparent; }

  /* ---- spacing rhythm ---- */
  .section { padding: 88px 0 92px; }
  .section-head { margin-bottom: 40px; }
  .section-head .ja { font-size: clamp(26px, 7vw, 34px); }
  .about__grid, .staff { grid-template-columns: 1fr; gap: 36px; }
  .about__img::after { display: none; }
  .staff__img { max-width: 320px; }

  /* ---- concept cards → horizontal snap carousel ---- */
  .cards {
    display: grid; grid-auto-flow: column; grid-template-columns: none;
    grid-auto-columns: 78%; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin: 0 -28px; padding: 4px 28px 14px;
  }
  .cards::-webkit-scrollbar { display: none; }
  .cards > .card,
  .cards > .card:first-child,
  .cards > .card:nth-child(2) { grid-column: auto; scroll-snap-align: center; }
  .card__img { aspect-ratio: 4/3; }

  /* ---- concerns: keep tidy 1-col with strong rhythm ---- */
  .concerns { grid-template-columns: 1fr; gap: 12px; }

  /* ---- menu cards → horizontal snap carousel ---- */
  .menu-cards {
    display: grid; grid-auto-flow: column; grid-template-columns: none;
    grid-auto-columns: 70%; gap: 14px;
    overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
    margin: 0 -28px; padding: 4px 28px 14px;
  }
  .menu-cards::-webkit-scrollbar { display: none; }
  .menu-card { scroll-snap-align: center; }

  /* ---- gallery 2-col, staff frame off ---- */
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .staff__img::after { display: none; }
  .footer__map { max-width: 100%; }

  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .menu-item__price { font-size: 23px; }
  .blog, .reviews { grid-template-columns: 1fr; }
  .reviews .review:nth-child(2) { margin-top: 0; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }

  /* ---- floating glass CTA pill (bottom) ---- */
  body { padding-bottom: 92px; }
  .sticky-cta {
    display: flex; position: fixed; bottom: 16px; left: 16px; right: 16px;
    z-index: var(--z-sticky); gap: 10px;
    padding: 8px; border-radius: 999px;
    background: rgba(34,29,24,.82);
    -webkit-backdrop-filter: saturate(160%) blur(18px);
    backdrop-filter: saturate(160%) blur(18px);
    box-shadow: 0 18px 40px -18px rgba(34,29,24,.7);
    border: 1px solid rgba(255,255,255,.08);
  }
  .sticky-cta .btn {
    flex: 1; justify-content: center; padding: 14px 0; font-size: 13.5px; box-shadow: none;
  }
  .sticky-cta .btn--outline { color: #f0e7dd; border-color: rgba(240,231,221,.35); background: transparent; }
  .sticky-cta .btn--outline:hover { background: rgba(240,231,221,.12); color: #fff; }
  .sticky-cta .btn:not(.btn--outline) { background: #f0e7dd; color: var(--ink); }

  /* ---- richer scroll reveal (blur fade-up) ---- */
  .reveal { transform: translateY(32px); filter: blur(6px); }
  .reveal.is-in { filter: blur(0); }
}
@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .reveal { filter: none; transform: none; }
  .nav a:not(.btn), .nav .btn { opacity: 1; transform: none; transition: none; }
}
