/* =========================================================
   Rosita（ロシータ）LP — style.css
   ダーク基調 × メキシカンカラーでシズルを引き立てる
   ========================================================= */

/* ---------- デザイントークン ---------- */
:root {
  --bg-dark: #1a120b;
  --bg-dark-2: #241811;
  --bg-cream: #fbf3e4;
  --bg-cream-2: #f4e7cf;
  --red: #c8412b;
  --saffron: #f2a93b;
  --saffron-d: #e0942a;
  --lime: #7ba23f;
  --teal: #2ba8a1;
  --ink: #2b1b12;
  --cream-text: #f7ecd9;
  --muted: #a18b76;

  --font-display: "Anton", "Noto Sans JP", sans-serif;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-script: "Caveat", cursive;

  --maxw: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

/* ---------- リセット & ベース ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--bg-cream);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 { margin: 0; line-height: 1.2; }

p { margin: 0; }

.container {
  width: min(100% - 2.4rem, var(--maxw));
  margin-inline: auto;
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

section[id] { scroll-margin-top: 70px; }

.section-dark {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  background: var(--bg-dark);
  color: var(--cream-text);
  position: relative;
}

/* ---------- セクション見出し共通 ---------- */
.section-head { text-align: center; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }

.section-label {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  color: var(--red);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.section-label.light { color: var(--saffron); }

.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.02em;
}
.section-title.light { color: var(--cream-text); }

.section-desc { margin-top: 1rem; color: #6f5a48; }
.section-desc.light { color: #cbb79f; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-jp);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), color 0.25s var(--ease);
  will-change: transform;
}
.btn-lg { padding: 1.05em 2.1em; font-size: 1.05rem; }

.btn-reserve {
  background: var(--saffron);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(242, 169, 59, 0.4);
}
.btn-reserve:hover {
  background: var(--saffron-d);
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(242, 169, 59, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(2px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-3px); }

/* =========================================================
   追従ヘッダー
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease),
    padding 0.35s var(--ease);
  padding: 1.1rem 0;
}
.site-header.scrolled {
  background: rgba(26, 18, 11, 0.92);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  padding: 0.6rem 0;
}
.header-inner {
  width: min(100% - 2.4rem, var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.brand-mark { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--saffron); margin-top: 2px; }

.site-nav { margin-left: auto; display: flex; gap: 1.6rem; }
.site-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.2em 0;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); }

.header-cta { padding: 0.6em 1.3em; }

/* =========================================================
   ① ヒーロー
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
/* ヒーロー・スライドショー（自動＋スワイプ） */
.hero-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  touch-action: pan-y;
  cursor: grab;
}
.hero-track.dragging { transition: none; cursor: grabbing; }
.hero-slide { flex: 0 0 100%; width: 100%; height: 100%; overflow: hidden; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  user-select: none; -webkit-user-drag: none;
  transform: scale(1.06);
  transition: transform 6s ease-out;
}
.hero-slide.is-active img { transform: scale(1.13); }
.hero-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 35%, rgba(26, 18, 11, 0.25), rgba(26, 18, 11, 0.78) 100%),
    linear-gradient(180deg, rgba(26, 18, 11, 0.55) 0%, rgba(26, 18, 11, 0.2) 40%, rgba(26, 18, 11, 0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1.2rem 4rem;
  max-width: 880px;
  pointer-events: none;
}
.hero-content a, .hero-content button { pointer-events: auto; }

/* スライド位置インジケーター（ドット） */
.hero-dots {
  position: absolute;
  left: 50%; bottom: 5rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 0.55rem;
}
.hero-dot {
  width: 9px; height: 9px; padding: 0;
  border: 0; border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.3s var(--ease), width 0.3s var(--ease);
}
.hero-dot:hover { background: rgba(255, 255, 255, 0.8); }
.hero-dot.active { background: var(--saffron); width: 26px; }
.hero-eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.4em;
  font-size: 0.95rem;
  color: var(--saffron);
  margin-bottom: 1rem;
}
.hero-title { margin-bottom: 1.4rem; }
.hero-logo {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 13vw, 8.5rem);
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.hero-jp {
  display: block;
  font-weight: 700;
  letter-spacing: 0.5em;
  font-size: clamp(0.9rem, 2.6vw, 1.2rem);
  margin-top: 0.6rem;
  color: var(--cream-text);
}
.hero-catch {
  font-size: clamp(1.05rem, 3vw, 1.5rem);
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
  margin-bottom: 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 音トグル */
.sound-toggle {
  position: absolute;
  right: clamp(1rem, 4vw, 2.4rem);
  bottom: clamp(1.6rem, 5vw, 3rem);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-family: var(--font-jp);
  font-size: 0.85rem;
  padding: 0.55em 1em;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.25s var(--ease);
}
.sound-toggle:hover { background: rgba(0, 0, 0, 0.6); }

/* スクロール誘導 */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.scroll-cue-line {
  width: 1px; height: 46px;
  background: linear-gradient(var(--saffron), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-cue-line::after {
  content: "";
  position: absolute; top: -40%; left: 0;
  width: 100%; height: 40%;
  background: var(--saffron);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { top: -40%; } 100% { top: 100%; }
}
.scroll-cue-text { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.3em; }

/* =========================================================
   ② ブランド導入
   ========================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.about-copy .section-title { margin: 0.6rem 0 1.4rem; }
.about-title { font-size: clamp(1.5rem, 3.6vw, 2.25rem); line-height: 1.32; }
.about-title-sub {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.64em;
  font-weight: 800;
  color: var(--red);
}
.about-text { color: #5b4738; }
.about-text strong { color: var(--red); }
.about-points { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: 0.9rem; }
.about-points li {
  display: flex; align-items: center; gap: 0.9rem;
  font-weight: 500;
}
.about-points span {
  flex: none;
  width: 2.2rem; height: 2.2rem;
  display: grid; place-items: center;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.85rem;
}
.about-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.figure-tag {
  position: absolute; left: 1rem; bottom: 1rem;
  background: var(--saffron);
  color: var(--ink);
  font-family: var(--font-script);
  font-size: 1.6rem;
  padding: 0.1em 0.7em;
  border-radius: 999px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
}

/* =========================================================
   ③ シズル看板料理
   ========================================================= */
.signature {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.signature-media { position: absolute; inset: 0; z-index: 0; }
.signature-video { width: 100%; height: 100%; object-fit: cover; }
.signature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 11, 0.7), rgba(26, 18, 11, 0.45) 45%, rgba(26, 18, 11, 0.88));
}
.signature-content { position: relative; z-index: 2; margin-inline: auto; max-width: 760px; }
.signature-title {
  font-size: clamp(2.6rem, 9vw, 5.5rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  margin: 0.4rem 0 1.2rem;
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.55);
}
.signature-lead { font-size: clamp(1rem, 2.6vw, 1.3rem); font-weight: 500; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6); }
.signature-note {
  font-family: var(--font-script);
  color: var(--saffron);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 1.4rem 0 1.8rem;
}

/* =========================================================
   ③ 看板タコス（ソフトタコス4種）
   ========================================================= */
.tacos { background: var(--bg-cream); }

/* 看板バンド（盛り合わせ写真＋オーバーレイ） */
.tacos-band {
  position: relative;
  min-height: 56svh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.tacos-band-media { position: absolute; inset: 0; z-index: 0; }
.tacos-band-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
.tacos-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26, 18, 11, 0.58), rgba(26, 18, 11, 0.35) 45%, rgba(26, 18, 11, 0.82));
}
.tacos-band-content { position: relative; z-index: 2; margin-inline: auto; max-width: 760px; padding-block: clamp(4rem, 9vw, 6rem); }
.tacos-band-title {
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  font-weight: 900;
  margin: 0.5rem 0 1rem;
  text-shadow: 0 6px 28px rgba(0, 0, 0, 0.55);
}
.tacos-band-lead { font-size: clamp(1rem, 2.4vw, 1.25rem); font-weight: 500; text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6); }

/* 4種ジグザグ */
.tacos-list-wrap { padding-block: clamp(3.5rem, 8vw, 6rem); }
.taco-list { display: grid; gap: clamp(2.8rem, 7vw, 5.5rem); }
.taco-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}
.taco-row:nth-child(even) .taco-photo { order: 2; }
.taco-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
}
.taco-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.taco-row:hover .taco-photo img { transform: scale(1.06); }
.taco-no {
  position: absolute; top: 0.9rem; left: 0.9rem;
  width: 2.8rem; height: 2.8rem;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 1.3rem;
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}
.taco-name { font-size: clamp(1.4rem, 4vw, 2.1rem); font-weight: 900; display: flex; align-items: baseline; gap: 0.6em; flex-wrap: wrap; }
.taco-name small { font-family: var(--font-display); font-size: 0.8rem; letter-spacing: 0.15em; color: var(--teal); }
.taco-desc { color: #5b4738; margin: 0.9rem 0 1.1rem; font-size: 1.02rem; }
.taco-price { font-family: var(--font-display); font-size: 1.7rem; color: var(--red); margin-bottom: 1.4rem; }

@media (max-width: 760px) {
  .taco-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .taco-row:nth-child(even) .taco-photo { order: 0; }
  .taco-photo { width: 100%; max-width: 460px; margin-inline: auto; }
}

/* =========================================================
   ④ メニュー
   ========================================================= */
.menu { background: var(--bg-cream); position: relative; }
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.menu-card {
  flex: 1 1 280px;
  max-width: 348px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(43, 27, 18, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px rgba(43, 27, 18, 0.16); }
.menu-thumb { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.menu-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.menu-card:hover .menu-thumb img { transform: scale(1.07); }
.menu-badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  background: var(--red); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25em 0.8em; border-radius: 999px;
}
.menu-body { padding: 1.1rem 1.2rem 1.4rem; }
.menu-name { font-size: 1.2rem; font-weight: 700; display: flex; align-items: baseline; gap: 0.5em; }
.menu-name small { font-size: 0.7rem; color: var(--teal); letter-spacing: 0.1em; font-weight: 700; }
.menu-text { font-size: 0.9rem; color: #6f5a48; margin: 0.5rem 0 0.9rem; }
.menu-price { font-family: var(--font-display); font-size: 1.3rem; color: var(--red); }
.menu-foot { text-align: center; margin-top: clamp(2.2rem, 5vw, 3.4rem); }

/* プレースホルダー（写真準備中） */
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: #fff;
  text-align: center;
}
.placeholder .ph-emoji { font-size: 2.4rem; filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)); }
.placeholder .ph-text { font-size: 0.8rem; letter-spacing: 0.15em; opacity: 0.92; }
.ph-red { background: linear-gradient(135deg, #d4593f, #a8331f); }
.ph-yellow { background: linear-gradient(135deg, #f4b95a, #d98a1f); }
.ph-green { background: linear-gradient(135deg, #8fb455, #5f8a2c); }
.ph-teal { background: linear-gradient(135deg, #3fbab2, #1f827c); }
.ph-map { background: linear-gradient(135deg, #2f3d3a, #1c2624); min-height: 320px; border-radius: var(--radius); }

/* =========================================================
   ⑤ ギャラリー
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.9rem;
}
.gallery-item {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.wide { grid-column: span 2; grid-row: span 2; }
.gallery-item.placeholder { min-height: 0; }

/* =========================================================
   ⑥ ご予約
   ========================================================= */
.reserve { background: linear-gradient(180deg, var(--bg-cream), var(--bg-cream-2)); }
.reserve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.1rem, 2.5vw, 1.8rem);
  align-items: stretch;
}
.reserve-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 2rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(43, 27, 18, 0.08);
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reserve-card:hover { transform: translateY(-6px); box-shadow: 0 24px 44px rgba(43, 27, 18, 0.16); border-color: var(--saffron); }
.reserve-card.featured { border-color: var(--saffron); box-shadow: 0 18px 38px rgba(242, 169, 59, 0.28); }
.reserve-badge {
  position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: var(--red); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 0.3em 1em; border-radius: 999px;
  white-space: nowrap;
}
.reserve-icon { font-size: 2.6rem; line-height: 1; margin-bottom: 0.8rem; }
.reserve-name { font-size: 1.35rem; font-weight: 900; margin-bottom: 0.5rem; }
.reserve-desc { font-size: 0.9rem; color: #6f5a48; margin-bottom: 1.4rem; flex-grow: 1; }
.reserve-action {
  display: inline-block;
  font-weight: 700;
  color: var(--ink);
  background: var(--saffron);
  padding: 0.7em 1.4em;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.reserve-card:not(.featured) .reserve-action { background: var(--bg-cream-2); }
.reserve-note { text-align: center; margin-top: clamp(2rem, 4vw, 3rem); }
.reserve-note strong { color: var(--red); font-size: 1.15em; }
.reserve-small { font-size: 0.8rem; color: #8a7560; margin-top: 0.6rem; }

/* =========================================================
   ⑦ アクセス
   ========================================================= */
.access-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.access-list { margin: 1.6rem 0 2rem; display: grid; gap: 0; }
.access-list > div {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.access-list dt { color: var(--saffron); font-weight: 700; margin: 0; }
.access-list dd { margin: 0; color: var(--cream-text); }
.access-list a { text-decoration: underline; text-underline-offset: 3px; }
.access-map {
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
  line-height: 0;
}
.access-map iframe { display: block; width: 100%; height: 440px; border: 0; }
.access-map-link { margin: 0.9rem 0 0; text-align: right; line-height: 1.4; }
.access-map-link a {
  color: var(--saffron);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 720px) {
  .access-map iframe { height: 320px; }
}

/* =========================================================
   ⑧ フッター
   ========================================================= */
.site-footer { background: #120c07; color: var(--cream-text); padding: 3rem 0 2rem; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.5rem;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand .brand-sub { letter-spacing: 0.15em; color: #cbb79f; }
.footer-nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-nav a, .footer-sns a { color: #d8c6ae; font-size: 0.92rem; transition: color 0.25s; }
.footer-nav a:hover, .footer-sns a:hover { color: var(--saffron); }
.footer-sns { display: flex; gap: 1.2rem; }
.footer-copy { text-align: center; margin-top: 2rem; font-size: 0.78rem; color: #897560; }

/* =========================================================
   モバイル下部固定バー
   ========================================================= */
.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem calc(0.6rem + env(safe-area-inset-bottom));
  background: rgba(26, 18, 11, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.3);
}
.mobile-bar a {
  display: flex; align-items: center; justify-content: center; gap: 0.4em;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.9em 1em;
}
.mobile-bar-tel { flex: 0 0 33%; background: rgba(255, 255, 255, 0.12); color: #fff; }
.mobile-bar-reserve { flex: 1; background: var(--saffron); color: var(--ink); }

/* =========================================================
   スクロールリビール
   ========================================================= */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
[data-animate="fade-up"] { transform: translateY(36px); }
[data-animate="fade-down"] { transform: translateY(-26px); }
[data-animate="zoom"] { transform: scale(0.94); }
[data-animate].is-visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { aspect-ratio: 16 / 11; max-width: 520px; margin-inline: auto; }
  .access-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 150px; }
}

@media (max-width: 720px) {
  .site-nav { display: none; }
  .reserve-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  /* スマホでは外観（.wide）は通常マスに戻し、横長の料理写真（.wide-mobile）を先頭の横長バナーに */
  .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item.wide-mobile { grid-column: span 2; grid-row: span 1; order: -1; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 4.5rem; }
  .header-cta { display: none; }
  .scroll-cue { display: none; }
  .hero-dots { bottom: 6rem; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; margin-inline: auto; }
  .hero-actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   モーション低減
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-animate] { opacity: 1 !important; transform: none !important; }
  .hero-slide img { transform: scale(1.03) !important; transition: none !important; }
}
