*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --ink: #211f1c;
  --muted: #68635d;
  --paper: #fff;
  --soft: #f8f4ee;
  --cream: #efe5d8;
  --taupe: #8d7765;
  --brown: #4b372d;
  --rose: #c98f82;
  --green: #687765;
  --border: #e5d9cc;
  --shadow: 0 20px 54px rgba(50, 39, 30, 0.16);
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(229, 217, 204, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: grid;
  line-height: 1;
  min-width: max-content;
}

.brand-main {
  font-family: "Noto Serif JP", serif;
  font-size: 1.38rem;
  font-weight: 700;
  color: var(--brown);
}

.brand-sub {
  margin-top: 5px;
  color: var(--taupe);
  font-size: 0.72rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-reserve {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 12px 26px rgba(75, 55, 45, 0.2);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--border);
  color: var(--brown);
}

.btn-ghost.light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  overflow: hidden;
  background: #211f1c;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 22, 18, 0.82), rgba(26, 22, 18, 0.42) 46%, rgba(26, 22, 18, 0.12)),
    linear-gradient(0deg, rgba(26, 22, 18, 0.32), transparent 48%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  min-height: calc(100vh - 70px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: end;
  padding: 72px 0 56px;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1, h2, h3, p, dl, dd {
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-family: "Noto Serif JP", serif;
  font-size: 4.25rem;
  line-height: 1.14;
}

.hero-copy p {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions.center {
  justify-content: center;
}

.hero-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 10px;
  background: var(--rose);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero-card span {
  display: block;
  margin-top: 14px;
  color: var(--brown);
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-card small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section.white {
  background: var(--paper);
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 34px;
}

h2 {
  margin-top: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.62rem;
  line-height: 1.3;
}

.section-head p,
.text-panel p,
.staff-wrap > div > p {
  color: var(--muted);
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature,
.menu-card,
.mini-style,
blockquote,
.staff-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.feature {
  min-height: 236px;
  padding: 24px;
}

.feature span {
  color: var(--rose);
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}

.feature h3,
.menu-card h3,
.mini-style h3 {
  margin-top: 22px;
  font-size: 1.1rem;
  line-height: 1.45;
}

.feature p,
.menu-card p,
.mini-style p,
blockquote p,
.staff-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.split-section {
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #3e3934;
  font-weight: 900;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--rose);
  border-bottom: 2px solid var(--rose);
  transform: rotate(-45deg);
}

.style-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, 0.7fr);
  gap: 14px;
}

.style-card {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  overflow: hidden;
  background: var(--brown);
  color: #fff;
  border-radius: 8px;
}

.style-card img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.style-card div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.style-card span,
.mini-style span,
.tag {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
}

.style-card h3 {
  margin-top: 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.72rem;
  line-height: 1.35;
}

.style-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.mini-style {
  padding: 22px;
}

.mini-style + .mini-style {
  margin-top: 14px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.menu-card {
  padding: 24px;
}

.menu-card.recommend {
  background: var(--brown);
  color: #fff;
  box-shadow: var(--shadow);
}

.menu-card.recommend p {
  color: rgba(255, 255, 255, 0.82);
}

.price {
  color: var(--brown);
  font-family: "Noto Serif JP", serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.recommend .price {
  color: #fff;
}

.staff-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 40px;
  align-items: center;
}

.staff-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 26px;
}

.staff-initial {
  width: 82px;
  height: 82px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--brown);
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  flex: 0 0 auto;
}

.staff-card h3 {
  font-size: 1.22rem;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

blockquote {
  margin: 0;
  padding: 24px;
}

blockquote cite {
  display: block;
  margin-top: 16px;
  color: var(--brown);
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 900;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 38px;
  align-items: center;
}

.info-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.info-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.info-list dt {
  color: var(--taupe);
  font-weight: 900;
}

.info-list dd {
  color: #3e3934;
  font-weight: 700;
}

.map-box {
  min-height: 320px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 49%, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.7) 49%, transparent 50%),
    var(--cream);
  background-size: 70px 70px;
  display: grid;
  place-items: center;
}

.map-box span {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  background: var(--brown);
  color: #fff;
  border-radius: 999px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: var(--shadow);
}

.reserve-section {
  background: var(--brown);
  color: #fff;
  text-align: center;
}

.reserve-section .eyebrow {
  color: var(--rose);
}

.reserve-box {
  max-width: 760px;
}

.reserve-box p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  padding: 34px 0 96px;
  background: #191411;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.footer p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
}

.footer small {
  display: block;
  margin-top: 6px;
}

.floating {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 40;
  width: min(430px, calc(100% - 24px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(39, 31, 25, 0.2);
  backdrop-filter: blur(14px);
}

.floating .btn {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: center;
  }

  h1 {
    font-size: 3.35rem;
  }

  .section-head,
  .split,
  .staff-wrap,
  .access-grid {
    grid-template-columns: 1fr;
  }

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

  .style-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .nav {
    width: min(var(--max), calc(100% - 24px));
    height: 62px;
  }

  .nav .btn {
    min-height: 40px;
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    width: min(var(--max), calc(100% - 24px));
    padding: 64px 0 42px;
  }

  h1 {
    font-size: 2.58rem;
  }

  h2 {
    font-size: 2rem;
  }

  .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .section {
    padding: 68px 0;
  }

  .feature-grid,
  .menu-grid,
  .voice-grid {
    grid-template-columns: 1fr;
  }

  .style-card {
    grid-template-columns: 1fr;
  }

  .style-card img {
    min-height: 330px;
  }

  .style-card div {
    padding: 24px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .hero-actions .btn,
  .reserve-box .btn {
    width: 100%;
  }

  .floating {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .floating .btn-ghost {
    display: none;
  }
}
