:root {
  --ink: #3c3027;
  --muted: #78695f;
  --paper: #f5ead9;
  --soft: #eadcc8;
  --line: #d8c6ad;
  --green: #6f7d54;
  --green-2: #efe3cf;
  --terracotta: #b37655;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(83, 61, 43, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "Yu Gothic UI", "YuGothic", "Noto Sans JP", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.75;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 56px);
  background: rgba(245, 234, 217, 0.92);
  border-bottom: 1px solid rgba(216, 198, 173, 0.86);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: inherit;
  font-weight: 800;
  font-size: 24px;
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
}

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 128px clamp(20px, 6vw, 72px) 72px;
  background: #6f604f;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(74, 55, 39, 0.75) 0%, rgba(74, 55, 39, 0.5) 39%, rgba(74, 55, 39, 0.18) 74%, rgba(74, 55, 39, 0.08) 100%),
    linear-gradient(0deg, rgba(74, 55, 39, 0.32), rgba(74, 55, 39, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  color: var(--white);
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #f4d2bd;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.12;
  font-weight: 700;
  text-wrap: balance;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
  text-wrap: balance;
}

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

.lead {
  width: min(620px, 100%);
  margin-bottom: 32px;
  font-size: clamp(16px, 2.2vw, 19px);
  text-wrap: pretty;
}

.hero-title span,
.balanced-title span {
  display: inline-block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 6px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.button.primary,
.line-button {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.12);
}

.notice-band {
  padding: 18px clamp(20px, 6vw, 72px);
  color: var(--green);
  background: var(--green-2);
  border-bottom: 1px solid #dfceb8;
}

.notice-band p {
  max-width: 1120px;
  margin: 0 auto;
}

.section {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 6vw, 72px);
}

.section > * {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 6vw, 84px);
}

.split-section > * {
  max-width: none;
  margin: 0;
}

.concept-list {
  display: grid;
  gap: 18px;
}

.concept-list article {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.concept-list span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--terracotta);
  font-weight: 700;
}

.concept-list p,
.menu-card p,
.mood-copy p,
.reserve-copy p,
.small-note {
  color: var(--muted);
}

.section-head {
  margin-bottom: 26px;
}

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

.menu-card {
  min-height: 188px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(83, 61, 43, 0.07);
}

.menu-card strong {
  display: block;
  margin-top: 20px;
  color: var(--green);
  font-size: 24px;
}

.inline-photo {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(83, 61, 43, 0.08);
}

.inline-photo img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.concept-photo {
  margin-top: 28px;
}

.mood-photo {
  margin-top: 28px;
}

.mood-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  background: #eadcc8;
}

.mood-section > * {
  max-width: none;
  margin: 0;
}

.mood-copy {
  align-self: center;
}

.mood-panel {
  display: grid;
  gap: 12px;
}

.mood-panel div {
  display: grid;
  gap: 4px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mood-panel span {
  color: var(--muted);
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.reserve-section > * {
  max-width: none;
  margin: 0;
}

.line-button {
  margin: 12px 0 12px;
}

.small-note {
  font-size: 13px;
}

.line-reserve-card {
  padding: clamp(24px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.line-reserve-card p {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 22px;
  font-weight: 800;
}

.line-reserve-card ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
}

.line-reserve-card li {
  padding-left: 6px;
  color: var(--muted);
  font-weight: 700;
}

.access-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  background: var(--green-2);
}

.access-section > * {
  max-width: none;
  margin: 0;
}

.info-list {
  display: grid;
  gap: 0;
  margin-top: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #d8c6ad;
}

.info-list dt {
  color: var(--green);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.map-frame {
  grid-column: 1 / -1;
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 16px 38px rgba(83, 61, 43, 0.1);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 6vw, 72px);
  color: rgba(255, 255, 255, 0.82);
  background: #5d4a3c;
}

.footer p,
.footer small {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: sticky;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 86vh;
    padding-top: 72px;
  }

  .split-section,
  .mood-section,
  .reserve-section,
  .access-section {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 92px 18px 48px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(74, 55, 39, 0.78), rgba(74, 55, 39, 0.32));
  }

  h1 {
    font-size: 39px;
  }

  .button,
  .line-button {
    width: 100%;
  }

  .section {
    padding: 58px 18px;
  }

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

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

  .footer {
    display: grid;
  }
}
