:root {
  --bg: #121214;
  --paper: #1b1b1f;
  --ink: #f3efe8;
  --muted: #a39b92;
  --silver: #c8c2b8;
  --line: rgba(243, 239, 232, 0.12);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --serif: "Cormorant Garamond", "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--sans);
  line-height: 1.8;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.skip { position: absolute; left: -999px; }
.skip:focus { left: 16px; top: 16px; background: #fff; color: #111; padding: 8px 12px; z-index: 100; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  color: #fff;
  transition: background 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  background: rgba(18, 18, 20, 0.94);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 13px;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.site-nav a:hover { color: var(--silver); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: inherit;
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.35), rgba(8, 8, 10, 0.62));
}

.hero-copy { position: relative; z-index: 1; padding: 0 24px; }

.eyebrow {
  letter-spacing: 0.42em;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--silver);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 9vw, 108px);
  margin: 12px 0 8px;
  letter-spacing: 0.12em;
}

.hero p { margin: 0; letter-spacing: 0.18em; }

.section { padding: 96px 7vw; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  margin: 8px 0 16px;
}

.lead { max-width: 640px; color: var(--muted); }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.menu-grid, .staff-grid, .gallery-grid, .info-grid {
  display: grid;
  gap: 24px;
}

.menu-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}

.card {
  background: var(--paper);
  padding: 28px;
  border: 1px solid var(--line);
}

.card h3 {
  font-family: var(--serif);
  font-size: 28px;
  margin: 0 0 8px;
  font-weight: 500;
}

.price { color: var(--silver); letter-spacing: 0.08em; }

.staff-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.staff-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.staff-card h3 {
  font-family: var(--serif);
  margin: 16px 0 4px;
  font-size: 28px;
}

.role {
  color: var(--silver);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.info-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.hours { list-style: none; padding: 0; margin: 0 0 24px; }
.hours li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}

.map-wrap {
  background: #161618;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  border: 1px solid var(--line);
}

.map-wrap a {
  color: var(--silver);
  border-bottom: 1px solid var(--silver);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #111113;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
}

.contact-form textarea { min-height: 120px; resize: vertical; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: var(--ink);
  color: #121214;
  padding: 14px 28px;
  letter-spacing: 0.18em;
  cursor: pointer;
  font: inherit;
}

.btn:hover { background: var(--silver); }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.news { list-style: none; padding: 0; }
.news li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: 48px 7vw 32px;
  background: #0c0c0e;
  color: #f3efe8;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer small {
  display: block;
  margin-top: 28px;
  color: rgba(243, 239, 232, 0.55);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.tone { background: #17171a; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 64px;
    right: 7vw;
    flex-direction: column;
    background: var(--paper);
    padding: 20px 24px;
    display: none;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .split, .menu-grid, .staff-grid, .gallery-grid, .info-grid {
    grid-template-columns: 1fr;
  }
  .split img, .staff-card img, .gallery-grid img { height: 320px; }
  .news li { grid-template-columns: 1fr; gap: 4px; }
}
