:root {
  --ink: #171512;
  --muted: #6f665b;
  --paper: #f6f0e7;
  --paper-deep: #ebe0d0;
  --line: #d5c5ae;
  --red: #9b1f18;
  --green: #2f5f4a;
  --gold: #c39a45;
  --black: #0f0d0b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.75;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 21, 18, 0.14);
  background: rgba(246, 240, 231, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  text-decoration: none;
}

.brand img {
  width: clamp(132px, 19vw, 190px);
  height: auto;
}

.nav {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  font-size: 0.88rem;
  color: var(--muted);
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--red);
}

.hero {
  min-height: calc(100vh - 62px);
  padding: clamp(30px, 5vw, 72px) 0 42px;
  background: linear-gradient(180deg, #15110e 0%, #30241b 54%, var(--paper) 54%);
  color: #fff8ed;
}

.hero-copy {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  line-height: 1.18;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.8rem, 10vw, 9rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #eadcc8;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.carousel {
  display: grid;
  grid-auto-columns: minmax(76vw, 960px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  padding: 0 clamp(18px, 4vw, 56px) 18px;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.18);
}

.slide {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--black);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  scroll-snap-align: center;
}

.slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  color: #f7ead8;
  font-size: 0.9rem;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 96px) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.mottos,
.menu-grid {
  display: grid;
  gap: 16px;
}

.mottos {
  grid-template-columns: repeat(3, 1fr);
}

.mottos article,
.menu-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.56);
}

.mottos article {
  padding: 24px;
}

.mottos span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff8ed;
  font-family: "Yu Mincho", serif;
}

.mottos p,
.menu-item p,
.article-promo p,
.access-copy p,
.article-body p {
  color: var(--muted);
}

.menu-grid {
  grid-template-columns: repeat(2, 1fr);
}

.menu-item {
  display: flex;
  min-height: 154px;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}

.menu-item strong {
  color: var(--red);
  white-space: nowrap;
}

.article-promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.access-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(22px, 5vw, 52px);
}

address {
  margin: 0 0 18px;
  font-style: normal;
  font-weight: 700;
}

.access-map {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.footer {
  padding: 28px 18px 36px;
  background: var(--black);
  color: #d8c9b6;
  text-align: center;
}

.footer p {
  margin: 0;
}

.article {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 92px) 0;
}

.article-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.article-header h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2.4rem, 7vw, 5.5rem);
}

.article-meta {
  margin: 0;
  color: var(--muted);
}

.article-body {
  font-size: 1.05rem;
}

.article-body p {
  margin-bottom: 1.6em;
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .hero {
    min-height: auto;
    background: linear-gradient(180deg, #15110e 0%, #30241b 62%, var(--paper) 62%);
  }

  .carousel {
    grid-auto-columns: 86vw;
    gap: 12px;
  }

  .mottos,
  .menu-grid,
  .access-section {
    grid-template-columns: 1fr;
  }

  .menu-item,
  .article-promo {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-item {
    min-height: 0;
  }

  .button {
    width: 100%;
  }
}
