/* =========================================================
   炭火・鮮魚 さしき ｜ 飲食店向けサンプルHP
   制作: まるっと佐世保
   和モダン / 墨色 × 金 / 明朝見出し
   ========================================================= */

:root {
  --ink:        #1a1614;   /* 墨色（背景の主役） */
  --ink-2:      #241f1c;
  --ink-soft:   #2e2825;
  --paper:      #f6f1e7;   /* 生成り（明るいセクション） */
  --paper-2:    #efe7d6;
  --gold:       #c9a24b;   /* 金 */
  --gold-bright:#e0c074;
  --vermilion:  #b5462f;   /* 朱 */
  --text-light: #f3ece0;
  --text-dim:   rgba(243, 236, 224, 0.66);
  --text-dark:  #2a2522;
  --text-dark-dim: #6b6157;
  --line-light: rgba(201, 162, 75, 0.28);
  --maxw: 1080px;
  --serif: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text-light);
  background: var(--ink);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Sample brand bar ---------- */
.sample-bar {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  background: linear-gradient(90deg, #f5901f, #f7a945);
  color: #fff; padding: 8px 18px;
  font-size: 13px; font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.sample-bar__tag {
  background: #fff; color: #d97706;
  border-radius: 4px; padding: 2px 8px;
  font-size: 11px; letter-spacing: 1px;
}
.sample-bar__text { font-weight: 500; }
.sample-bar__text strong { font-weight: 800; }
.sample-bar__cta {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px; padding: 4px 14px;
  transition: background 0.2s;
}
.sample-bar__cta:hover { background: rgba(0, 0, 0, 0.32); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 37px; z-index: 150;
  background: rgba(26, 22, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-light);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 22px;
}
.brand { display: flex; flex-direction: column; line-height: 1.2; margin-right: auto; }
.brand__ja { font-family: var(--serif); font-size: 21px; font-weight: 700; letter-spacing: 2px; color: var(--gold-bright); }
.brand__en { font-size: 10px; letter-spacing: 3px; color: var(--text-dim); }
.gnav { display: flex; gap: 26px; }
.gnav a {
  font-size: 14px; font-weight: 500; color: var(--text-light);
  position: relative; padding: 4px 0; transition: color 0.2s;
}
.gnav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.25s;
}
.gnav a:hover { color: var(--gold-bright); }
.gnav a:hover::after { width: 100%; }
.tel-btn {
  display: flex; flex-direction: column; align-items: center;
  border: 1px solid var(--gold); border-radius: 8px;
  padding: 6px 16px; line-height: 1.25; transition: background 0.2s;
}
.tel-btn:hover { background: rgba(201, 162, 75, 0.15); }
.tel-btn__label { font-size: 10px; letter-spacing: 2px; color: var(--gold-bright); }
.tel-btn__num { font-family: var(--serif); font-size: 17px; font-weight: 700; color: var(--text-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-weight: 700; font-size: 15px;
  padding: 13px 30px; border-radius: 8px; transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  letter-spacing: 1px;
}
.btn--lg { padding: 16px 38px; font-size: 16px; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #2a1f08; box-shadow: 0 6px 18px rgba(201, 162, 75, 0.3);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201, 162, 75, 0.42); }
.btn--ghost { border: 1px solid var(--gold); color: var(--gold-bright); }
.btn--ghost:hover { background: rgba(201, 162, 75, 0.14); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 86vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(201, 162, 75, 0.22), transparent 45%),
    radial-gradient(circle at 78% 72%, rgba(181, 70, 47, 0.28), transparent 48%),
    linear-gradient(160deg, #2c2420 0%, #15110f 60%, #0e0b0a 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 9px);
  opacity: 0.5;
}
.hero__veil { position: absolute; inset: 0; background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.45) 100%); }
.hero__inner { position: relative; z-index: 2; padding: 60px 22px; max-width: 760px; }
.hero__eyebrow {
  font-size: 13px; letter-spacing: 5px; color: var(--gold-bright);
  margin-bottom: 22px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: "—"; color: var(--gold); margin: 0 12px; opacity: 0.7;
}
.hero__title {
  font-family: var(--serif); font-weight: 800;
  font-size: clamp(38px, 8vw, 76px); line-height: 1.25;
  letter-spacing: 4px; text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.hero__lead {
  margin-top: 26px; font-size: clamp(15px, 2.4vw, 18px);
  color: var(--text-light); font-weight: 500; line-height: 2;
}
.hero__actions { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__hours {
  margin-top: 30px; font-family: var(--serif); letter-spacing: 3px;
  font-size: 14px; color: var(--text-dim);
}

/* ---------- Section head ---------- */
.section-head { text-align: center; margin-bottom: 46px; }
.section-head__en { font-size: 12px; letter-spacing: 5px; color: var(--gold); margin-bottom: 8px; }
.section-head__ja {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(26px, 5vw, 38px); letter-spacing: 4px;
}
.section-head__ja::after {
  content: ""; display: block; width: 46px; height: 2px;
  background: var(--gold); margin: 18px auto 0;
}
.section-head__note { margin-top: 14px; font-size: 13px; color: var(--text-dark-dim); }
.section-head--light .section-head__ja { color: var(--text-dark); }
.section-head--light .section-head__en { color: var(--vermilion); }

/* ---------- About / Pride ---------- */
.about { max-width: var(--maxw); margin: 0 auto; padding: 96px 22px; }
.pride { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pride__card {
  background: var(--ink-2); border: 1px solid var(--line-light);
  border-radius: 12px; padding: 40px 28px; text-align: center;
  transition: transform 0.25s, border-color 0.25s;
}
.pride__card:hover { transform: translateY(-6px); border-color: var(--gold); }
.pride__no {
  font-family: var(--serif); font-size: 30px; font-weight: 800;
  color: var(--gold); width: 64px; height: 64px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold); border-radius: 50%;
}
.pride__card h3 { font-family: var(--serif); font-size: 21px; letter-spacing: 2px; margin-bottom: 14px; }
.pride__card p { font-size: 14.5px; color: var(--text-dim); line-height: 1.95; }

/* ---------- Menu ---------- */
.menu { background: var(--paper); color: var(--text-dark); padding: 96px 22px; }
.menu-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.dish {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 22px rgba(40, 30, 20, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.dish:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(40, 30, 20, 0.14); }
.dish__photo {
  height: 168px; position: relative;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.25), transparent 50%),
    linear-gradient(135deg, #6e4a2c, #3c2a1c);
}
.dish__photo::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px; letter-spacing: 2px;
  color: rgba(255, 246, 230, 0.92); text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.dish__body { padding: 18px 20px 22px; }
.dish__row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.dish__row h3 { font-family: var(--serif); font-size: 17px; letter-spacing: 1px; color: var(--text-dark); }
.dish__price { font-family: var(--serif); font-weight: 700; font-size: 16px; color: var(--vermilion); white-space: nowrap; }
.dish__body p { margin-top: 8px; font-size: 13px; color: var(--text-dark-dim); line-height: 1.8; }

/* course banner */
.course {
  max-width: var(--maxw); margin: 36px auto 0;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  background: var(--ink); color: var(--text-light);
  border-radius: 14px; padding: 30px 40px;
}
.course__label {
  font-family: var(--serif); font-size: 14px; letter-spacing: 3px;
  color: var(--gold-bright); border: 1px solid var(--gold);
  border-radius: 6px; padding: 6px 14px; white-space: nowrap;
}
.course__main { flex: 1; min-width: 220px; }
.course__main h3 { font-family: var(--serif); font-size: 22px; letter-spacing: 2px; }
.course__main p { font-size: 14px; color: var(--text-dim); margin-top: 4px; }
.course__price { font-family: var(--serif); color: var(--gold-bright); font-size: 18px; }
.course__price span { font-size: 44px; font-weight: 800; }

/* ---------- Gallery ---------- */
.gallery { max-width: var(--maxw); margin: 0 auto; padding: 96px 22px; }
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px; gap: 16px;
}
.ph {
  position: relative; border-radius: 10px; overflow: hidden;
  background: linear-gradient(135deg, #3a2e24, #241b15);
  border: 1px solid var(--line-light);
}
.ph::after {
  content: attr(data-label);
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 14px; letter-spacing: 2px; color: var(--text-dim);
}
.ph--tall { grid-row: span 2; }
.ph--wide { grid-column: span 2; }

/* ---------- Voice ---------- */
.voice { background: var(--ink-2); padding: 70px 22px; overflow: hidden; }
.voice-track {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.voice__card {
  font-family: var(--serif); font-size: 16px; line-height: 1.9;
  background: var(--ink); border-left: 3px solid var(--gold);
  border-radius: 8px; padding: 26px 24px; color: var(--text-light);
}
.voice__card cite { display: block; margin-top: 14px; font-size: 12px; font-style: normal; color: var(--text-dim); }

/* ---------- Access ---------- */
.access { max-width: var(--maxw); margin: 0 auto; padding: 96px 22px; }
.access-wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: stretch; }
.access-map {
  position: relative; border-radius: 12px; min-height: 320px;
  background:
    repeating-linear-gradient(0deg, rgba(201,162,75,0.06) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(201,162,75,0.06) 0 1px, transparent 1px 28px),
    var(--ink-2);
  border: 1px solid var(--line-light);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.access-map__pin { font-size: 40px; }
.access-map__note { font-size: 12px; color: var(--text-dim); letter-spacing: 1px; }
.access-info dl { display: flex; flex-direction: column; gap: 4px; }
.access-info dl > div {
  display: grid; grid-template-columns: 90px 1fr; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--line-light);
}
.access-info dt { font-family: var(--serif); color: var(--gold-bright); font-size: 14px; letter-spacing: 2px; }
.access-info dd { font-size: 14.5px; color: var(--text-light); }
.access-info dd a { color: var(--gold-bright); }
.access-cta { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-2); border-top: 1px solid var(--line-light);
  text-align: center; padding: 56px 22px 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.footer-brand__ja { font-family: var(--serif); font-size: 24px; letter-spacing: 3px; color: var(--gold-bright); }
.footer-brand__en { font-size: 10px; letter-spacing: 4px; color: var(--text-dim); }
.footer-addr { font-size: 13px; color: var(--text-dim); }
.footer-note {
  margin: 26px auto 0; max-width: 560px;
  font-size: 12.5px; line-height: 1.9; color: var(--text-dim);
  background: rgba(245, 144, 31, 0.1); border: 1px dashed rgba(245, 144, 31, 0.5);
  border-radius: 10px; padding: 16px 20px;
}
.footer-note strong { color: #f7a945; }
.footer-note em { font-style: normal; color: var(--text-light); }
.footer-credit {
  display: inline-block; margin-top: 20px; font-weight: 700; font-size: 14px;
  color: #2a1f08; background: linear-gradient(135deg, #f7a945, #f5901f);
  border-radius: 999px; padding: 11px 26px;
  box-shadow: 0 6px 16px rgba(245, 144, 31, 0.3); transition: transform 0.15s;
}
.footer-credit:hover { transform: translateY(-2px); }
.copyright { margin-top: 26px; font-size: 11px; color: var(--text-dark-dim); letter-spacing: 1px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .gnav { display: none; }
  .pride, .menu-grid, .voice-track { grid-template-columns: 1fr 1fr; }
  .access-wrap { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .ph--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
  .header-inner { gap: 12px; padding: 12px 16px; }
  .brand__ja { font-size: 18px; }
  .tel-btn { padding: 5px 12px; }
  .tel-btn__num { font-size: 15px; }
  .pride, .menu-grid, .voice-track { grid-template-columns: 1fr; }
  .about, .menu, .gallery, .access { padding: 64px 18px; }
  .course { padding: 24px 22px; }
  .course__price span { font-size: 36px; }
  .gallery-grid { grid-auto-rows: 130px; }
  .sample-bar { font-size: 12px; gap: 8px; padding: 7px 12px; }
  .sample-bar__cta { padding: 3px 10px; }
  .site-header { top: 56px; }
}
