:root {
  --ink: #221b17;
  --cream: #faf5ec;
  --cream-dim: #f0e7d8;
  --red: #b5341f;
  --red-dark: #8f2916;
  --line: #e2d6c1;
  --font-display: "Shippori Mincho B1", serif;
  --font-body: "Inter", sans-serif;
  --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--red); }

.wrap { max-width: 1120px; margin: 0 auto; padding-left: 1.5rem; padding-right: 1.5rem; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.wordmark { font-family: var(--font-display); font-size: 1.375rem; font-weight: 700; color: var(--ink); text-decoration: none; }
.main-nav { display: flex; gap: 1.75rem; }
.main-nav a { color: var(--ink); text-decoration: none; font-size: 0.9375rem; font-weight: 500; }
.main-nav a:hover { color: var(--red); }
.header-call { display: none; }
@media (min-width: 720px) { .header-call { display: inline-flex; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem; border-radius: var(--radius);
  font-weight: 600; font-size: 0.9375rem; text-decoration: none;
  border: 1px solid transparent; cursor: pointer; min-height: 44px;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.btn-primary { background: var(--red); color: #fff; width: 100%; }
.btn-primary:hover { background: var(--red-dark); }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(34,27,23,0.55) 0%, rgba(34,27,23,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; gap: 2.5rem;
  padding-top: 6rem; padding-bottom: 4rem;
}
@media (min-width: 900px) {
  .hero-content { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}
.eyebrow { color: #f0c4b4; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8125rem; font-weight: 600; margin-bottom: 0.75rem; }
.hero-copy h1 { color: #fff; }
.hero-sub { color: #f0e7dc; font-size: 1.0625rem; max-width: 34ch; }

.hero-form {
  background: rgba(250, 245, 236, 0.97);
  padding: 1.75rem; border-radius: 8px;
  display: grid; gap: 0.9rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero-form h2 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.hero-form label { display: grid; gap: 0.35rem; font-size: 0.875rem; font-weight: 500; color: var(--ink); }
.hero-form input, .hero-form select {
  padding: 0.7rem 0.85rem; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 0.9375rem; background: #fff;
  min-height: 44px;
}
.hero-form input:focus, .hero-form select:focus { outline: 2px solid var(--red); outline-offset: 1px; }
.form-note { font-size: 0.8125rem; color: #6b5f54; margin: 0; }

/* Trust bar */
.trust-bar { background: var(--ink); color: var(--cream); padding: 1.75rem 0; }
.trust-inner { display: grid; gap: 1.25rem; text-align: center; }
@media (min-width: 720px) { .trust-inner { grid-template-columns: repeat(3, 1fr); text-align: left; } }
.trust-inner div { display: flex; flex-direction: column; gap: 0.15rem; }
.trust-inner strong { font-family: var(--font-display); font-size: 1.0625rem; }
.trust-inner span { color: #cbbfb0; font-size: 0.875rem; }

/* Sections */
section { padding: 4.5rem 0; }
.section-sub { color: #6b5f54; max-width: 60ch; }

/* About */
.about p { max-width: 62ch; font-size: 1.0625rem; }

/* Menu */
.menu-grid { display: grid; gap: 1.25rem; margin-top: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-card { background: var(--cream-dim); border: 1px solid var(--line); border-radius: 8px; padding: 1.5rem; }
.menu-card h3 { color: var(--red-dark); margin-bottom: 0.4em; }
.menu-card p { margin: 0; font-size: 0.9375rem; color: #4a4038; }

/* Gallery */
.gallery-grid { display: grid; gap: 1rem; margin-top: 2rem; grid-template-columns: 1fr; }
@media (min-width: 720px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; aspect-ratio: 3/2; }

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; margin-top: 1.5rem; max-width: 70ch; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.25rem; background: #fff; }
.faq-list summary { font-weight: 600; cursor: pointer; }
.faq-list p { margin: 0.75rem 0 0; color: #4a4038; }

/* Visit */
.visit-grid { display: grid; gap: 2rem; margin-top: 1.5rem; }
@media (min-width: 720px) { .visit-grid { grid-template-columns: 1fr 1fr; } }
.visit-details p { margin-bottom: 1.25rem; }
.visit-map {
  display: flex; align-items: center; justify-content: center;
  min-height: 220px; background: var(--cream-dim); border: 1px dashed var(--line); border-radius: 8px;
}
.visit-map a { font-weight: 600; text-decoration: none; }

/* Footer */
.site-footer { background: var(--ink); color: #cbbfb0; padding: 2rem 0; }
.footer-inner p { margin: 0 0 0.4em; font-size: 0.875rem; }
.footer-note { color: #8a7d6f; font-size: 0.8125rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
