:root {
  --ink: #1f211c;
  --muted: #6f7469;
  --cream: #f7f1e6;
  --paper: #fffaf0;
  --sage: #71856f;
  --moss: #2f4738;
  --clay: #9b5b37;
  --coffee: #3a261b;
  --charcoal: #171814;
  --line: rgba(31, 33, 28, 0.14);
  --shadow: 0 24px 80px rgba(31, 33, 28, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", "Inter", system-ui, sans-serif;
  line-height: 1.7;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 999px;
  background: rgba(23, 24, 20, 0.58);
  color: #fffaf0;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fffaf0;
  color: var(--coffee);
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Noto Serif JP", serif;
  line-height: 1.1;
}

.brand small {
  color: rgba(255, 250, 240, 0.7);
  font-size: 11px;
}

.nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 250, 240, 0.78);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.nav a:hover,
.header-cta:hover {
  color: #fff;
}

.header-cta {
  min-width: 98px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.14);
  color: #fffaf0;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.12);
  color: #fffaf0;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 15px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 27px;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 150px clamp(22px, 6vw, 86px) 72px;
  color: #fffaf0;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 14, 10, 0.86) 0%, rgba(19, 18, 13, 0.48) 40%, rgba(19, 18, 13, 0.14) 73%),
    linear-gradient(0deg, rgba(12, 12, 9, 0.76) 0%, rgba(12, 12, 9, 0) 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 710px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sage);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #d8e4c7;
}

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

h1,
h2 {
  font-family: "Noto Serif JP", serif;
  line-height: 1.18;
}

h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 700;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 700;
}

h2 span {
  display: block;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
}

.hero-lead {
  max-width: 560px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(16px, 2vw, 20px);
  overflow-wrap: anywhere;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
}

.button.primary {
  background: var(--clay);
  color: #fffaf0;
  box-shadow: 0 14px 30px rgba(98, 54, 31, 0.28);
}

.button.ghost {
  border-color: rgba(255, 250, 240, 0.34);
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.08);
}

.hero-card {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 6vw, 86px);
  bottom: 56px;
  width: min(310px, calc(100% - 44px));
  padding: 20px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 8px;
  background: rgba(23, 24, 20, 0.58);
  backdrop-filter: blur(18px);
}

.hero-card span,
.hero-card strong {
  display: block;
}

.hero-card span {
  color: #d8e4c7;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.hero-card strong {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.45;
}

.band {
  padding: clamp(72px, 10vw, 132px) clamp(22px, 6vw, 86px);
}

.light {
  background: var(--cream);
}

.dark {
  background: var(--charcoal);
  color: #fffaf0;
}

.dark p,
.dark dd {
  color: rgba(255, 250, 240, 0.72);
}

.intro {
  background:
    linear-gradient(135deg, rgba(113, 133, 111, 0.14), transparent 44%),
    var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro-grid p,
.split-copy p,
.access-copy p,
.reservation-inner > p {
  color: var(--muted);
  font-size: 17px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-row article,
.story-cards article {
  background: rgba(255, 250, 240, 0.72);
  padding: 30px;
}

.feature-row span {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--clay);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.feature-row p,
.story-cards p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
}

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

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

.menu-list {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.menu-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.6fr) minmax(160px, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.menu-list strong,
.menu-list b {
  font-family: "Inter", sans-serif;
}

.menu-list span {
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 82px);
  background: #eef1e7;
}

.story-cards {
  display: grid;
  gap: 14px;
}

.story-cards article {
  border-left: 4px solid var(--sage);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 34px 0 0;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 250, 240, 0.14);
}

.info-grid div {
  padding: 22px;
  background: rgba(255, 250, 240, 0.06);
}

.info-grid dt {
  color: #d8e4c7;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.info-grid dd {
  margin: 6px 0 0;
  font-size: 22px;
  font-weight: 700;
}

.access {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.access-panel {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.map {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #eee6d6;
}

.map img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center;
}

.hours {
  padding: 34px;
}

.hours p {
  color: var(--muted);
}

.hours dl {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.hours dt {
  color: var(--sage);
  font-family: "Inter", sans-serif;
  font-weight: 800;
}

.hours dd {
  margin: 0;
  font-weight: 700;
}

.reservation {
  background:
    linear-gradient(120deg, rgba(47, 71, 56, 0.92), rgba(23, 24, 20, 0.92)),
    var(--moss);
  color: #fffaf0;
}

.reservation-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.reservation .section-kicker {
  color: #d8e4c7;
}

.reservation-inner > p {
  max-width: 650px;
  margin-inline: auto;
  color: rgba(255, 250, 240, 0.75);
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr auto;
  gap: 12px;
  margin-top: 36px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
}

.reservation-form label {
  display: grid;
  gap: 6px;
  text-align: left;
}

.reservation-form span {
  color: rgba(255, 250, 240, 0.68);
  font-size: 12px;
  font-weight: 700;
}

.reservation-form input,
.reservation-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  padding: 10px 12px;
}

.reservation-form .button {
  align-self: end;
  border: 0;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(22px, 6vw, 86px);
  background: #0f100d;
  color: rgba(255, 250, 240, 0.74);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: #fffaf0;
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 18px;
    flex-wrap: wrap;
    column-gap: 18px;
    row-gap: 0;
  }

  .nav {
    order: 4;
    display: block;
    flex-basis: 100%;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    color: #fffaf0;
    transition: max-height 220ms ease, padding 220ms ease;
  }

  .site-header.is-open .nav {
    max-height: 240px;
    margin-top: 10px;
    padding: 0 2px 4px;
  }

  .nav a {
    display: block;
    min-height: 46px;
    padding: 12px 14px;
    border-top: 1px solid rgba(255, 250, 240, 0.12);
    color: rgba(255, 250, 240, 0.88);
  }

  .nav a:first-child {
    border-top: 0;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero {
    min-height: 88vh;
    padding: 126px 22px 44px;
  }

  .hero-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 28px;
  }

  .intro-grid,
  .split,
  .split.reverse,
  .story,
  .access,
  .access-panel,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .split.reverse .image-panel {
    order: -1;
  }
}

@media (max-width: 620px) {
  .brand small,
  .header-cta {
    display: none;
  }

  .site-header {
    padding-right: 12px;
  }

  .brand strong {
    font-size: 14px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-lead {
    max-width: 21rem;
    font-size: 15px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .menu-list div,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .menu-list div {
    gap: 4px;
  }

  .feature-row article,
  .story-cards article,
  .hours {
    padding: 24px;
  }
}
