.reservation-form,
#confirmation-message {
  width: 100%;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid #000;
  border-radius: 28px;
  background: #f8f1e7;
  color: #000;
}

.reservation-form-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 38px;
  padding-bottom: 28px;
  border-bottom: 1px solid #000;
}

.reservation-form-number {
  display: inline-flex;
  flex: 0 0 46px;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
}

.reservation-form-kicker {
  margin: 0 0 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reservation-form-title {
  margin: 0;
  color: #000;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.reservation-form label {
  display: block;
  margin-bottom: 9px;
  color: #000;
  font-size: 13px;
  font-weight: 600;
}

.reservation-field,
.reservation-form .form-control,
.reservation-form .form-select {
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid #000;
  border-radius: 12px;
  background-color: #f8f1e7;
  color: #000;
  font-size: 15px;
  box-shadow: none;
}

.reservation-field::placeholder {
  color: #000;
  opacity: 0.52;
}

.reservation-field:focus,
.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
  border-color: #000;
  background-color: #f8f1e7;
  color: #000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.reservation-textarea {
  min-height: 125px;
  resize: vertical;
}

.reservation-field-note {
  display: block;
  margin-top: 7px;
  color: #000;
  font-size: 11px;
  opacity: 0.62;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-top: 4px;
}

.privacy-checkbox input[type='checkbox'] {
  appearance: none;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  border: 1px solid #000;
  border-radius: 5px;
  background: #f8f1e7;
  cursor: pointer;
}

.privacy-checkbox input[type='checkbox']:checked {
  background-color: #000;
  background-image: url('../assets/images/privacy-logo-mark.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 13px;
}

.privacy-checkbox label {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  cursor: pointer;
}

.privacy-checkbox a {
  color: #000;
  text-underline-offset: 3px;
}

.submit-btn {
  display: flex;
  width: 100%;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 9px 8px 22px;
  border: 1px solid #000;
  border-radius: 999px;
  background: #000;
  color: #f8f1e7;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  transform: translateY(-2px);
}

.submit-btn-arrow {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f1e7;
  color: #000;
  font-size: 20px;
}

#confirmation-message {
  display: none;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

#confirmation-message .confirmation-mark {
  display: inline-flex;
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
  border-radius: 50%;
  font-size: 24px;
}

#confirmation-message strong {
  font-family: 'Playfair', serif;
  font-size: 28px;
}

#confirmation-message span:last-child {
  font-size: 14px;
}

@media (max-width: 575.98px) {
  .reservation-form,
  #confirmation-message {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .reservation-form-header {
    margin-bottom: 28px;
  }
}
