:root {
  --spot-ink: #4f4249;
  --spot-muted: #81747b;
  --spot-line: #eadde4;
  --spot-pink-soft: #fff0f6;
  --spot-purple-soft: #f3efff;
  --spot-green-soft: #ebf8f0;
}

.spot-page {
  min-height: 100vh;
  color: var(--spot-ink);
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 211, 226, .45), transparent 26%),
    radial-gradient(circle at 88% 2%, rgba(220, 214, 255, .5), transparent 24%),
    #fffafd;
}

.spot-page-shell {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
}

.spot-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  color: var(--spot-muted);
  font-size: 11px;
}

.spot-breadcrumbs a {
  color: #895a78;
  font-weight: 800;
  text-decoration: none;
}

.spot-page-card {
  overflow: hidden;
  border: 1px solid var(--spot-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 20px 60px rgba(76, 54, 65, .12);
}

.spot-page-hero {
  position: relative;
  padding: 30px 34px 26px;
  background: linear-gradient(135deg, #fff5f9 0%, #f5f1ff 100%);
}

.spot-page-hero::after {
  position: absolute;
  right: 30px;
  top: 24px;
  color: rgba(230, 95, 149, .2);
  content: "✦";
  font-size: 44px;
}

.spot-page-kicker {
  display: block;
  margin-bottom: 9px;
  color: #b04872;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.spot-page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.spot-page-badge {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 9px;
  border-radius: 999px;
  color: #7b5367;
  background: rgba(255, 255, 255, .86);
  font-size: 9px;
  font-weight: 900;
}

.spot-page-badge.is-ended {
  color: #756a70;
  background: #eee9ec;
}

.spot-page-badge.is-nagano {
  color: #4f735c;
  background: #e9f7ef;
}

.spot-page-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  color: #45383f;
  font-size: clamp(24px, 5vw, 38px);
  font-weight: 900;
  line-height: 1.35;
}

.spot-page-address {
  margin: 14px 0 0;
  color: #776970;
  font-size: 13px;
  line-height: 1.7;
}

.spot-page-content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: 26px;
  padding: 30px 34px 34px;
}

.spot-page-description {
  margin: 0 0 23px;
  color: #5f5259;
  font-size: 14px;
  line-height: 1.9;
}

.spot-page-details {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--spot-line);
}

.spot-page-details > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--spot-line);
}

.spot-page-details dt {
  color: #a14c70;
  font-size: 11px;
  font-weight: 900;
}

.spot-page-details dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
}

.spot-page-actions {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 16px;
  border: 1px solid var(--spot-line);
  border-radius: 18px;
  background: #fffdfd;
}

.spot-page-actions a,
.spot-page-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 9px 13px;
  border: 1px solid #e2d4dc;
  border-radius: 13px;
  color: #6f5b66;
  background: #fff;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.spot-page-actions .is-primary {
  border-color: #e98eb4;
  color: #fff;
  background: #df6094;
}

.spot-page-actions button.is-active[data-save-type="favorite"] {
  border-color: #edbad0;
  color: #b63e6d;
  background: var(--spot-pink-soft);
}

.spot-page-actions button.is-active[data-save-type="visited"] {
  border-color: #b8dfc8;
  color: #277553;
  background: var(--spot-green-soft);
}

.spot-page-actions button.is-active[data-save-type="plan"] {
  border-color: #c9b8e0;
  color: #65488b;
  background: var(--spot-purple-soft);
}

.spot-page-status {
  min-height: 20px;
  margin: 4px 0 0;
  color: #7f6874;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.spot-page-note {
  margin: 22px 0 0;
  padding: 14px 16px;
  border-radius: 15px;
  color: #756970;
  background: #faf5f8;
  font-size: 11px;
  line-height: 1.75;
}

@media (max-width: 720px) {
  .spot-page-shell {
    width: min(100% - 20px, 920px);
    padding-top: 18px;
  }

  .spot-page-card {
    border-radius: 20px;
  }

  .spot-page-hero,
  .spot-page-content {
    padding: 22px 20px;
  }

  .spot-page-content {
    grid-template-columns: 1fr;
  }

  .spot-page-actions {
    grid-template-columns: 1fr 1fr;
    order: -1;
  }

  .spot-page-actions .is-primary,
  .spot-page-status {
    grid-column: 1 / -1;
  }
}

@media (max-width: 420px) {
  .spot-page-actions {
    grid-template-columns: 1fr;
  }

  .spot-page-actions .is-primary,
  .spot-page-status {
    grid-column: auto;
  }

  .spot-page-details > div {
    grid-template-columns: 76px minmax(0, 1fr);
  }
}
