/* ===== Variables ===== */
:root {
  --bg: #fdf8ea;
  --bg-muted: #f5e9c7;
  --bg-deep: #efddae;
  --bg-paper: #fffaf0;
  --ink: #4a3a26;
  --ink-soft: #7a6849;
  --line: #e2cfa0;
  --accent: #8b5a2b;
  --accent-soft: #c89a5a;
  --accent-red: #8b1a1a;
  --gold: #f5cf7a;
  --gold-deep: #d9a94a;
  --card: #fffdf6;
  --shadow: 0 2px 12px rgba(122, 104, 73, 0.1);
  --shadow-hover: 0 8px 28px rgba(122, 104, 73, 0.18);
  --radius: 4px;
  --font-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", sans-serif;
  --font-serif: "Noto Serif JP", "Hiragino Mincho ProN", serif;
  --font-display: "Cormorant Garamond", "Noto Serif JP", serif;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { margin: 0; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container.narrow { max-width: 740px; }
.container.center { text-align: center; }

/* ===== Sample Banner ===== */
.sample-banner {
  background: #4a3a26;
  color: #fdf8ea;
  padding: 8px 0;
  font-size: 0.78rem;
  line-height: 1.5;
}
.sample-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}
.sample-badge {
  display: inline-block;
  background: #f5cf7a;
  color: #4a3a26;
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  flex-shrink: 0;
}
.sample-banner p { margin: 0; }

/* ===== Header ===== */
.site-header {
  background: rgba(253, 248, 234, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand:hover { opacity: 0.85; text-decoration: none; }
.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: block;
  border-radius: 50%;
  overflow: hidden;
}
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: cover; }
.brand-mark svg { display: block; width: 100%; height: 100%; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-title {
  font-family: var(--font-serif);
  font-size: 1.0rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-sub {
  font-size: 0.7rem;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.site-nav { display: none; gap: 28px; }
.site-nav a {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--accent); opacity: 1; }
@media (min-width: 900px) { .site-nav { display: flex; } }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-muted) 0%, var(--bg-deep) 60%, var(--bg-muted) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 70%, rgba(245, 207, 122, 0.5) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  text-align: center;
}
@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    text-align: left;
    gap: 60px;
  }
  .hero-meta { justify-content: flex-start; }
}
.hero-photo {
  display: inline-flex;
  justify-content: center;
  position: relative;
  text-decoration: none;
  align-self: center;
  justify-self: center;
  transition: transform 0.3s ease;
}
.hero-photo:hover { opacity: 1; transform: translateY(-3px); }
.hero-photo:hover .hero-photo-cue { background: var(--accent-red); transform: translateX(-50%) translateY(-2px); }
.hero-photo:hover .cue-arrow { transform: translateY(3px); }
.hero-photo img {
  max-width: 100%;
  width: 360px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(74, 58, 38, 0.18);
  display: block;
  transition: box-shadow 0.3s ease;
}
.hero-photo:hover img { box-shadow: 0 16px 48px rgba(74, 58, 38, 0.25); }
.hero-photo-cue {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(74, 58, 38, 0.25);
  transition: all 0.25s ease;
}
.cue-arrow {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.4s ease;
  animation: bounce 1.6s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@media (min-width: 900px) {
  .hero-photo img { width: 100%; max-width: 440px; }
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 24px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 5.5vw, 3.1rem);
  line-height: 1.5;
  margin-bottom: 28px;
  color: var(--accent-red);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero-lead {
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  color: var(--ink-soft);
  margin: 0 0 32px;
  line-height: 2;
}
.hero-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
}

/* ===== Section ===== */
.section { padding: 80px 0; }
.section-muted { background: var(--bg-muted); }
.section-paper { background: var(--bg-paper); }
.section-title.accent-red { color: var(--accent-red); border-bottom: 2px solid var(--accent-red); padding-bottom: 14px; }
.section-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 32px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* ===== About ===== */
.about-body {
  font-size: 1.02rem;
  line-height: 2.05;
  color: var(--ink);
}
.about-body p { margin: 0 0 1.2em; }
.about-body p:last-child { margin: 0; }

/* ===== Features ===== */
.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .features-list { grid-template-columns: repeat(2, 1fr); }
}
.feature-card {
  background: var(--card);
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold-deep);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 10px;
}
.feature-body {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== Schedule ===== */
.schedule-intro {
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.schedule-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
@media (min-width: 640px) {
  .schedule-list { grid-template-columns: repeat(2, 1fr); }
}
.schedule-card {
  background: var(--card);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.schedule-day {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 700;
}
.schedule-place {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
}
.schedule-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: normal;
}
.schedule-note a { color: var(--accent); text-decoration: underline; }

/* ===== Menu Placeholder ===== */
.menu-placeholder {
  background: var(--card);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  color: var(--ink-soft);
}
.placeholder-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 8px;
  font-weight: 700;
}

/* ===== Access ===== */
.access-body {
  background: var(--card);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.access-row {
  display: flex;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.access-row:last-child { border: 0; }
.access-row .label {
  color: var(--accent);
  font-weight: 500;
  width: 88px;
  flex-shrink: 0;
  font-size: 0.85rem;
  padding-top: 2px;
}
.access-row .value { color: var(--ink); }
.access-map {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}
.access-map:hover { background: #6e441f; opacity: 1; color: white; }

/* ===== CTA ===== */
.contact-lead {
  color: var(--ink-soft);
  margin-bottom: 28px;
  line-height: 2;
}
.cta {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.cta:hover {
  background: #6e441f;
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
  opacity: 1;
  color: white;
}

/* ===== Section Next ===== */
.section-next {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 36px;
  padding: 14px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}
.section-next:hover {
  background: var(--accent);
  color: white;
  transform: translateX(4px);
  border-color: var(--accent);
  opacity: 1;
  box-shadow: var(--shadow-hover);
}
.section-next:hover .next-label { color: rgba(255, 255, 255, 0.85); }
.next-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  font-weight: 400;
  transition: color 0.25s ease;
}
.center .section-next { align-self: center; }
.back-to-top-wrap { margin-top: 32px; }
.back-to-top {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 8px 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.back-to-top:hover { color: var(--accent); opacity: 1; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: #f5e9c7;
  padding: 40px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-title {
  font-family: var(--font-serif);
  color: #fffdf6;
  margin-bottom: 8px;
  font-size: 1.0rem;
}
.footer-note {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 12px;
}
.updated { opacity: 0.55; font-size: 0.72rem; margin: 0; }
