.reservation-page-section {
  background-color: var(--bg-color);
  color: var(--text-color);
}
.reservation-page-section .reservation-page-inner {
  padding: calc(var(--header-height) + 36px) 80px 70px;
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(340px, 520px);
  gap: 20px;
  align-items: start;
}
.reservation-page-section .reservation-page-title {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.95;
  color: var(--text-color);
  font-weight: 400;
  margin-bottom: 16px;
}
.reservation-page-section .reservation-page-subtitle {
  color: #5b7561;
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
  max-width: 760px;
}
.reservation-page-section .reservation-form {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reservation-page-section .reservation-fieldset {
  border: 1px solid rgba(36, 88, 42, 0.18);
  background: rgba(255, 255, 255, 0.35);
  padding: 18px;
}
.reservation-page-section .reservation-legend {
  padding: 0 10px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
}
.reservation-page-section .reservation-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reservation-page-section .reservation-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reservation-page-section .reservation-field.is-full {
  grid-column: 1/-1;
}
.reservation-page-section .reservation-field label,
.reservation-page-section .reservation-field .reservation-field-label {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color);
}
.reservation-page-section .reservation-field input,
.reservation-page-section .reservation-field select {
  width: 100%;
  border: 1px solid rgba(36, 88, 42, 0.18);
  background: rgba(255, 255, 255, 0.25);
  color: var(--text-color);
  padding: 10px 12px;
  font-size: 1rem;
  border-radius: 10px;
  font-family: inherit;
}
.reservation-page-section .reservation-field input:focus,
.reservation-page-section .reservation-field select:focus {
  outline: none;
  border-color: rgba(36, 88, 42, 0.55);
  background: rgba(255, 255, 255, 0.4);
}
.reservation-page-section .reservation-field select:not([multiple]) {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #5b7561 50%), linear-gradient(135deg, #5b7561 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.reservation-page-section .reservation-field select[multiple] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  background-image: none;
  padding: 8px 10px;
  min-height: 160px;
}
.reservation-page-section .reservation-multiselect {
  position: relative;
  width: 100%;
}
.reservation-page-section .reservation-multiselect-native {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.reservation-page-section .reservation-multiselect-control {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(36, 88, 42, 0.18);
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  cursor: pointer;
}
.reservation-page-section .reservation-multiselect-control:focus {
  outline: none;
  border-color: rgba(36, 88, 42, 0.55);
  background: rgba(255, 255, 255, 0.4);
}
.reservation-page-section .reservation-multiselect-placeholder {
  color: #5b7561;
  font-size: 1rem;
  line-height: 1.2;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.reservation-page-section .reservation-multiselect-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.reservation-page-section .reservation-multiselect-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(36, 88, 42, 0.25);
  background: rgba(255, 255, 255, 0.55);
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1;
}
.reservation-page-section .reservation-multiselect-chip-remove {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 999px;
  background: rgba(36, 88, 42, 0.12);
  color: var(--text-color);
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.reservation-page-section .reservation-multiselect-options {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  border: 1px solid rgba(36, 88, 42, 0.18);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 8px;
  display: none;
  z-index: 30;
  max-height: 260px;
  overflow: auto;
}
.reservation-page-section .reservation-multiselect.is-open .reservation-multiselect-options {
  display: block;
}
.reservation-page-section .reservation-multiselect-option {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-color);
  padding: 10px 10px;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reservation-page-section .reservation-multiselect-option:hover {
  background: rgba(36, 88, 42, 0.08);
}
.reservation-page-section .reservation-multiselect-option.is-selected {
  border-color: rgba(36, 88, 42, 0.35);
  background: rgba(36, 88, 42, 0.1);
}
.reservation-page-section .reservation-radio-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 2px;
}
.reservation-page-section .reservation-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b7561;
  font-size: 1rem;
  font-weight: 400;
}
.reservation-page-section .reservation-radio input {
  width: 16px;
  height: 16px;
  accent-color: #24582A;
}
.reservation-page-section .reservation-submit {
  margin-top: 10px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  padding: 12px 28px;
  border: 1px solid #24582A;
  border-radius: 999px;
  background-color: #24582A;
  color: #ffffff;
  font-size: 18px;
  font-family: inherit;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.reservation-page-section .reservation-submit:hover {
  background-color: transparent;
  color: #24582A;
}
.reservation-page-section .reservation-page-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
  justify-self: end;
  position: sticky;
  top: calc(var(--header-height) + 36px);
  height: -moz-fit-content;
  height: fit-content;
}
.reservation-page-section .reservation-page-description {
  font-size: 1.05rem;
  line-height: 1.55;
  font-weight: 400;
  color: #5b7561;
}
.reservation-page-section .reservation-page-card {
  border: 1px solid rgba(36, 88, 42, 0.18);
  background: rgba(255, 255, 255, 0.35);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reservation-page-section .reservation-page-card-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5b7561;
  font-size: 0.98rem;
  line-height: 1.3;
}
.reservation-page-section .reservation-page-card-row i {
  color: var(--text-color);
  font-size: 1.1rem;
}
.reservation-page-section .reservation-page-media {
  margin-top: 8px;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 16/10;
  display: block;
  position: relative;
  overflow: hidden;
}
.reservation-page-section .reservation-page-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}
.reservation-page-section .reservation-page-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (max-width: 998px) {
  .reservation-page-section .reservation-page-inner {
    padding: calc(var(--header-height) + 24px) 24px 54px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .reservation-page-section .reservation-page-aside {
    justify-self: start;
    max-width: 100%;
    position: static;
    top: auto;
    height: auto;
  }
  .reservation-page-section .reservation-page-media {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .reservation-page-section .reservation-page-inner {
    padding: calc(var(--header-height) + 20px) 16px 40px;
  }
  .reservation-page-section .reservation-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .reservation-page-section .reservation-fieldset {
    padding: 14px;
  }
  .reservation-page-section .reservation-submit {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}/*# sourceMappingURL=reservation.css.map */