.site-header {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
}

.site-header__logo img {
  display: block;
  width: 32px;
  height: 32px;
}

.site-header__menu-button {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.site-header__menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #666;
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #666;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__link:hover {
  color: #333;
}

.site-header__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .site-header__menu-button {
    display: flex;
  }

  .site-header__nav {
    display: none;
    position: absolute;
    top: 57px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    z-index: 100;
  }

  .site-header__nav.is-open {
    display: flex;
  }

  .site-header__link {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .site-header__link:last-child {
    border-bottom: none;
  }

  .site-header {
    position: relative;
  }
}
.site-footer {
  width: 100%;
  max-width: none;
  margin: auto 0 0;
  align-self: stretch;
}

.site-footer__bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  height: 100px;
  background-color: #212529;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  padding: 0;
}

.site-footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  line-height: 1;
}

.site-footer__link:hover {
  color: #fff;
  opacity: 0.85;
}

.site-footer__icon {
  width: 1.333em;
  height: 1.333em;
}

.site-footer__copyright {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-page {
  max-width: 480px;
  margin: 0 auto;
}

.form-page__title {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.form__errors {
  margin: 0 0 1.25rem;
  padding: 0.75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  color: #b91c1c;
  font-size: 0.9rem;
  list-style: none;
}

.form__errors li + li {
  margin-top: 0.25rem;
}

.form__field {
  margin-bottom: 1.25rem;
}

.form__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #444;
}

.form__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.form__label-row .form__label {
  margin-bottom: 0;
}

.form__label-action {
  flex-shrink: 0;
  padding: 0.35rem 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  color: #444;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.form__label-action:hover {
  background: #f5f5f5;
  color: #333;
}

.form__input {
  display: block;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  font-size: 1rem;
  color: #333;
  background: #fff;
  box-sizing: border-box;
}

.form__input:focus {
  outline: none;
  border-color: #888;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

textarea.form__input {
  min-height: 6rem;
  resize: vertical;
  line-height: 1.5;
}

.form__hint {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  color: #888;
  line-height: 1.4;
}

.form__submit {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 6px;
  background: #444;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.form__submit:hover {
  background: #333;
}

.form__submit--secondary {
  background: #fff;
  border: 1px solid #d0d0d0;
  color: #444;
}

.form__submit--secondary:hover {
  background: #f5f5f5;
  color: #333;
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form__hint--intro {
  margin-bottom: 1.25rem;
}

.form__value {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.form__value .form__hint {
  margin: 0.25rem 0 0;
}

.form__link {
  color: #333;
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.form__link:hover {
  color: #000;
}

.place-search {
  position: relative;
}

.place-search__results {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  max-height: 240px;
  margin: 0.25rem 0 0;
  padding: 0;
  overflow-y: auto;
  list-style: none;
  background: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.place-search__option {
  display: block;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.place-search__option:hover {
  background: #f5f5f5;
}

.place-search__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
}

.place-search__address {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: #888;
}

.place-search__empty {
  padding: 0.75rem;
  font-size: 0.85rem;
  color: #888;
}

.event-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-list__item {
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.event-list__item:first-child {
  padding-top: 0;
}

.event-list__title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}

.event-list__date {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.85rem;
  color: #888;
}

.place-details {
  margin-bottom: 1.25rem;
}

.place-details__toggle {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  background: #fff;
  color: #444;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.place-details__toggle::-webkit-details-marker {
  display: none;
}

.place-details__toggle:hover {
  background: #f5f5f5;
}

.place-details__hide {
  display: none;
}

.place-details[open] .place-details__show {
  display: none;
}

.place-details[open] .place-details__hide {
  display: inline;
}

.place-details__content {
  margin-top: 1rem;
  padding-top: 0.25rem;
}
main.main--full {
  max-width: none;
  padding: 0;
}

.map {
  width: 100%;
  height: calc(100vh - 57px);
}

.map--sample {
  height: 500px;
  margin-top: 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
/*





 */

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

html {
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

.flash {
  margin-bottom: 1.25rem;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.alert--notice {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.alert--alert {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 1rem;
  width: 100%;
}
