@charset "utf-8";
/* =========================================================
   Soup Curry GARAKU — Renewal (modern) stylesheet
   Brand: gold #EEC100 / rust #B43A28 / ink #171310
   ========================================================= */

:root {
  --ink: #171310;
  --ink-soft: #4a3f34;
  --paper: #fbf7ee;
  --cream: #f4ecdc;
  --cream-2: #eadfc9;
  --gold: #eec100;
  --gold-2: #e0a800;
  --gold-ink: #2f2500;
  --rust: #b43a28;
  --muted: #8b7f6d;
  --line: rgba(23, 19, 16, .12);
  --shadow: 0 24px 60px -24px rgba(23, 19, 16, .35);
  --shadow-sm: 0 12px 30px -14px rgba(23, 19, 16, .3);
  --ff-disp: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-ui: "Outfit", system-ui, -apple-system, sans-serif;
  --ff-jp: "Zen Kaku Gothic New", system-ui, sans-serif;
  --wrap: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-jp);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: .02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap { width: min(var(--wrap), calc(100% - 48px)); margin-inline: auto; }
.eng { font-family: var(--ff-ui); }

/* ---------- Section label (Shippori Mincho / 和モダン) ---------- */
.label {
  font-family: var(--ff-mincho);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(2.1rem, 5.4vw, 3.8rem);
  line-height: 1.28;
  letter-spacing: .01em;
  font-feature-settings: "palt" 1;   /* 日本語カーニング（プロポーショナルメトリクス） */
  font-kerning: normal;
  text-rendering: optimizeLegibility;
}
.label span {
  display: block;
  font-family: var(--ff-ui);
  font-style: normal;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .32em;
  color: var(--gold-2);
  margin-top: .9rem;
  padding-left: .1em;
}

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold);
  --fg: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: .8em;
  font-family: var(--ff-ui);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .22em;
  padding: 1.05em 2.3em;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  border: 1.5px solid var(--bg);
  transition: transform .4s var(--ease), background .35s, color .35s, box-shadow .4s;
  will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform .4s var(--ease); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(238, 193, 0, .8); }
.btn:hover svg { transform: translateX(5px); }
.btn--dark { --bg: var(--ink); --fg: #fff; }
.btn--dark:hover { box-shadow: 0 16px 30px -14px rgba(23, 19, 16, .6); }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* =========================================================
   Header
   ========================================================= */
.hdr {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 46px);
  transition: background .45s var(--ease), padding .45s var(--ease), box-shadow .45s;
}
.hdr.scrolled {
  background: rgba(251, 247, 238, .86);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  padding-block: 13px;
  box-shadow: 0 1px 0 var(--line);
}
.hdr__logo img { width: clamp(88px, 8vw, 116px); transition: opacity .4s; }
.hdr__logo .l-white { position: absolute; }
.hdr.scrolled .hdr__logo .l-white { opacity: 0; }
.hdr.scrolled .hdr__logo .l-black { opacity: 1; }
.hdr__logo .l-black { opacity: 0; }

.gnav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.gnav__list { display: flex; gap: clamp(16px, 2vw, 30px); }
.gnav__list a {
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: .9rem;
  color: #fff;
  position: relative;
  padding-block: 4px;
  transition: color .35s;
}
.gnav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.gnav__list a:hover::after { transform: scaleX(1); }
.hdr.scrolled .gnav__list a { color: var(--ink); }

.hdr__cart { display: inline-flex; }
.hdr__cart svg { width: 26px; height: 26px; stroke: #fff; transition: stroke .35s, transform .3s; }
.hdr.scrolled .hdr__cart svg { stroke: var(--ink); }
.hdr__cart:hover svg { transform: translateY(-2px); }

/* hamburger */
.burger {
  --c: #fff;
  display: none;
  width: 46px; height: 46px;
  border: 0; background: transparent;
  position: relative; cursor: pointer;
  z-index: 90;
}
.burger span, .burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 9px; right: 9px; height: 2px;
  background: var(--c);
  transition: transform .45s var(--ease), opacity .3s, background .35s, top .3s;
}
.burger::before { top: 15px; }
.burger span { top: 22px; }
.burger::after { top: 29px; }
.hdr.scrolled .burger { --c: var(--ink); }

/* mobile overlay menu */
.mnav {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 34px 40px;
  clip-path: circle(0% at calc(100% - 46px) 46px);
  transition: clip-path .7s var(--ease);
  pointer-events: none;
}
.mnav__list a {
  display: block;
  font-family: var(--ff-disp);
  font-style: italic;
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  padding: .28em 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transform: translateY(18px);
  opacity: 0;
  transition: transform .5s var(--ease), opacity .5s, color .3s;
}
.mnav__list a small {
  font-family: var(--ff-jp);
  font-style: normal;
  font-size: .8rem;
  color: var(--gold);
  margin-left: 1em;
  letter-spacing: .1em;
}
.mnav__list a:hover { color: var(--gold); }
.mnav__foot { margin-top: 42px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.mnav__sns { display: flex; gap: 16px; }
.mnav__sns img { width: 22px; filter: brightness(0) invert(1); opacity: .8; transition: opacity .3s, transform .3s; }
.mnav__sns a:hover img { opacity: 1; transform: translateY(-3px); }

body.nav-open { overflow: hidden; }
body.nav-open .mnav { clip-path: circle(150% at calc(100% - 46px) 46px); pointer-events: auto; }
body.nav-open .mnav__list a { transform: none; opacity: 1; }
body.nav-open .mnav__list a:nth-child(1) { transition-delay: .12s; }
body.nav-open .mnav__list a:nth-child(2) { transition-delay: .18s; }
body.nav-open .mnav__list a:nth-child(3) { transition-delay: .24s; }
body.nav-open .mnav__list a:nth-child(4) { transition-delay: .30s; }
body.nav-open .mnav__list a:nth-child(5) { transition-delay: .36s; }
body.nav-open .mnav__list a:nth-child(6) { transition-delay: .42s; }
body.nav-open .burger { --c: #fff; }
body.nav-open .burger::before { top: 22px; transform: rotate(45deg); }
body.nav-open .burger span { opacity: 0; }
body.nav-open .burger::after { top: 22px; transform: rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 7s linear;
}
.hero__slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(23, 19, 16, .15), rgba(23, 19, 16, .68)),
    linear-gradient(180deg, rgba(23, 19, 16, .45) 0%, rgba(23, 19, 16, .1) 40%, rgba(23, 19, 16, .72) 100%);
}
.hero__inner { padding: 120px 20px 100px; }
@keyframes floaty { 50% { transform: translateY(-8px); } }
.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  font-family: var(--ff-ui);
  font-size: .68rem;
  letter-spacing: .34em;
  color: rgba(255, 255, 255, .82);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  z-index: 2;
}
.hero__scroll i { width: 1px; height: 46px; background: rgba(255, 255, 255, .6); position: relative; overflow: hidden; }
.hero__scroll i::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0% { top: -50%; } 60%, 100% { top: 100%; } }

/* =========================================================
   Section shell
   ========================================================= */
.sec { padding: clamp(80px, 12vw, 160px) 0; position: relative; }
.sec__head { margin-bottom: clamp(40px, 6vw, 76px); }

/* ---------- Menu (kept design, harmonized) ---------- */
.menu {
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(244, 236, 220, .72), rgba(244, 236, 220, .72)),
    url("common/img/text/tileable-wood-colored.png");
  background-repeat: no-repeat, repeat;
  background-size: auto, 400px 317px;
}
.menu .sec__head { text-align: center; }
.menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2.2vw, 30px);
  align-items: end;
}
.menu__card { text-align: center; }
.menu__card a { display: block; }
.menu__card-ttl {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  letter-spacing: .16em;
  margin-bottom: 8px;
  transition: color .35s;
}
.menu__card-img {
  overflow: visible;
  transition: transform .55s var(--ease);
}
.menu__card:hover .menu__card-img { transform: translateY(-10px) scale(1.04); }
.menu__card:hover .menu__card-ttl { color: var(--rust); }
.menu__info { text-align: center; margin-top: clamp(40px, 6vw, 68px); }
.menu__info p { font-size: clamp(.95rem, 2.4vw, 1.1rem); margin-bottom: 2em; }

/* ---------- About ---------- */
.about { background: var(--paper); overflow: hidden; }
.about__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.about__img { position: relative; }
.about__img img { border-radius: 6px; box-shadow: var(--shadow); }
.about__img::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  z-index: -1;
}
.about__txt p { font-size: clamp(1.05rem, 2.6vw, 1.3rem); line-height: 2.1; margin: 1.6rem 0 2.4rem; }
.about__txt .lead { font-family: var(--ff-disp); font-style: italic; color: var(--rust); font-size: 1.05rem; letter-spacing: .04em; }

/* ---------- Restaurant ---------- */
.rest { background: var(--ink); color: #fff; }
.rest .label span { color: var(--gold); }
.rest__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 26px); }
.rest__card {
  position: relative;
  min-height: clamp(280px, 34vw, 440px);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: clamp(24px, 3vw, 40px);
  isolation: isolate;
}
.rest__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .9s var(--ease); }
.rest__card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(23, 19, 16, .1), rgba(23, 19, 16, .78)); transition: background .5s; }
.rest__card:hover img { transform: scale(1.07); }
.rest__card:hover::after { background: linear-gradient(180deg, rgba(180, 58, 40, .18), rgba(23, 19, 16, .82)); }
.rest__card-en { font-family: var(--ff-disp); font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1; }
.rest__card-jp { font-family: var(--ff-ui); letter-spacing: .3em; font-size: .78rem; color: var(--gold); margin-top: .5em; }
.rest__card-arrow { position: absolute; top: clamp(20px, 3vw, 32px); right: clamp(20px, 3vw, 32px); width: 44px; height: 44px; border: 1.5px solid rgba(255, 255, 255, .5); border-radius: 50%; display: grid; place-items: center; transition: background .4s, border-color .4s, transform .4s; }
.rest__card:hover .rest__card-arrow { background: var(--gold); border-color: var(--gold); transform: rotate(-45deg); }
.rest__card-arrow svg { width: 18px; height: 18px; stroke: #fff; }
.rest__card:hover .rest__card-arrow svg { stroke: var(--gold-ink); }

.rest__who {
  margin-top: clamp(16px, 2.4vw, 26px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  transition: background .4s, border-color .4s;
}
.rest__who:hover { background: rgba(255, 255, 255, .04); border-color: var(--gold); }
.rest__who-en { font-family: var(--ff-disp); font-style: italic; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.rest__who-jp { color: var(--muted); font-size: .9rem; letter-spacing: .1em; }

/* ---------- Recruit ---------- */
.recruit { background: var(--cream); }
.recruit__wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.recruit__lead p { font-size: 1.02rem; margin-top: 1.4rem; }
.recruit__lead .pill { display: inline-flex; align-items: center; gap: .6em; font-family: var(--ff-ui); font-weight: 600; letter-spacing: .18em; font-size: .74rem; color: var(--rust); }
.recruit__lead .pill::before { content: ""; width: 26px; height: 1.5px; background: var(--rust); }
.recruit__detail { background: var(--paper); border-radius: 10px; padding: clamp(24px, 3.4vw, 44px); box-shadow: var(--shadow-sm); }
.recruit__detail dl > div { display: grid; grid-template-columns: 130px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.recruit__detail dl > div:last-child { border-bottom: 0; }
.recruit__detail dt { font-family: var(--ff-ui); font-weight: 600; letter-spacing: .12em; font-size: .82rem; color: var(--gold-2); padding-top: 3px; }
.recruit__detail dd { font-size: .98rem; }
.recruit__detail dd li { position: relative; padding-left: 1.1em; line-height: 1.7; }
.recruit__detail dd li::before { content: ""; position: absolute; left: 0; top: .72em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.recruit__detail dd p { line-height: 1.7; }

/* form */
.recruit__form { margin-top: clamp(40px, 6vw, 70px); background: var(--ink); color: #fff; border-radius: 12px; padding: clamp(28px, 5vw, 60px); }
.recruit__form h3 { font-family: var(--ff-disp); font-style: italic; font-size: 1.8rem; margin-bottom: .3em; }
.recruit__form .note { color: var(--muted); font-size: .85rem; margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { font-size: .82rem; letter-spacing: .08em; color: rgba(255, 255, 255, .82); }
.form-row label b { color: var(--gold); font-weight: 400; font-size: .7rem; margin-left: .4em; }
.form-row input, .form-row textarea {
  font-family: inherit;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  padding: 14px 16px;
  color: #fff;
  font-size: .95rem;
  transition: border-color .3s, background .3s;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255, 255, 255, .35); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, .1); }
.form-submit { grid-column: 1 / -1; text-align: center; margin-top: 8px; }
.form-submit .btn { border: 0; cursor: pointer; }

/* =========================================================
   Footer
   ========================================================= */
.ftr { background: #100d0a; color: #fff; padding: clamp(60px, 8vw, 100px) 0 40px; }
.ftr__top { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.ftr__logo img { width: 132px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.ftr__addr { color: var(--muted); font-size: .9rem; line-height: 1.9; }
.ftr__addr b { color: #fff; font-weight: 500; display: block; margin-bottom: .3em; letter-spacing: .06em; }
.ftr__nav { display: flex; gap: 46px; flex-wrap: wrap; }
.ftr__nav ul { display: grid; gap: 14px; }
.ftr__nav a { font-size: .92rem; color: rgba(255, 255, 255, .78); transition: color .3s; position: relative; }
.ftr__nav a:hover { color: var(--gold); }
.ftr__sns { display: flex; gap: 16px; margin-top: 4px; }
.ftr__sns img { width: 24px; filter: brightness(0) invert(1); opacity: .7; transition: opacity .3s, transform .3s; }
.ftr__sns a:hover img { opacity: 1; transform: translateY(-3px); }
.ftr__store { margin-top: 22px; }
.ftr__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; flex-wrap: wrap; gap: 10px; }
.ftr__copy { font-family: var(--ff-ui); font-size: .74rem; letter-spacing: .12em; color: var(--muted); }

/* back to top */
.totop {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .4s, visibility .4s, transform .4s, box-shadow .3s;
  z-index: 55;
}
.totop.show { opacity: 1; visibility: visible; transform: none; }
.totop:hover { box-shadow: 0 14px 28px -10px rgba(238, 193, 0, .8); }
.totop svg { width: 20px; height: 20px; stroke: var(--gold-ink); }

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero__slide { transition: opacity 1.6s ease; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1000px) {
  .gnav__list, .hdr__cart { display: none; }
  .burger { display: block; }
  .about__grid { grid-template-columns: 1fr; }
  .about__img { max-width: 560px; }
  .recruit__wrap { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .menu__grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .rest__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr; }
  .ftr__nav { gap: 30px; }
  .about { padding-block: 40px; background: var(--ink); }
  .about__grid {
    display: block;
    position: relative;
    min-height: min(760px, 82svh);
  }
  .about__img {
    width: 100%;
    max-width: none;
    height: min(760px, 82svh);
    overflow: hidden;
    border-radius: 6px;
  }
  .about__img::before { display: none; }
  .about__img::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(16, 13, 10, .05) 20%, rgba(16, 13, 10, .48) 52%, rgba(16, 13, 10, .96) 100%);
    pointer-events: none;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
  }
  .about__txt {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 22px;
    color: #fff;
  }
  .about__txt .sec__head { margin-bottom: 14px; }
  .about__txt .label { color: #fff; }
  .about__txt .label span { color: var(--gold); margin-top: .55em; }
  .about__txt p {
    margin: 0;
    font-size: clamp(.82rem, 3.6vw, 1rem);
    line-height: 1.75;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .72);
  }
  .about__txt .lead { color: var(--gold); }
}
@media (max-width: 420px) {
  .menu__grid { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
}

/* =========================================================
   暖 (DAN) — content-specific additions / overrides
   ========================================================= */
:root {
  --ff-mincho: "Shippori Mincho", "Hiragino Mincho ProN", serif;
  --ff-brush: "Yuji Syuku", "Shippori Mincho", "Hiragino Mincho ProN", serif;
}

/* --- wordmark logo (replaces image logo) --- */
.hdr__logo a { display: flex; align-items: center; gap: .55em; line-height: 1; }
.hdr__logo .mark { font-family: var(--ff-mincho); font-weight: 800; font-size: 1.7rem; color: #fff; transition: color .4s; letter-spacing: .04em; }
.hdr__logo .mark em { font-family: var(--ff-ui); font-style: normal; font-weight: 600; font-size: .54rem; letter-spacing: .26em; display: block; color: var(--gold); margin-bottom: 4px; }
.hdr.scrolled .hdr__logo .mark { color: var(--ink); }

/* --- header phone button --- */
.hdr__tel { display: inline-flex; align-items: center; gap: .5em; font-family: var(--ff-ui); font-weight: 600; letter-spacing: .06em; font-size: .9rem; color: #fff; transition: color .35s; }
.hdr__tel svg { width: 18px; height: 18px; stroke: var(--gold); }
.hdr.scrolled .hdr__tel { color: var(--ink); }


/* --- menu: Japanese dish names + price --- */
.menu__card { position: relative; }
.menu__card-ttl { font-family: var(--ff-jp); font-weight: 700; letter-spacing: .02em; font-size: clamp(.95rem, 1.6vw, 1.12rem); }
.menu__card-price { font-family: var(--ff-ui); font-weight: 600; color: var(--rust); margin-top: .35em; font-size: .95rem; }
.menu__card-price small { color: var(--muted); font-weight: 400; font-size: .8em; }
.menu__badge { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--rust); color: #fff; font-family: var(--ff-ui); font-weight: 600; font-size: .62rem; letter-spacing: .12em; padding: .4em 1em; border-radius: 999px; z-index: 3; white-space: nowrap; }

/* --- Feature (こだわり) --- */
.feat { background: var(--paper); }
.feat__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 40px); }
.feat__item { text-align: center; padding: clamp(22px, 3vw, 38px) clamp(14px,2vw,26px); background: var(--cream); border-radius: 12px; transition: transform .5s var(--ease), box-shadow .5s; }
.feat__item:hover { transform: translateY(-8px); box-shadow: var(--shadow-sm); }
.feat__no { font-family: var(--ff-disp); font-style: italic; font-weight: 600; font-size: 2.4rem; color: var(--gold-2); line-height: 1; }
.feat__ttl { font-family: var(--ff-mincho); font-weight: 700; font-size: 1.22rem; margin: .55em 0 .6em; }
.feat__txt { font-size: .92rem; color: var(--ink-soft); line-height: 1.9; }

/* --- Shop info --- */
.shop { background: var(--ink); color: #fff; }
.shop .label span { color: var(--gold); }
.shop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 60px); align-items: stretch; }
.shop__photo { border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); min-height: 320px; }
.shop__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.shop__photo:hover img { transform: scale(1.05); }
.shop__info dl > div { display: grid; grid-template-columns: 128px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.shop__info dt { font-family: var(--ff-ui); font-weight: 600; letter-spacing: .1em; font-size: .78rem; color: var(--gold); padding-top: 2px; }
.shop__info dd { font-size: .98rem; }
.shop__info dd a { color: var(--gold); }
.shop__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .feat__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .shop__grid { grid-template-columns: 1fr; }
  .shop__photo { min-height: 240px; }
}

/* --- hero logo image (brush lockup / 段階にじみ登場) --- */
.hero__logo {
  width: clamp(230px, 33vw, 430px);
  margin: 0 auto;
  filter: drop-shadow(0 14px 40px rgba(0,0,0,.55));
  animation: floaty 6s ease-in-out infinite;
}
.hero__logo img { display: block; width: 100%; }
.hero__logo .dl-char { animation: danNijimi 1.7s cubic-bezier(.2,.6,.25,1) .3s both; }
.hero__logo .dl-txt { animation: danTxtIn .9s ease 1.75s both; }
@keyframes danNijimi {
  0%   { opacity: 0; filter: blur(16px); transform: scale(.94); }
  60%  { opacity: 1; }
  100% { opacity: 1; filter: blur(0); transform: none; }
}
@keyframes danTxtIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__logo, .hero__logo .dl-char, .hero__logo .dl-txt { animation: none; }
}

/* --- header logo mark (暖 brush image, white/ink toggle) --- */
.hdr__logo a { position: relative; display: inline-block; line-height: 0; }
.hdr__logo img { width: auto; height: clamp(42px, 5vw, 54px); transition: opacity .4s; }
.hdr__logo .l-white { position: absolute; top: 0; left: 0; }
.hdr__logo .l-black { opacity: 0; }
.hdr.scrolled .hdr__logo .l-white { opacity: 0; }
.hdr.scrolled .hdr__logo .l-black { opacity: 1; }

/* =========================================================
   Section transitions
   ========================================================= */
/* Menu -> Our Soup: shallow diagonal paper edge */
.about {
  overflow: visible;
  z-index: 2;
}
.about::before {
  content: "";
  position: absolute;
  top: -54px;
  left: 0;
  width: 100%;
  height: 56px;
  z-index: 0;
  background: var(--paper);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.about > .wrap { position: relative; z-index: 1; }

/* Our Soup -> Feature: overlapping panel with gold rule */
.feat {
  z-index: 3;
  margin-top: -30px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 -18px 38px -26px rgba(23, 19, 16, .8);
}

/* Feature -> Shop: hand-painted ink sweep */
.shop {
  z-index: 4;
}
.shop::before {
  content: "";
  position: absolute;
  top: -58px;
  left: 0;
  width: 100%;
  height: 62px;
  background: url("img/section-divider-brush.svg") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}

/* Shop -> Footer: subtle diagonal cut */
.ftr {
  position: relative;
  z-index: 5;
}
.ftr::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 0;
  width: 100%;
  height: 36px;
  background: #100d0a;
  clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

@media (max-width: 720px) {
  /* Mobile: keep the transitions quiet and consistent on the narrow canvas. */
  .about::before {
    top: -16px;
    height: 18px;
    clip-path: polygon(0 100%, 100% 30%, 100% 100%, 0 100%);
  }

  .feat {
    margin-top: 0;
    border-top: 1px solid rgba(238, 193, 0, .72);
    box-shadow: none;
  }

  .shop::before {
    top: -18px;
    height: 20px;
    background: var(--ink);
    clip-path: polygon(0 72%, 100% 18%, 100% 100%, 0 100%);
  }

  .ftr::before {
    top: -14px;
    height: 16px;
    clip-path: polygon(0 58%, 100% 20%, 100% 100%, 0 100%);
  }
}

/* =========================================================
   Mobile scroll performance (hero jank fix)
   ========================================================= */
@media (max-width: 768px) {
  /* Ken Burns(拡大)を止め、クロスフェードのみ＝スクロール中の再描画を排除 */
  .hero__slide {
    transform: none !important;
    transition: opacity 1.2s ease;
    will-change: opacity;
    backface-visibility: hidden;
  }
  /* ロゴの常時floatyアニメを停止（にじみ登場dl-char/dl-txtは一度きりなので維持） */
  .hero__logo { animation: none; }
  /* ヘッダーの生ぼかしは重いので、モバイルでは半透明単色に */
  .hdr.scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(251, 247, 238, .97);
  }
  .hero__scroll i::after { animation-duration: 2.4s; }
}
