:root {
  --ink: #1c1d1a;
  --muted: #62635d;
  --paper: #f4f0e8;
  --white: #fffdfa;
  --line: #ded6c7;
  --charcoal: #202a29;
  --forest: #284f3d;
  --red: #a8412f;
  --gold: #d7a845;
  --river: #356d86;
  --shadow: 0 18px 52px rgba(24, 28, 25, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 10px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(222, 214, 199, 0.82);
  background: rgba(255, 253, 250, 0.93);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

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

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 2.6vw, 32px);
  color: var(--muted);
  font-size: 0.93rem;
  white-space: nowrap;
}

.site-nav a {
  text-decoration: none;
}

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

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
}

.header-action {
  background: var(--charcoal);
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(560px, 82svh, 780px);
  overflow: hidden;
  padding: clamp(72px, 11vw, 128px) clamp(20px, 7vw, 96px);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 23, 19, 0.88) 0%, rgba(22, 23, 19, 0.72) 40%, rgba(22, 23, 19, 0.18) 72%),
    linear-gradient(180deg, rgba(20, 28, 26, 0.12), rgba(20, 28, 26, 0.45));
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-lead {
  width: min(680px, 100%);
  margin: 22px 0 0;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero-actions,
.panel-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-primary {
  background: var(--gold);
  color: #211607;
}

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

.button-outline {
  border-color: rgba(32, 42, 41, 0.28);
  color: var(--charcoal);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.quick-info div {
  padding: 22px clamp(20px, 4vw, 48px);
  background: var(--white);
}

.quick-info span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.quick-info strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.45;
}

.section,
.split-section,
.cta-section {
  padding: clamp(64px, 9vw, 112px) clamp(20px, 6vw, 82px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto 34px;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.23;
  letter-spacing: 0;
}

h3,
p {
  margin: 0;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.45;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.menu-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(68, 55, 34, 0.08);
}

.feature-card {
  background: var(--charcoal);
  color: var(--white);
}

.menu-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 28px;
  margin-bottom: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(168, 65, 47, 0.12);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-card .menu-tag {
  background: rgba(215, 168, 69, 0.18);
  color: var(--gold);
}

.menu-card p {
  margin-top: 14px;
  color: var(--muted);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  background: var(--forest);
  color: var(--white);
}

.story-copy {
  max-width: 560px;
}

.story-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.scene-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.scene-panel div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 18px;
  padding: 24px;
  background: rgba(18, 35, 29, 0.64);
}

.scene-panel span {
  grid-row: span 2;
  color: var(--gold);
  font-weight: 900;
}

.scene-panel strong {
  font-size: 1.08rem;
}

.scene-panel p {
  color: rgba(255, 255, 255, 0.72);
}

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

.info-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.info-table {
  margin: 0;
  border-top: 1px solid var(--line);
}

.info-table div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.info-table dt {
  color: var(--muted);
  font-weight: 800;
}

.info-table dd {
  margin: 0;
}

.map-panel {
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 109, 134, 0.12), rgba(168, 65, 47, 0.08)),
    var(--paper);
}

.map-panel p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  background: var(--charcoal);
  color: var(--white);
}

.cta-section .cta-actions {
  margin-top: 24px;
}

.qr-card {
  width: min(220px, 100%);
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  text-align: center;
}

.qr-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
}

.qr-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: 4px;
  padding: 32px clamp(20px, 6vw, 82px);
  background: #161915;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.draft-note {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .menu-grid,
  .split-section,
  .cta-section,
  .info-layout {
    grid-template-columns: 1fr;
  }

  .qr-card {
    width: 180px;
  }

  .menu-card {
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    gap: 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-sub {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 76svh;
    padding: 64px 20px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(22, 23, 19, 0.9), rgba(22, 23, 19, 0.56)),
      linear-gradient(180deg, rgba(20, 28, 26, 0.14), rgba(20, 28, 26, 0.52));
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

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

  .scene-panel div {
    grid-template-columns: 44px 1fr;
    padding: 22px 18px;
  }
}
